/* ============================================================================
   KoolPay — Landing Page Design System
   Product of Oro Technologies Ltd  ·  Tagline: Fast. Secure. Kool.
   Tokens mirror the mobile app design system (docs/CLAUDE.md §3).
   ========================================================================== */

:root {
  /* Brand */
  --sapphire:    #352CAB;
  --purple:      #8D6AFA;
  --aqua:        #07C6D4;
  --indigo:      #23194B;
  --indigo-deep: #1A1238;

  /* Surfaces */
  --bg:          #F8F8FC;
  --card:        #FFFFFF;
  --input-bg:    #F4F3FF;
  --surface:     #EEEEEE;

  /* Text */
  --text:        #23194B;
  --text-2:      #6B7280;
  --text-inv:    #FFFFFF;

  /* Semantic */
  --success:     #12B76A;
  --border:      #E4E4EF;

  /* Gradients */
  --grad-brand:  linear-gradient(120deg, #352CAB 0%, #8D6AFA 55%, #07C6D4 100%);
  --grad-brand-soft: linear-gradient(120deg, rgba(53,44,171,.12) 0%, rgba(141,106,250,.12) 55%, rgba(7,198,212,.12) 100%);
  --grad-indigo: linear-gradient(160deg, #2A2057 0%, #23194B 45%, #1A1238 100%);

  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  /* Shadows (indigo/sapphire tinted — never flat black) */
  --shadow-sm:  0 2px 10px rgba(53,44,171,.05);
  --shadow-md:  0 10px 30px rgba(53,44,171,.08);
  --shadow-lg:  0 24px 60px rgba(35,25,75,.14);
  --shadow-glow: 0 18px 50px rgba(141,106,250,.35);

  /* Layout */
  --maxw: 1180px;
  --nav-h: 72px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid rgba(53,44,171,.45); outline-offset: 2px; border-radius: 6px; }

/* ----------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
section { position: relative; }
.section-pad { padding-block: clamp(64px, 9vw, 120px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--sapphire);
  background: var(--input-bg);
  border: 1px solid var(--border);
  padding: 7px 14px; border-radius: var(--r-full);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad-brand); }

h1, h2, h3 { letter-spacing: -0.02em; line-height: 1.08; color: var(--text); }
.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4.2vw, 44px); font-weight: 700; margin: 18px 0 14px; }
.section-head p { color: var(--text-2); font-size: clamp(16px, 2vw, 18px); }
.text-grad {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ----------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 16px; line-height: 1;
  padding: 15px 26px; border-radius: var(--r-full);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 56px rgba(141,106,250,.45); }
.btn-dark { background: var(--indigo); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: var(--card); color: var(--text); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(53,44,171,.35); box-shadow: var(--shadow-md); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ----------------------------------------------------------------- Navbar */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 60;
  display: flex; align-items: center;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(248,248,252,.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--text); opacity: .82;
  padding: 9px 14px; border-radius: var(--r-full); transition: opacity .2s, background .2s;
}
.nav-links a:hover { opacity: 1; background: var(--input-bg); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 20px; font-size: 15px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: var(--r-md); align-items: center; justify-content: center; color: var(--text); }
.nav-toggle svg { width: 24px; height: 24px; }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 55;
  background: rgba(248,248,252,.97); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px 26px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s var(--ease);
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a { display: block; padding: 14px 8px; font-size: 17px; font-weight: 500; border-bottom: 1px solid var(--separator, #F0EFF7); }
.mobile-menu .btn { margin-top: 18px; }

/* ----------------------------------------------------------------- Hero */
.hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 40px; overflow: clip; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-grid > * { min-width: 0; } /* prevent grid track blowout on small screens */
.hero h1, .hero .lead { overflow-wrap: break-word; }
.hero h1 { font-size: clamp(38px, 6vw, 66px); font-weight: 700; }
.hero .lead { font-size: clamp(17px, 2.2vw, 20px); color: var(--text-2); margin: 22px 0 32px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 34px; flex-wrap: wrap; }
.avatars { display: flex; }
.avatars span {
  width: 38px; height: 38px; border-radius: 50%; margin-left: -10px;
  border: 2px solid var(--bg); background: var(--grad-brand);
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 13px;
}
.avatars span:first-child { margin-left: 0; }
.hero-trust small { color: var(--text-2); font-size: 14px; }
.hero-trust strong { color: var(--text); }
.stars { color: #F6A609; letter-spacing: 2px; font-size: 14px; }

/* Floating decorative blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: -1; pointer-events: none; }
.blob-1 { width: 460px; height: 460px; background: rgba(141,106,250,.45); top: -120px; right: -90px; }
.blob-2 { width: 380px; height: 380px; background: rgba(7,198,212,.30); bottom: -140px; left: -120px; }

/* Phone mockup */
.phone-wrap { position: relative; display: grid; place-items: center; }
.phone {
  position: relative; width: 300px; aspect-ratio: 300 / 620;
  background: var(--grad-indigo); border-radius: 44px;
  padding: 14px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
}
.phone::before { /* notch */
  content: ""; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 26px; background: #0e0a24; border-radius: var(--r-full); z-index: 3;
}
.phone-screen {
  position: relative; height: 100%; border-radius: 32px; overflow: hidden;
  background: #F8F8FC; display: flex; flex-direction: column;
}
.app-top { background: var(--grad-indigo); padding: 46px 20px 26px; color: #fff; }
.app-top .hi { font-size: 13px; opacity: .7; }
.app-top .name { font-size: 17px; font-weight: 700; }
.wallet-card {
  margin: 16px 16px 0; padding: 18px; border-radius: var(--r-lg);
  background: var(--grad-brand); color: #fff; box-shadow: 0 16px 30px rgba(53,44,171,.35);
}
.wallet-card .label { font-size: 12px; opacity: .85; }
.wallet-card .bal { font-size: 26px; font-weight: 700; margin-top: 2px; letter-spacing: -.02em; }
.wallet-card .row { display: flex; gap: 8px; margin-top: 16px; }
.wallet-card .row button { flex: 1; background: rgba(255,255,255,.16); color: #fff; font-size: 12px; font-weight: 600; padding: 9px; border-radius: var(--r-full); }
.app-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 6px; padding: 20px 14px; }
.app-grid .tile { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.app-grid .ico { width: 44px; height: 44px; border-radius: var(--r-md); background: #fff; display: grid; place-items: center; box-shadow: var(--shadow-sm); font-size: 19px; }
.app-grid .tile span { font-size: 9.5px; color: var(--text-2); font-weight: 500; }
.app-list { padding: 4px 16px; }
.app-list .item { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-top: 1px solid var(--border); }
.app-list .item .dot { width: 32px; height: 32px; border-radius: 50%; background: var(--input-bg); display: grid; place-items: center; font-size: 14px; }
.app-list .item .t { font-size: 11px; font-weight: 600; flex: 1; }
.app-list .item .t small { display: block; color: var(--text-2); font-weight: 400; }
.app-list .item .amt { font-size: 11px; font-weight: 700; }
.app-list .item .amt.up { color: var(--success); }

/* Floating chips around phone */
.chip-float {
  position: absolute; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-full); padding: 10px 14px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600;
  animation: floaty 5s var(--ease) infinite;
}
.chip-float .pic { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 13px; }
.chip-a { top: 14%; left: -38px; animation-delay: 0s; }
.chip-b { top: 50%; right: -46px; animation-delay: 1.4s; }
.chip-c { bottom: 9%; left: -26px; animation-delay: .7s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ----------------------------------------------------------------- Marquee / logos */
.trustbar { border-block: 1px solid var(--border); background: var(--card); }
.trustbar .container { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; padding-block: 26px; }
.trustbar p { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--text-2); text-transform: uppercase; }
.partner-list { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; }
.trust-pill { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--text); background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-full); padding: 9px 16px; }
.trust-pill svg { width: 17px; height: 17px; color: var(--sapphire); flex: none; }

/* ----------------------------------------------------------------- Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.stat .num { font-size: clamp(30px, 4vw, 42px); font-weight: 700; letter-spacing: -.03em; }
.stat .lbl { color: var(--text-2); font-size: 14px; margin-top: 6px; }

/* ----------------------------------------------------------------- Bento features */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.feature {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(141,106,250,.35); }
.feature .f-ico {
  width: 52px; height: 52px; border-radius: var(--r-md); display: grid; place-items: center;
  background: var(--grad-brand-soft); color: var(--sapphire); margin-bottom: 18px;
}
.feature .f-ico svg { width: 26px; height: 26px; }
.feature h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.feature p { color: var(--text-2); font-size: 15px; }
.feature .tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.feature .tags span { font-size: 12px; font-weight: 600; color: var(--sapphire); background: var(--input-bg); border-radius: var(--r-full); padding: 5px 11px; }
.col-3 { grid-column: span 3; }
.col-2 { grid-column: span 2; }
.col-6 { grid-column: span 6; }

/* Highlighted feature (dark) */
.feature.dark { background: var(--grad-indigo); color: #fff; border-color: transparent; }
.feature.dark h3 { color: #fff; }
.feature.dark p { color: rgba(255,255,255,.74); }
.feature.dark .f-ico { background: rgba(255,255,255,.12); color: #fff; }
.feature.dark .tags span { color: #fff; background: rgba(255,255,255,.12); }
.feature .glow { position: absolute; width: 220px; height: 220px; border-radius: 50%; filter: blur(70px); background: rgba(141,106,250,.5); right: -60px; bottom: -80px; pointer-events: none; }

/* ----------------------------------------------------------------- Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--shadow-sm); }
.step .n {
  counter-increment: step; width: 46px; height: 46px; border-radius: var(--r-md);
  background: var(--grad-brand); color: #fff; font-weight: 700; font-size: 18px;
  display: grid; place-items: center; margin-bottom: 18px;
}
.step .n::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--text-2); font-size: 15px; }

/* ----------------------------------------------------------------- Security split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.sec-card { background: var(--grad-indigo); border-radius: var(--r-xl); padding: 40px; color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.sec-card .glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; filter: blur(80px); background: rgba(7,198,212,.4); top: -100px; right: -100px; }
.sec-list { display: grid; gap: 16px; margin-top: 8px; position: relative; }
.sec-list li { display: flex; gap: 14px; align-items: flex-start; }
.sec-list .ic { flex: none; width: 40px; height: 40px; border-radius: var(--r-md); background: rgba(255,255,255,.12); display: grid; place-items: center; }
.sec-list .ic svg { width: 20px; height: 20px; color: var(--aqua); }
.sec-list h4 { font-size: 16px; font-weight: 600; }
.sec-list p { font-size: 14px; color: rgba(255,255,255,.7); }

.check-list { display: grid; gap: 14px; margin-top: 24px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.check-list .ck { flex: none; width: 24px; height: 24px; border-radius: 50%; background: rgba(18,183,106,.14); color: var(--success); display: grid; place-items: center; }
.check-list .ck svg { width: 14px; height: 14px; }

/* ----------------------------------------------------------------- FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--border); background: var(--card); border-radius: var(--r-lg); margin-bottom: 14px; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item[open] { border-color: rgba(53,44,171,.3); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 17px; font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ico { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--input-bg); display: grid; place-items: center; transition: transform .25s, background .25s; }
.faq-item[open] summary .ico { transform: rotate(45deg); background: var(--grad-brand); color: #fff; }
.faq-item .ans { padding: 0 24px 22px; color: var(--text-2); font-size: 15.5px; }

/* ----------------------------------------------------------------- CTA band */
.cta-band {
  background: var(--grad-indigo); border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px); text-align: center; color: #fff;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-band .glow-a { position: absolute; width: 340px; height: 340px; border-radius: 50%; filter: blur(90px); background: rgba(141,106,250,.55); top: -120px; left: -60px; }
.cta-band .glow-b { position: absolute; width: 300px; height: 300px; border-radius: 50%; filter: blur(90px); background: rgba(7,198,212,.4); bottom: -120px; right: -60px; }
.cta-band h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 700; position: relative; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 540px; margin: 16px auto 30px; position: relative; font-size: 18px; }
.cta-band .hero-cta { justify-content: center; position: relative; }

/* ----------------------------------------------------------------- Footer */
.footer { background: var(--card); border-top: 1px solid var(--border); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand-col p { color: var(--text-2); font-size: 15px; margin: 18px 0; max-width: 320px; }
.footer h5 { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text); margin-bottom: 16px; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { color: var(--text-2); font-size: 15px; transition: color .2s; }
.footer ul a:hover { color: var(--sapphire); }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: var(--r-md); background: var(--input-bg); display: grid; place-items: center; color: var(--text); transition: background .2s, color .2s, transform .2s; }
.socials a:hover { background: var(--grad-brand); color: #fff; transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 56px; padding-block: 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-bottom p, .footer-bottom a { color: var(--text-2); font-size: 14px; }
.footer-bottom .links { display: flex; gap: 22px; flex-wrap: wrap; }
.disclaimer { color: var(--text-2); font-size: 12.5px; line-height: 1.6; padding-bottom: 30px; max-width: 980px; }

/* ----------------------------------------------------------------- Reveal anim */
/* Default = visible (no-JS / no-IO safe). The hidden state only applies once the
   <html class="js"> flag is set by an inline script, so content is never trapped. */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal[data-d="1"] { transition-delay: .08s; }
html.js .reveal[data-d="2"] { transition-delay: .16s; }
html.js .reveal[data-d="3"] { transition-delay: .24s; }
html.js .reveal[data-d="4"] { transition-delay: .32s; }

/* ============================================================= LEGAL PAGES */
.legal-hero { padding-top: calc(var(--nav-h) + 56px); padding-bottom: 18px; }
.legal-hero h1 { font-size: clamp(32px, 5vw, 50px); font-weight: 700; }
.legal-hero .updated { color: var(--text-2); margin-top: 14px; font-size: 15px; }
.legal-wrap { display: grid; grid-template-columns: 248px 1fr; gap: 48px; align-items: start; padding-bottom: 90px; }
.legal-toc { position: sticky; top: calc(var(--nav-h) + 24px); background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px; box-shadow: var(--shadow-sm); max-height: calc(100vh - 120px); overflow-y: auto; }
.legal-toc h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-2); margin-bottom: 12px; }
.legal-toc a { display: block; font-size: 14px; color: var(--text-2); padding: 6px 10px; border-radius: var(--r-sm); transition: background .2s, color .2s; }
.legal-toc a:hover, .legal-toc a.active { background: var(--input-bg); color: var(--sapphire); font-weight: 600; }
.legal-body { max-width: 760px; }
.legal-body section { scroll-margin-top: calc(var(--nav-h) + 20px); margin-bottom: 38px; }
.legal-body h2 { font-size: 24px; font-weight: 700; margin-bottom: 14px; display: flex; align-items: baseline; gap: 10px; }
.legal-body h2 .idx { color: var(--purple); font-size: 18px; font-weight: 700; }
.legal-body h3 { font-size: 17px; font-weight: 600; margin: 22px 0 8px; }
.legal-body p, .legal-body li { color: #463c66; font-size: 16px; line-height: 1.72; }
.legal-body p { margin-bottom: 14px; }
.legal-body ul.bullets { list-style: disc; padding-left: 22px; margin-bottom: 16px; display: grid; gap: 8px; }
.legal-body a.inline { color: var(--sapphire); font-weight: 600; border-bottom: 1px solid rgba(53,44,171,.3); }
.legal-body .callout { background: var(--input-bg); border: 1px solid var(--border); border-left: 4px solid var(--sapphire); border-radius: var(--r-md); padding: 18px 20px; margin: 18px 0; }
.legal-body .callout p:last-child { margin-bottom: 0; }
.legal-body .meta-table { width: 100%; border-collapse: collapse; margin: 8px 0 18px; }
.legal-body .meta-table th, .legal-body .meta-table td { text-align: left; padding: 12px 14px; border: 1px solid var(--border); font-size: 15px; vertical-align: top; }
.legal-body .meta-table th { background: var(--input-bg); font-weight: 600; width: 38%; }

/* ----------------------------------------------------------------- Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .phone-wrap { order: -1; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .col-3, .col-2 { grid-column: span 6; }
  .bento { grid-template-columns: repeat(6, 1fr); }
  .legal-wrap { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn-dark { display: none; }
  .nav-toggle { display: flex; }
  .steps { grid-template-columns: 1fr; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .chip-b { right: -10px; }
  .chip-a { left: -10px; }
}
@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
