:root {
      --blush:    #F2D7D5;
      --rose:     #D4889A;
      --lavender: #C5C0E0;
      --lilac:    #E8E4F5;
      --sage:     #B8CCBA;
      --cream:    #FDF8F3;
      --dust:     #9B8FA6;
      --ink:      #3D2C3A;
      --mist:     #EDE8F5;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--cream);
      color: var(--ink);
      font-family: 'DM Sans', sans-serif;
      overflow-x: hidden;
    }

    /* ─── PETAL CURSOR ─── */
    #cursor-petal {
      position: fixed; pointer-events: none; z-index: 9999;
      width: 18px; height: 18px;
      top: 0; left: 0;
      transform: translate(-50%,-50%);
    }
    #cursor-petal svg { transform: rotate(0deg); transition: transform 0.3s; }
    #cursor-trail {
      position: fixed; pointer-events: none; z-index: 9998;
      width: 44px; height: 44px;
      border: 1px solid rgba(212,136,154,0.4);
      border-radius: 50%;
      top: 0; left: 0;
      transform: translate(-50%,-50%);
      transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
    }

    /* ─── FLOATING PETALS ─── */
    .petal-bg {
      position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
    }
    .petal {
      position: absolute;
      opacity: 0;
      animation: petal-fall linear infinite;
    }
    .petal svg { opacity: 0.35; }
    @keyframes petal-fall {
      0%   { transform: translateY(-40px) rotate(0deg) translateX(0); opacity: 0; }
      10%  { opacity: 1; }
      90%  { opacity: 0.6; }
      100% { transform: translateY(110vh) rotate(720deg) translateX(60px); opacity: 0; }
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      padding: 28px 56px;
      display: flex; align-items: center; justify-content: space-between;
      transition: all 0.5s;
    }
    nav.scrolled {
      background: rgba(253,248,243,0.88);
      backdrop-filter: blur(24px);
      padding: 18px 56px;
      border-bottom: 1px solid rgba(212,136,154,0.15);
      box-shadow: 0 4px 40px rgba(212,136,154,0.06);
    }
    .nav-logo {
      display: flex; align-items: baseline; gap: 2px;
      text-decoration: none;
    }
    .nav-logo-script {
      font-family: 'Great Vibes', cursive;
      font-size: 32px;
      color: var(--rose);
      line-height: 1;
    }
    .nav-logo-sans {
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--dust);
      margin-left: 4px;
    }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      font-size: 12px; font-weight: 400; letter-spacing: 0.1em;
      color: var(--dust); text-decoration: none; transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--rose); }
    .nav-cta {
      background: var(--rose);
      color: white;
      border: none;
      padding: 11px 28px;
      border-radius: 40px;
      font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
      cursor: pointer; transition: all 0.3s;
      font-family: 'DM Sans', sans-serif;
      box-shadow: 0 4px 20px rgba(212,136,154,0.35);
    }
    .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,136,154,0.5); }

    /* ─── HERO ─── */
    .hero {
      min-height: 100svh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      padding: 120px 24px 80px;
      position: relative; overflow: hidden;
    }

    /* Soft gradient blobs */
    .hero-bloom {
      position: absolute; border-radius: 50%;
      filter: blur(80px); pointer-events: none;
    }
    .bloom-1 {
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(197,192,224,0.35) 0%, transparent 70%);
      top: -150px; right: -150px;
      animation: breathe 12s ease-in-out infinite;
    }
    .bloom-2 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(242,215,213,0.4) 0%, transparent 70%);
      bottom: 0; left: -100px;
      animation: breathe 16s ease-in-out infinite reverse;
    }
    .bloom-3 {
      width: 350px; height: 350px;
      background: radial-gradient(circle, rgba(184,204,186,0.25) 0%, transparent 70%);
      top: 40%; left: 55%;
      animation: breathe 10s ease-in-out infinite 3s;
    }
    @keyframes breathe {
      0%,100% { transform: scale(1); opacity: 0.7; }
      50%      { transform: scale(1.12); opacity: 1; }
    }

    /* Decorative arch */
    .hero-arch {
      position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      width: 520px; height: 380px; pointer-events: none;
      border: 1px solid rgba(212,136,154,0.18);
      border-radius: 0 0 260px 260px;
      border-top: none;
    }
    .hero-arch-inner {
      position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
      width: 440px; height: 310px; pointer-events: none;
      border: 1px solid rgba(212,136,154,0.10);
      border-radius: 0 0 220px 220px;
      border-top: none;
    }

    /* Decorative corner florals */
    .corner-floral {
      position: absolute; pointer-events: none; opacity: 0.18;
    }
    .corner-floral.tl { top: 80px; left: 40px; transform: rotate(-30deg); }
    .corner-floral.tr { top: 80px; right: 40px; transform: rotate(30deg) scaleX(-1); }
    .corner-floral.bl { bottom: 80px; left: 40px; transform: rotate(20deg); }
    .corner-floral.br { bottom: 80px; right: 40px; transform: rotate(-20deg) scaleX(-1); }

    .hero-content {
      position: relative; z-index: 10;
      max-width: 700px;
    }
    .hero-script-top {
      font-family: 'Great Vibes', cursive;
      font-size: 28px;
      color: var(--rose);
      opacity: 0;
      transform: translateY(16px);
      animation: rise 0.9s ease forwards 0.3s;
      display: block; margin-bottom: 16px;
    }
    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(44px, 7vw, 88px);
      font-weight: 400;
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--ink);
      opacity: 0;
      transform: translateY(28px);
      animation: rise 1s ease forwards 0.55s;
    }
    h1 em { font-style: italic; color: var(--rose); }
    h1 .script-inline {
      font-family: 'Great Vibes', cursive;
      font-style: normal;
      font-size: 1.15em;
      color: var(--dust);
    }

    .hero-divider {
      display: flex; align-items: center; gap: 16px;
      justify-content: center; margin: 24px 0;
      opacity: 0; animation: rise 0.8s ease forwards 0.85s;
    }
    .hero-divider-line { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--rose)); }
    .hero-divider-line.r { background: linear-gradient(90deg, var(--rose), transparent); }
    .hero-divider-icon { font-size: 16px; }

    .hero-lead {
      font-size: clamp(15px, 2vw, 18px);
      line-height: 1.75;
      font-weight: 300;
      color: var(--dust);
      max-width: 480px; margin: 0 auto 44px;
      opacity: 0; transform: translateY(16px);
      animation: rise 0.9s ease forwards 1.05s;
    }

    .hero-actions {
      display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
      opacity: 0; transform: translateY(16px);
      animation: rise 0.9s ease forwards 1.25s;
    }
    .btn-rose {
      background: var(--rose); color: white; border: none;
      padding: 16px 44px; border-radius: 50px;
      font-size: 13px; font-weight: 500; letter-spacing: 0.12em;
      cursor: pointer; transition: all 0.35s;
      font-family: 'DM Sans', sans-serif;
      box-shadow: 0 6px 30px rgba(212,136,154,0.4);
    }
    .btn-rose:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(212,136,154,0.55); }

    .btn-outline-rose {
      background: transparent; color: var(--rose);
      border: 1.5px solid rgba(212,136,154,0.5);
      padding: 15px 36px; border-radius: 50px;
      font-size: 13px; font-weight: 500; letter-spacing: 0.12em;
      cursor: pointer; transition: all 0.3s;
      font-family: 'DM Sans', sans-serif;
    }
    .btn-outline-rose:hover { background: rgba(212,136,154,0.06); border-color: var(--rose); }

    /* Scroll indicator */
    .hero-scroll {
      position: absolute; bottom: 40px; left: 50%;
      transform: translateX(-50%); z-index: 10;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      opacity: 0; animation: rise 1s ease forwards 1.8s;
    }
    .scroll-mouse {
      width: 22px; height: 34px;
      border: 1.5px solid rgba(155,143,166,0.4);
      border-radius: 11px;
      display: flex; justify-content: center; padding-top: 7px;
    }
    .scroll-dot {
      width: 4px; height: 7px;
      background: var(--rose);
      border-radius: 2px;
      animation: scroll-bob 2.2s ease-in-out infinite;
    }
    @keyframes scroll-bob {
      0%,100% { transform: translateY(0); opacity: 1; }
      50%      { transform: translateY(10px); opacity: 0.3; }
    }
    .scroll-text {
      font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
      color: rgba(155,143,166,0.5);
    }

    @keyframes rise {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ─── FLOATY STATS ─── */
    .stats-ribbon {
      display: flex; justify-content: center; gap: 0;
      background: white;
      border-top: 1px solid rgba(212,136,154,0.12);
      border-bottom: 1px solid rgba(212,136,154,0.12);
      overflow: hidden;
    }
    .stat-item {
      flex: 1; padding: 40px 20px;
      text-align: center;
      border-right: 1px solid rgba(212,136,154,0.1);
      transition: background 0.3s;
    }
    .stat-item:last-child { border-right: none; }
    .stat-item:hover { background: rgba(242,215,213,0.1); }
    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 400;
      color: var(--rose);
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label {
      font-size: 12px; font-weight: 400; letter-spacing: 0.1em;
      color: var(--dust);
    }

    /* ─── SECTIONS ─── */
    .section-pad { padding: 120px 56px; }

    .tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--rose);
      margin-bottom: 20px;
    }
    .tag-dot {
      width: 5px; height: 5px;
      background: var(--rose); border-radius: 50%;
      animation: pulse-dot 2s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%,100% { transform: scale(1); opacity: 1; }
      50%      { transform: scale(1.5); opacity: 0.5; }
    }

    .section-h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(34px, 5vw, 60px);
      font-weight: 400;
      line-height: 1.12;
      letter-spacing: -0.02em;
      color: var(--ink);
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.9s, transform 0.9s;
    }
    .section-h2 em { font-style: italic; color: var(--rose); }
    .section-h2.up { opacity: 1; transform: translateY(0); }
    .section-script {
      font-family: 'Great Vibes', cursive;
      font-size: clamp(22px, 3vw, 36px);
      color: var(--dust); opacity: 0.6;
      display: block; margin-bottom: 8px;
    }

    .body-text {
      font-size: 15px; line-height: 1.8; font-weight: 300;
      color: var(--dust); max-width: 480px;
    }

    /* ─── HOW IT WORKS ─── */
    .how-section {
      background: white;
      position: relative; overflow: hidden;
    }
    .how-section::before {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
      background: linear-gradient(to top, var(--mist), transparent);
      pointer-events: none;
    }
    .how-inner { max-width: 1200px; margin: 0 auto; }
    .how-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 48px; margin-top: 72px;
    }
    .how-card {
      text-align: center;
      opacity: 0; transform: translateY(32px);
      transition: opacity 0.7s, transform 0.7s;
    }
    .how-card.up { opacity: 1; transform: translateY(0); }
    .how-card:nth-child(2) { transition-delay: 0.15s; }
    .how-card:nth-child(3) { transition-delay: 0.3s; }

    .how-icon-wrap {
      width: 80px; height: 80px; margin: 0 auto 28px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blush), var(--lilac));
      display: flex; align-items: center; justify-content: center;
      font-size: 32px;
      box-shadow: 0 8px 30px rgba(212,136,154,0.2);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .how-card:hover .how-icon-wrap {
      transform: translateY(-6px) scale(1.05);
      box-shadow: 0 16px 40px rgba(212,136,154,0.35);
    }
    .how-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px; font-weight: 400;
      color: var(--ink); margin-bottom: 12px;
    }
    .how-card p {
      font-size: 14px; line-height: 1.75; font-weight: 300;
      color: var(--dust);
    }
    .how-connector {
      display: flex; align-items: center; justify-content: center;
      padding-top: 40px; opacity: 0.3;
    }
    .connector-dots {
      display: flex; gap: 4px;
    }
    .connector-dots span {
      width: 4px; height: 4px; background: var(--rose); border-radius: 50%;
      animation: dot-dance 1.5s ease-in-out infinite;
    }
    .connector-dots span:nth-child(2) { animation-delay: 0.15s; }
    .connector-dots span:nth-child(3) { animation-delay: 0.3s; }
    @keyframes dot-dance {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-5px); }
    }

    /* ─── MOMENT SHOWCASE ─── */
    .showcase-section {
      background: var(--mist);
      position: relative; overflow: hidden;
    }
    .showcase-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .showcase-text {
      opacity: 0; transform: translateX(-40px);
      transition: opacity 0.9s, transform 0.9s;
    }
    .showcase-text.up { opacity: 1; transform: translateX(0); }
    .feature-checks {
      list-style: none; margin-top: 36px;
      display: flex; flex-direction: column; gap: 16px;
    }
    .feature-checks li {
      display: flex; gap: 14px; align-items: flex-start;
      font-size: 14px; line-height: 1.6; color: var(--dust); font-weight: 300;
    }
    .check-icon {
      width: 20px; height: 20px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--blush), var(--rose));
      border-radius: 50%; margin-top: 2px;
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; color: white; font-weight: 500;
    }

    /* Dreamy phone mockup */
    .showcase-visual {
      opacity: 0; transform: translateX(40px) translateY(20px);
      transition: opacity 0.9s 0.2s, transform 0.9s 0.2s;
      position: relative;
    }
    .showcase-visual.up { opacity: 1; transform: translateX(0) translateY(0); }

    .dreamy-phone {
      background: white;
      border-radius: 44px;
      padding: 20px 14px;
      max-width: 260px;
      margin: 0 auto;
      box-shadow:
        0 40px 80px rgba(155,143,166,0.15),
        0 0 0 1px rgba(212,136,154,0.15),
        inset 0 1px 0 rgba(255,255,255,0.8);
    }
    .dreamy-notch {
      width: 70px; height: 6px;
      background: var(--blush); border-radius: 3px;
      margin: 0 auto 16px; opacity: 0.6;
    }
    .dreamy-screen {
      background: var(--mist);
      border-radius: 30px;
      overflow: hidden;
      min-height: 460px;
    }
    .dreamy-screen-top {
      background: linear-gradient(135deg, var(--blush) 0%, var(--lavender) 100%);
      padding: 24px 20px 32px;
      text-align: center;
    }
    .dreamy-screen-top .ds-couple {
      font-family: 'Great Vibes', cursive;
      font-size: 26px;
      color: white;
      text-shadow: 0 2px 8px rgba(155,143,166,0.3);
    }
    .dreamy-screen-top .ds-date {
      font-size: 11px; color: rgba(255,255,255,0.8);
      letter-spacing: 0.15em; margin-top: 4px;
    }
    .dreamy-screen-body { padding: 20px 16px; }
    .dreamy-screen-body .ds-label {
      font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--dust); margin-bottom: 12px; font-weight: 500;
    }
    .ds-moment-row {
      display: flex; gap: 10px; margin-bottom: 10px;
      opacity: 0; animation: ds-enter 0.5s ease forwards;
    }
    .ds-moment-row:nth-child(2) { animation-delay: 0.4s; }
    .ds-moment-row:nth-child(3) { animation-delay: 0.9s; }
    .ds-moment-row:nth-child(4) { animation-delay: 1.4s; }
    @keyframes ds-enter {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .ds-thumb {
      width: 44px; height: 44px;
      border-radius: 12px; flex-shrink: 0;
    }
    .dt1 { background: linear-gradient(135deg,#e8c4c0,#d4a0b0); }
    .dt2 { background: linear-gradient(135deg,#c0c8e0,#a0a8d0); }
    .dt3 { background: linear-gradient(135deg,#c0d4c0,#a0bca0); }
    .ds-info { flex: 1; }
    .ds-sender { font-size: 12px; font-weight: 500; color: var(--ink); }
    .ds-meta   { font-size: 10px; color: var(--dust); margin-top: 2px; }
    .ds-tag {
      font-size: 9px; padding: 2px 8px;
      border-radius: 20px;
      background: rgba(212,136,154,0.12);
      color: var(--rose); margin-top: 4px; display: inline-block;
      font-weight: 500;
    }

    /* floating hearts */
    .float-heart {
      position: absolute;
      font-size: 14px; opacity: 0;
      animation: float-up 4s ease-in-out infinite;
    }
    .float-heart:nth-child(1) { right: 30px; top: 30%; animation-delay: 0s; }
    .float-heart:nth-child(2) { left: 20px; top: 55%; animation-delay: 1.5s; font-size: 10px; }
    .float-heart:nth-child(3) { right: 20px; top: 60%; animation-delay: 3s; font-size: 12px; }
    @keyframes float-up {
      0%   { opacity: 0; transform: translateY(0) scale(0.5); }
      30%  { opacity: 0.6; }
      100% { opacity: 0; transform: translateY(-80px) scale(1); }
    }

    .showcase-badge {
      position: absolute; left: -30px; bottom: 100px;
      background: white;
      border-radius: 20px;
      padding: 16px 20px;
      box-shadow: 0 16px 48px rgba(155,143,166,0.2);
      min-width: 160px;
    }
    .sb-emoji { font-size: 20px; margin-bottom: 6px; }
    .sb-val {
      font-family: 'Playfair Display', serif;
      font-size: 24px; color: var(--rose); line-height: 1;
    }
    .sb-sub { font-size: 11px; color: var(--dust); margin-top: 3px; }

    /* ─── TESTIMONIALS ─── */
    .testi-section {
      background: white; text-align: center;
    }
    .testi-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 2px; margin-top: 72px;
    }
    .testi-card {
      padding: 48px 40px;
      background: rgba(253,248,243,0.6);
      position: relative;
      opacity: 0; transform: translateY(32px);
      transition: opacity 0.7s, transform 0.7s;
    }
    .testi-card.up { opacity: 1; transform: translateY(0); }
    .testi-card:nth-child(2) { transition-delay: 0.15s; background: var(--mist); }
    .testi-card:nth-child(3) { transition-delay: 0.3s; }

    .testi-hearts {
      font-size: 20px; margin-bottom: 20px; opacity: 0.7;
      letter-spacing: 4px;
    }
    .testi-card p {
      font-family: 'Playfair Display', serif;
      font-size: 18px; font-style: italic; font-weight: 400;
      line-height: 1.65; color: var(--ink);
      margin-bottom: 28px;
    }
    .testi-couple {
      display: flex; align-items: center; gap: 12px; justify-content: center;
    }
    .testi-av {
      width: 38px; height: 38px;
      border-radius: 50%;
      border: 2px solid rgba(212,136,154,0.3);
    }
    .av-a { background: linear-gradient(135deg,#e8c4c0,#d4a0b0); }
    .av-b { background: linear-gradient(135deg,#c0c8e0,#a0a8d0); }
    .av-c { background: linear-gradient(135deg,#c0d4c0,#a0bca0); }
    .testi-name { font-size: 14px; font-weight: 500; color: var(--ink); }
    .testi-loc  { font-size: 11px; color: var(--dust); margin-top: 2px; }

    /* ─── FINAL CTA ─── */
    .cta-section {
      background: linear-gradient(160deg, var(--blush) 0%, var(--lilac) 50%, var(--mist) 100%);
      text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-arch {
      position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      width: 700px; height: 500px; pointer-events: none;
      border: 1px solid rgba(212,136,154,0.2);
      border-radius: 0 0 350px 350px;
      border-top: none;
    }
    .cta-inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
    .cta-script {
      font-family: 'Great Vibes', cursive;
      font-size: 48px; color: var(--rose);
      margin-bottom: 8px; display: block;
      opacity: 0; transform: translateY(20px);
      transition: opacity 0.8s, transform 0.8s;
    }
    .cta-script.up { opacity: 1; transform: translateY(0); }
    .cta-h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px,5vw,60px); font-weight: 400; line-height: 1.1;
      letter-spacing: -0.02em; color: var(--ink);
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.8s 0.15s, transform 0.8s 0.15s;
    }
    .cta-h2 em { font-style: italic; color: var(--rose); }
    .cta-h2.up { opacity: 1; transform: translateY(0); }
    .cta-lead {
      font-size: 16px; line-height: 1.75; font-weight: 300;
      color: var(--dust); margin: 20px 0 44px;
      opacity: 0; transform: translateY(16px);
      transition: opacity 0.8s 0.3s, transform 0.8s 0.3s;
    }
    .cta-lead.up { opacity: 1; transform: translateY(0); }
    .cta-btns {
      display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
      opacity: 0; transform: translateY(16px);
      transition: opacity 0.8s 0.45s, transform 0.8s 0.45s;
    }
    .cta-btns.up { opacity: 1; transform: translateY(0); }

    /* ─── FOOTER ─── */
    footer {
      background: var(--ink); padding: 52px 56px 36px;
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 24px;
    }
    .footer-logo-wrap .footer-script {
      font-family: 'Great Vibes', cursive;
      font-size: 36px; color: var(--blush);
    }
    .footer-tagline {
      font-family: 'Playfair Display', serif;
      font-size: 14px; font-style: italic;
      color: rgba(242,215,213,0.4); margin-top: 4px;
    }
    .footer-copy {
      font-size: 12px; color: rgba(242,215,213,0.25); letter-spacing: 0.06em;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 960px) {
      nav { padding: 20px 24px; }
      .nav-links { display: none; }
      .section-pad { padding: 80px 24px; }
      .how-grid { grid-template-columns: 1fr; gap: 32px; }
      .showcase-inner { grid-template-columns: 1fr; gap: 48px; }
      .showcase-visual { transform: none; }
      .showcase-badge { left: 0; }
      .testi-grid { grid-template-columns: 1fr; gap: 2px; }
      .stats-ribbon { flex-wrap: wrap; }
      .stat-item { min-width: 50%; }
      footer { padding: 40px 24px 28px; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }
