/* === Design System === */
:root {
  --green:        #2d7a4f;
  --green-dark:   #1a4d31;
  --green-light:  #e8f5ee;
  --text:         #1a1a1a;
  --muted:        #6b6b6b;
  --bg:           #f9f7f4;
  --surface:      #ffffff;
  --border:       #e8e4de;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:    0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.10);
}

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/* === Skip to Content (Accessibility) === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--green);
  color: white;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  z-index: 200;
  font-size: 14px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* === Container === */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Section Shared === */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.6;
}

/* === Scroll Animations === */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* === Header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(249, 247, 244, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 24px;
  font-weight: 400;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
  transition: width 0.25s ease;
}

.nav a:hover {
  color: var(--green);
}

.nav a:hover::after {
  width: 100%;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  position: absolute;
  left: 4px;
  transition: 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 7px; }
.menu-toggle span:nth-child(2) { top: 15px; }
.menu-toggle span:nth-child(3) { top: 23px; }

.menu-toggle.active span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

/* === Buttons === */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  text-align: center;
}

.btn-primary {
  background: var(--green);
  color: white;
  border-radius: 50px;
  padding: 14px 28px;
  box-shadow: 0 4px 14px rgba(45, 122, 79, 0.3);
}

.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 6px 20px rgba(45, 122, 79, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(45, 122, 79, 0.3);
}

.btn-secondary {
  border: 1.5px solid var(--green);
  color: var(--green);
  background: transparent;
  border-radius: 50px;
  padding: 14px 28px;
}

.btn-secondary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* === Hero === */
.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-light) 0%, transparent 65%);
  z-index: 0;
  animation: float-bg 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-light) 0%, transparent 65%);
  z-index: 0;
  animation: float-bg 25s ease-in-out infinite reverse;
}

@keyframes float-bg {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 15px); }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  color: var(--text);
}

.hero h1 .highlight {
  color: var(--green);
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-signals {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

.trust-signals span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-signals .check {
  color: var(--green);
  font-weight: 500;
}

/* Phone Mockup */
.hero-phone {
  display: flex;
  justify-content: center;
  animation: float-phone 6s ease-in-out infinite;
}

@keyframes float-phone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.phone-frame {
  width: 260px;
  height: 520px;
  background: var(--text);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(0,0,0,0.05);
  position: relative;
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: var(--text);
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--surface);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
}

.phone-app-header {
  padding: 8px 16px 12px;
  text-align: center;
}

.phone-app-header .app-title {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--text);
}

.phone-score {
  text-align: center;
  padding: 12px 0 16px;
}

.score-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 6px solid var(--green-light);
  border-top-color: var(--green);
  border-right-color: var(--green);
  border-bottom-color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  transform: rotate(45deg);
}

.score-circle span {
  transform: rotate(-45deg);
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--green);
}

.score-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.phone-macros {
  display: flex;
  justify-content: space-around;
  padding: 12px 12px;
}

.macro-item {
  text-align: center;
}

.macro-bar-bg {
  width: 40px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 auto 4px;
  overflow: hidden;
}

.macro-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--green);
}

.macro-label {
  font-size: 9px;
  color: var(--muted);
  font-weight: 500;
}

.macro-value {
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
}

.phone-meals {
  padding: 8px 12px;
}

.phone-meal-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--bg);
  border-radius: 10px;
  margin-bottom: 6px;
}

.meal-emoji {
  font-size: 20px;
}

.meal-info {
  flex: 1;
}

.meal-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
}

.meal-kcal {
  font-size: 10px;
  color: var(--muted);
}

.meal-score-badge {
  font-size: 10px;
  font-weight: 500;
  color: var(--green);
  background: var(--green-light);
  padding: 2px 8px;
  border-radius: 50px;
}

/* === Social Proof / Stats === */
.social-proof {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 16px;
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--green);
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 14px;
  color: var(--muted);
}

/* === Features === */
.features {
  padding: 96px 0;
}

.features > .container > h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 8px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 28px 36px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--green-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrap {
  transform: scale(1.08) rotate(-3deg);
}

.feature-icon {
  font-size: 36px;
  display: block;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* === How It Works === */
.how-it-works {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-it-works > .container > h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 8px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* Connecting line between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 48px;
  left: 23px;
  width: 2px;
  height: calc(100% + 32px - 48px);
  background: linear-gradient(to bottom, var(--green-light), var(--border));
}

/* === Premium === */
.premium {
  padding: 96px 0;
}

.premium > .container > h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 8px;
}

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

/* Comparison Table */
.comparison-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  gap: 0;
  padding: 16px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
}

.comparison-header span:not(:first-child) {
  text-align: center;
}

.comparison-header .premium-label {
  color: var(--green);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  gap: 0;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  align-items: center;
  transition: background 0.15s;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row:hover {
  background: var(--green-light);
}

.comparison-row span:not(:first-child) {
  text-align: center;
  font-size: 18px;
}

.check-yes {
  color: var(--green);
}

.check-no {
  color: var(--border);
}

/* Price Box */
.price-box {
  background: var(--surface);
  border: 2px solid var(--green);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(45, 122, 79, 0.12);
}

.price-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
}

.price-box-title {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  margin-bottom: 24px;
}

.price-option {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.price-option:last-of-type {
  border-bottom: none;
}

.price-option.recommended {
  background: var(--green-light);
  margin: 0 -32px;
  padding: 16px 32px;
  position: relative;
}

.price-label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 4px;
}

.price-value {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--text);
}

.price-value small {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--muted);
}

.badge {
  display: inline-block;
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  margin-left: 8px;
}

.price-box .btn-primary {
  margin-top: 24px;
  width: 100%;
  font-size: 17px;
  padding: 16px 28px;
}

.price-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* === Testimonials === */
.testimonials {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials > .container > h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 8px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.testimonial-stars {
  color: #f5a623;
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 18px;
  font-style: italic;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--green);
}

.author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.author-detail {
  font-size: 12px;
  color: var(--muted);
}

/* === FAQ === */
.faq {
  padding: 96px 0;
}

.faq > .container > h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 8px;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--green);
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.3s ease, background 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              padding 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer p {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* === CTA === */
.cta {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: 40px;
  color: white;
  margin-bottom: 16px;
}

.cta > .container > p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--text);
  padding: 14px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.app-store-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.app-store-badge .apple-icon {
  font-size: 24px;
}

/* === Footer === */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-copy {
  font-size: 14px;
  color: var(--muted);
}

/* === Legal Pages === */
.legal {
  padding: 120px 0 80px;
  max-width: 720px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 40px;
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--text);
}

.legal p,
.legal ul,
.legal li {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.legal ul {
  list-style: none;
  padding: 0;
}

.legal ul li {
  padding: 3px 0;
  padding-left: 18px;
  position: relative;
}

.legal ul li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--green);
}

.legal a {
  color: var(--green);
  text-decoration: underline;
}

.legal a:hover {
  color: var(--green-dark);
}

.legal .meta {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

/* === Responsive === */
@media (min-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .hero-content {
    text-align: left;
  }

  .hero p {
    margin-left: 0;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .trust-signals {
    justify-content: flex-start;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .step:not(:last-child)::after {
    display: none;
  }

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

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

@media (max-width: 767px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .phone-frame {
    width: 220px;
    height: 440px;
  }

  .features > .container > h2,
  .how-it-works > .container > h2,
  .premium > .container > h2,
  .testimonials > .container > h2,
  .faq > .container > h2 {
    font-size: 30px;
  }

  .cta h2 {
    font-size: 28px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr 64px 64px;
    padding: 12px 16px;
    font-size: 13px;
  }
}
