/* =========================================================
   AutoArmor.net — Shared Stylesheet
   Theme: Deep space dark + signature "Plasma Aqua" accent
   Fonts: Space Grotesk (display) / Inter (body)
   ========================================================= */

/* ---------- Tokens ---------- */
:root{
  --bg:           #05070C;
  --bg-2:         #090D17;
  --bg-3:         #0D1320;
  --surface:      rgba(255,255,255,0.035);
  --surface-2:    rgba(255,255,255,0.06);
  --border:       rgba(255,255,255,0.09);
  --border-2:     rgba(255,255,255,0.14);

  --accent:       #00E5C8;   /* plasma aqua — primary */
  --accent-2:     #38F0FF;   /* ice cyan glow */
  --accent-3:     #0BB5E0;   /* deep cyan */
  --accent-soft:  rgba(0,229,200,0.12);
  --accent-glow:  rgba(0,229,200,0.45);

  --gold:         #F5C24B;   /* champagne gold — warm spark */
  --gold-2:       #FFDA86;   /* light gold */
  --gold-soft:    rgba(245,194,75,0.12);
  --gold-glow:    rgba(245,194,75,0.42);

  --cobalt:       #2F6BFF;   /* enterprise depth */
  --cobalt-soft:  rgba(47,107,255,0.12);

  --text:         #EAF0F6;
  --text-dim:     #9AA7B8;
  --text-faint:   #5E6B7E;

  --radius:       18px;
  --radius-sm:    12px;
  --radius-lg:    28px;

  --maxw:         1200px;
  --ease:         cubic-bezier(.16,.84,.44,1);

  --shadow:       0 24px 60px -20px rgba(0,0,0,0.7);
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font-body);
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
  font-size:16px;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}

/* ---------- Ambient background ---------- */
body::before{
  content:"";position:fixed;inset:0;z-index:-2;
  background:
    radial-gradient(800px 500px at 12% -5%, rgba(0,229,200,0.11), transparent 60%),
    radial-gradient(680px 480px at 96% 6%, rgba(245,194,75,0.08), transparent 60%),
    radial-gradient(760px 560px at 18% 108%, rgba(47,107,255,0.10), transparent 60%),
    radial-gradient(700px 600px at 80% 115%, rgba(56,240,255,0.05), transparent 60%),
    var(--bg);
}
body::after{
  content:"";position:fixed;inset:0;z-index:-1;pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse 100% 80% at 50% 0%, #000 30%, transparent 80%);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar{width:11px;height:11px}
::-webkit-scrollbar-track{background:var(--bg-2)}
::-webkit-scrollbar-thumb{
  background:linear-gradient(var(--accent-3),var(--accent));
  border-radius:20px;border:2px solid var(--bg-2);
}
::-webkit-scrollbar-thumb:hover{background:var(--accent)}
html{scrollbar-color:var(--accent-3) var(--bg-2);scrollbar-width:thin}
::selection{background:var(--accent-glow);color:#021014}

/* ---------- Layout helpers ---------- */
.container{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 24px}
.section{padding:110px 0}
.section-sm{padding:70px 0}
.center{text-align:center}
.eyebrow{
  display:inline-flex;align-items:center;gap:9px;
  font-family:var(--font-display);
  font-size:.72rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;
  color:var(--accent-2);
  padding:7px 15px;border-radius:100px;
  background:var(--accent-soft);border:1px solid rgba(0,229,200,0.22);
}
.eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--accent);
  box-shadow:0 0 12px var(--accent);animation:pulse 2.4s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.35}}

h1,h2,h3,h4{font-family:var(--font-display);font-weight:700;line-height:1.08;letter-spacing:-0.02em}
h1{font-size:clamp(2.6rem,6vw,4.7rem)}
h2{font-size:clamp(2rem,4.2vw,3.3rem)}
h3{font-size:clamp(1.3rem,2.2vw,1.7rem)}
.lead{font-size:clamp(1.05rem,1.6vw,1.28rem);color:var(--text-dim);max-width:60ch}
.muted{color:var(--text-dim)}
.gradient-text{
  background:linear-gradient(100deg,var(--accent-2) 0%,var(--accent) 42%,var(--gold) 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.gradient-gold{
  background:linear-gradient(100deg,var(--gold-2),var(--gold));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.section-head{max-width:64ch;margin:0 auto 60px}
.section-head.center{display:flex;flex-direction:column;align-items:center;gap:18px}
.section-head h2{margin-top:4px}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--font-display);font-weight:600;font-size:.96rem;
  padding:14px 26px;border-radius:100px;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(100deg,var(--accent),var(--accent-3));
  color:#021014;box-shadow:0 10px 30px -10px var(--accent-glow);
}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 18px 44px -12px var(--accent-glow)}
.btn-ghost{
  background:var(--surface);border:1px solid var(--border-2);color:var(--text);
}
.btn-ghost:hover{transform:translateY(-3px);border-color:var(--accent);box-shadow:0 0 0 1px var(--accent-soft),0 16px 40px -18px var(--accent-glow)}
.btn-lg{padding:17px 34px;font-size:1.05rem}
.btn-block{width:100%}
.arrow{transition:transform .3s var(--ease)}
.btn:hover .arrow{transform:translateX(4px)}

/* ---------- Navbar ---------- */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  transition:background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom:1px solid transparent;
}
.nav.scrolled{
  background:rgba(6,8,15,0.72);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  max-width:var(--maxw);margin:0 auto;padding:16px 24px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.brand{display:flex;align-items:center;gap:11px;font-family:var(--font-display);
  font-weight:700;font-size:1.22rem;letter-spacing:-0.02em}
.brand .logo{
  width:34px;height:34px;border-radius:10px;position:relative;flex:none;overflow:hidden;
  background:transparent;
  box-shadow:0 0 22px -6px var(--accent-glow);
  display:block;
}
.brand .logo img{width:100%;height:100%;object-fit:cover;display:block}
.brand .logo svg{width:20px;height:20px}
.brand b{color:var(--gold)}
.nav-links{display:flex;align-items:center;gap:6px}
.nav-links a{
  font-size:.93rem;font-weight:500;color:var(--text-dim);
  padding:9px 14px;border-radius:10px;transition:color .25s,background .25s;
}
.nav-links a:hover{color:var(--text);background:var(--surface)}
.nav-links a.active{color:var(--accent-2)}
.nav-cta{margin-left:8px}
.hamburger{display:none;flex-direction:column;gap:5px;padding:8px;border-radius:10px}
.hamburger span{width:24px;height:2px;background:var(--text);border-radius:2px;
  transition:transform .3s,opacity .3s}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ---------- Glass cards ---------- */
.card{
  position:relative;background:var(--surface);
  border:1px solid var(--border);border-radius:var(--radius);
  padding:30px;
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  transition:transform .4s var(--ease),border-color .4s,box-shadow .4s,background .4s;
  overflow:hidden;
}
.card::after{
  content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;
  background:radial-gradient(420px 220px at var(--mx,50%) var(--my,0%),var(--accent-soft),transparent 60%);
  opacity:0;transition:opacity .4s;
}
.card:hover{
  transform:translateY(-6px);
  border-color:rgba(0,229,200,0.42);
  background:var(--surface-2);
  box-shadow:0 30px 60px -28px rgba(0,229,200,0.32),0 0 0 1px var(--accent-soft);
}
.card:hover::after{opacity:1}
.card .ico{
  width:52px;height:52px;border-radius:14px;display:grid;place-items:center;
  background:var(--accent-soft);border:1px solid rgba(0,229,200,0.22);
  color:var(--accent-2);margin-bottom:18px;
}
.card .ico svg{width:26px;height:26px}
.card h3{margin-bottom:10px}
.card p{color:var(--text-dim);font-size:.97rem}

.grid{display:grid;gap:22px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}

.tag{
  display:inline-block;font-size:.7rem;font-weight:600;letter-spacing:.12em;
  text-transform:uppercase;color:var(--accent-2);
  padding:5px 11px;border-radius:100px;background:var(--accent-soft);
  border:1px solid rgba(0,229,200,0.22);
}
.tag.soon{color:#FFD27A;background:rgba(255,200,90,0.10);border-color:rgba(255,200,90,0.25)}

/* ---------- Hero ---------- */
.hero{position:relative;padding:170px 0 90px;overflow:hidden}
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:50px;align-items:center}
.hero h1{margin:20px 0 22px}
.hero .lead{margin-bottom:34px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.hero-trust{margin-top:34px;display:flex;gap:26px;flex-wrap:wrap;color:var(--text-faint);
  font-size:.85rem;align-items:center}
.hero-trust .ck{display:flex;align-items:center;gap:8px}
.hero-trust .ck::before{content:"";width:7px;height:7px;border-radius:50%;
  background:var(--accent);box-shadow:0 0 10px var(--accent)}

/* hero visual */
.hero-visual{position:relative;aspect-ratio:1/1;display:grid;place-items:center}
.orb{
  position:absolute;border-radius:50%;
  background:conic-gradient(from 0deg,var(--accent),var(--cobalt),var(--accent-2),var(--accent-3),var(--accent));
  filter:blur(6px);opacity:.35;animation:spin 14s linear infinite;
}
.orb.o1{width:78%;height:78%}
.orb.o2{width:54%;height:54%;animation-direction:reverse;animation-duration:10s;opacity:.5}
@keyframes spin{to{transform:rotate(360deg)}}
.hero-panel{
  position:relative;width:84%;border-radius:24px;padding:22px;
  background:rgba(10,14,26,0.82);border:1px solid var(--border-2);
  backdrop-filter:blur(14px);box-shadow:var(--shadow);
}
.hero-panel .row{display:flex;align-items:center;gap:12px;padding:11px 13px;border-radius:12px;
  background:var(--surface);margin-bottom:10px;font-size:.86rem}
.hero-panel .row:last-child{margin-bottom:0}
.hero-panel .av{width:34px;height:34px;border-radius:9px;flex:none;display:grid;place-items:center;
  background:var(--accent-soft);color:var(--accent-2)}
.hero-panel .row.me{background:linear-gradient(100deg,var(--accent-soft),transparent);
  border:1px solid rgba(0,229,200,0.2)}
.hero-panel small{color:var(--text-faint);display:block;font-size:.72rem}

/* ---------- Stats bar ---------- */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.stat{padding:30px;text-align:center;border-radius:var(--radius);
  background:var(--surface);border:1px solid var(--border)}
.stat .num{font-family:var(--font-display);font-weight:700;
  font-size:clamp(2rem,4vw,2.9rem);line-height:1;
  background:linear-gradient(120deg,var(--accent),var(--gold));
  -webkit-background-clip:text;background-clip:text;color:transparent}
.stat .lbl{margin-top:10px;color:var(--text-dim);font-size:.9rem}

/* ---------- Feature split ---------- */
.split{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.split.reverse .split-media{order:2}
.feat-list{display:flex;flex-direction:column;gap:18px;margin-top:26px}
.feat-list li{display:flex;gap:14px;align-items:flex-start}
.feat-list .tick{width:26px;height:26px;border-radius:8px;flex:none;display:grid;place-items:center;
  background:var(--accent-soft);color:var(--accent-2);border:1px solid rgba(0,229,200,0.2)}
.feat-list b{font-family:var(--font-display);display:block;margin-bottom:2px}
.feat-list span.d{color:var(--text-dim);font-size:.92rem}

/* ---------- Steps ---------- */
.steps{counter-reset:step;display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.step{position:relative;padding:30px;border-radius:var(--radius);
  background:var(--surface);border:1px solid var(--border)}
.step::before{counter-increment:step;content:"0" counter(step);
  font-family:var(--font-display);font-weight:700;font-size:1.6rem;
  color:var(--accent);display:block;margin-bottom:14px;opacity:.9}
.step h3{font-size:1.15rem;margin-bottom:8px}
.step p{color:var(--text-dim);font-size:.92rem}

/* ---------- Pricing ---------- */
.price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:stretch}
.price{display:flex;flex-direction:column;position:relative;
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:34px 30px;transition:transform .4s var(--ease),border-color .4s,box-shadow .4s}
.price:hover{transform:translateY(-6px);border-color:rgba(0,229,200,0.4);
  box-shadow:0 30px 60px -28px rgba(0,229,200,0.3)}
.price.featured{border-color:var(--gold);
  background:linear-gradient(180deg,var(--gold-soft),var(--surface));
  box-shadow:0 30px 70px -30px var(--gold-glow)}
.price.featured:hover{border-color:var(--gold);
  box-shadow:0 34px 70px -28px var(--gold-glow)}
.price.featured .cost{background:linear-gradient(120deg,var(--gold-2),var(--gold));
  -webkit-background-clip:text;background-clip:text;color:transparent}
.price.featured ul li svg{color:var(--gold)}
.price.featured .btn-primary{background:linear-gradient(100deg,var(--gold-2),var(--gold));
  box-shadow:0 10px 30px -10px var(--gold-glow)}
.price.featured .btn-primary:hover{box-shadow:0 18px 44px -12px var(--gold-glow)}
.price .plan{font-family:var(--font-display);font-weight:600;font-size:1.15rem}
.price .badge{position:absolute;top:-13px;left:50%;transform:translateX(-50%);
  font-family:var(--font-display);font-size:.7rem;font-weight:700;letter-spacing:.1em;
  text-transform:uppercase;color:#1A1402;padding:6px 14px;border-radius:100px;
  background:linear-gradient(100deg,var(--gold-2),var(--gold))}
.price .cost{font-family:var(--font-display);font-weight:700;
  font-size:2.6rem;margin:16px 0 4px;line-height:1}
.price .cost span{font-size:1rem;font-weight:500;color:var(--text-dim)}
.price .desc{color:var(--text-dim);font-size:.9rem;margin-bottom:22px;min-height:42px}
.price ul{display:flex;flex-direction:column;gap:12px;margin-bottom:26px;flex:1}
.price ul li{display:flex;gap:10px;font-size:.92rem;color:var(--text-dim)}
.price ul li svg{width:18px;height:18px;color:var(--accent);flex:none;margin-top:3px}
.price ul li.off{opacity:.4}
.price ul li.off svg{color:var(--text-faint)}

/* ---------- Pricing table ---------- */
.ptable-wrap{overflow-x:auto;border-radius:var(--radius);border:1px solid var(--border)}
table.ptable{width:100%;border-collapse:collapse;min-width:640px;background:var(--surface)}
table.ptable th,table.ptable td{padding:16px 20px;text-align:left;font-size:.93rem;
  border-bottom:1px solid var(--border)}
table.ptable thead th{font-family:var(--font-display);background:var(--bg-3);
  color:var(--text);position:sticky;top:0}
table.ptable thead th.hl{color:var(--accent-2)}
table.ptable td{color:var(--text-dim)}
table.ptable tr:last-child td{border-bottom:none}
table.ptable td.yes{color:var(--accent)}
table.ptable tbody tr:hover{background:var(--surface-2)}

/* ---------- FAQ ---------- */
.faq{max-width:780px;margin:0 auto;display:flex;flex-direction:column;gap:14px}
.faq details{background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius-sm);padding:4px 22px;transition:border-color .3s,background .3s}
.faq details[open]{border-color:rgba(0,229,200,0.35);background:var(--surface-2)}
.faq summary{list-style:none;cursor:pointer;padding:18px 0;font-family:var(--font-display);
  font-weight:600;font-size:1.03rem;display:flex;justify-content:space-between;
  align-items:center;gap:16px}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";color:var(--accent);font-size:1.5rem;font-weight:400;
  transition:transform .3s;line-height:1}
.faq details[open] summary::after{transform:rotate(45deg)}
.faq details p{color:var(--text-dim);padding:0 0 20px;font-size:.96rem}

/* ---------- Forms ---------- */
.form{display:flex;flex-direction:column;gap:16px}
.form .field{display:flex;flex-direction:column;gap:7px}
.form label{font-size:.82rem;font-weight:600;color:var(--text-dim);
  font-family:var(--font-display);letter-spacing:.02em}
.form input,.form textarea,.form select{
  width:100%;padding:14px 16px;border-radius:var(--radius-sm);
  background:var(--bg-2);border:1px solid var(--border-2);color:var(--text);
  font-family:inherit;font-size:.96rem;transition:border-color .25s,box-shadow .25s}
.form input::placeholder,.form textarea::placeholder{color:var(--text-faint)}
.form input:focus,.form textarea:focus,.form select:focus{
  outline:none;border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-soft)}
.form textarea{resize:vertical;min-height:140px}
.form .row2{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-note{font-size:.82rem;color:var(--text-faint);text-align:center}
.form-success{display:none;padding:16px;border-radius:var(--radius-sm);
  background:var(--accent-soft);border:1px solid rgba(0,229,200,0.3);
  color:var(--accent-2);font-size:.92rem;text-align:center}
.form-success.show{display:block}

.inline-form{display:flex;gap:12px;max-width:480px;margin:0 auto;width:100%}
.inline-form input{flex:1;padding:15px 18px;border-radius:100px;
  background:var(--bg-2);border:1px solid var(--border-2);color:var(--text);font-size:.96rem}
.inline-form input:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-soft)}

/* ---------- Coming soon ---------- */
.coming{min-height:calc(100vh - 80px);display:grid;place-items:center;
  text-align:center;padding:140px 0 90px;position:relative}
.coming .inner{max-width:640px;display:flex;flex-direction:column;align-items:center;gap:24px}
.coming h1{margin-top:6px}
.coming .badge-soon{font-family:var(--font-display)}
.bigpulse{width:120px;height:120px;border-radius:30px;display:grid;place-items:center;
  background:var(--accent-soft);border:1px solid rgba(0,229,200,0.25);color:var(--accent-2);
  position:relative}
.bigpulse svg{width:54px;height:54px}
.bigpulse::before{content:"";position:absolute;inset:0;border-radius:inherit;
  border:1px solid var(--accent);animation:ring 2.6s ease-out infinite;opacity:0}
@keyframes ring{0%{transform:scale(1);opacity:.7}100%{transform:scale(1.5);opacity:0}}

/* ---------- CTA banner ---------- */
.cta{position:relative;border-radius:var(--radius-lg);overflow:hidden;
  padding:70px 50px;text-align:center;
  background:linear-gradient(120deg,rgba(0,229,200,0.10),rgba(11,181,224,0.08));
  border:1px solid rgba(0,229,200,0.25)}
.cta::before{content:"";position:absolute;inset:0;z-index:-1;
  background:radial-gradient(600px 300px at 50% -20%,var(--accent-soft),transparent 70%)}
.cta h2{margin-bottom:16px}
.cta .lead{margin:0 auto 30px}
.cta-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}

/* ---------- Footer ---------- */
.footer{border-top:1px solid var(--border);padding:64px 0 34px;margin-top:40px;
  background:linear-gradient(180deg,transparent,rgba(10,14,26,0.6))}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:40px;margin-bottom:48px}
.footer .brand{margin-bottom:16px}
.footer-about p{color:var(--text-dim);font-size:.92rem;max-width:34ch}
.footer h4{font-family:var(--font-display);font-size:.82rem;letter-spacing:.14em;
  text-transform:uppercase;color:var(--text-faint);margin-bottom:18px}
.footer ul{display:flex;flex-direction:column;gap:11px}
.footer ul a{color:var(--text-dim);font-size:.93rem;transition:color .25s}
.footer ul a:hover{color:var(--accent-2)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;
  padding-top:26px;border-top:1px solid var(--border);gap:20px;flex-wrap:wrap;
  color:var(--text-faint);font-size:.85rem}
.socials{display:flex;gap:10px}
.socials a{width:38px;height:38px;border-radius:11px;display:grid;place-items:center;
  background:var(--surface);border:1px solid var(--border);color:var(--text-dim);
  transition:all .25s}
.socials a:hover{color:var(--accent-2);border-color:var(--accent);transform:translateY(-2px)}
.socials svg{width:18px;height:18px}

/* ---------- Scroll reveal ---------- */
.reveal{opacity:0;transform:translateY(26px);
  transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal.in{opacity:1;transform:none}
.reveal.d1{transition-delay:.08s}.reveal.d2{transition-delay:.16s}
.reveal.d3{transition-delay:.24s}.reveal.d4{transition-delay:.32s}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
  .orb{animation:none}*{scroll-behavior:auto}
}

/* ---------- Responsive ---------- */
@media (max-width:980px){
  .hero-grid,.split{grid-template-columns:1fr;gap:40px}
  .split.reverse .split-media{order:0}
  .grid-3,.grid-4,.stats,.steps,.price-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
  .hero-visual{max-width:420px;margin:0 auto;width:100%}
}
@media (max-width:760px){
  .nav-links{
    position:fixed;top:0;right:0;height:100vh;width:min(78vw,320px);
    flex-direction:column;align-items:stretch;justify-content:flex-start;gap:6px;
    padding:90px 24px 40px;background:rgba(8,11,20,0.96);
    backdrop-filter:blur(20px);border-left:1px solid var(--border);
    transform:translateX(100%);transition:transform .4s var(--ease);z-index:90}
  .nav-links.open{transform:translateX(0)}
  .nav-links a{padding:14px 16px;font-size:1.05rem;border-radius:12px}
  .nav-links .nav-cta{margin:10px 0 0}
  .nav-links .btn{width:100%}
  .hamburger{display:flex;z-index:95}
  .section{padding:80px 0}
  .grid-2,.grid-3,.grid-4,.stats,.steps,.price-grid,.form .row2{grid-template-columns:1fr}
  .cta{padding:50px 26px}
  .inline-form{flex-direction:column}
  .inline-form input,.inline-form .btn{width:100%}
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-bottom{flex-direction:column;text-align:center}
}
@media (max-width:440px){
  .footer-grid{grid-template-columns:1fr}
  .hero{padding-top:130px}
}

/* =========================================================
   SVG ICON SYSTEM (CSS mask, inherits currentColor)
   ========================================================= */
.ic{
  display:inline-block;width:26px;height:26px;flex:none;
  background:currentColor;
  -webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;
  -webkit-mask-position:center;mask-position:center;
  -webkit-mask-size:contain;mask-size:contain;
  -webkit-mask-image:var(--ic);mask-image:var(--ic);
}
.ico .ic{width:26px;height:26px}
.ico-lg{width:62px!important;height:62px!important}
.ico-lg .ic{width:30px;height:30px}
.ic-sm{width:20px;height:20px}

.ic-agent{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3Crect x='9' y='9' width='6' height='6'/%3E%3Cpath d='M9 1v3M15 1v3M9 20v3M15 20v3M1 9h3M1 15h3M20 9h3M20 15h3'/%3E%3C/svg%3E")}
.ic-server{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='7' rx='1'/%3E%3Crect x='3' y='13' width='18' height='7' rx='1'/%3E%3Cpath d='M7 7.5h.01M7 16.5h.01'/%3E%3C/svg%3E")}
.ic-gear{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z'/%3E%3C/svg%3E")}
.ic-chat{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8z'/%3E%3C/svg%3E")}
.ic-chart{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='M7 14l3-3 3 3 5-6'/%3E%3C/svg%3E")}
.ic-lock{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E")}
.ic-bolt{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9z'/%3E%3C/svg%3E")}
.ic-ai{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 3v3M12 18v3M3 12h3M18 12h3M5.6 5.6l2.1 2.1M16.3 16.3l2.1 2.1M18.4 5.6l-2.1 2.1M7.7 16.3l-2.1 2.1'/%3E%3C/svg%3E")}
.ic-target{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Ccircle cx='12' cy='12' r='1.5'/%3E%3C/svg%3E")}
.ic-cal{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E")}
.ic-card{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='5' width='20' height='14' rx='2'/%3E%3Cpath d='M2 10h20'/%3E%3C/svg%3E")}
.ic-link{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7 0l3-3a5 5 0 0 0-7-7l-1 1'/%3E%3Cpath d='M14 11a5 5 0 0 0-7 0l-3 3a5 5 0 0 0 7 7l1-1'/%3E%3C/svg%3E")}
.ic-globe{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3a14 14 0 0 1 0 18 14 14 0 0 1 0-18z'/%3E%3C/svg%3E")}
.ic-users{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9.5' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3C/svg%3E")}
.ic-rocket{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z'/%3E%3Cpath d='M12 15l-3-3a14 14 0 0 1 8-8 14 14 0 0 1 2 2 14 14 0 0 1-8 8z'/%3E%3Ccircle cx='15' cy='9' r='1'/%3E%3C/svg%3E")}
.ic-box{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 8l-9-5-9 5 9 5 9-5z'/%3E%3Cpath d='M3 8v8l9 5 9-5V8'/%3E%3Cpath d='M12 13v8'/%3E%3C/svg%3E")}
.ic-building{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='2' width='16' height='20' rx='1'/%3E%3Cpath d='M9 7h.01M15 7h.01M9 11h.01M15 11h.01M9 15h.01M15 15h.01M10 22v-3h4v3'/%3E%3C/svg%3E")}
.ic-mail{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 7l9 6 9-6'/%3E%3C/svg%3E")}
.ic-eye{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7-10-7-10-7z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E")}
.ic-puzzle{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h3a2 2 0 1 1 4 0h3v3a2 2 0 1 1 0 4v3h-3a2 2 0 1 0-4 0H4v-3a2 2 0 1 0 0-4z'/%3E%3C/svg%3E")}
.ic-shield{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E")}
.ic-clock{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E")}
.ic-doc{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 2v6h6M8 13h8M8 17h8'/%3E%3C/svg%3E")}

/* =========================================================
   HERO PARTICLE CANVAS
   ========================================================= */
#heroCanvas{position:absolute;inset:0;width:100%;height:100%;z-index:0;
  opacity:.9;pointer-events:none;
  -webkit-mask-image:radial-gradient(120% 100% at 70% 30%,#000 35%,transparent 80%);
  mask-image:radial-gradient(120% 100% at 70% 30%,#000 35%,transparent 80%)}
.hero .container{position:relative;z-index:1}

/* =========================================================
   TRUST / INTEGRATIONS MARQUEE
   ========================================================= */
.marquee{position:relative;overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent)}
.marquee-track{display:flex;gap:18px;width:max-content;
  animation:marquee 34s linear infinite}
.marquee:hover .marquee-track{animation-play-state:paused}
@keyframes marquee{to{transform:translateX(-50%)}}
.chip{display:inline-flex;align-items:center;gap:10px;white-space:nowrap;
  font-family:var(--font-display);font-weight:600;font-size:.95rem;color:var(--text-dim);
  padding:12px 22px;border-radius:100px;background:var(--surface);
  border:1px solid var(--border)}
.chip .ic{width:18px;height:18px;color:var(--accent-2)}
.trust-label{text-align:center;color:var(--text-faint);font-size:.78rem;
  letter-spacing:.18em;text-transform:uppercase;font-family:var(--font-display);
  font-weight:600;margin-bottom:26px}

/* =========================================================
   PRINCIPLES STRIP
   ========================================================= */
.principles{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.principle{display:flex;gap:14px;align-items:flex-start;padding:22px;
  border-radius:var(--radius-sm);background:var(--surface);border:1px solid var(--border)}
.principle .ic{width:24px;height:24px;color:var(--accent-2);margin-top:2px}
.principle b{font-family:var(--font-display);display:block;font-size:.98rem;margin-bottom:3px}
.principle span{color:var(--text-dim);font-size:.85rem;line-height:1.5}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.quotes{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.quote{display:flex;flex-direction:column;gap:18px;padding:30px;
  border-radius:var(--radius);background:var(--surface);border:1px solid var(--border);
  transition:transform .4s var(--ease),border-color .4s,box-shadow .4s}
.quote:hover{transform:translateY(-6px);border-color:rgba(0,229,200,0.35);
  box-shadow:0 30px 60px -30px rgba(0,229,200,0.28)}
.quote .stars{display:flex;gap:3px;color:var(--gold)}
.quote .stars .ic{width:16px;height:16px}
.quote p{color:var(--text);font-size:1rem;line-height:1.6;flex:1;margin:0}
.quote .who{display:flex;align-items:center;gap:12px;margin:0}
.quote .who .av{width:42px;height:42px;border-radius:12px;flex:none;display:grid;
  place-items:center;font-family:var(--font-display);font-weight:700;color:#021014;
  background:linear-gradient(135deg,var(--accent),var(--accent-3))}
.quote .who b{font-family:var(--font-display);font-size:.95rem;display:block}
.quote .who span{color:var(--text-faint);font-size:.82rem}
.ic-star{--ic:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12 2l3 6.5 7 .9-5 4.8 1.3 7-6.3-3.4L5.7 21l1.3-7-5-4.8 7-.9z'/%3E%3C/svg%3E")}

/* Button shimmer */
.btn-primary{position:relative;overflow:hidden}
.btn-primary::after{content:"";position:absolute;top:0;left:-120%;width:60%;height:100%;
  background:linear-gradient(100deg,transparent,rgba(255,255,255,0.35),transparent);
  transform:skewX(-18deg)}
.btn-primary:hover::after{left:140%;transition:left .7s var(--ease)}

.stat .num{font-variant-numeric:tabular-nums}

@media (max-width:980px){
  .principles{grid-template-columns:repeat(2,1fr)}
  .quotes{grid-template-columns:1fr}
}
@media (max-width:760px){
  .principles{grid-template-columns:1fr}
  #heroCanvas{opacity:.5}
}
