/* ============================================
   ZAKTOMATE — Homepage Section Styles
   All 17 sections
   ============================================ */

/* --- SECTION 1: HERO --- */
.hero {
  padding: 90px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 48px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(46, 204, 143, 0.20);
  border-radius: var(--r-pill);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-tag i {
  font-size: 14px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}

.hero-sub {
  font-size: var(--type-body-lg);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-social-proof .stars {
  letter-spacing: 2px;
}

.hero-social-proof span {
  font-size: 13px;
  color: var(--text-secondary);
}

.hero-trust-row {
  margin-top: 24px;
}

.hero-trust-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.hero-trust-names {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.hero-visual-wrapper {
  position: relative;
}

.hero-photo {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-image);
  object-fit: cover;
  max-height: 680px; aspect-ratio: 4/5;
}

.hero-float-card {
  position: absolute;
  bottom: 28px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-float-card i {
  font-size: 16px;
  color: var(--accent);
}

.hero-float-card span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

/* --- SECTION 2: THREE INSTANT WINS --- */
.wins-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.wins-item {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wins-item:not(:last-child) {
  border-right: 1px solid var(--border);
}

.wins-item h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: white;
}

.wins-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- SECTION 3: PROBLEM / AGITATION --- */
.problem-section {
  padding: var(--section-pad);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.problem-copy p {
  margin-bottom: 16px;
  line-height: 1.75;
}

.problem-copy p:last-child {
  margin-bottom: 0;
}

.symptom-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.symptom-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}

.symptom-card > * {
  position: relative;
  z-index: 1;
}

.symptom-header {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* --- SECTION 4: GUIDE / MENTOR --- */
.guide-section {
  padding: var(--section-pad);
}

.guide-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}

.guide-photo {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-image);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.guide-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.guide-copy p {
  color: var(--text-secondary);
  font-size: var(--type-body-lg);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* --- SECTION 5: FREE AI AUDIT HIGHLIGHT --- */
.audit-highlight {
  padding: var(--section-pad-lg);
  position: relative;
}

.audit-highlight-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(46,204,143,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.audit-highlight > .container {
  position: relative;
  z-index: 1;
}

.audit-card {
  border-left: 4px solid var(--accent);
  padding: 48px;
}

.audit-card .check-list li {
  font-size: 15px;
}

.audit-card hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

/* --- SECTION 6: 3-STEP PROCESS --- */
.process-section {
  padding: var(--section-pad);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  margin-top: 56px;
}

/* Connecting dashed line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 72px;
  left: calc(33.33% / 2 + 24px);
  right: calc(33.33% / 2 + 24px);
  border-top: 2px dashed rgba(46,204,143,0.3);
  z-index: 0;
}

.process-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.process-card-number {
  position: absolute;
  top: -10px;
  right: 10px;
  font-family: 'Instrument Serif', serif;
  font-size: 120px;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.process-step-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 16px;
  margin-bottom: 4px;
}

.process-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.process-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* --- SECTION 7: AUTOMATIONS SHOWCASE --- */
.automations-section {
  padding: var(--section-pad);
}

.automations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.automation-card {
  padding: 28px;
}

.automation-category {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 16px;
  margin-bottom: 8px;
}

.automation-card h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: white;
  margin-bottom: 10px;
}

.automation-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* --- SECTION 8: BENEFIT-FIRST FEATURES --- */
.benefit-block {
  padding-top: 80px;
  padding-bottom: 80px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.benefit-grid--reverse {
  direction: rtl;
}

.benefit-grid--reverse > * {
  direction: ltr;
}

.benefit-copy p {
  line-height: 1.75;
  margin-bottom: 16px;
  color: #555;
}

.benefit-visual {
  border-radius: var(--r-lg);
  overflow: hidden;
}

.benefit-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
}

/* Metric Panel for Benefit 1 */
.metric-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
}

.metric-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.metric-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.metric-bar-pair {
  display: flex;
  gap: 4px;
  height: 120px;
  align-items: flex-end;
}

.metric-bar {
  width: 20px;
  border-radius: 4px 4px 0 0;
  transition: height 0.6s ease;
}

.metric-bar--before {
  background: rgba(46,204,143,0.25);
}

.metric-bar--after {
  background: var(--accent);
}

.metric-bar-label {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}

.metric-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.metric-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.metric-row .value {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  min-width: 70px;
}

.metric-row .label {
  font-size: 13px;
  color: var(--text-muted);
}

/* Revenue chart for Benefit 2 */
.revenue-chart {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  height: 280px;
}

.revenue-chart-area {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
}

.revenue-label {
  position: absolute;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: var(--r-sm);
}

.revenue-label--before {
  bottom: 30%;
  left: 15%;
  color: var(--text-muted);
  background: var(--bg-card2);
}

.revenue-label--after {
  top: 20%;
  right: 15%;
  color: var(--accent);
  background: var(--accent-dim);
}

/* --- SECTION 9: CUSTOMER VALUE CALLOUT --- */
.value-section {
  padding: var(--section-pad);
}

.value-card {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.value-card .deco-quote {
  font-size: 200px;
  top: -20px;
  left: 20px;
}

.value-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-top: 40px;
  text-align: center;
  align-items: start;
}

.value-stat .number {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--accent);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
}

.value-stat .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* --- SECTION 10: FULL OFFER --- */
.offer-section {
  padding: var(--section-pad-lg);
}

.core-deliverables {
  padding: 40px;
  margin-top: 48px;
}

.core-deliverables h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: white;
  margin-bottom: 4px;
}

.core-deliverables .subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.core-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.core-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.core-list li i {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bonus-card {
  padding: 24px;
}

.bonus-number {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}

.bonus-card h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: white;
  margin-bottom: 10px;
}

.bonus-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.offer-closing {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  color: var(--text-secondary);
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-top: 48px;
}

.offer-closing em {
  font-style: italic;
}

/* --- SECTION 11: GUARANTEE --- */
.guarantee-section {
  padding: var(--section-pad);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: center;
}

.guarantee-seal {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin: 0 auto;
}

.guarantee-seal::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px dashed rgba(46,204,143,0.4);
}

.guarantee-seal .seal-top {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 9px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.20em;
}

/* On light bg, use a color that's visible */
.section-light .guarantee-seal .seal-top {
  color: var(--accent);
}

.guarantee-seal .seal-number {
  font-family: 'Instrument Serif', serif;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
}

.guarantee-seal .seal-weeks {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  color: var(--accent);
}

.guarantee-seal .seal-sub {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 9px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 4px;
}

.guarantee-seal .seal-note {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  color: var(--text-muted);
  max-width: 180px;
  margin-top: 8px;
  line-height: 1.4;
}

.guarantee-copy p {
  line-height: 1.75;
  color: #555;
  margin-bottom: 16px;
}

/* --- SECTION 12: COMPARISON TABLE --- */
.comparison-section {
  padding: var(--section-pad);
}

.comparison-table-wrapper {
  margin-top: 48px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead th {
  background: var(--bg-card2);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table thead th:nth-child(2) {
  color: var(--accent);
}

.comparison-table tbody td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.015);
}

.comparison-table tbody tr:hover {
  background: rgba(255,255,255,0.025);
}

.comparison-table .check {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}

.comparison-table .cross {
  color: var(--text-muted);
  font-size: 16px;
}

.comparison-table .partial {
  color: var(--warning);
  font-size: 13px;
}

.comparison-cta {
  padding: 24px;
  text-align: center;
  background: var(--bg-card2);
}

/* --- SECTION 13: CASE STUDIES + TESTIMONIALS --- */
.cases-section {
  padding: var(--section-pad);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.case-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.case-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.case-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: #f0f0f0;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  color: #666;
  margin-left: 12px;
}

.case-stat {
  margin: 20px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.case-stat .number {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.case-stat .label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.case-story {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
}

.testimonial-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.testimonial-quote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 17px;
  color: white;
  line-height: 1.65;
  position: relative;
  z-index: 1;
  margin: 16px 0 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: white;
}

.testimonial-title {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  color: var(--text-secondary);
}

/* --- SECTION 14: STAKES --- */
.stakes-section {
  padding: var(--section-pad);
}

/* --- SECTION 15: ASPIRATION --- */
.aspiration-section {
  padding: var(--section-pad);
  position: relative;
}

.aspiration-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(46,204,143,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.aspiration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.aspiration-copy p {
  font-size: var(--type-body-lg);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* Monday Morning Dashboard */
.dashboard-card {
  padding: 32px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dashboard-header .time {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: white;
}

.dashboard-header .label {
  font-size: 12px;
  color: var(--text-secondary);
}

.dashboard-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card2);
  border-radius: var(--r-md);
  padding: 12px 16px;
  border: 1px solid rgba(46,204,143,0.2);
}

.dashboard-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-item-left i {
  font-size: 16px;
  color: var(--accent);
}

.dashboard-item-left span {
  font-size: 13px;
  color: var(--text-secondary);
}

.dashboard-item-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.dashboard-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 20px;
}

.dashboard-stat {
  display: flex;
  flex-direction: column;
}

.dashboard-stat .big-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.dashboard-stat .big-number--white {
  color: white;
  font-size: 18px;
}

.dashboard-stat .stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* --- SECTION 16: FINAL CTA --- */
.final-cta-section {
  padding: var(--section-pad);
}

.final-cta-section h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.final-cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 36px;
}

.final-cta-section .sub-note {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  margin-top: 14px;
}

/* --- SECTION 17: FAQ --- */
.faq-section {
  padding: var(--section-pad);
}

.faq-list {
  margin-top: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top:24px; padding-bottom:24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question span {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: white;
  line-height: 1.4;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-bottom: 8px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .guide-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .aspiration-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-photo {
    max-height: 400px;
    width: 100%;
  }

  .wins-grid {
    grid-template-columns: 1fr;
  }

  .wins-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid::before {
    display: none;
  }

  .automations-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .benefit-grid--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .case-studies-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .value-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .core-list {
    grid-template-columns: 1fr;
  }

  .comparison-table-wrapper {
    overflow-x: auto;
    position: relative;
  }

  .comparison-table {
    min-width: 600px;
  }

  .audit-card {
    padding: 28px;
  }

  .value-card {
    padding: 40px 28px;
  }
}
