
    :root {
      --sage: #8fae8b;
      --sage-deep: #5a7d56;
      --sage-light: #d4e4d2;
      --sage-muted: #b8cebb;
      --cream: #f5f0e8;
      --cream-warm: #ede5d8;
      --cream-deep: #e2d8c8;
      --dusty-rose: #d4a0a0;
      --dusty-rose-light: #f0dede;
      --dusty-rose-deep: #b87878;
      --charcoal: #2e2a26;
      --charcoal-light: #4a4540;
      --bg: #faf8f4;
      --bg-warm: #f7f3ed;
      --surface: #ffffff;
      --text-primary: #2e2a26;
      --text-secondary: #5a554e;
      --text-muted: #8a847c;
      --border: #e8e2da;
      --border-light: #f0ebe4;
    }

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

    html { scroll-behavior: smooth; font-size: 17px; }

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

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
    }

    /* NAV */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 18px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(250, 248, 244, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(232, 226, 218, 0.5);
      transition: all 0.4s ease;
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      font-weight: 300;
      letter-spacing: 6px;
      text-transform: uppercase;
      color: var(--sage-deep);
      text-decoration: none;
    }

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

    .nav-links a {
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 1px;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .nav-links a:hover { color: var(--sage-deep); }

    .nav-cta {
      padding: 10px 24px;
      background: var(--sage-deep);
      color: #fff !important;
      border-radius: 28px;
      font-size: 15px !important;
      font-weight: 600 !important;
      transition: all 0.3s ease !important;
    }

    .nav-cta:hover {
      background: var(--charcoal) !important;
      color: #fff !important;
      transform: translateY(-1px);
    }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .nav-hamburger span {
      width: 22px; height: 2px;
      background: var(--charcoal);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      padding: 140px 40px 100px;
      overflow: hidden;
      background: linear-gradient(170deg, var(--bg) 0%, var(--cream) 50%, var(--sage-light) 100%);
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -15%; right: -10%;
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(143,174,139,0.12) 0%, transparent 70%);
      animation: floatSlow 20s ease-in-out infinite;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -20%; left: -5%;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212,160,160,0.08) 0%, transparent 70%);
      animation: floatSlow 25s ease-in-out infinite reverse;
    }

    @keyframes floatSlow {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(30px, -20px); }
    }

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

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

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: rgba(90,125,86,0.1);
      border: 1px solid rgba(90,125,86,0.2);
      border-radius: 24px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--sage-deep);
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.2s forwards;
    }

    .hero-badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--sage-deep);
      animation: pulse 2s ease infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.3); }
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(46px, 5.5vw, 74px);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -0.5px;
      color: var(--charcoal);
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.4s forwards;
    }

    .hero h1 em { font-style: normal; color: var(--sage-deep); font-weight: 400; }

    .hero-sub {
      font-size: 21px;
      line-height: 1.7;
      color: var(--text-secondary);
      margin-bottom: 36px;
      max-width: 460px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.6s forwards;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.8s forwards;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 36px;
      background: var(--sage-deep);
      color: #fff;
      border: none;
      border-radius: 32px;
      font-family: 'DM Sans', sans-serif;
      font-size: 17px;
      font-weight: 600;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: all 0.35s ease;
      text-decoration: none;
    }

    .btn-primary:hover {
      background: var(--charcoal);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(46,42,38,0.15);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 28px;
      background: transparent;
      color: var(--text-secondary);
      border: 1.5px solid var(--border);
      border-radius: 32px;
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.35s ease;
      text-decoration: none;
    }

    .btn-secondary:hover {
      border-color: var(--sage);
      color: var(--sage-deep);
      background: rgba(143,174,139,0.05);
    }

    .hero-proof {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 40px;
      padding-top: 28px;
      border-top: 1px solid var(--border-light);
      opacity: 0;
      animation: fadeUp 0.8s ease 1s forwards;
    }

    .hero-proof-item { text-align: center; }

    .hero-proof-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 600;
      color: var(--sage-deep);
      line-height: 1;
    }

    .hero-proof-label {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 1px;
      color: var(--text-muted);
      margin-top: 4px;
    }

    .hero-proof-divider { width: 1px; height: 36px; background: var(--border); }

    .hero-visual {
      position: relative;
      opacity: 0;
      animation: fadeUp 1s ease 0.6s forwards;
    }

    .hero-phone {
      width: 320px; height: 640px;
      background: var(--surface);
      border-radius: 36px;
      border: 1px solid var(--border);
      box-shadow: 0 30px 80px rgba(46,42,38,0.1), 0 10px 30px rgba(46,42,38,0.05);
      margin: 0 auto;
      padding: 20px;
      position: relative;
      overflow: hidden;
    }

    .phone-notch {
      width: 100px; height: 28px;
      background: var(--bg);
      border-radius: 0 0 16px 16px;
      margin: -20px auto 16px;
      position: relative;
      z-index: 2;
    }

    .phone-greeting {
      font-family: 'Cormorant Garamond', serif;
      font-size: 25px;
      font-weight: 400;
      color: var(--charcoal);
      margin-bottom: 4px;
    }

    .phone-date { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }

    .phone-card {
      background: var(--cream);
      border-radius: 16px;
      padding: 16px;
      margin-bottom: 12px;
    }

    .phone-card-title {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--sage-deep);
      margin-bottom: 12px;
    }

    .phone-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

    .phone-metric {
      background: var(--surface);
      border-radius: 12px;
      padding: 12px;
      text-align: center;
    }

    .phone-metric-icon { font-size: 21px; margin-bottom: 4px; }

    .phone-metric-val {
      font-family: 'DM Mono', monospace;
      font-size: 18px;
      font-weight: 400;
      color: var(--charcoal);
    }

    .phone-metric-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

    .phone-score { display: flex; align-items: center; gap: 16px; padding: 14px; }

    .phone-score-ring {
      width: 56px; height: 56px;
      border-radius: 50%;
      border: 4px solid var(--sage-light);
      border-top-color: var(--sage-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'DM Mono', monospace;
      font-size: 18px;
      font-weight: 400;
      color: var(--sage-deep);
    }

    .phone-score-text { font-size: 15px; color: var(--text-secondary); line-height: 1.4; }
    .phone-score-text strong { color: var(--sage-deep); }

    .phone-msg {
      background: var(--sage-light);
      border-radius: 12px;
      padding: 12px 16px;
      font-size: 15px;
      color: var(--sage-deep);
      text-align: center;
      margin-top: 4px;
    }

    .hero-floating {
      position: absolute;
      border-radius: 16px;
      padding: 14px 18px;
      background: var(--surface);
      border: 1px solid var(--border-light);
      box-shadow: 0 8px 30px rgba(46,42,38,0.06);
      font-size: 14px;
      font-weight: 500;
      color: var(--text-secondary);
      display: flex;
      align-items: center;
      gap: 8px;
      animation: float 6s ease-in-out infinite;
    }

    .hero-floating-1 { top: 60px; right: -20px; }
    .hero-floating-2 { bottom: 120px; left: -30px; animation-delay: -2s; }

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

    .floating-icon { font-size: 23px; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* SECTIONS */
    .section { padding: 120px 40px; position: relative; }
    .section-inner { max-width: 1100px; margin: 0 auto; }

    .section-label {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(37px, 4vw, 55px);
      font-weight: 300;
      line-height: 1.15;
      color: var(--charcoal);
      margin-bottom: 16px;
    }

    .section-title em { font-style: normal; color: var(--sage-deep); font-weight: 400; }

    .section-desc {
      font-size: 20px;
      line-height: 1.7;
      color: var(--text-secondary);
      max-width: 580px;
      margin-bottom: 48px;
    }

    /* PROBLEM */
    .problem { background: var(--cream); }

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

    .problem-stat {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 28px;
    }

    .problem-stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 64px;
      font-weight: 300;
      color: var(--dusty-rose-deep);
      line-height: 1;
      min-width: 80px;
    }

    .problem-stat-text {
      font-size: 17px;
      color: var(--text-secondary);
      line-height: 1.6;
      padding-top: 10px;
    }

    .problem-quote {
      background: var(--surface);
      border-left: 3px solid var(--dusty-rose);
      border-radius: 0 16px 16px 0;
      padding: 28px 32px;
      margin-top: 32px;
    }

    .problem-quote p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 25px;
      font-style: italic;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    .problem-visual {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 32px;
      position: relative;
    }

    .problem-visual-title {
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--dusty-rose-deep);
      margin-bottom: 24px;
    }

    .problem-comparison {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .problem-col-header {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-align: center;
      padding: 10px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .problem-col-baby .problem-col-header { background: var(--sage-light); color: var(--sage-deep); }
    .problem-col-mom .problem-col-header { background: var(--dusty-rose-light); color: var(--dusty-rose-deep); }

    .problem-check, .problem-cross {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      padding: 8px 0;
      border-bottom: 1px solid var(--border-light);
    }

    .problem-check { color: var(--sage-deep); }
    .problem-cross { color: var(--text-muted); }
    .problem-check-icon { color: var(--sage); font-weight: 700; }
    .problem-cross-icon { color: var(--dusty-rose); font-weight: 700; }

    .problem-vs {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: var(--surface);
      border: 1px solid var(--border);
      width: 36px; height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      color: var(--text-muted);
      z-index: 2;
    }

    /* FEATURES */
    .solution { background: linear-gradient(180deg, var(--bg) 0%, var(--cream) 100%); }

    .solution-hero { text-align: center; margin-bottom: 60px; }
    .solution-hero .section-desc { margin: 0 auto 0; }

    .feature-tabs {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .feature-tab {
      padding: 10px 24px;
      border-radius: 24px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.5px;
      cursor: pointer;
      border: 1.5px solid var(--border);
      background: var(--surface);
      color: var(--text-muted);
      transition: all 0.3s ease;
    }

    .feature-tab.active,
    .feature-tab:hover {
      background: var(--sage-deep);
      color: #fff;
      border-color: var(--sage-deep);
    }

    .feature-showcase {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 24px;
      overflow: hidden;
    }

    .feature-panel { display: none; padding: 48px; }
    .feature-panel.active { display: block; }

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

    .feature-panel-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 37px;
      font-weight: 400;
      color: var(--charcoal);
      margin-bottom: 12px;
    }

    .feature-panel-desc {
      font-size: 17px;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .feature-list { list-style: none; padding: 0; }

    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--border-light);
      font-size: 16px;
      color: var(--text-secondary);
    }

    .feature-list li:last-child { border-bottom: none; }

    .feature-list-icon {
      width: 28px; height: 28px;
      border-radius: 8px;
      background: var(--sage-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .feature-visual { background: var(--cream); border-radius: 20px; padding: 32px; }

    .fv-card {
      background: var(--surface);
      border-radius: 16px;
      padding: 20px;
      margin-bottom: 12px;
      border: 1px solid var(--border-light);
    }

    .fv-card:last-child { margin-bottom: 0; }

    .fv-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .fv-card-title {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--sage-deep);
    }

    .fv-card-time {
      font-family: 'DM Mono', monospace;
      font-size: 13px;
      color: var(--text-muted);
    }

    .fv-slider {
      width: 100%;
      height: 6px;
      border-radius: 3px;
      background: var(--border-light);
      position: relative;
      margin: 12px 0 6px;
    }

    .fv-slider-fill {
      height: 100%;
      border-radius: 3px;
      background: linear-gradient(90deg, var(--sage), var(--sage-deep));
    }

    .fv-slider-labels {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-muted);
    }

    .fv-emoji-row { display: flex; gap: 8px; margin-top: 8px; }

    .fv-emoji {
      width: 40px; height: 40px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 23px;
      background: var(--bg);
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .fv-emoji.selected { border-color: var(--sage); background: var(--sage-light); }

    .fv-quick-btns { display: flex; gap: 8px; margin-top: 8px; }

    .fv-quick-btn {
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      background: var(--sage-light);
      color: var(--sage-deep);
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .fv-quick-btn:hover { background: var(--sage-deep); color: #fff; }

    /* DASHBOARD SECTION */
    .dashboard-section {
      background: var(--charcoal);
      color: #f0ece4;
      overflow: hidden;
    }

    .dashboard-section .section-label { color: var(--sage-muted); }
    .dashboard-section .section-title { color: #f0ece4; }
    .dashboard-section .section-title em { color: var(--sage); }
    .dashboard-section .section-desc { color: #a09a92; }

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

    .dash-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      padding: 28px;
      transition: all 0.3s ease;
    }

    .dash-card:hover {
      background: rgba(255,255,255,0.06);
      border-color: rgba(143,174,139,0.2);
    }

    .dash-card-icon { font-size: 28px; margin-bottom: 12px; }
    .dash-card-title { font-size: 17px; font-weight: 600; color: #f0ece4; margin-bottom: 6px; }
    .dash-card-desc { font-size: 15px; color: #8a847c; line-height: 1.6; }

    .dash-card-full {
      grid-column: 1 / -1;
      background: linear-gradient(135deg, rgba(90,125,86,0.15), rgba(143,174,139,0.08));
      border-color: rgba(143,174,139,0.2);
      text-align: center;
      padding: 40px;
    }

    .dash-card-full .dash-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 400;
      color: var(--sage);
      margin-bottom: 8px;
    }

    /* PRIVACY */
    .privacy { background: var(--bg); }

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

    .privacy-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .privacy-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(46,42,38,0.06);
      border-color: var(--sage-muted);
    }

    .privacy-card-icon {
      width: 56px; height: 56px;
      border-radius: 16px;
      background: var(--sage-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin: 0 auto 16px;
    }

    .privacy-card-title { font-size: 17px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
    .privacy-card-desc { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

    .privacy-no-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: 48px;
    }

    .privacy-no-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 24px;
      font-size: 15px;
      font-weight: 500;
      color: var(--text-secondary);
    }

    .privacy-no-x { color: var(--dusty-rose); font-weight: 700; }

    /* HOW IT WORKS */
    .how-it-works { background: var(--cream); }

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

    .step-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 24px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(46,42,38,0.06); }

    .step-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 55px;
      font-weight: 300;
      color: var(--sage-light);
      line-height: 1;
      margin-bottom: 12px;
    }

    .step-icon { font-size: 32px; margin-bottom: 12px; }
    .step-title { font-size: 17px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
    .step-desc { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

    /* PRICING */
    .pricing { background: var(--bg); }

    .pricing-card {
      max-width: 520px;
      margin: 0 auto;
      background: var(--surface);
      border: 2px solid var(--sage);
      border-radius: 28px;
      padding: 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .pricing-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--sage), var(--sage-deep));
    }

    .pricing-badge {
      display: inline-block;
      padding: 6px 16px;
      background: var(--sage-light);
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--sage-deep);
      margin-bottom: 20px;
    }

    .pricing-amount {
      font-family: 'Cormorant Garamond', serif;
      font-size: 83px;
      font-weight: 300;
      color: var(--charcoal);
      line-height: 1;
      margin-bottom: 4px;
    }

    .pricing-amount sup { font-size: 37px; top: -16px; }

    .pricing-period { font-size: 17px; color: var(--text-muted); margin-bottom: 32px; }
    .pricing-period strong { color: var(--sage-deep); }

    .pricing-features { list-style: none; padding: 0; margin-bottom: 36px; text-align: left; }

    .pricing-features li {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      font-size: 16px;
      color: var(--text-secondary);
      border-bottom: 1px solid var(--border-light);
    }

    .pricing-features li:last-child { border-bottom: none; }
    .pricing-check { color: var(--sage-deep); font-weight: 700; font-size: 18px; }

    .pricing-comparison {
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
    }

    .pricing-comparison-title {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    .pricing-comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .pricing-comp-col { border-radius: 12px; padding: 16px; text-align: center; }
    .pricing-comp-nurtura { background: var(--sage-light); }
    .pricing-comp-others { background: var(--cream); }

    .pricing-comp-label {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .pricing-comp-nurtura .pricing-comp-label { color: var(--sage-deep); }
    .pricing-comp-others .pricing-comp-label { color: var(--text-muted); }

    .pricing-comp-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 600;
      color: var(--charcoal);
    }

    .pricing-comp-note { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

    /* TESTIMONIALS */
    .testimonials { background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%); }

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

    .testimonial-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px;
      transition: all 0.3s ease;
    }

    .testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(46,42,38,0.06); }

    .testimonial-stars { color: var(--sage); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }

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

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

    .testimonial-avatar-img {
      width: 40px; height: 40px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }

    .testimonial-name { font-size: 15px; font-weight: 600; color: var(--charcoal); }
    .testimonial-role { font-size: 14px; color: var(--text-muted); }

    /* RESOURCES */
    .resources { background: var(--bg); }

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

    .resource-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      transition: all 0.3s ease;
      text-decoration: none;
      color: inherit;
    }

    .resource-card:hover {
      border-color: var(--sage-muted);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(46,42,38,0.04);
    }

    .resource-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: var(--sage-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 23px;
      flex-shrink: 0;
    }

    .resource-title { font-size: 16px; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
    .resource-desc { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

    /* FINAL CTA */
    .final-cta {
      background: linear-gradient(160deg, #3a5040 0%, #2e3e32 40%, #2a2e28 100%);
      color: #f0ece4;
      text-align: center;
      padding: 120px 40px;
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      top: -30%; right: -10%;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(143,174,139,0.1) 0%, transparent 70%);
    }

    .final-cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }

    .final-cta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(41px, 5vw, 64px);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .final-cta-title em { font-style: normal; color: var(--sage); font-weight: 400; }

    .final-cta-desc { font-size: 20px; color: #a09a92; line-height: 1.7; margin-bottom: 36px; }

    .final-cta .btn-primary { background: var(--sage); padding: 18px 44px; font-size: 18px; }
    .final-cta .btn-primary:hover { background: #f0ece4; color: var(--charcoal); }

    .final-cta-trust {
      display: flex;
      justify-content: center;
      gap: 28px;
      margin-top: 32px;
    }

    .final-cta-trust-item {
      font-size: 14px;
      color: #7a7570;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* FOOTER */
    .footer { background: #1a1e18; color: #7a7570; padding: 60px 40px 40px; }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
    }

    .footer-brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 300;
      letter-spacing: 6px;
      text-transform: uppercase;
      color: var(--sage-muted);
      margin-bottom: 12px;
    }

    .footer-brand-desc { font-size: 15px; line-height: 1.6; color: #5a5550; max-width: 280px; }

    .footer-social {
      margin-top: 16px;
      display: flex;
      gap: 12px;
    }

    .footer-social a {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 16px;
      transition: background 0.3s ease;
    }

    .footer-social a:hover { background: rgba(143,174,139,0.2); }

    .footer-col-title {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #8a847c;
      margin-bottom: 16px;
    }

    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 10px; }

    .footer-links a {
      font-size: 15px;
      color: #5a5550;
      text-decoration: none;
      transition: color 0.3s ease;
      cursor: pointer;
    }

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

    .footer-bottom {
      max-width: 1100px;
      margin: 40px auto 0;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      color: #4a4540;
    }

    /* MODAL SYSTEM */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(46,42,38,0.5);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 2000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .modal-overlay.active { opacity: 1; pointer-events: all; }

    .modal {
      position: fixed;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%) scale(0.95);
      width: 680px;
      max-width: 92vw;
      max-height: 85vh;
      background: var(--surface);
      border-radius: 24px;
      z-index: 2001;
      opacity: 0;
      pointer-events: none;
      transition: all 0.35s ease;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .modal.modal-wide { width: 760px; }

    .modal.active {
      opacity: 1;
      pointer-events: all;
      transform: translate(-50%, -50%) scale(1);
    }

    .modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 32px;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }

    .modal-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 400;
      color: var(--charcoal);
      margin: 0;
    }

    .modal-close {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--bg);
      font-size: 23px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      transition: all 0.2s ease;
    }

    .modal-close:hover { background: var(--cream); color: var(--charcoal); }

    .modal-body { padding: 32px; overflow-y: auto; flex: 1; }

    .modal-intro {
      font-size: 17px;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

    .help-card { background: var(--bg); border-radius: 16px; padding: 24px; }
    .help-card h4 { margin-top: 0; margin-bottom: 10px; font-size: 17px; color: var(--charcoal); }
    .help-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 10px; }
    .help-card ul { list-style: none; padding: 0; margin: 10px 0; }

    .help-card li {
      font-size: 15px;
      color: var(--text-secondary);
      padding: 4px 0 4px 18px;
      position: relative;
    }

    .help-card li::before { content: '•'; position: absolute; left: 4px; color: var(--sage); }

    .help-card-icon { font-size: 28px; margin-bottom: 12px; }
    .help-steps { margin-top: 12px; }

    .help-step {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 15px;
      color: var(--text-secondary);
      padding: 6px 0;
    }

    .help-step span {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--sage-light);
      color: var(--sage-deep);
      font-size: 13px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

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

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      cursor: pointer;
      font-size: 17px;
      font-weight: 500;
      color: var(--charcoal);
      transition: color 0.2s ease;
    }

    .faq-question:hover { color: var(--sage-deep); }
    .faq-arrow { font-size: 23px; color: var(--text-muted); transition: transform 0.3s ease; }
    .faq-item.open .faq-arrow { transform: rotate(90deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 18px; }

    .faq-answer p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin: 0; }

    .install-section { margin-bottom: 28px; }
    .install-section h3 { font-size: 18px; font-weight: 600; color: var(--charcoal); margin-bottom: 14px; margin-top: 0; }

    .install-steps { background: var(--bg); border-radius: 16px; padding: 20px; }

    .install-step {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 10px 0;
      font-size: 16px;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .install-step:not(:last-child) { border-bottom: 1px solid var(--border-light); }

    .install-step-num {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--sage-deep);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .install-note {
      background: var(--sage-light);
      border-radius: 12px;
      padding: 18px 20px;
      margin-top: 24px;
    }

    .install-note p { font-size: 15px; color: var(--sage-deep); line-height: 1.6; margin: 0; }

    .legal-content h3 { font-size: 18px; font-weight: 600; color: var(--charcoal); margin-top: 28px; margin-bottom: 10px; }
    .legal-content h3:first-of-type { margin-top: 0; }

    .legal-content p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }

    .legal-content ul { list-style: none; padding: 0; margin: 12px 0; }

    .legal-content li {
      font-size: 16px;
      color: var(--text-secondary);
      padding: 5px 0 5px 20px;
      position: relative;
      line-height: 1.6;
    }

    .legal-content li::before { content: '•'; position: absolute; left: 4px; color: var(--sage); font-weight: 700; }

    .legal-content a { color: var(--sage-deep); text-decoration: none; }
    .legal-content a:hover { text-decoration: underline; }

    .legal-updated {
      font-family: 'DM Mono', monospace;
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: 60px; }
      .hero-visual { order: -1; }
      .hero-phone { width: 280px; height: 560px; }
      .hero-floating { display: none; }
      .problem-grid { grid-template-columns: 1fr; gap: 40px; }
      .feature-panel-grid { grid-template-columns: 1fr; }
      .dashboard-grid { grid-template-columns: 1fr; }
      .privacy-grid { grid-template-columns: 1fr 1fr; }
      .steps-grid { grid-template-columns: 1fr 1fr; }
      .testimonials-grid { grid-template-columns: 1fr 1fr; }
      .resources-grid { grid-template-columns: 1fr 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .nav { padding: 14px 20px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .hero { padding: 120px 20px 80px; }
      .section { padding: 80px 20px; }
      .hero-phone { width: 260px; height: 520px; }
      .privacy-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .resources-grid { grid-template-columns: 1fr; }
      .pricing-comp-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
      .problem-comparison { grid-template-columns: 1fr; gap: 24px; }
      .problem-vs { display: none; }
      .feature-tabs { gap: 6px; }
      .feature-tab { padding: 8px 16px; font-size: 14px; }
      .feature-panel { padding: 28px 20px; }
      .hero-proof { flex-wrap: wrap; justify-content: center; }
      .final-cta-trust { flex-direction: column; align-items: center; gap: 12px; }
      .pricing-card { padding: 32px 24px; }
      .modal { max-width: 96vw; max-height: 90vh; border-radius: 20px; }
      .modal-header { padding: 18px 20px; }
      .modal-body { padding: 20px; }
      .help-grid { grid-template-columns: 1fr; }
    }
  
/* --- Mobile refinements --- */
@media (max-width: 768px) {
  body { line-height: 1.65; }
  .hero { padding: 112px 18px 64px; min-height: auto; }
  .hero-inner { gap: 40px; }
  .hero h1 { font-size: clamp(34px, 8.5vw, 46px); }
  .hero-sub { font-size: 18px; max-width: 100%; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { flex: 1 1 100%; justify-content: center; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 12px; }
  .hero-proof-divider { display: none; }
  .hero-phone { width: 100%; max-width: 300px; height: auto; padding: 20px 18px 26px; }
  .section { padding: 64px 18px; }
  .section-title { font-size: clamp(28px, 7.5vw, 38px); }
  .section-desc { font-size: 17px; }
  .nav { padding: 12px 18px; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px; padding: 14px 18px 20px; background: rgba(250,248,244,0.98); border-bottom: 1px solid var(--border); }
  .nav-links a { padding: 12px 4px; font-size: 16px; }
  .nav-cta { text-align: center; padding: 14px 24px; font-size: 15px !important; }
  .pricing-amount { font-size: 64px; }
  .feature-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; overflow: visible; flex-wrap: wrap; margin-bottom: 28px; }
  .feature-tab { white-space: normal; font-size: 14px; text-align: center; padding: 12px 10px; min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 6px; }
  .feature-showcase { overflow: hidden; }
  .feature-panel { padding: 24px 18px; }
  .feature-panel-grid { grid-template-columns: 1fr; gap: 28px; }
  .feature-panel-grid > * { min-width: 0; }
  .feature-panel-title { font-size: 28px; overflow-wrap: anywhere; }
  .feature-panel-desc { font-size: 16px; }
  .feature-list li { font-size: 15px; overflow-wrap: anywhere; }
  .feature-visual { padding: 20px 16px; }
  .fv-card { padding: 16px; }
  .fv-card-header { flex-wrap: wrap; gap: 6px; }

  a, button { -webkit-tap-highlight-color: transparent; }
  .btn-primary, .btn-secondary, .fv-quick-btn, .nav-cta { min-height: 44px; }
}
@media (max-width: 420px) {
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 28px 18px; }
}

/* ---- Secure checkout trust line ---- */
.checkout-trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px; margin-top: 16px;
  font-size: 14px; color: var(--text-muted); letter-spacing: 0.01em; text-align: center;
}
.checkout-trust .ct-dot { color: var(--border); }
.final-cta .checkout-trust { color: var(--sage-muted); }
.final-cta .checkout-trust .ct-dot { color: rgba(255,255,255,0.25); }

/* ---- Scroll popup ---- */
.np-overlay {
  position: fixed; inset: 0; background: rgba(46,42,38,0.5);
  backdrop-filter: blur(3px); opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease; z-index: 1200;
}
.np-overlay.active { opacity: 1; pointer-events: auto; }
.np-popup {
  position: fixed; left: 50%; top: 50%;
  transform: translate(-50%, -46%) scale(0.97);
  width: min(460px, calc(100vw - 32px));
  max-height: calc(100vh - 40px); overflow-y: auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 22px; padding: 34px 30px 28px;
  box-shadow: 0 30px 80px rgba(46,42,38,0.22);
  opacity: 0; pointer-events: none; z-index: 1201; text-align: center;
  transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.22,1,0.36,1);
}
.np-popup.active { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.np-close {
  position: absolute; top: 12px; right: 14px; background: none; border: none;
  font-size: 28px; line-height: 1; color: var(--text-muted); cursor: pointer;
  padding: 4px 8px; border-radius: 8px;
}
.np-close:hover { color: var(--charcoal); background: var(--cream); }
.np-badge {
  display: inline-block; background: var(--sage-light); color: var(--sage-deep);
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
.np-title {
  font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 600;
  line-height: 1.2; color: var(--charcoal); margin-bottom: 12px;
}
.np-title em { font-style: italic; color: var(--dusty-rose-deep); }
.np-text { font-size: 16px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 18px; }
.np-list { list-style: none; text-align: left; margin: 0 auto 22px; max-width: 340px; }
.np-list li { font-size: 15px; color: var(--text-secondary); padding: 5px 0; }
.np-cta {
  display: flex; align-items: center; justify-content: center; min-height: 50px;
  background: var(--sage-deep); color: #fff; text-decoration: none;
  font-size: 17px; font-weight: 600; border-radius: 100px; padding: 12px 24px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.np-cta:hover { background: var(--charcoal); transform: translateY(-1px); }
.np-trust { margin-top: 12px; font-size: 13px; color: var(--text-muted); }
.np-dismiss {
  display: block; margin: 14px auto 0; background: none; border: none;
  font-size: 14px; color: var(--text-muted); text-decoration: underline;
  cursor: pointer; font-family: inherit;
}
.np-dismiss:hover { color: var(--charcoal); }

@media (max-width: 768px) {
  .np-popup { padding: 30px 20px 24px; border-radius: 18px; }
  .np-title { font-size: 28px; }
  .np-text { font-size: 15px; }
  .checkout-trust { font-size: 13px; gap: 6px; }
}

/* ===== 2026 landing copy update ===== */
.hero-social-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dusty-rose-light); color: var(--dusty-rose-deep);
  border: 1px solid var(--dusty-rose); border-radius: 999px;
  padding: 7px 16px; font-size: 14px; font-weight: 600; margin-bottom: 16px;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 25px; color: var(--sage-deep); margin-bottom: 14px; line-height: 1.4;
}
.hero-launch-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  background: var(--sage-light); color: var(--sage-deep);
  border-radius: 999px; padding: 8px 16px; font-size: 15px; font-weight: 600;
}
.hlb-strike { text-decoration: line-through; opacity: 0.6; font-weight: 500; }

.problem-kicker {
  font-size: 18px; font-weight: 600; color: var(--sage-deep);
  margin: 18px 0 4px; line-height: 1.6;
}
.problem-quote-author {
  margin-top: 12px; font-size: 15px; font-weight: 600; color: var(--text-muted);
}

.privacy-closing {
  margin-top: 28px; text-align: center; font-size: 18px; line-height: 1.7;
  color: var(--text-secondary); font-style: italic; max-width: 640px;
  margin-left: auto; margin-right: auto;
}

.pricing-urgency {
  display: inline-block; background: var(--dusty-rose-light); color: var(--dusty-rose-deep);
  border: 1px solid var(--dusty-rose); border-radius: 999px;
  padding: 8px 18px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  margin-bottom: 16px; text-transform: uppercase;
}
.pricing-was { font-size: 15px; color: var(--text-muted); margin-top: 6px; }
.pricing-was s { font-size: 14px; }
.pricing-doula {
  margin-top: 20px; text-align: center; font-style: italic;
  font-size: 15px; color: var(--text-muted); line-height: 1.6;
}

.faq-section { background: var(--bg-warm); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-list .faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--sage); border-radius: 12px;
  margin-bottom: 14px; padding: 0 20px;
}
.faq-list .faq-item.open .faq-answer { max-height: 640px; }

.final-cta-trust-item .fct-check { color: var(--sage-muted); font-weight: 700; }
.final-cta-price-note {
  margin-top: 18px; font-size: 15px; color: var(--sage-muted); text-align: center;
}

@media (max-width: 768px) {
  .hero-tagline { font-size: 21px; }
  .hero-social-pill, .hero-launch-badge { font-size: 13px; }
  .pricing-urgency { font-size: 11px; padding: 7px 14px; }
  .faq-list .faq-item { padding: 0 16px; }
  .final-cta-trust-item { font-size: 14px; text-align: center; }
  .privacy-closing, .problem-kicker { font-size: 16px; }
}

/* hero-inner is a flex child of .hero — needs full width to size its grid */
.hero-inner { width: 100%; }
