/**
 * ShieldWeb Landing — style.css
 * Design tokens, layout, components, animations, responsive breakpoints.
 */

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

    :root {
      --cream:      #FDFAF5;
      --cream2:     #F7F2E8;
      --cream3:     #EDE8DC;
      --navy:       #1A2744;
      --navy2:      #253660;
      --navy3:      #324880;
      --amber:      #D97706;
      --amber2:     #F59E0B;
      --amber-pale: #FEF3C7;
      --sage:       #4AAB7A;
      --sage-pale:  #DCFCE7;
      --red:        #DC2626;
      --red-pale:   #FEE2E2;
      --fg:         #1A2744;
      --fg2:        #3D4E6B;
      --muted:      #7A8BAA;
      --muted2:     #B0BBC9;
      --border:     #E2D9C8;
      --border2:    #EDE8DC;
      --shadow-sm:  0 2px 8px rgba(26,39,68,.08);
      --shadow:     0 8px 32px rgba(26,39,68,.1);
      --shadow-lg:  0 24px 64px rgba(26,39,68,.14);
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--fg);
           line-height: 1.7; overflow-x: hidden; font-size: 16px; }

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

    a { color: var(--amber); text-decoration: none; }
    a:hover { text-decoration: underline; }
    h1,h2,h3 { font-family: 'Playfair Display', serif; line-height: 1.15; color: var(--navy); }

    .container { max-width: 1160px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

    /* ─── HEADER ─── */
    .site-header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(253,250,245,.94); backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 16px 0;
    }
    .nav { display: flex; align-items: center; gap: 20px; }
    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo-shield {
      width: 36px; height: 36px; background: var(--navy);
      clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
      display: flex; align-items: center; justify-content: center;
    }
    .logo-shield svg { color: var(--amber2); width: 18px; height: 18px; }
    .logo-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
                  color: var(--navy); }
    .logo-name em { color: var(--amber); font-style: italic; }

    .nav-links { display: flex; list-style: none; gap: 1.8rem; margin-left: auto; }
    .nav-links a { color: var(--fg2); font-size: .88rem; font-weight: 600;
                   letter-spacing: .01em; transition: color .2s; text-decoration: none; }
    .nav-links a:hover { color: var(--amber); }

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

    /* Language */
    .lang-sel { position: relative; }
    .lang-btn { display: flex; align-items: center; gap: 6px; background: var(--cream2);
                border: 1px solid var(--border); border-radius: 8px; padding: 7px 13px;
                color: var(--fg2); cursor: pointer; font-family: 'Nunito', sans-serif;
                font-size: .82rem; font-weight: 700; transition: all .2s; }
    .lang-btn:hover { border-color: var(--amber); color: var(--amber); }
    .lang-dropdown { position: absolute; top: calc(100% + 8px); right: 0; min-width: 174px;
                     background: #fff; border: 1px solid var(--border);
                     border-radius: 12px; padding: 6px; opacity: 0; visibility: hidden;
                     transform: translateY(-6px); transition: all .22s;
                     box-shadow: var(--shadow-lg); z-index: 300; }
    .lang-sel:hover .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
    .lang-opt { display: flex; align-items: center; gap: 9px; padding: 9px 12px;
                border-radius: 8px; cursor: pointer; color: var(--fg2);
                font-size: .88rem; font-weight: 600; transition: background .15s; }
    .lang-opt:hover { background: var(--cream2); }
    .lang-opt.active { background: var(--amber-pale); color: var(--amber); }

    /* Buttons */
    .btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px;
           border-radius: 9px; font-family: 'Nunito', sans-serif; font-weight: 700;
           font-size: .88rem; cursor: pointer; border: none; transition: all .25s;
           text-decoration: none; }
    .btn-ghost { background: transparent; color: var(--fg2); border: 1.5px solid var(--border); }
    .btn-ghost:hover { border-color: var(--navy); color: var(--navy); text-decoration: none; }
    .btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
    .btn-primary:hover { background: var(--navy2); transform: translateY(-2px);
                          box-shadow: var(--shadow); text-decoration: none; }
    .btn-amber { background: var(--amber); color: #fff;
                  box-shadow: 0 4px 16px rgba(217,119,6,.3); }
    .btn-amber:hover { background: var(--amber2); transform: translateY(-2px);
                        box-shadow: 0 8px 28px rgba(217,119,6,.4); text-decoration: none; }
    .btn-lg { padding: 15px 34px; font-size: .96rem; border-radius: 11px; }
    .btn-outline-amber { background: transparent; color: var(--amber);
                          border: 1.5px solid var(--amber); }
    .btn-outline-amber:hover { background: var(--amber-pale); text-decoration: none; }

    .hamburger { display: none; background: none; border: 1.5px solid var(--border);
                  border-radius: 7px; cursor: pointer; padding: 7px 10px; color: var(--navy); }
    .mobile-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 99;
                  background: #fff; border-bottom: 1px solid var(--border);
                  box-shadow: var(--shadow); }
    .mobile-nav li { list-style: none; border-bottom: 1px solid var(--border2); }
    .mobile-nav li a { display: block; padding: 14px 28px; color: var(--fg2);
                        font-size: .9rem; font-weight: 600; text-decoration: none; }
    .mobile-nav.open { display: block; }

    /* ─── HERO ─── */
    .hero { padding: 72px 0 64px; position: relative; overflow: hidden; }

    /* Decorative large circle bg */
    .hero-blob {
      position: absolute; top: -120px; right: -200px; width: 700px; height: 700px;
      background: radial-gradient(circle, var(--amber-pale) 0%, transparent 70%);
      border-radius: 50%; z-index: 0; pointer-events: none;
    }
    .hero-blob-2 {
      position: absolute; bottom: -80px; left: -100px; width: 420px; height: 420px;
      background: radial-gradient(circle, var(--sage-pale) 0%, transparent 70%);
      border-radius: 50%; z-index: 0; pointer-events: none;
    }

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

    .hero-badge { display: inline-flex; align-items: center; gap: 8px;
                  background: var(--sage-pale); border: 1.5px solid #86EFAC;
                  color: #166534; border-radius: 100px; padding: 6px 16px;
                  font-size: .82rem; font-weight: 700; margin-bottom: 20px; }

    .hero-title { font-size: clamp(2.6rem, 4.8vw, 4.4rem); font-weight: 800; margin-bottom: 20px;
                  color: var(--navy); }
    .hero-title .italic { font-style: italic; font-weight: 700; color: var(--amber); }

    .hero-desc { font-size: 1.08rem; color: var(--fg2); max-width: 520px;
                 margin-bottom: 32px; font-weight: 400; line-height: 1.85; }

    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

    .hero-chips { display: flex; gap: 20px; flex-wrap: wrap; }
    .hero-chip { display: flex; align-items: center; gap: 7px;
                  font-size: .82rem; color: var(--muted); font-weight: 600; }
    .hero-chip svg { color: var(--sage); flex-shrink: 0; }

    /* Hero illustration */
    .hero-illus { display: flex; justify-content: center; align-items: center; }
    .illus-wrap { position: relative; width: 100%; max-width: 420px; }

    .illus-card-main {
      background: #fff; border-radius: 20px; padding: 28px;
      box-shadow: var(--shadow-lg); border: 1px solid var(--border);
      position: relative; z-index: 2;
      animation: card-float 7s ease-in-out infinite;
    }
    @keyframes card-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

    .illus-badge { display: inline-flex; align-items: center; gap: 8px;
                   background: var(--sage-pale); border-radius: 8px; padding: 8px 14px;
                   color: #166534; font-size: .78rem; font-weight: 700; margin-bottom: 18px; }
    .illus-badge .dot { width: 8px; height: 8px; background: var(--sage); border-radius: 50%;
                         animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:.6} }

    .illus-device-row { display: flex; gap: 10px; justify-content: center; margin-bottom: 18px; }
    .illus-device { width: 48px; height: 48px; background: var(--cream2);
                    border-radius: 10px; display: flex; align-items: center; justify-content: center;
                    border: 1.5px solid var(--border); color: var(--navy); }
    .illus-device svg { width: 22px; height: 22px; }

    .illus-filters { display: flex; flex-direction: column; gap: 10px; }
    .illus-filter { display: flex; align-items: center; justify-content: space-between;
                    padding: 10px 14px; background: var(--cream2); border-radius: 10px; }
    .illus-filter-left { display: flex; align-items: center; gap: 10px; }
    .illus-filter-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .illus-filter-name { font-size: .82rem; font-weight: 700; color: var(--fg); }
    .illus-toggle-on { width: 36px; height: 20px; background: var(--sage); border-radius: 100px;
                        position: relative; }
    .illus-toggle-on::after { content: ''; position: absolute; right: 3px; top: 3px;
                               width: 14px; height: 14px; background: #fff; border-radius: 50%; }
    .illus-toggle-off { width: 36px; height: 20px; background: var(--muted2); border-radius: 100px;
                         position: relative; }
    .illus-toggle-off::after { content: ''; position: absolute; left: 3px; top: 3px;
                                width: 14px; height: 14px; background: #fff; border-radius: 50%; }

    /* Floating badges */
    .f-tag { position: absolute; background: #fff; border: 1px solid var(--border);
              border-radius: 10px; padding: 9px 14px; white-space: nowrap;
              box-shadow: var(--shadow); font-size: .78rem; font-weight: 700; z-index: 3; }
    .f-tag-1 { top: -14px; right: -16px; color: var(--sage); }
    .f-tag-2 { bottom: -10px; left: -20px; color: var(--amber); }
    .f-tag-3 { top: 38%; left: -22px; color: var(--navy); }

    /* ─── THREATS STATS BAR ─── */
    .threats-bar { background: var(--navy); padding: 36px 0; position: relative; z-index: 1; }
    .threats-bar-title { text-align: center; color: rgba(255,255,255,.6); font-size: .82rem;
                          font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
                          margin-bottom: 28px; }
    .threats-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
                     background: rgba(255,255,255,.08); }
    .tstat { background: var(--navy); padding: 24px 20px; text-align: center;
              transition: background .25s; }
    .tstat:hover { background: var(--navy2); }
    .tstat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700;
                  color: var(--amber2); margin-bottom: 6px; line-height: 1; }
    .tstat-label { font-size: .78rem; color: rgba(255,255,255,.55); font-weight: 600;
                   line-height: 1.4; }

    /* ─── THREAT CARDS ─── */
    .threats-section { padding: 80px 0; background: var(--cream2); }
    .section-eyebrow { display: inline-block; background: var(--red-pale); color: var(--red);
                        border-radius: 6px; padding: 4px 14px; font-size: .75rem; font-weight: 700;
                        letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
    .section-title { font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 800;
                      margin-bottom: 12px; }
    .section-sub { color: var(--fg2); font-size: 1rem; font-weight: 400;
                   max-width: 560px; line-height: 1.7; }
    .section-header { margin-bottom: 48px; }

    .threats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .threat-card { background: #fff; border: 1.5px solid var(--border2);
                   border-radius: 16px; padding: 24px; transition: all .25s;
                   box-shadow: var(--shadow-sm); }
    .threat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow);
                          border-color: var(--border); }
    .threat-emoji { font-size: 2rem; margin-bottom: 14px; display: block; }
    .threat-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
                   margin-bottom: 8px; color: var(--navy); }
    .threat-desc { font-size: .86rem; color: var(--fg2); line-height: 1.7; font-weight: 400; }

    /* ─── HOW IT WORKS ─── */
    .how-section { padding: 88px 0; background: var(--cream); }
    .how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px;
                 position: relative; margin-top: 56px; }

    /* Connecting line */
    .how-steps::before {
      content: ''; position: absolute;
      top: 30px; left: calc(16.66% + 16px); right: calc(16.66% + 16px);
      height: 1.5px; background: linear-gradient(90deg, var(--amber2), var(--sage));
      z-index: 0;
    }

    .how-step { text-align: center; position: relative; z-index: 1; }
    .step-num-wrap { display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
    .step-num { width: 60px; height: 60px; background: var(--navy); color: var(--amber2);
                border-radius: 50%; display: flex; align-items: center; justify-content: center;
                font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700;
                box-shadow: var(--shadow); }
    .step-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700;
                   margin-bottom: 10px; color: var(--navy); }
    .step-desc { font-size: .88rem; color: var(--fg2); line-height: 1.75; font-weight: 400; }

    /* ─── FEATURES ─── */
    .features-section { padding: 88px 0; background: var(--navy); }
    .features-section .section-title { color: #fff; }
    .features-section .section-sub { color: rgba(255,255,255,.6); }
    .features-section .section-eyebrow { background: rgba(245,158,11,.15);
                                          color: var(--amber2); }

    .features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
                     margin-top: 48px; }
    .feat-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
                 border-radius: 16px; padding: 26px; transition: all .25s; }
    .feat-card:hover { background: rgba(255,255,255,.09); transform: translateY(-3px);
                        border-color: rgba(245,158,11,.3); }
    .feat-icon { width: 46px; height: 46px; background: rgba(245,158,11,.12);
                  border: 1px solid rgba(245,158,11,.2); border-radius: 12px;
                  display: flex; align-items: center; justify-content: center;
                  margin-bottom: 16px; color: var(--amber2); }
    .feat-icon svg { width: 22px; height: 22px; }
    .feat-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
                  color: #fff; margin-bottom: 8px; }
    .feat-desc { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.75; font-weight: 400; }

    /* ─── STATS ─── */
    .stats-section { padding: 80px 0; background: var(--amber-pale); }
    .stats-section .section-title { color: var(--navy); }
    .stats-section .section-eyebrow { background: rgba(217,119,6,.12); color: var(--amber); }
    .stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
    .stat-block { background: #fff; border-radius: 16px; padding: 28px 24px; text-align: center;
                   border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
                   transition: all .25s; }
    .stat-block:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 800;
                color: var(--navy); line-height: 1; margin-bottom: 8px; }
    .stat-label { font-size: .82rem; color: var(--muted); font-weight: 700;
                  letter-spacing: .03em; text-transform: uppercase; }

    /* ─── TRUST / TESTIMONIALS ─── */
    .trust-section { padding: 88px 0; background: var(--cream); }
    .trust-section .section-eyebrow { background: var(--sage-pale); color: #166534; }
    .trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
    .trust-card { background: #fff; border: 1.5px solid var(--border2); border-radius: 16px;
                   padding: 28px; box-shadow: var(--shadow-sm); transition: all .25s; }
    .trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .trust-quote { font-size: 2.5rem; color: var(--amber2); font-family: 'Playfair Display', serif;
                   line-height: 1; margin-bottom: 12px; }
    .trust-text { font-size: .9rem; color: var(--fg2); line-height: 1.8; margin-bottom: 18px;
                  font-style: italic; font-weight: 400; }
    .trust-stars { color: var(--amber2); font-size: .9rem; margin-bottom: 12px; letter-spacing: 2px; }
    .trust-name { font-size: .82rem; font-weight: 700; color: var(--navy); }

    /* ─── FAQ ─── */
    .faq-section { padding: 88px 0; background: var(--cream2); }
    .faq-section .section-eyebrow { background: rgba(26,39,68,.07); color: var(--navy2); }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
    .faq-item { background: #fff; border: 1.5px solid var(--border2); border-radius: 14px;
                 padding: 24px; cursor: pointer; transition: all .25s; }
    .faq-item:hover { border-color: var(--amber); box-shadow: var(--shadow-sm); }
    .faq-item.open { border-color: var(--amber); }
    .faq-q { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
    .faq-q-text { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
                   color: var(--navy); line-height: 1.4; }
    .faq-arrow { color: var(--amber); flex-shrink: 0; transition: transform .25s; margin-top: 2px; }
    .faq-item.open .faq-arrow { transform: rotate(180deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
    .faq-item.open .faq-a { max-height: 300px; }
    .faq-a-inner { padding-top: 14px; font-size: .88rem; color: var(--fg2);
                   line-height: 1.8; font-weight: 400; }

    /* ─── CTA ─── */
    .cta-section { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
    .cta-blob { position: absolute; top: -200px; right: -150px; width: 600px; height: 600px;
                 background: radial-gradient(circle, rgba(245,158,11,.12) 0%, transparent 65%);
                 border-radius: 50%; pointer-events: none; }
    .cta-blob-2 { position: absolute; bottom: -150px; left: -100px; width: 400px; height: 400px;
                   background: radial-gradient(circle, rgba(74,171,122,.08) 0%, transparent 65%);
                   border-radius: 50%; pointer-events: none; }
    .cta-inner { text-align: center; position: relative; z-index: 1; }
    .cta-badge { display: inline-flex; align-items: center; gap: 8px;
                  background: rgba(74,171,122,.12); border: 1px solid rgba(74,171,122,.3);
                  color: #6EE7B7; border-radius: 100px; padding: 6px 16px;
                  font-size: .8rem; font-weight: 700; margin-bottom: 20px; }
    .cta-title { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 800; color: #fff;
                  margin-bottom: 14px; }
    .cta-sub { color: rgba(255,255,255,.6); font-size: 1rem; margin-bottom: 36px;
               font-weight: 400; max-width: 500px; margin-left: auto; margin-right: auto; }
    .cta-note { margin-top: 18px; font-size: .82rem; color: rgba(255,255,255,.4); font-weight: 600; }

    /* ─── FOOTER ─── */
    .site-footer { background: #111827; padding: 52px 0 32px; }
    .footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
                   margin-bottom: 44px; }
    .footer-brand .logo-name { color: #fff; font-size: 1.2rem; }
    .footer-tagline { color: rgba(255,255,255,.4); font-size: .84rem; margin-top: 10px;
                       font-weight: 400; line-height: 1.6; }
    .footer-col-title { font-family: 'Playfair Display', serif; font-size: .95rem; font-weight: 700;
                          color: rgba(255,255,255,.8); margin-bottom: 14px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links li a { color: rgba(255,255,255,.4); font-size: .84rem; font-weight: 500;
                           transition: color .2s; text-decoration: none; }
    .footer-links li a:hover { color: var(--amber2); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
                     display: flex; justify-content: space-between; align-items: center;
                     flex-wrap: wrap; gap: 12px; }
    .footer-copy { color: rgba(255,255,255,.3); font-size: .8rem; }

    /* Animations */
    .fade-in { opacity: 0; transform: translateY(20px);
               animation: fi .8s cubic-bezier(.16,1,.3,1) forwards; }
    .d1{animation-delay:.05s} .d2{animation-delay:.15s} .d3{animation-delay:.25s}
    .d4{animation-delay:.35s} .d5{animation-delay:.48s}
    @keyframes fi { to { opacity:1; transform:translateY(0); } }

    /* Scroll reveal */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
      .hero-desc { margin-left: auto; margin-right: auto; }
      .hero-actions, .hero-chips { justify-content: center; }
      .illus-wrap { margin: 0 auto; max-width: 340px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; margin-left: auto; }
      .threats-stats { grid-template-columns: 1fr 1fr; }
      .threats-grid  { grid-template-columns: 1fr 1fr; }
      .how-steps     { grid-template-columns: 1fr; gap: 36px; }
      .how-steps::before { display: none; }
      .features-grid { grid-template-columns: 1fr 1fr; }
      .stats-grid    { grid-template-columns: 1fr 1fr; }
      .trust-grid    { grid-template-columns: 1fr; }
      .faq-grid      { grid-template-columns: 1fr; }
      .footer-top    { grid-template-columns: 1fr 1fr; }
      .nav-cta .btn-ghost { display: none; }
    }
    @media (max-width: 480px) {
      .threats-grid  { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: 1fr; }
      .stats-grid    { grid-template-columns: 1fr; }
      .threats-stats { grid-template-columns: 1fr; }
      .footer-top    { grid-template-columns: 1fr; }
      .hero-actions  { flex-direction: column; }
      .btn-lg        { width: 100%; justify-content: center; }
    }
    /* ─── PRICING ─── */
.pricing-section { padding: 96px 0; background: var(--cream); }
.pricing-section .section-eyebrow { background: var(--amber-pale); color: var(--amber); }
.pricing-toggle { display: flex; align-items: center; justify-content: center;
                  gap: 14px; margin: 32px 0 48px; }
.pricing-toggle-label { font-size: .88rem; font-weight: 700; color: var(--muted); }
.pricing-toggle-label.active { color: var(--navy); }
.toggle-switch { width: 48px; height: 26px; background: var(--navy); border-radius: 100px;
                 position: relative; cursor: pointer; transition: background .2s; border: none; }
.toggle-switch::after { content: ''; position: absolute; left: 4px; top: 4px;
                         width: 18px; height: 18px; background: #fff;
                         border-radius: 50%; transition: left .2s; }
.toggle-switch.annual::after { left: 26px; }
.save-badge { background: var(--sage-pale); color: #166534; border-radius: 100px;
              padding: 3px 10px; font-size: .75rem; font-weight: 700; }

.pricing-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 760px; margin: 0 auto; }
.pricing-card { background: #fff; border: 1.5px solid var(--border);
                border-radius: 20px; padding: 32px 28px; position: relative;
                transition: all .25s; box-shadow: var(--shadow-sm); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card.featured { border-color: var(--amber); box-shadow: 0 8px 32px rgba(217,119,6,.18); }
.pricing-card.featured:hover { box-shadow: 0 16px 48px rgba(217,119,6,.25); }
.pricing-badge-top { position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
                     background: var(--amber); color: #fff; border-radius: 100px;
                     padding: 4px 18px; font-size: .75rem; font-weight: 700;
                     white-space: nowrap; }
.pricing-plan-name { font-family: 'Playfair Display', serif; font-size: 1.1rem;
                     font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.pricing-plan-desc { font-size: .82rem; color: var(--muted); margin-bottom: 24px;
                     font-weight: 400; min-height: 36px; }
.pricing-price-row { display: flex; align-items: flex-end; gap: 6px; margin-bottom: 6px; }
.pricing-amount { font-family: 'Playfair Display', serif; font-size: 3rem;
                   font-weight: 800; color: var(--navy); line-height: 1; }
.pricing-period { font-size: .85rem; color: var(--muted); font-weight: 600;
                  padding-bottom: 6px; }
.pricing-annual-note { font-size: .8rem; color: var(--muted); margin-bottom: 8px;
                        min-height: 20px; font-weight: 500; }
.pricing-strike { font-size: .82rem; color: var(--muted2); text-decoration: line-through;
                  margin-bottom: 20px; min-height: 18px; }
.pricing-features-list { list-style: none; display: flex; flex-direction: column;
                          gap: 10px; margin-bottom: 28px; }
.pricing-features-list li { display: flex; align-items: flex-start; gap: 9px;
                              font-size: .86rem; color: var(--fg2); font-weight: 500; }
.pricing-features-list li svg { color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.pricing-features-list li.muted { color: var(--muted2); }
.pricing-features-list li.muted svg { color: var(--muted2); }
.btn-pricing { width: 100%; justify-content: center; padding: 13px 20px; font-size: .9rem; }
.pricing-guarantee { text-align: center; margin-top: 32px; font-size: .82rem;
                      color: var(--muted); font-weight: 600; }
.pricing-guarantee svg { color: var(--sage); vertical-align: middle; margin-right: 5px; }

@media (max-width: 700px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }