/* ─────────────────────────────────────────────────────────────
   MealCart Design System — v2 Full Repolish
   Palette: sage green bg, dark forest text, warm peach accents
   Fonts: Syne (heads) + Plus Jakarta Sans (body)
───────────────────────────────────────────────────────────── */

:root {
  --bg:           #edf2e8;
  --bg-alt:       #e2ead9;
  --bg-dark:      #1a3a1a;
  --fg:           #1a3a1a;
  --fg-muted:     #4a6a4a;
  --fg-light:     rgba(255,255,255,0.85);
  --accent:       #2d6a2d;
  --accent-light: #d8ecd8;
  --warm:         #c4622a;
  --warm-light:   #f5e6d8;
  --card-bg:      #ffffff;
  --border:       rgba(45,106,45,0.15);
  --shadow-sm:    0 2px 12px rgba(26,58,26,0.08);
  --shadow-md:    0 8px 32px rgba(26,58,26,0.12);
  --shadow-lg:    0 20px 60px rgba(26,58,26,0.16);
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-pill:  999px;
  --heading:      'Syne', sans-serif;
  --body:         'Plus Jakarta Sans', sans-serif;
  --max-w:        1200px;
}

/* ─── RESET ─── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── SHARED UTILITIES ─── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(45,106,45,0.1);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.section-eyebrow.light {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
}

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(237,242,232,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 6vw;
}

.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.navbar-logo-icon { font-size: 22px; }

.navbar-logo-text {
  font-family: var(--heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--fg);
  color: #fff;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.navbar-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 80px 6vw;
  overflow: hidden;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) brightness(0.92);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(237,242,232,0.97) 0%,
    rgba(237,242,232,0.93) 40%,
    rgba(237,242,232,0.6) 65%,
    rgba(237,242,232,0.15) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { max-width: 540px; }

.hero-tag {
  display: inline-block;
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(45,106,45,0.1);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero .lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fg);
  color: #fff;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(26,58,26,0.2);
  margin-bottom: 16px;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(45,106,45,0.3);
}

.micro-copy {
  font-size: 0.85rem;
  color: var(--fg-muted);
  opacity: 0.8;
}

/* ─── HERO PRODUCT CARDS ─── */
.hero-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
  border: 1px solid rgba(45,106,45,0.08);
}

.product-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.product-card-title {
  font-family: var(--heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--fg);
}

.macro-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.meal-plan-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.meal-day {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(45,106,45,0.06);
  font-size: 0.88rem;
}

.meal-day:last-child { border-bottom: none; }

.day-label {
  font-family: var(--heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fg-muted);
  width: 28px;
  flex-shrink: 0;
}

.meal-name { color: var(--fg); }

/* Cart card */
.cart-count {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.cart-items { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--fg-muted);
}

.cart-item.checked { color: var(--fg); }

.cart-check {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  width: 16px;
  flex-shrink: 0;
}

.cart-price {
  margin-left: auto;
  font-weight: 600;
  color: var(--fg);
}

.cart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(45,106,45,0.1);
}

.cart-total {
  font-family: var(--heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
}

.btn-cart {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--body);
  transition: background 0.2s;
}

.btn-cart:hover { background: var(--fg); }

/* ─── PROBLEM ─── */
.problem {
  padding: 100px 6vw;
  background: var(--bg-alt);
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-left h2 {
  font-family: var(--heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--fg);
  letter-spacing: -0.5px;
}

.problem-left p {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.problem-photo {
  margin-top: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.problem-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.85);
}

/* Pain grid */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pain-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pain-icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.pain-card strong {
  display: block;
  font-family: var(--heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}

.pain-card p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin: 0;
}

/* ─── HOW IT WORKS ─── */
.how {
  padding: 100px 6vw;
  background: var(--bg-dark);
  color: #fff;
}

.how-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.how h2 {
  font-family: var(--heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 60px;
  color: #fff;
  text-align: center;
  letter-spacing: -0.5px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step-arrow {
  font-size: 2rem;
  color: rgba(255,255,255,0.25);
  align-self: center;
  padding: 0 12px;
  margin-top: -40px;
}

.step {
  position: relative;
  padding: 32px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
}

.step:hover { background: rgba(255,255,255,0.07); }

.step-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.step-num {
  font-family: var(--heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 12px;
}

.step h3 {
  font-family: var(--heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.step p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.step-photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 4px;
}

.step-photo img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.85);
  transition: filter 0.3s ease;
}

.step:hover .step-photo img { filter: saturate(0.9) brightness(0.95); }

/* ─── DIFFERENCE / COMPARISON ─── */
.difference {
  padding: 100px 6vw;
  background: var(--bg);
}

.difference-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.difference h2 {
  font-family: var(--heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--fg);
  letter-spacing: -0.5px;
}

.difference .subtitle {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 52px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.compare-card {
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--border);
}

.compare-card.old {
  background: #f5f5f0;
}

.compare-card.new {
  background: var(--bg-dark);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.compare-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.compare-card-badge.muted {
  background: rgba(0,0,0,0.06);
  color: #888;
}

.compare-card-badge.green {
  background: rgba(45,106,45,0.15);
  color: #6fcf6f;
}

.thats-us {
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.compare-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.compare-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.compare-card.new ul li { border-bottom-color: rgba(255,255,255,0.07); color: rgba(255,255,255,0.85); }
.compare-card ul li:last-child { border-bottom: none; }

.x-mark { color: #c4a07a; font-weight: 700; flex-shrink: 0; }
.check-mark { color: #6fcf6f; font-weight: 700; flex-shrink: 0; }

/* ─── PRICING ─── */
.pricing {
  padding: 100px 6vw;
  background: var(--bg-alt);
}

.pricing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.pricing h2 {
  font-family: var(--heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--fg);
  letter-spacing: -0.5px;
}

.pricing .subtitle {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 56px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: left;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  background: var(--bg-dark);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.pricing-card.featured:hover { transform: translateY(-12px); }

.pricing-badge {
  display: inline-block;
  font-family: var(--heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  background: var(--accent);
  color: #fff;
}

.pricing-badge.save { background: var(--warm); }

.pricing-tier {
  font-family: var(--heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.6); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.price-amount {
  font-family: var(--heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.pricing-card.featured .price-amount { color: #fff; }

.price-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.pricing-card.featured .price-period { color: rgba(255,255,255,0.5); }

.pricing-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-note { color: rgba(255,255,255,0.5); }

.pricing-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.8); }

.btn-pricing {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-pricing.outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--fg);
}

.btn-pricing.outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.btn-pricing.solid {
  background: var(--accent);
  color: #fff;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(45,106,45,0.3);
}

.btn-pricing.solid:hover {
  background: #3d8a3d;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(45,106,45,0.4);
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 100px 6vw;
  background: var(--bg);
}

.testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.testimonials h2 {
  font-family: var(--heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--fg);
  letter-spacing: -0.5px;
}

.testimonials .subtitle {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-light);
  margin-bottom: 12px;
  color: var(--accent);
  opacity: 0.2;
}

.quote-text {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--accent-light);
}

.author-info strong {
  display: block;
  font-family: var(--heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* ─── CLOSING CTA ─── */
.closing {
  position: relative;
  padding: 120px 6vw;
  background: var(--bg-dark);
  text-align: center;
  overflow: hidden;
}

.closing-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.closing-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.4);
}

.closing-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,58,26,0.85) 0%,
    rgba(26,58,26,0.75) 100%
  );
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: -1px;
}

.closing p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.btn-closing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--fg);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  margin-bottom: 28px;
}

.btn-closing:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

.closing-footnote {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
  margin-top: 0;
}

/* ─── FOOTER ─── */
.footer {
  background: #0f1f0f;
  padding: 32px 6vw;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-icon { font-size: 18px; }

.footer-logo-text {
  font-family: var(--heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .step-arrow { display: none; }
  .pricing-grid { gap: 16px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }

  .hero {
    padding: 60px 20px 80px;
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-photo-overlay {
    background: linear-gradient(
      180deg,
      rgba(237,242,232,0.97) 60%,
      rgba(237,242,232,0.8) 100%
    );
  }
  .hero-card-wrap { display: none; }

  .problem,
  .how,
  .difference,
  .pricing,
  .testimonials,
  .closing { padding: 70px 20px; }

  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .pain-grid { grid-template-columns: 1fr 1fr; }

  .how h2 { margin-bottom: 36px; }

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

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

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

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.1rem; letter-spacing: -1px; }
  .pain-grid { grid-template-columns: 1fr; }
  .navbar-logo-text { font-size: 1rem; }
}
