  :root {
    --red: #D91A2A;
    --red-dark: #A81220;
    --red-pale: #FFF0F1;
    --blue: #006A8E;
    --blue-pale: #E8F4F9;
    --ink: #141618;
    --ink-2: #3D3535;
    --ink-3: #7A6F6F;
    --bg: #F7F8FA;
    --white: #FFFFFF;
    --border: rgba(15, 27, 40, 0.08);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  .syne { font-family: 'Manrope', sans-serif; }

  /* ── NAV ── */
  #nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(247,248,250,0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
  }
  #nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
  .nav-inner {
    max-width: 1160px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px; height: 60px;
  }
  .logo { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 17px; color: var(--red); letter-spacing: -.3px; text-decoration: none; }
  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a { font-size: 13.5px; font-weight: 500; color: var(--ink-2); text-decoration: none; transition: color .2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--red); }
  .nav-ctas { display: flex; gap: 8px; align-items: center; }
  .btn-ghost { background: none; border: none; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 600; color: var(--ink-2); padding: 8px 16px; border-radius: 10px; transition: background .2s, color .2s; }
  .btn-ghost:hover { background: rgba(20,22,24,0.06); color: var(--ink); }
  .btn-red { background: var(--red); color: #fff; border: none; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 600; padding: 9px 20px; border-radius: 10px; transition: background .2s, transform .15s, box-shadow .2s; box-shadow: 0 6px 18px rgba(217,26,42,.22); }
  .btn-red:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(217,26,42,.28); }
  .btn-red:active { transform: translateY(0); }
  .nav-download { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; background: var(--ink); color: #fff; font-size: 13px; font-weight: 700; padding: 10px 16px; border-radius: 999px; box-shadow: 0 10px 26px rgba(20,22,24,.16); transition: transform .2s, background .2s, box-shadow .2s; }
  .nav-download:hover { background: var(--red); transform: translateY(-1px); box-shadow: 0 14px 30px rgba(217,26,42,.25); }

  /* ── HAMBURGER ── */
  .burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
  .burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { display: none; position: fixed; top: 60px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); z-index: 99; padding: 16px 24px 20px; flex-direction: column; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .mobile-menu a { display: block; padding: 10px 12px; font-size: 14px; font-weight: 500; color: var(--ink-2); text-decoration: none; border-radius: 8px; transition: background .15s; }
  .mobile-menu a:hover { background: var(--bg); color: var(--red); }
  .mobile-menu .btn-red { margin-top: 8px; text-align: center; display: block; width: 100%; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: grid; align-items: center;
    padding: 100px 24px 64px;
    position: relative; overflow: hidden;
  }
  .hero-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .hero-eyebrow { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 20px; }
  .eyebrow-line { width: 28px; height: 1.5px; background: var(--blue); border-radius: 2px; }
  .hero-h1 { font-family: 'Manrope', sans-serif; font-size: clamp(36px, 4.5vw, 54px); font-weight: 800; line-height: 1.07; letter-spacing: -.04em; color: var(--ink); }
  .hero-h1 .accent { color: var(--red); }
  .hero-p { margin-top: 18px; font-size: 16px; line-height: 1.75; color: var(--ink-3); font-weight: 400; max-width: 460px; }
  .hero-btns { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
  .btn-outline { background: none; border: 1.5px solid var(--border); cursor: pointer; font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 600; color: var(--ink-2); padding: 9px 20px; border-radius: 10px; transition: border-color .2s, color .2s; }
  .btn-outline:hover { border-color: var(--red); color: var(--red); }
  .renewal-pill { margin-top: 22px; display: inline-flex; align-items: center; gap: 10px; max-width: 100%; line-height: 1.4; background: rgba(255,255,255,.78); border: 1px solid rgba(217,26,42,.14); border-radius: 999px; padding: 8px 14px 8px 8px; box-shadow: 0 12px 30px rgba(20,22,24,.08); backdrop-filter: blur(12px); color: var(--ink-2); font-size: 12.5px; font-weight: 700; }
  .renewal-pulse { width: 26px; height: 26px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; box-shadow: 0 0 0 7px rgba(217,26,42,.1); animation: pulseDot 1.8s ease-in-out infinite; }
  .hero-trust { margin-top: 36px; display: flex; align-items: center; gap: 16px; }
  .trust-avatars { display: flex; }
  .trust-avatars span { display: inline-block; width: 32px; height: 32px; border-radius: 50%; border: 2.5px solid var(--bg); background: #C2DCEA; font-size: 11px; font-weight: 700; color: var(--blue); display: grid; place-items: center; margin-left: -8px; font-family: 'Manrope', sans-serif; }
  .trust-avatars span:first-child { margin-left: 0; }
  .trust-text { font-size: 12.5px; color: var(--ink-3); font-weight: 500; }
  .trust-text strong { color: var(--ink); font-weight: 700; }

  /* hero card grid */
  .hero-cards { position: relative; }
  .card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .pay-card {
    background: var(--white); border-radius: 20px; padding: 20px;
    box-shadow: 0 4px 20px rgba(20,22,24,0.07);
    transition: transform .25s, box-shadow .25s;
    cursor: default;
  }
  .pay-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(20,22,24,0.11); }
  .pay-card.red-card { background: var(--red); color: #fff; }
  .card-icon { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 28px; }
  .card-icon.light { background: var(--bg); color: var(--blue); }
  .card-icon.red-card-icon { background: rgba(255,255,255,.18); color: #fff; }
  .pay-card h4 { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: -.01em; color: var(--ink); }
  .pay-card.red-card h4 { color: #fff; }
  .pay-card p { font-size: 11.5px; font-weight: 500; color: var(--ink-3); margin-top: 3px; }
  .pay-card.red-card p { color: rgba(255,255,255,.72); }
  .secure-strip { margin-top: 12px; background: var(--white); border-radius: 16px; padding: 14px 16px; box-shadow: 0 4px 20px rgba(20,22,24,0.07); display: flex; align-items: center; gap: 12px; }
  .secure-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--blue-pale); color: var(--blue); display: grid; place-items: center; flex-shrink: 0; }
  .secure-strip h5 { font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700; color: var(--ink); }
  .secure-strip p { font-size: 11.5px; color: var(--ink-3); font-weight: 500; }
  .toast {
    position: absolute; bottom: -18px; left: -18px;
    background: var(--white); border-radius: 14px; padding: 12px 16px;
    box-shadow: 0 12px 36px rgba(20,22,24,0.13);
    display: flex; align-items: center; gap: 10px;
    animation: floatUp 3.5s ease-in-out infinite;
  }
  .toast-badge { width: 34px; height: 34px; border-radius: 9px; background: rgba(22,163,74,.12); color: #16A34A; display: grid; place-items: center; font-size: 16px; flex-shrink: 0; }
  .toast p { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); }
  .toast h5 { font-family: 'Manrope', sans-serif; font-size: 13.5px; font-weight: 800; color: var(--ink); margin-top: 1px; }
  @keyframes floatUp { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
  @keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 6px rgba(217,26,42,.11); } 50% { box-shadow: 0 0 0 12px rgba(217,26,42,.04); } }

  /* blob bg */
  .blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }

  /* ── SECTIONS SHARED ── */
  section { padding: 80px 24px; }
  .section-inner { max-width: 1160px; margin: 0 auto; }
  .section-tag { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
  .section-tag::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--blue); border-radius: 2px; }
  .section-h2 { font-family: 'Manrope', sans-serif; font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; letter-spacing: -.04em; line-height: 1.1; color: var(--ink); }
  .section-sub { font-size: 15.5px; line-height: 1.75; color: var(--ink-3); margin-top: 12px; font-weight: 400; }

  /* ── STATS BAR ── */
  #stats { background: var(--white); padding: 40px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .stats-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-around; gap: 24px; flex-wrap: wrap; }
  .stat-item { text-align: center; }
  .stat-num { font-family: 'Manrope', sans-serif; font-size: 28px; font-weight: 800; color: var(--ink); letter-spacing: -.04em; }
  .stat-num span { color: var(--red); }
  .stat-label { font-size: 12px; font-weight: 500; color: var(--ink-3); margin-top: 2px; }
  .stat-divider { width: 1px; height: 44px; background: var(--border); }

  /* ── SERVICES ── */
  #services { background: var(--bg); }
  .services-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .srv-card {
    background: var(--white); border-radius: 20px; padding: 24px;
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    cursor: default; position: relative; overflow: hidden;
  }
  .srv-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(217,26,42,0) 60%, rgba(217,26,42,.04)); opacity: 0; transition: opacity .3s; }
  .srv-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(20,22,24,0.09); border-color: rgba(217,26,42,.18); }
  .srv-card:hover::after { opacity: 1; }
  .srv-icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 20px; }
  .srv-icon.default { background: var(--bg); color: var(--blue); }
  .srv-icon.highlight { background: var(--red); color: #fff; }
  .srv-card h3 { font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
  .srv-card p { font-size: 13px; line-height: 1.7; color: var(--ink-3); margin-top: 6px; }
  .srv-link { display: inline-flex; align-items: center; gap: 4px; font-size: 12.5px; font-weight: 600; color: var(--red); margin-top: 14px; text-decoration: none; opacity: 0; transition: opacity .2s; }
  .srv-card:hover .srv-link { opacity: 1; }

  /* ── FEATURES ── */
  #features { background: var(--white); }
  .features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .feat-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
  .feat-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: var(--bg); border-radius: 14px; transition: background .2s; }
  .feat-item:hover { background: var(--red-pale); }
  .feat-check { width: 24px; height: 24px; border-radius: 7px; background: var(--red); color: #fff; display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; font-size: 11px; }
  .feat-item p { font-size: 13.5px; font-weight: 500; line-height: 1.6; color: var(--ink-2); }
  /* schedule widget */
  .schedule-widget { background: radial-gradient(circle at 20% 10%, rgba(217,26,42,.13), transparent 32%), linear-gradient(145deg, #101418, #20262b); border-radius: 28px; padding: 22px; box-shadow: 0 24px 60px rgba(20,22,24,.18); position: relative; overflow: hidden; }
  .schedule-widget::before { content: ''; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 22px; pointer-events: none; }
  .renewal-orbit { position: absolute; width: 180px; height: 180px; border: 1px dashed rgba(255,255,255,.18); border-radius: 50%; right: -52px; top: -44px; animation: spin 18s linear infinite; }
  .renewal-orbit::after { content: ''; position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--red); top: 26px; left: 18px; box-shadow: 0 0 22px rgba(217,26,42,.75); }
  .sched-card { background: rgba(255,255,255,.96); border-radius: 18px; padding: 18px; box-shadow: 0 18px 36px rgba(0,0,0,.16); position: relative; z-index: 1; }
  .sched-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 14px; }
  .sched-header h4 { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; color: var(--ink); }
  .badge-green { background: rgba(22,163,74,.1); color: #16A34A; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
  .sched-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; background: var(--bg); border-radius: 10px; margin-bottom: 8px; }
  .sched-row:last-child { margin-bottom: 0; }
  .sched-row span:first-child { font-size: 13px; font-weight: 500; color: var(--ink-2); }
  .dot-red { width: 8px; height: 8px; border-radius: 50%; background: var(--red); display: inline-block; }
  .renewal-meter { margin: 16px 0; background: var(--bg); border-radius: 14px; padding: 12px; }
  .renewal-meter-top { display: flex; justify-content: space-between; gap: 12px; color: var(--ink-2); font-size: 11.5px; font-weight: 700; margin-bottom: 8px; }
  .renewal-track { height: 8px; background: rgba(20,22,24,.08); border-radius: 999px; overflow: hidden; }
  .renewal-fill { display: block; width: 72%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--red), #ff7b54); box-shadow: 0 0 18px rgba(217,26,42,.35); }
  .renewal-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
  .renewal-mini { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 12px; color: #fff; position: relative; z-index: 1; }
  .renewal-mini strong { display: block; font-family: 'Manrope', sans-serif; font-size: 18px; line-height: 1; }
  .renewal-mini span { display: block; margin-top: 5px; font-size: 10.5px; color: rgba(255,255,255,.66); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* ── RED BANNER ── */
  #banner { background: var(--bg); padding: 0 24px 80px; }
  .banner-inner { max-width: 1160px; margin: 0 auto; background: var(--red); border-radius: 28px; padding: 48px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; position: relative; overflow: hidden; }
  .banner-inner::before { content: ''; position: absolute; right: -80px; top: -80px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.07); }
  .banner-inner::after { content: ''; position: absolute; left: 30%; bottom: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(0,0,0,.08); }
  .banner-h2 { font-family: 'Manrope', sans-serif; font-size: clamp(22px, 3vw, 32px); font-weight: 800; letter-spacing: -.04em; color: #fff; line-height: 1.15; }
  .banner-tag { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 10px; }
  .banner-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: relative; z-index: 1; }
  .banner-chip { background: rgba(255,255,255,.12); border-radius: 14px; padding: 14px 16px; font-family: 'Manrope', sans-serif; font-size: 13.5px; font-weight: 700; color: #fff; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.12); transition: background .2s; }
  .banner-chip:hover { background: rgba(255,255,255,.2); }

  /* ── TESTIMONIALS ── */
  #testimonials { background: var(--white); }
  .testi-header { text-align: center; max-width: 500px; margin: 0 auto 40px; }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .testi-card { background: var(--bg); border-radius: 20px; padding: 24px; border: 1px solid var(--border); }
  .stars { color: #F59E0B; font-size: 13px; letter-spacing: 1px; margin-bottom: 14px; }
  .testi-card blockquote { font-size: 14px; line-height: 1.75; color: var(--ink-2); font-style: italic; font-weight: 400; }
  .testi-author { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
  .author-av { width: 36px; height: 36px; border-radius: 50%; background: var(--blue-pale); color: var(--blue); display: grid; place-items: center; font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700; flex-shrink: 0; }
  .author-name { font-family: 'Manrope', sans-serif; font-size: 13.5px; font-weight: 700; color: var(--ink); }
  .author-role { font-size: 11.5px; color: var(--ink-3); font-weight: 500; }

  /* ── FAQ ── */
  #faq { background: var(--bg); }
  .faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
  .faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 0; }
  .faq-item { background: var(--white); border-radius: 16px; border: 1px solid var(--border); overflow: hidden; }
  .faq-q { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; cursor: pointer; user-select: none; }
  .faq-q h4 { font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.4; }
  .faq-chevron { width: 24px; height: 24px; border-radius: 50%; background: var(--bg); color: var(--ink-3); display: grid; place-items: center; flex-shrink: 0; transition: background .2s, transform .3s; font-size: 11px; }
  .faq-item.open .faq-chevron { background: var(--red); color: #fff; transform: rotate(180deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s ease; }
  .faq-a-inner { padding: 0 20px 16px; font-size: 13.5px; line-height: 1.75; color: var(--ink-3); border-top: 1px solid var(--border); padding-top: 14px; }
  .faq-item.open .faq-a { max-height: 200px; }

  /* ── CONTACT ── */
  #contact { background: var(--white); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
  .contact-detail { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
  .contact-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--bg); color: var(--blue); display: grid; place-items: center; flex-shrink: 0; }
  .contact-detail span { font-size: 13.5px; color: var(--ink-2); font-weight: 500; }
  .contact-form { background: var(--bg); border-radius: 22px; padding: 28px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
  .form-input { width: 100%; background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; padding: 11px 14px; font-family: 'Inter', sans-serif; font-size: 13.5px; color: var(--ink); outline: none; transition: border-color .2s; }
  .form-input:focus { border-color: var(--red); }
  .form-input::placeholder { color: var(--ink-3); }
  textarea.form-input { min-height: 110px; resize: vertical; }
  .form-submit { margin-top: 14px; }

  /* ── DOWNLOAD ── */
  #download { background: var(--bg); padding-bottom: 72px; }
  .dl-inner { max-width: 1160px; margin: 0 auto; background: linear-gradient(135deg, #111417 0%, #20272d 58%, #062a36 100%); border-radius: 30px; padding: 54px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; position: relative; overflow: hidden; box-shadow: 0 24px 70px rgba(20,22,24,.2); }
  .dl-inner::before { content: ''; position: absolute; right: -40px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(0,106,142,.25); filter: blur(60px); pointer-events: none; }
  .dl-tag { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #C6E7FF; margin-bottom: 10px; }
  .dl-h2 { font-family: 'Manrope', sans-serif; font-size: clamp(24px, 3vw, 36px); font-weight: 800; letter-spacing: -.04em; color: #fff; line-height: 1.15; }
  .dl-p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.55); margin-top: 12px; }
  .dl-btns { display: flex; gap: 12px; }
  .dl-btn { min-width: 154px; background: rgba(255,255,255,.96); border-radius: 14px; padding: 12px 16px; cursor: pointer; border: 1px solid rgba(255,255,255,.18); text-align: left; transition: transform .2s, box-shadow .2s, background .2s; box-shadow: 0 10px 24px rgba(0,0,0,.2); display: inline-flex; align-items: center; gap: 10px; }
  .dl-btn:hover { transform: translateY(-3px) scale(1.015); box-shadow: 0 16px 34px rgba(0,0,0,.3); background: #fff; }
  .dl-icon { width: 34px; height: 34px; border-radius: 10px; background: var(--ink); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
  .dl-btn .platform { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); display: block; }
  .dl-btn .name { font-family: 'Manrope', sans-serif; font-size: 15.5px; font-weight: 800; color: var(--ink); display: block; margin-top: 2px; }

  /* ── FOOTER ── */
  footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,.06); padding: 28px 24px; }
  .footer-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
  footer p { font-size: 12.5px; color: rgba(255,255,255,.4); }
  .footer-links { display: flex; gap: 20px; }
  .footer-links a { font-size: 12.5px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
  .footer-links a:hover { color: rgba(255,255,255,.8); }

  /* ── SCROLL REVEAL ── */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: .08s; }
  .reveal-delay-2 { transition-delay: .16s; }
  .reveal-delay-3 { transition-delay: .24s; }
  .reveal-delay-4 { transition-delay: .32s; }

  /* ── ABOUT GRID ── */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

  /* ── DOWNLOAD BUTTON ── */
  .dl-btn { text-decoration: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-inner, .features-grid, .faq-layout, .contact-grid, .dl-inner { grid-template-columns: 1fr; gap: 36px; }
    .about-grid { grid-template-columns: 1fr; gap: 24px; }
    .services-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
    .banner-inner { grid-template-columns: 1fr; padding: 32px 28px; }
    .hero-cards { display: none; }
    .stat-divider { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .dl-btns { flex-wrap: wrap; }
  }
  @media (max-width: 640px) {
    .nav-links, .btn-ghost { display: none; }
    .burger { display: flex; }
    .services-grid, .testi-grid, .banner-chips { grid-template-columns: 1fr; }
    #hero { padding-top: 90px; }
    .nav-download { display: none; }
    .dl-inner { border-radius: 22px; padding: 36px 24px; }
    .dl-btn { width: 100%; }
    section { padding: 60px 20px; }
  }
