/* ============================================================
   AviTechnoFit — Design System
   Athletic · High-contrast · Confident
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  /* Core palette (pulled from the brand mark) */
  --bg:        #101011;
  --bg-black:  #000000;
  --surface:   #17171a;
  --surface-2: #1c1c20;
  --surface-3: #232329;
  --line:      rgba(255, 255, 255, 0.08);
  --line-2:    rgba(255, 255, 255, 0.14);

  --orange:    #FE4E06;
  --orange-2:  #ff7c3f;
  --orange-dim:#c93c02;

  --text:      #F2F2F0;
  --muted:     #9a9aa2;
  --muted-2:   #6d6d75;

  --ok:        #37d67a;
  --warn:      #ffb020;
  --bad:       #ff4d4d;

  --font-display: 'Anton', 'Oswald', sans-serif;
  --font-head:    'Oswald', sans-serif;
  --font-body:    'Space Grotesk', system-ui, sans-serif;

  --radius:    4px;
  --radius-btn:999px;
  --maxw:      1240px;

  --shadow:    0 30px 80px -20px rgba(0,0,0,0.7);
  --glow:      0 0 0 1px rgba(254,78,6,0.4), 0 20px 60px -15px rgba(254,78,6,0.35);
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 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.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--orange); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-black); }
::-webkit-scrollbar-thumb { background: #2c2c33; border-radius: 10px; border: 3px solid var(--bg-black); }
::-webkit-scrollbar-thumb:hover { background: var(--orange-dim); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.05; letter-spacing: -0.01em; }
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 0.92;
}
.h-mega   { font-size: clamp(2.9rem, 8vw, 6.6rem); }
.h-xl     { font-size: clamp(2.2rem, 5.2vw, 4rem); }
.h-lg     { font-size: clamp(1.8rem, 3.6vw, 2.9rem); }
.h-md     { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }
.lead     { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--muted); font-weight: 300; }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); display: inline-block; }
.eyebrow.center::before { display: none; }

.txt-orange { color: var(--orange); }
.txt-muted  { color: var(--muted); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section.black { background: var(--bg-black); }
.section.tight { padding-top: clamp(40px, 5vw, 70px); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.narrow { max-width: 720px; }
.grid { display: grid; gap: 26px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.section-head { max-width: 760px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; }
.section-head .lead { margin-top: 18px; }
.section-head h2 { margin-top: 16px; }

/* Diagonal cut dividers */
.diag-top    { clip-path: polygon(0 3.2vw, 100% 0, 100% 100%, 0 100%); }
.diag-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3.2vw), 0 100%); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  padding: 15px 30px;
  border-radius: var(--radius-btn);
  transition: all .3s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 30px -8px rgba(254,78,6,0.6); }
.btn-primary:hover { background: #ff5f1c; transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(254,78,6,0.75); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1.5px var(--line-2); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--orange); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ---------- Navbar (light / white) ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: #ffffff;
  transition: box-shadow .35s var(--ease), border-color .35s;
  border-bottom: 1px solid #ececec;
}
.nav.scrolled { box-shadow: 0 8px 30px -12px rgba(0,0,0,0.25); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.02em;
  padding: 9px 13px; border-radius: 3px;
  color: #4a4a52; transition: color .2s, background .2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #101011; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px; height: 2px; background: var(--orange);
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav .btn-ghost { color: #101011; box-shadow: inset 0 0 0 1.5px #d8d8d8; }
.nav .btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--orange); color: var(--orange); }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: #ffffff; border: 1px solid #ececec; border-radius: 6px;
  min-width: 250px; padding: 8px; box-shadow: 0 30px 70px -20px rgba(0,0,0,0.3);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .22s var(--ease);
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: flex; gap: 12px; align-items: flex-start; padding: 11px 12px; border-radius: 4px; color: #6b6b73; }
.drop a:hover { background: #f6f6f6; color: #101011; }
.drop a::after { display: none; }
.drop .ic { width: 30px; height: 30px; flex: none; color: var(--orange); }
.drop strong { display: block; color: #101011; font-family: var(--font-head); font-weight: 500; font-size: 0.92rem; }
.drop span { font-size: 0.78rem; color: #9a9aa2; font-family: var(--font-body); }

.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.burger span { width: 22px; height: 2px; background: #101011; transition: .3s var(--ease); }
.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 drawer */
.mobile-menu {
  position: fixed; inset: 78px 0 0 0; z-index: 99;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  padding: 30px 24px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-head); font-size: 1.35rem; padding: 14px 0; border-bottom: 1px solid #ececec; text-transform: uppercase; color: #101011; }
.mobile-menu .btn { margin-top: 24px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 170px 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 78% 12%, rgba(254,78,6,0.22), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(254,78,6,0.10), transparent 60%);
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 78%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-center { max-width: 960px; margin-inline: auto; text-align: center; }
.hero-center .pill { margin-bottom: 26px; }
.hero h1 { margin: 0 0 24px; }
.hero .lead { max-width: 680px; margin-inline: auto; }
.hero-cta { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; justify-content: center; }
.hero-trust { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; font-size: 0.84rem; color: var(--muted); font-family: var(--font-head); letter-spacing: 0.02em; }
.hero-trust svg { width: 17px; height: 17px; color: var(--orange); }

/* Panoramic product showcase */
.hero-showcase {
  position: relative; z-index: 2; margin-top: 66px;
  border: 1px solid var(--line-2); border-radius: 14px; overflow: hidden;
  background: linear-gradient(180deg, #161619, #0b0b0c);
  box-shadow: 0 70px 140px -50px rgba(0,0,0,0.95), 0 0 0 1px rgba(254,78,6,0.06);
}
.showcase-bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.02); }
.showcase-bar .dots { display: flex; gap: 7px; }
.showcase-bar .dots i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.showcase-bar .dots i:nth-child(1){ background:#ff5f56;} .showcase-bar .dots i:nth-child(2){ background:#ffbd2e;} .showcase-bar .dots i:nth-child(3){ background:#27c93f;}
.showcase-tabs { display: flex; gap: 6px; margin-left: 18px; }
.showcase-tabs span { font-family: var(--font-head); font-size: 0.74rem; letter-spacing: 0.02em; padding: 6px 13px; border-radius: 6px; color: var(--muted); }
.showcase-tabs span.active { background: var(--orange); color: #fff; }
.showcase-live { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.showcase-body { display: grid; grid-template-columns: 1.18fr 0.82fr; min-height: 440px; }
.sc-left { padding: 26px 28px; border-right: 1px solid var(--line); }
.sc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.sc-head .t { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; }
.sc-head .s { font-size: 0.74rem; color: var(--muted-2); }
.kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
.kpi { background: var(--surface-2); border: 1px solid var(--line); border-radius: 9px; padding: 14px 15px; }
.kpi .k { font-family: var(--font-display); font-size: 1.55rem; line-height: 1; }
.kpi .k .u { color: var(--orange); }
.kpi .kl { font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-family: var(--font-head); margin-top: 8px; }
.kpi .kt { font-size: 0.66rem; color: var(--ok); font-family: var(--font-head); margin-top: 4px; }
.kpi .kt.down { color: var(--warn); }
.chartbars { display: flex; align-items: flex-end; gap: 7px; height: 92px; margin-top: 8px; }
.chartbars i { flex: 1; background: linear-gradient(180deg, var(--orange), var(--orange-dim)); border-radius: 4px 4px 0 0; transform-origin: bottom; animation: growbar 1s var(--ease) both; }
@keyframes growbar { from { transform: scaleY(0); } }
.sc-right { position: relative; }
.sc-right .scan { min-height: 440px; height: 100%; }
@keyframes floaty { 50% { transform: translateY(-12px); } }
.hero-note { margin-top: 20px; font-size: 0.85rem; color: var(--muted-2); display: flex; align-items: center; gap: 8px; }
.hero-note svg { width: 16px; height: 16px; color: var(--ok); }

/* Badge pill */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--line);
  padding: 8px 16px 8px 10px; border-radius: 999px;
  font-size: 0.8rem; color: var(--muted); font-family: var(--font-head); letter-spacing: 0.02em;
}
.pill b { color: var(--orange); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(55,214,122,0.18); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(55,214,122,0); } }

/* ---------- Split screen (Gym vs Member) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; position: relative; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.split-col { padding: clamp(30px, 4vw, 54px); position: relative; }
.split-col.gym { background: linear-gradient(160deg, #151517, #0c0c0d); }
.split-col.member { background: linear-gradient(160deg, #1a0f08, #0c0c0d); }
.split-tag { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; color: var(--orange); font-weight: 600; }
.split-col h3 { font-size: clamp(1.4rem,2.4vw,2rem); margin: 12px 0 18px; }
.split-list { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.split-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--muted); font-size: 0.98rem; }
.split-list svg { width: 22px; height: 22px; color: var(--orange); flex: none; margin-top: 1px; }
.split .vs {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--orange); color: #fff; font-family: var(--font-display);
  display: grid; place-items: center; font-size: 1.2rem;
  box-shadow: 0 0 0 8px var(--bg), var(--glow);
}

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 6px; padding: 30px;
  transition: transform .35s var(--ease), border-color .35s, background .35s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); background: var(--surface-2); }
.card .ic-box {
  width: 54px; height: 54px; border-radius: 10px;
  background: rgba(254,78,6,0.12); color: var(--orange);
  display: grid; place-items: center; margin-bottom: 20px;
  transition: all .35s var(--ease);
}
.card:hover .ic-box { background: var(--orange); color: #fff; }
.card .ic-box svg { width: 27px; height: 27px; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; font-family: var(--font-head); font-weight: 600; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card .num { position: absolute; top: 18px; right: 22px; font-family: var(--font-display); font-size: 2.4rem; color: rgba(255,255,255,0.05); }

/* ---------- Stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.stat { background: var(--bg); padding: 34px 26px; text-align: center; }
.stat .val { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.4rem); color: var(--text); line-height: 1; }
.stat .val .u { color: var(--orange); }
.stat .lbl { margin-top: 10px; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-family: var(--font-head); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 22px; }
.step { display: grid; grid-template-columns: 84px 1fr; gap: 26px; align-items: start; padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: 6px; transition: .35s var(--ease); }
.step:hover { border-color: var(--orange); transform: translateX(6px); }
.step .n { counter-increment: step; font-family: var(--font-display); font-size: 3rem; color: var(--orange); line-height: 0.8; }
.step .n::before { content: "0" counter(step); }
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--muted); }

/* ---------- Quote strip ---------- */
.quote { position: relative; padding: clamp(50px,7vw,90px) 0; }
.quote blockquote { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.4rem,3vw,2.4rem); line-height: 1.25; max-width: 960px; }
.quote .mark { font-family: var(--font-display); font-size: 8rem; color: var(--orange); line-height: 0.5; opacity: 0.25; }
.quote cite { display: block; margin-top: 26px; font-style: normal; color: var(--muted); font-size: 0.95rem; letter-spacing: 0.04em; }
.quote cite b { color: var(--text); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: linear-gradient(120deg, #1a0d06 0%, #0d0d0e 60%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 120% at 85% 50%, rgba(254,78,6,0.22), transparent 60%); }
.cta-band .inner { position: relative; z-index: 2; text-align: center; padding: clamp(56px,8vw,100px) 0; }
.cta-band h2 { margin-bottom: 20px; }

/* ---------- Feature list rows ---------- */
.feat-row { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px,5vw,70px); align-items: center; }
.feat-row.rev { direction: rtl; }
.feat-row.rev > * { direction: ltr; }
.feat-visual { position: relative; border-radius: 8px; border: 1px solid var(--line); overflow: hidden; background: var(--surface); min-height: 320px; }
.feat-body h3 { font-size: clamp(1.5rem,2.6vw,2.1rem); margin: 14px 0 16px; }
.feat-body ul { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.feat-body li { display: flex; gap: 12px; color: var(--muted); }
.feat-body li svg { width: 20px; height: 20px; color: var(--orange); flex: none; margin-top: 3px; }

/* ---------- Mock UI panels (pure CSS) ---------- */
.mock { padding: 22px; height: 100%; display: flex; flex-direction: column; gap: 14px; }
.mock-bar { display: flex; align-items: center; gap: 7px; }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: #333; display: inline-block; }
.mock-bar i:nth-child(1){ background:#ff5f56;} .mock-bar i:nth-child(2){ background:#ffbd2e;} .mock-bar i:nth-child(3){ background:#27c93f;}
.mrow { display: flex; align-items: center; justify-content: space-between; background: var(--surface-2); border: 1px solid var(--line); border-radius: 5px; padding: 12px 15px; }
.mrow .l { display: flex; align-items: center; gap: 12px; }
.mrow .av { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg,var(--orange),var(--orange-dim)); display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; }
.mrow .nm { font-size: 0.88rem; } .mrow .sub { font-size: 0.72rem; color: var(--muted-2); }
.badge { font-size: 0.68rem; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 999px; }
.badge.ok { background: rgba(55,214,122,0.14); color: var(--ok); }
.badge.warn { background: rgba(255,176,32,0.14); color: var(--warn); }
.badge.bad { background: rgba(255,77,77,0.14); color: var(--bad); }
.mbar { height: 8px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.mbar span { display: block; height: 100%; background: linear-gradient(90deg,var(--orange),var(--orange-2)); border-radius: 999px; }

/* Camera scan mock */
.scan { position: relative; height: 100%; min-height: 320px; background: radial-gradient(120% 120% at 50% 0%, #1c1c22, #0a0a0b); display: grid; place-items: center; overflow: hidden; }
.scan .figure { width: 120px; height: 200px; position: relative; }
.scan .joint { position: absolute; width: 12px; height: 12px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 12px var(--orange); }
.scan .bone { position: absolute; height: 3px; background: rgba(254,78,6,0.6); transform-origin: left center; border-radius: 2px; }
.scan .scanline { position: absolute; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,var(--orange),transparent); animation: scan 3s ease-in-out infinite; box-shadow: 0 0 14px var(--orange); }
@keyframes scan { 0%,100%{ top: 8%; } 50%{ top: 92%; } }
.scan .cue { position: absolute; top: 20px; left: 20px; background: rgba(0,0,0,0.6); border: 1px solid var(--line-2); border-radius: 6px; padding: 8px 12px; font-size: 0.78rem; font-family: var(--font-head); backdrop-filter: blur(4px); }
.scan .cue.b { top: auto; bottom: 20px; left: auto; right: 20px; color: var(--ok); }
.scan .reps { position: absolute; top: 20px; right: 20px; font-family: var(--font-display); font-size: 2.4rem; color: #fff; }
.scan .reps small { display: block; font-size: 0.6rem; letter-spacing: 0.2em; color: var(--muted); font-family: var(--font-head); }

/* ---------- Pricing ---------- */
.tabs { display: inline-flex; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 5px; gap: 4px; }
.tabs button { font-family: var(--font-head); font-weight: 500; padding: 11px 24px; border-radius: 999px; color: var(--muted); transition: .25s; letter-spacing: 0.02em; }
.tabs button.active { background: var(--orange); color: #fff; }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 34px 30px; display: flex; flex-direction: column; position: relative; transition: .35s var(--ease); }
.plan:hover { border-color: var(--line-2); transform: translateY(-6px); }
.plan.featured { border-color: var(--orange); background: linear-gradient(180deg, #1a0f08, var(--surface)); box-shadow: var(--glow); }
.plan .tag { position: absolute; top: -13px; left: 30px; background: var(--orange); color: #fff; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.68rem; padding: 5px 14px; border-radius: 999px; }
.plan .pname { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.plan .pdesc { color: var(--muted); font-size: 0.86rem; margin-top: 6px; min-height: 40px; }
.plan .cost { font-family: var(--font-display); font-size: 3rem; margin: 22px 0 4px; }
.plan .cost small { font-size: 0.9rem; color: var(--muted); font-family: var(--font-body); }
.plan .band { font-size: 0.8rem; color: var(--muted-2); margin-bottom: 22px; }
.plan ul { display: flex; flex-direction: column; gap: 12px; margin: 8px 0 28px; flex: 1; }
.plan li { display: flex; gap: 11px; font-size: 0.9rem; color: var(--muted); }
.plan li svg { width: 18px; height: 18px; color: var(--orange); flex: none; margin-top: 3px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 4px; text-align: left; font-family: var(--font-head); font-size: 1.1rem; font-weight: 500; transition: color .2s; }
.faq-q:hover { color: var(--orange); }
.faq-q .icn { width: 26px; height: 26px; flex: none; position: relative; }
.faq-q .icn::before, .faq-q .icn::after { content: ""; position: absolute; background: var(--orange); transition: transform .3s var(--ease); }
.faq-q .icn::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.faq-q .icn::after { left: 12px; top: 4px; bottom: 4px; width: 2px; }
.faq-item.open .faq-q .icn::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 4px 26px; color: var(--muted); max-width: 760px; }

/* ---------- Forms ---------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: clamp(28px,4vw,44px); }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-head); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 9px; }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-2); border-radius: 5px;
  padding: 14px 16px; color: var(--text); font-family: var(--font-body); font-size: 0.98rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(254,78,6,0.15); }
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239a9aa2' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 0.82rem; color: var(--muted-2); margin-top: 8px; display: flex; gap: 8px; align-items: flex-start; }
.form-note svg { width: 16px; height: 16px; color: var(--orange); flex: none; margin-top: 2px; }

/* Alert */
.alert { border-radius: 6px; padding: 16px 18px; margin-bottom: 26px; font-size: 0.94rem; display: flex; gap: 12px; align-items: flex-start; }
.alert svg { width: 22px; height: 22px; flex: none; margin-top: 1px; }
.alert.success { background: rgba(55,214,122,0.1); border: 1px solid rgba(55,214,122,0.3); color: #b8f2cf; }
.alert.success svg { color: var(--ok); }
.alert.error { background: rgba(255,77,77,0.1); border: 1px solid rgba(255,77,77,0.3); color: #ffc9c9; }
.alert.error svg { color: var(--bad); }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: 150px 0 60px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero .grid-lines { opacity: 0.6; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 90% at 80% 0%, rgba(254,78,6,0.16), transparent 60%); }
.page-hero .inner { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 { margin: 20px 0 20px; }
.breadcrumb { font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* ---------- Info / trust chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { display: inline-flex; align-items: center; gap: 9px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-size: 0.85rem; color: var(--muted); font-family: var(--font-head); }
.chip svg { width: 17px; height: 17px; color: var(--orange); }

/* Contact card */
.contact-card { background: var(--bg-black); border: 1px solid var(--line); border-radius: 10px; padding: 34px; }
.contact-card h3 { font-family: var(--font-head); margin-bottom: 18px; }
.contact-line { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-line svg { width: 22px; height: 22px; color: var(--orange); flex: none; margin-top: 2px; }
.contact-line b { display: block; font-family: var(--font-head); font-weight: 500; margin-bottom: 3px; }
.contact-line span { color: var(--muted); font-size: 0.92rem; }
.map-wrap { border-radius: 10px; overflow: hidden; border: 1px solid var(--line); height: 100%; min-height: 300px; filter: grayscale(1) contrast(1.1) brightness(0.8); transition: filter .4s; }
.map-wrap:hover { filter: grayscale(0) contrast(1) brightness(1); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Footer (light / white) ---------- */
.footer { background: #ffffff; border-top: 1px solid #ececec; }
.footer-orange { height: 3px; background: var(--orange); }
.footer-main { padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer-logo img { height: 42px; margin-bottom: 20px; }
.footer-brand p { color: #6b6b73; font-size: 0.9rem; max-width: 300px; }
.footer h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; color: #9a9aa2; margin-bottom: 18px; }
.footer li { margin-bottom: 11px; }
.footer li a { color: #4a4a52; font-size: 0.9rem; transition: color .2s; }
.footer li a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid #ececec; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.8rem; color: #9a9aa2; font-family: var(--font-head); letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(30px); 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; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 20px 0; background: var(--bg-black); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: marquee 28s linear infinite; }
.marquee span { font-family: var(--font-display); text-transform: uppercase; font-size: 1.3rem; color: var(--muted-2); display: inline-flex; align-items: center; gap: 60px; letter-spacing: 0.02em; }
.marquee span::after { content: "•"; color: var(--orange); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .burger { display: flex; }
  .g-4 { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split .vs { display: none; }
  .feat-row, .feat-row.rev { grid-template-columns: 1fr; direction: ltr; }
  .form-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .step { grid-template-columns: 1fr; gap: 8px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 130px; }
}

@media (max-width: 860px) {
  .showcase-body { grid-template-columns: 1fr; }
  .sc-left { border-right: none; border-bottom: 1px solid var(--line); }
  .sc-right .scan { min-height: 340px; }
  .showcase-tabs span:not(.active) { display: none; }
}
@media (max-width: 560px) {
  .kpi-row { grid-template-columns: 1fr; }
  .hero-trust { gap: 16px; }
}
