/* ═══════════════════════════════════════════
       DESIGN TOKENS — matches voice-suite.html
    ═══════════════════════════════════════════ */
/*    :root {
      --stt_bg:        #0d0f14;
      --surface:   #13161e;
      --panel:     #1a1e29;
      --stt_border:    #252b3b;
      --green:     #4fffb0;
      --cyan:      #00c9ff;
      --warn:      #ff6b6b;
      --yellow:    #f7c948;
      --purple:    #b48cff;
      --stt_text:      #e8eaf0;
      --stt_muted:     #5a6175;
      --stt_radius:    14px;
      --nav-h:     66px;
    }
*/
    /* ═══════════════════════════════════════════
       BASE — scoped so it never leaks to other pages
       when embedded via PHP include/require
    ═══════════════════════════════════════════ */
    .vs-page {
      background: var(--stt_bg);
      color: var(--stt_text);
      font-family: 'Syne', sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow-x: hidden;
    }

    /* subtle dot-grid background */
    .vs-page::before {
      content: '';
      position: fixed; inset: 0; z-index: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(79,255,176,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79,255,176,.022) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .vs-page * { box-sizing: border-box; }
    .vs-page a { text-decoration: none; }
    .vs-page img, .vs-page svg { display: block; }

    /* ═══════════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════════ */
    .vs-nav {
      position: sticky; top: 0; z-index: 100;
      height: var(--nav-h);
      background: rgba(13,15,20,.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--stt_border);
    }

    .vs-nav__inner {
      max-width: 1200px; margin: 0 auto;
      padding: 0 auto;
      height: 100%;
      display: flex; align-items: center; gap: 16px;
      justify-content: space-between;
    }

    /* Logo */
    .vs-logo {
      display: flex; align-items: center; gap: 11px;
      flex-shrink: 0; color: inherit;
    }
    .vs-logo__ring {
      width: 36px; height: 36px; border-radius: 50%;
      border: 2px solid var(--green);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 14px rgba(79,255,176,.22);
      flex-shrink: 0;
    }
    .vs-logo__ring svg { width: 17px; height: 17px; fill: var(--green); }
    .vs-logo__text { display: flex; flex-direction: column; line-height: 1.15; }
    .vs-logo__name {
      font-size: .97rem; font-weight: 800; letter-spacing: -.02em;
      color: var(--stt_text);
    }
    .vs-logo__tag {
      font-family: 'DM Mono', monospace; font-size: .62rem;
      color: var(--stt_muted); letter-spacing: .04em;
    }

    /* Nav links */
    .vs-nav__links {
      display: flex; align-items: center; gap: 4px;
      margin-left: auto;
    }
    .vs-nav__link {
      display: flex; align-items: center; gap: 7px;
      padding: 7px 14px; border-radius: 10px;
      border: 1px solid transparent;
      color: var(--stt_muted);
      font-size: .82rem; font-weight: 600;
      transition: color .18s, border-color .18s, background .18s;
      white-space: nowrap;
    }
    .vs-nav__link svg { width: 15px; height: 15px; flex-shrink: 0; fill: currentColor; }
    .vs-nav__link:hover {
      color: var(--stt_text);
      border-color: var(--stt_border);
      background: var(--panel);
    }
    .vs-nav__link.active-stt {
      color: var(--green);
      border-color: rgba(79,255,176,.25);
      background: rgba(79,255,176,.06);
    }
    .vs-nav__link.active-tts {
      color: var(--cyan);
      border-color: rgba(0,201,255,.25);
      background: rgba(0,201,255,.06);
    }

    /* Badge pills on nav */
    .vs-nav__badge {
      font-family: 'DM Mono', monospace; font-size: .6rem;
      padding: 1px 6px; border-radius: 20px;
    }
    .vs-nav__badge--stt {
      background: rgba(79,255,176,.1); border: 1px solid rgba(79,255,176,.22); color: var(--green);
    }
    .vs-nav__badge--tts {
      background: rgba(0,201,255,.1); border: 1px solid rgba(0,201,255,.22); color: var(--cyan);
    }

    /* CTA button in nav */
    .vs-nav__cta {
      display: flex; align-items: center; gap: 7px;
      padding: 8px 18px; border-radius: 10px;
      border: 1px solid rgba(79,255,176,.3);
      background: rgba(79,255,176,.07);
      color: var(--green);
      font-family: 'Syne', sans-serif;
      font-size: .82rem; font-weight: 700;
      transition: background .18s, box-shadow .18s, transform .15s;
      white-space: nowrap; margin-left: 8px;
    }
    .vs-nav__cta:hover {
      background: rgba(79,255,176,.13);
      box-shadow: 0 4px 18px rgba(79,255,176,.15);
      transform: translateY(-1px);
    }
    .vs-nav__cta svg { width: 14px; height: 14px; fill: currentColor; }

    /* Hamburger */
    .vs-nav__toggle {
      display: none; flex-direction: column; gap: 5px;
      width: 34px; height: 34px; padding: 5px;
      background: none; border: none; cursor: pointer;
      margin-left: auto;
    }
    .vs-nav__toggle span {
      display: block; height: 2px; border-radius: 2px;
      background: var(--stt_muted); transition: background .2s, transform .25s, opacity .2s;
    }
    .vs-nav__toggle:hover span { background: var(--stt_text); }
    .vs-nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .vs-nav__toggle.open span:nth-child(2) { opacity: 0; }
    .vs-nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ═══════════════════════════════════════════
       MAIN CONTENT WRAPPER
    ═══════════════════════════════════════════ */
    .vs-main {
      flex: 1;
      position: relative; z-index: 1;
    }

    /* ═══════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════ */
    .vs-hero {
      text-align: center;
      padding: 80px 24px 88px;
      max-width: 740px;
      margin: 0 auto;
      position: relative;
    }

    /* glow orbs behind hero */
    .vs-hero::before,
    .vs-hero::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      z-index: -1;
    }
    .vs-hero::before {
      width: 420px; height: 260px;
      background: rgba(79,255,176,.07);
      top: 40px; left: 50%; transform: translateX(-60%);
    }
    .vs-hero::after {
      width: 360px; height: 220px;
      background: rgba(0,201,255,.07);
      top: 80px; left: 50%; transform: translateX(-30%);
    }

    .vs-hero__eyebrow {
      display: flex; align-items: center; justify-content: center;
      flex-wrap: wrap; gap: 8px; margin-bottom: 26px;
    }
    .vs-pill {
      display: inline-flex; align-items: center; gap: 5px;
      padding: 4px 12px; border-radius: 20px;
      font-family: 'DM Mono', monospace; font-size: .7rem;
      border: 1px solid;
    }
    .vs-pill svg { width: 11px; height: 11px; fill: currentColor; }
    .vs-pill--green { background: rgba(79,255,176,.08); border-color: rgba(79,255,176,.22); color: var(--green); }
    .vs-pill--cyan  { background: rgba(0,201,255,.08);  border-color: rgba(0,201,255,.22);  color: var(--cyan); }
    .vs-pill--stt_muted { background: rgba(90,97,117,.1);   border-color: var(--stt_border);         color: var(--stt_muted); }

    .vs-hero__title {
      font-size: clamp(2.4rem, 7vw, 4.2rem);
      font-weight: 800;
      letter-spacing: -.04em;
      line-height: 1.08;
      margin-bottom: 22px;
      color: var(--stt_text);
    }
    .vs-hero__title .vs-grad-green {
      background: linear-gradient(90deg, var(--green), #a0ffda);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .vs-hero__title .vs-grad-cyan {
      background: linear-gradient(90deg, var(--cyan), #a0eeff);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .vs-hero__sub {
      font-size: 1.05rem; color: var(--stt_muted); line-height: 1.75;
      max-width: 520px; margin: 0 auto 40px;
    }

    .vs-hero__actions {
      display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    }

    .vs-cta {
      display: flex; align-items: center; gap: 13px;
      padding: 16px 28px; border-radius: 16px;
      border: 1px solid; font-family: 'Syne', sans-serif;
      font-size: .9rem; font-weight: 700;
      transition: transform .18s, box-shadow .2s, background .18s;
      min-width: 210px; position: relative; overflow: hidden;
    }
    .vs-cta__icon { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }
    .vs-cta__label { display: flex; flex-direction: column; text-align: left; }
    .vs-cta__title { font-size: .9rem; font-weight: 700; }
    .vs-cta__sub   { font-family: 'DM Mono', monospace; font-size: .65rem; color: var(--stt_muted); margin-top: 1px; font-weight: 400; }

    .vs-cta--stt {
      border-color: rgba(79,255,176,.3); color: var(--green);
      background: rgba(79,255,176,.05);
    }
    .vs-cta--stt:hover {
      background: rgba(79,255,176,.1);
      box-shadow: 0 16px 44px rgba(79,255,176,.12);
      transform: translateY(-3px);
    }
    .vs-cta--tts {
      border-color: rgba(0,201,255,.3); color: var(--cyan);
      background: rgba(0,201,255,.05);
    }
    .vs-cta--tts:hover {
      background: rgba(0,201,255,.1);
      box-shadow: 0 16px 44px rgba(0,201,255,.12);
      transform: translateY(-3px);
    }

    /* scroll hint */
    .vs-hero__scroll {
      margin-top: 48px;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: var(--stt_muted); font-family: 'DM Mono', monospace; font-size: .68rem;
      letter-spacing: .06em; text-transform: uppercase;
      animation: scrollBob 2s ease-in-out infinite;
    }
    .vs-hero__scroll svg { width: 16px; height: 16px; fill: var(--stt_muted); }
    @keyframes scrollBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

    /* ═══════════════════════════════════════════
       SECTION WRAPPER
    ═══════════════════════════════════════════ */
    .vs-section {
      padding: 72px 24px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .vs-section__head {
      text-align: center; margin-bottom: 48px;
    }
    .vs-section__eyebrow {
      font-family: 'DM Mono', monospace; font-size: .72rem;
      letter-spacing: .1em; text-transform: uppercase;
      color: var(--stt_muted); margin-bottom: 10px;
    }
    .vs-section__title {
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      font-weight: 800; letter-spacing: -.03em;
      color: var(--stt_text);
    }
    .vs-section__sub {
      font-size: .95rem; color: var(--stt_muted); margin-top: 12px;
      line-height: 1.7; max-width: 520px; margin-left: auto; margin-right: auto;
    }

    /* divider */
    .vs-divider {
      height: 1px; max-width: 1200px; margin: 0 auto;
      background: linear-gradient(90deg, transparent, var(--stt_border), transparent);
    }

    /* ═══════════════════════════════════════════
       FEATURE CARDS (the two main tools)
    ═══════════════════════════════════════════ */
    .vs-tools-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
    }

    .vs-tool-card {
      background: var(--surface); border: 1px solid var(--stt_border);
      border-radius: 22px; padding: 32px 28px;
      position: relative; overflow: hidden;
      transition: border-color .22s, box-shadow .22s, transform .2s;
    }
    .vs-tool-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    }
    .vs-tool-card--stt::before { background: linear-gradient(90deg, transparent, var(--green), transparent); }
    .vs-tool-card--tts::before { background: linear-gradient(90deg, transparent, var(--cyan), transparent); }
    .vs-tool-card--stt:hover { border-color: rgba(79,255,176,.28); box-shadow: 0 16px 48px rgba(79,255,176,.07); transform: translateY(-3px); }
    .vs-tool-card--tts:hover { border-color: rgba(0,201,255,.28);  box-shadow: 0 16px 48px rgba(0,201,255,.07);  transform: translateY(-3px); }

    /* glow blob inside card */
    .vs-tool-card__glow {
      position: absolute; width: 200px; height: 200px; border-radius: 50%;
      filter: blur(60px); pointer-events: none; opacity: .08;
      top: -60px; right: -60px;
    }
    .vs-tool-card--stt .vs-tool-card__glow { background: var(--green); }
    .vs-tool-card--tts .vs-tool-card__glow { background: var(--cyan); }

    .vs-tool-card__head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
    .vs-tool-icon {
      width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .vs-tool-icon svg { width: 26px; height: 26px; fill: currentColor; }
    .vs-tool-icon--stt { background: rgba(79,255,176,.1); border: 1px solid rgba(79,255,176,.22); color: var(--green); }
    .vs-tool-icon--tts { background: rgba(0,201,255,.1);  border: 1px solid rgba(0,201,255,.22);  color: var(--cyan); }

    .vs-tool-card__titles { flex: 1; }
    .vs-tool-card__name {
      font-size: 1.2rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 4px;
    }
    .vs-tool-card--stt .vs-tool-card__name { color: var(--green); }
    .vs-tool-card--tts .vs-tool-card__name { color: var(--cyan); }
    .vs-tool-card__type { font-family: 'DM Mono', monospace; font-size: .72rem; color: var(--stt_muted); }

    .vs-tool-card__desc { font-size: .88rem; color: var(--stt_muted); line-height: 1.7; margin-bottom: 22px; }

    .vs-tool-card__list { list-style: none; margin-bottom: 26px; display: flex; flex-direction: column; gap: 8px; }
    .vs-tool-card__list li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: .82rem; color: var(--stt_muted); line-height: 1.5;
    }
    .vs-tool-card__list li::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      flex-shrink: 0; margin-top: 6px;
    }
    .vs-tool-card--stt .vs-tool-card__list li::before { background: var(--green); box-shadow: 0 0 6px rgba(79,255,176,.5); }
    .vs-tool-card--tts .vs-tool-card__list li::before { background: var(--cyan);  box-shadow: 0 0 6px rgba(0,201,255,.5); }

    .vs-tool-card__btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 20px; border-radius: 10px; border: 1px solid;
      font-family: 'Syne', sans-serif; font-size: .82rem; font-weight: 700;
      transition: background .18s, box-shadow .18s, transform .15s;
    }
    .vs-tool-card__btn svg { width: 14px; height: 14px; fill: currentColor; }
    .vs-tool-card--stt .vs-tool-card__btn {
      border-color: rgba(79,255,176,.3); color: var(--green);
      background: rgba(79,255,176,.06);
    }
    .vs-tool-card--stt .vs-tool-card__btn:hover {
      background: rgba(79,255,176,.12); box-shadow: 0 6px 20px rgba(79,255,176,.12); transform: translateY(-1px);
    }
    .vs-tool-card--tts .vs-tool-card__btn {
      border-color: rgba(0,201,255,.3); color: var(--cyan);
      background: rgba(0,201,255,.06);
    }
    .vs-tool-card--tts .vs-tool-card__btn:hover {
      background: rgba(0,201,255,.12); box-shadow: 0 6px 20px rgba(0,201,255,.12); transform: translateY(-1px);
    }

    /* ═══════════════════════════════════════════
       HOW IT WORKS — 3 steps
    ═══════════════════════════════════════════ */
    .vs-steps-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
    }
    .vs-step {
      background: var(--surface); border: 1px solid var(--stt_border);
      border-radius: 18px; padding: 28px 24px;
      position: relative; overflow: hidden;
    }
    .vs-step__num {
      font-family: 'DM Mono', monospace; font-size: 2.2rem; font-weight: 300;
      color: var(--stt_border); line-height: 1; margin-bottom: 16px;
      letter-spacing: -.04em;
    }
    .vs-step__icon {
      width: 40px; height: 40px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
    }
    .vs-step__icon svg { width: 20px; height: 20px; fill: currentColor; }
    .vs-step:nth-child(1) .vs-step__icon { background: rgba(79,255,176,.1);  border: 1px solid rgba(79,255,176,.2);  color: var(--green); }
    .vs-step:nth-child(2) .vs-step__icon { background: rgba(0,201,255,.1);   border: 1px solid rgba(0,201,255,.2);   color: var(--cyan); }
    .vs-step:nth-child(3) .vs-step__icon { background: rgba(180,140,255,.1); border: 1px solid rgba(180,140,255,.2); color: var(--purple); }
    .vs-step__title { font-size: .95rem; font-weight: 700; color: var(--stt_text); margin-bottom: 8px; }
    .vs-step__desc  { font-size: .82rem; color: var(--stt_muted); line-height: 1.65; }

    /* ═══════════════════════════════════════════
       PRIVACY BANNER
    ═══════════════════════════════════════════ */
    .vs-privacy {
      margin: 0 24px;
      background: var(--surface);
      border: 1px solid var(--stt_border);
      border-radius: 20px;
      padding: 36px 40px;
      display: flex; align-items: center; gap: 28px;
      position: relative; overflow: hidden;
      max-width: 1200px; margin-left: auto; margin-right: auto;
    }
    .vs-privacy::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--purple), var(--cyan), transparent);
    }
    .vs-privacy__icon {
      width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
      background: rgba(180,140,255,.1); border: 1px solid rgba(180,140,255,.22);
      display: flex; align-items: center; justify-content: center;
      color: var(--purple);
    }
    .vs-privacy__icon svg { width: 28px; height: 28px; fill: currentColor; }
    .vs-privacy__body { flex: 1; }
    .vs-privacy__title { font-size: 1.1rem; font-weight: 800; color: var(--stt_text); margin-bottom: 6px; }
    .vs-privacy__desc  { font-size: .87rem; color: var(--stt_muted); line-height: 1.65; }
    .vs-privacy__checks {
      display: flex; gap: 20px; flex-wrap: wrap; margin-top: 14px;
    }
    .vs-check {
      display: flex; align-items: center; gap: 7px;
      font-family: 'DM Mono', monospace; font-size: .74rem; color: var(--stt_muted);
    }
    .vs-check svg { width: 14px; height: 14px; fill: var(--green); flex-shrink: 0; }

    /* ═══════════════════════════════════════════
       BROWSER SUPPORT STRIP
    ═══════════════════════════════════════════ */
    .vs-browsers {
      padding: 48px 24px;
      text-align: center;
    }
    .vs-browsers__label {
      font-family: 'DM Mono', monospace; font-size: .72rem;
      color: var(--stt_muted); letter-spacing: .08em; text-transform: uppercase;
      margin-bottom: 20px;
    }
    .vs-browsers__row {
      display: flex; align-items: center; justify-content: center;
      gap: 12px; flex-wrap: wrap;
    }
    .vs-browser-chip {
      display: flex; align-items: center; gap: 8px;
      padding: 8px 16px; border-radius: 10px;
      background: var(--panel); border: 1px solid var(--stt_border);
      font-size: .8rem; color: var(--stt_muted);
      font-family: 'DM Mono', monospace;
    }
    .vs-browser-chip__dot {
      width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
    }
    .vs-browser-chip__dot--full    { background: var(--green); box-shadow: 0 0 6px rgba(79,255,176,.5); }
    .vs-browser-chip__dot--partial { background: var(--yellow); }
    .vs-browser-chip__dot--no      { background: var(--warn); }

    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    .vs-footer {
      border-top: 1px solid var(--stt_border);
      background: var(--surface);
      position: relative; z-index: 1;
    }
    .vs-footer__inner {
      max-width: 1200px; margin: 0 auto;
      padding: 48px 28px 32px;
    }
    .vs-footer__top {
      display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 40px; margin-bottom: 48px;
    }

    /* Brand column */
    .vs-footer__brand {outline: none; /* Temp */}
    .vs-footer__logo {
      display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
    }
    .vs-footer__logo-ring {
      width: 32px; height: 32px; border-radius: 50%;
      border: 2px solid var(--green);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 10px rgba(79,255,176,.18);
    }
    .vs-footer__logo-ring svg { width: 15px; height: 15px; fill: var(--green); }
    .vs-footer__logo-name { font-size: .9rem; font-weight: 800; color: var(--stt_text); }
    .vs-footer__tagline {
      font-family: 'DM Mono', monospace; font-size: .72rem;
      color: var(--stt_muted); line-height: 1.65; margin-bottom: 18px;
      max-width: 240px;
    }
    .vs-footer__privacy-note {
      display: flex; align-items: center; gap: 7px;
      font-family: 'DM Mono', monospace; font-size: .68rem;
      color: var(--stt_muted);
      background: rgba(79,255,176,.05);
      border: 1px solid rgba(79,255,176,.12);
      border-radius: 8px; padding: 8px 12px;
      width: fit-content;
    }
    .vs-footer__privacy-note svg { width: 12px; height: 12px; fill: var(--green); flex-shrink: 0; }

    /* Footer nav columns */
    .vs-footer__col-title {
      font-size: .75rem; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; color: var(--stt_text);
      margin-bottom: 14px;
    }
    .vs-footer__col-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .vs-footer__col-links a {
      font-size: .83rem; color: var(--stt_muted);
      transition: color .18s; display: flex; align-items: center; gap: 6px;
    }
    .vs-footer__col-links a svg { width: 12px; height: 12px; fill: currentColor; opacity: .6; }
    .vs-footer__col-links a:hover { color: var(--stt_text); }

    /* Footer bottom bar */
    .vs-footer__bottom {
      border-top: 1px solid var(--stt_border);
      padding-top: 24px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 14px;
    }
    .vs-footer__copy {
      font-family: 'DM Mono', monospace; font-size: .72rem; color: var(--stt_muted);
    }
    .vs-footer__bottom-links {
      display: flex; gap: 20px; flex-wrap: wrap;
    }
    .vs-footer__bottom-links a {
      font-family: 'DM Mono', monospace; font-size: .72rem;
      color: var(--stt_muted); transition: color .18s;
    }
    .vs-footer__bottom-links a:hover { color: var(--stt_text); }

    /* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
    @media (max-width: 900px) {
      .vs-tools-grid   { grid-template-columns: 1fr; }
      .vs-steps-grid   { grid-template-columns: 1fr; }
      .vs-footer__top  { grid-template-columns: 1fr 1fr; }
      .vs-privacy      { flex-direction: column; text-align: center; }
      .vs-privacy__checks { justify-content: center; }
    }

    @media (max-width: 680px) {
      .vs-nav__links     { display: none; flex-direction: column; gap: 6px; align-items: stretch; }
      .vs-nav__links.open {
        display: flex; position: absolute; top: var(--nav-h); left: 0; right: 0;
        background: var(--surface); border-bottom: 1px solid var(--stt_border);
        padding: 14px 20px 18px;
        box-shadow: 0 12px 32px rgba(0,0,0,.4);
      }
      .vs-nav__toggle    { display: flex; }
      .vs-nav__cta       { margin-left: 0; }
      .vs-hero           { padding: 52px 16px 60px; }
      .vs-hero__actions  { flex-direction: column; align-items: center; }
      .vs-cta            { min-width: 0; width: 100%; max-width: 300px; }
      .vs-footer__top    { grid-template-columns: 1fr; gap: 28px; }
      .vs-footer__bottom { flex-direction: column; align-items: flex-start; }
      .vs-privacy        { padding: 28px 22px; }
      .vs-section        { padding: 52px 16px; }
    }
