:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE8DD;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --sage: #6B8F71;
  --sage-light: #8AAB8E;
  --amber: #C8973E;
  --amber-light: #E8C076;
  --charcoal: #2A2A2A;
  --white: #FFFFFF;
  --border: rgba(42,42,42,0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 40px 80px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,143,113,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,151,62,0.12) 0%, transparent 70%);
  bottom: 0; left: 20%;
}

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

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(107,143,113,0.1);
  border: 1px solid rgba(107,143,113,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.7;
}

/* PHONE MOCKUP */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.phone-mockup {
  background: var(--white);
  border-radius: 32px;
  padding: 4px;
  box-shadow: 0 20px 60px rgba(42,42,42,0.12), 0 4px 16px rgba(42,42,42,0.06);
  max-width: 360px;
  margin: 0 auto;
}

.phone-screen {
  background: var(--bg);
  border-radius: 28px;
  padding: 20px;
  min-height: 380px;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.mockup-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.mockup-info { flex: 1; }
.mockup-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 15px; }
.mockup-sub { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }

.mockup-feed { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }

.feed-item { display: flex; gap: 10px; align-items: flex-start; }
.feed-dot { width: 8px; height: 8px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.dot-mom { background: var(--sage); }
.dot-dad { background: var(--amber); }
.dot-sis { background: #9B7BB8; }

.feed-content { flex: 1; }
.feed-author { font-size: 12px; font-weight: 600; color: var(--charcoal); }
.feed-text { font-size: 13px; color: var(--fg); margin-top: 2px; line-height: 1.4; }
.feed-time { font-size: 11px; color: var(--fg-muted); margin-top: 3px; }

.mockup-action { margin-top: 4px; }
.action-btn {
  background: var(--sage);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 14px;
  text-align: center;
  letter-spacing: 0.01em;
}

/* STAT CARDS */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 16px 14px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(42,42,42,0.07);
  border: 1px solid var(--border);
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 6px;
  line-height: 1.4;
}

/* HOW IT WORKS */
.how-it-works {
  background: var(--white);
  padding: 100px 40px;
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--charcoal);
  margin-bottom: 64px;
  font-weight: 600;
}

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

.step-card {
  position: relative;
  padding-top: 56px;
}

.step-number {
  position: absolute;
  top: 0; left: 0;
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--bg-alt);
  line-height: 1;
  letter-spacing: -0.02em;
}

.step-icon {
  width: 56px; height: 56px;
  background: var(--bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  font-family: 'Fraunces', serif;
}

.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* FEATURE SECTIONS */
.feature-section {
  padding: 100px 40px;
}

.feature-section .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-section .section-inner.reverse {
  direction: rtl;
}
.feature-section .section-inner.reverse > * {
  direction: ltr;
}

.feature-content {}

.feature-headline {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--charcoal);
  margin-bottom: 20px;
}

.feature-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  font-size: 15px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

/* CALENDAR MOCKUP */
.calendar-mockup {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 48px rgba(42,42,42,0.1), 0 4px 16px rgba(42,42,42,0.05);
  border: 1px solid var(--border);
}

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

.cal-month {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
}

.cal-nav { display: flex; gap: 6px; }
.cal-nav-btn {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--fg-muted);
  cursor: pointer;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.cal-day-header {
  font-size: 10px;
  font-weight: 600;
  color: var(--fg-muted);
  text-align: center;
  padding: 4px 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cal-day {
  aspect-ratio: 1;
  border-radius: 10px;
  padding: 6px;
  font-size: 12px;
  color: var(--fg-muted);
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: var(--bg);
}

.cal-day.empty { background: transparent; }

.cal-num { font-weight: 600; color: var(--charcoal); font-size: 12px; }

.cal-event {
  font-size: 9px;
  padding: 2px 5px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-cardiologist { background: rgba(107,143,113,0.15); color: var(--sage); }
.event-physical { background: rgba(200,151,62,0.15); color: var(--amber); }
.event-med-refill { background: rgba(107,143,113,0.1); color: var(--sage); }
.event-sister { background: rgba(155,123,184,0.15); color: #7A5A9E; }

.cal-legend {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--fg-muted);
}

.legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.dot-cardiologist { background: var(--sage); }
.dot-physical { background: var(--amber); }
.dot-med-refill { background: var(--sage-light); }
.dot-sister { background: #9B7BB8; }

/* VAULT MOCKUP */
.vault-mockup {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 48px rgba(42,42,42,0.1), 0 4px 16px rgba(42,42,42,0.05);
  border: 1px solid var(--border);
  max-width: 420px;
  margin: 0 auto;
}

.vault-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.vault-lock {
  width: 32px; height: 32px;
  background: rgba(107,143,113,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
}

.vault-title {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  flex: 1;
}

.vault-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(107,143,113,0.1);
  color: var(--sage);
  padding: 4px 10px;
  border-radius: 100px;
}

.vault-folders {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vault-folder {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid transparent;
}

.vault-folder-active {
  background: rgba(107,143,113,0.08);
  border-color: rgba(107,143,113,0.2);
}

.folder-icon { color: var(--sage); flex-shrink: 0; }

.folder-info { flex: 1; }
.folder-name { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.folder-count { font-size: 11px; color: var(--fg-muted); margin-top: 2px; }

.folder-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
}
.badge-ready {
  background: var(--sage);
  color: white;
}

.vault-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--fg-muted);
  text-align: center;
}

/* VAULT ITEMS */
.vault-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.vault-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.vault-icon {
  width: 36px; height: 36px;
  background: var(--bg-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.vault-item-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3px;
}

.vault-item-desc {
  font-size: 13px;
  color: var(--fg-muted);
}

/* CLOSING */
.closing-section {
  padding: 100px 40px 80px;
  background: var(--charcoal);
  color: white;
}

.closing-section .section-inner {
  max-width: 800px;
}

.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 32px;
  border-left: 3px solid var(--sage);
  padding-left: 28px;
}

.manifesto-body {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.closing-rule {
  margin: 60px 0;
}

.rule-line {
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.closing-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: white;
  text-align: center;
}

/* FOOTER */
.site-footer {
  background: var(--charcoal);
  padding: 40px 40px 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer .section-inner {
  max-width: 1100px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

.footer-meta {
  margin-bottom: 20px;
}

.footer-meta p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  max-width: 480px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-links span,
.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links span:hover,
.footer-link:hover { color: rgba(255,255,255,0.8); }
.footer-sep { font-size: 13px; color: rgba(255,255,255,0.2); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* TIMELINE SECTION */
.timeline-section { background: var(--bg-alt); }
.vault-section { background: var(--bg); }

/* NAV */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--charcoal); }

.nav-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}
.store-badge img {
  height: 34px;
  width: auto;
  display: block;
}

.nav-login {
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 10px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-login:hover { color: var(--charcoal); }

.nav-signup {
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 10px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s ease;
  border: none;
}
.btn-primary {
  background: var(--sage);
  color: white;
  padding: 14px 28px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(107,143,113,0.3);
}
.btn-primary:hover {
  background: var(--sage-light);
  box-shadow: 0 6px 20px rgba(107,143,113,0.4);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--white);
  color: var(--charcoal);
  padding: 14px 28px;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 12px rgba(42,42,42,0.06);
}
.btn-secondary:hover {
  border-color: rgba(42,42,42,0.25);
  box-shadow: 0 6px 16px rgba(42,42,42,0.1);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--fg-muted);
  padding: 8px 0;
}
.btn-ghost:hover { color: var(--charcoal); }

.btn-outline-white {
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--bg-alt);
  padding: 100px 40px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(42,42,42,0.06);
}
.testimonial-quote {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 24px;
}
.testimonial-quote::before { content: '\u201C'; }
.testimonial-quote::after  { content: '\u201D'; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--sage);
  flex-shrink: 0;
}
.testimonial-meta { flex: 1; }
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.testimonial-detail { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}
.star { color: var(--amber); font-size: 14px; }

/* PRICING */
.pricing-section {
  background: var(--white);
  padding: 100px 40px;
  position: relative;
}
.pricing-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 56px auto 0;
}
.pricing-card {
  border-radius: 24px;
  padding: 40px;
  border: 1.5px solid var(--border);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--sage);
  box-shadow: 0 8px 32px rgba(107,143,113,0.15);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.pricing-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.55;
}
.pricing-price {
  margin-bottom: 28px;
}
.pricing-amount {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.pricing-amount .pricing-period {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--fg-muted);
  vertical-align: baseline;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 24px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
  font-size: 13px;
  top: 1px;
}
.pricing-features li.disabled {
  color: var(--fg-muted);
  opacity: 0.55;
}
.pricing-features li.disabled::before { content: '—'; color: var(--fg-muted); }
.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s ease;
  border: none;
}
.pricing-cta.primary {
  background: var(--sage);
  color: white;
  box-shadow: 0 4px 16px rgba(107,143,113,0.3);
}
.pricing-cta.primary:hover {
  background: var(--sage-light);
  box-shadow: 0 6px 20px rgba(107,143,113,0.4);
  transform: translateY(-1px);
}
.pricing-cta.secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--border);
}
.pricing-cta.secondary:hover {
  border-color: rgba(42,42,42,0.3);
  box-shadow: 0 4px 12px rgba(42,42,42,0.08);
}

/* CLOSING CTA */
.closing-cta-wrap {
  text-align: center;
  margin-bottom: 60px;
}
.closing-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* MOBILE */
/* MOBILE */
@media (max-width: 900px) {
  .nav-badges { display: none; }
}

@media (max-width: 768px) {
  .site-nav { }
  .nav-inner { padding: 0 20px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(245, 240, 232, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 4px;
    box-shadow: 0 16px 40px rgba(42,42,42,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 15px; padding: 10px 0; }
  .nav-login { text-align: center; padding: 10px 0 !important; }
  .nav-signup { text-align: center; margin-top: 4px; }
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    flex-shrink: 0;
  }
  .nav-hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.25s ease;
  }
  .nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.active span:nth-child(2) { opacity: 0; }
  .nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero { padding: 80px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-section .section-inner { grid-template-columns: 1fr; gap: 40px; }
  .feature-section .section-inner.reverse { direction: ltr; }
  .how-it-works { padding: 72px 24px; }
  .feature-section { padding: 72px 24px; }
  .closing-section { padding: 72px 24px 60px; }
  .testimonials-section { padding: 72px 24px; }
  .pricing-section { padding: 72px 24px; }
  .hero-headline { font-size: 42px; }
  .section-headline br { display: none; }
}