/* ==========================================================================
   TrustFactory — Design System
   Meta & Google Agency Ad Accounts
   Theme: Black + Vibrant Lime  |  Typeface: Inter
   ========================================================================== */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand / accent */
  --lime:        #b4ff39;   /* primary accent */
  --lime-bright: #c8ff5e;   /* hover / highlight */
  --lime-deep:   #8ce000;   /* gradient stop / pressed */
  --lime-dim:    #6f9e2a;   /* muted accent text */
  --lime-glow:   rgba(180, 255, 57, 0.35);

  /* Neutrals / surfaces */
  --bg:          #06070a;   /* page background (near-black) */
  --bg-2:        #0a0c10;   /* alt section background */
  --surface:     #0f1216;   /* card background */
  --surface-2:   #14181d;   /* raised card / inputs */
  --surface-3:   #1b2027;   /* hover surface */
  --black:       #000000;

  /* Text */
  --text:        #ffffff;
  --text-soft:   rgba(255, 255, 255, 0.72);
  --text-muted:  rgba(255, 255, 255, 0.52);
  --text-faint:  rgba(255, 255, 255, 0.34);

  /* Lines / borders */
  --line:        rgba(255, 255, 255, 0.08);
  --line-2:      rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.22);

  /* Feedback */
  --star:        #ffc24b;
  --green-ok:    #34e59c;
  --red-no:      #ff5d5d;

  /* Typography scale */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --fs-display: clamp(2.6rem, 5.2vw, 4.2rem);
  --fs-h1:      clamp(2.2rem, 4.2vw, 3.4rem);
  --fs-h2:      clamp(1.8rem, 3vw, 2.65rem);
  --fs-h3:      1.35rem;
  --fs-lead:    clamp(1rem, 1.4vw, 1.15rem);
  --fs-body:    0.975rem;
  --fs-sm:      0.86rem;
  --fs-xs:      0.76rem;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-pill: 999px;

  /* Spacing */
  --container: 1200px;
  --gutter: 24px;
  --section-y: clamp(56px, 8vw, 110px);

  /* Shadows */
  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 24px 60px -30px rgba(0,0,0,0.9);
  --shadow-pop:  0 30px 80px -28px rgba(0,0,0,0.85);
  --shadow-lime: 0 18px 50px -18px var(--lime-glow);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
::selection { background: var(--lime); color: #07140b; }

/* ===== Atmospheric background system ===== */
/* Base canvas: deep gradient + faint grid lines, fixed behind everything */
body {
  background:
    linear-gradient(180deg, #080a0e 0%, var(--bg) 30%, #050608 100%);
}
/* Layer 1 — ambient drifting lime auroras + grid */
body::before {
  content: "";
  position: fixed;
  inset: -20vmax;
  background:
    radial-gradient(38% 32% at 78% 6%,  rgba(180,255,57,0.16), transparent 62%),
    radial-gradient(30% 26% at 10% 14%, rgba(140,224,0,0.11),  transparent 60%),
    radial-gradient(42% 38% at 88% 82%, rgba(180,255,57,0.10), transparent 64%),
    radial-gradient(34% 30% at 4% 88%,  rgba(120,200,40,0.07),  transparent 62%);
  pointer-events: none;
  z-index: 0;
  filter: saturate(1.05);
  animation: aurora 26s ease-in-out infinite alternate;
}
/* Layer 2 — faint pixel grid + edge vignette + grain, on top of glow but behind content */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    /* grid */
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px),
    /* corner vignette darkening */
    radial-gradient(120% 90% at 50% 50%, transparent 55%, rgba(0,0,0,0.55) 100%),
    /* top + bottom edge fades */
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 14%, transparent 86%, rgba(0,0,0,0.55) 100%);
  background-size: 48px 48px, 48px 48px, 100% 100%, 100% 100%;
  -webkit-mask-image: radial-gradient(150% 110% at 50% 30%, #000 60%, transparent 100%);
          mask-image: radial-gradient(150% 110% at 50% 30%, #000 60%, transparent 100%);
}
@keyframes aurora {
  0%   { transform: translate3d(0,0,0)   scale(1);    opacity: .9; }
  50%  { transform: translate3d(2%,1.5%,0) scale(1.08); opacity: 1; }
  100% { transform: translate3d(-1.5%,-1%,0) scale(1.04); opacity: .85; }
}
/* Film-grain overlay (very subtle), fixed full-screen */
.grain {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce){ body::before { animation: none; } }

/* ---------- 3. Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 1; }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.bg-alt { background: var(--bg-2); }
.center { text-align: center; }
.stack-sm > * + * { margin-top: 12px; }
.grid { display: grid; gap: var(--gutter); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px){ .cols-4{grid-template-columns:repeat(2,1fr);} .cols-3{grid-template-columns:repeat(2,1fr);} }
@media (max-width: 620px){ .cols-2,.cols-3,.cols-4{grid-template-columns:1fr;} }

/* ---------- 4. Typography ---------- */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; }
.display { font-size: var(--fs-display); font-weight: 700; letter-spacing: -0.035em; line-height: 1.02; }
h1, .h1 { font-size: var(--fs-h1); }
h2, .h2 { font-size: var(--fs-h2); }
h3, .h3 { font-size: var(--fs-h3); letter-spacing: -0.01em; }
.lead { font-size: var(--fs-lead); color: var(--text-soft); line-height: 1.55; }
.muted { color: var(--text-muted); }
.soft { color: var(--text-soft); }
.accent { color: var(--lime); }
.balance { text-wrap: balance; }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }

/* gradient text accent for headline words */
.grad {
  background: linear-gradient(100deg, var(--lime-bright), var(--lime-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* eyebrow / section label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }

.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-head .lead { margin-top: 14px; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: var(--fs-sm); line-height: 1;
  padding: 13px 22px; border-radius: var(--r-md);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--lime); color: #08140a; box-shadow: var(--shadow-lime); }
.btn--primary:hover { background: var(--lime-bright); transform: translateY(-2px); box-shadow: 0 22px 50px -16px var(--lime-glow); }
.btn--ghost { background: rgba(255,255,255,0.04); color: var(--text); border: 1px solid var(--line-2); }
.btn--ghost:hover { background: rgba(255,255,255,0.09); border-color: var(--line-strong); transform: translateY(-2px); }
.btn--dark { background: var(--surface-2); color: var(--text); border: 1px solid var(--line); }
.btn--dark:hover { background: var(--surface-3); }
.btn--lg { padding: 16px 28px; font-size: 0.95rem; border-radius: var(--r-md); }
.btn--block { width: 100%; }

/* ---------- 6. Badges / pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-2);
  font-size: var(--fs-xs); font-weight: 500; color: var(--text-soft);
}
.pill--accent { background: rgba(180,255,57,0.10); border-color: rgba(180,255,57,0.35); color: var(--lime); }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }
.stars { color: var(--star); letter-spacing: 1px; font-size: 0.8rem; }
.tag {
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lime-dim);
}

/* ---------- 7. Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.card .ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(180,255,57,0.10); color: var(--lime); margin-bottom: 16px;
  border: 1px solid rgba(180,255,57,0.22);
}
.card .ico svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: var(--fs-sm); line-height: 1.55; }

/* feature chip row */
.chips { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--line); font-size: var(--fs-sm); font-weight: 500;
}
.chip svg { width: 18px; height: 18px; color: var(--lime); }

/* ---------- 8. Top bar + Nav ---------- */
.topbar {
  background: linear-gradient(90deg, rgba(180,255,57,0.12), rgba(140,224,0,0.06));
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-xs); color: var(--text-soft);
}
.topbar .container { display: flex; align-items: center; justify-content: center; gap: 12px; padding-block: 9px; text-align: center; }
.topbar strong { color: var(--text); }
.topbar .badge-min { background: var(--lime); color: #08140a; padding: 2px 9px; border-radius: var(--r-pill); font-weight: 700; }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6,7,10,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 14px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--lime), var(--lime-deep)); color: #08140a; font-weight: 800; font-size: 1rem;
  box-shadow: 0 0 18px var(--lime-glow);
}
.brand .roi { color: var(--lime); }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a, .nav__links .navitem {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: var(--r-sm); font-size: var(--fs-sm); font-weight: 500; color: var(--text-soft);
  transition: color .2s, background .2s;
}
.nav__links a:hover, .nav__links .navitem:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav__links a.active { color: var(--lime); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__burger { display: none; width: 42px; height: 42px; border-radius: var(--r-sm); border: 1px solid var(--line-2); background: var(--surface); }
.nav__burger span { display:block; width:18px; height:2px; background: var(--text); margin: 3px auto; border-radius: 2px; transition: .25s; }

/* dropdown */
.navdrop { position: relative; }
.navdrop__menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 240px;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-md);
  padding: 8px; box-shadow: var(--shadow-pop);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .22s var(--ease); z-index: 60;
}
.navdrop:hover .navdrop__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.navdrop__menu a { display: block; padding: 10px 12px; border-radius: var(--r-sm); color: var(--text-soft); font-size: var(--fs-sm); }
.navdrop__menu a small { display:block; color: var(--text-faint); font-size: var(--fs-xs); margin-top: 2px; }
.navdrop__menu a:hover { background: rgba(255,255,255,0.05); color: var(--text); }

@media (max-width: 900px){
  .nav__links {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--bg); border-bottom: 1px solid var(--line); padding: 14px var(--gutter) 22px;
    transform: translateY(-120%); transition: transform .3s var(--ease); z-index: 49;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a, .nav__links .navitem { padding: 13px 12px; }
  .navdrop__menu { position: static; opacity:1; visibility: visible; transform:none; box-shadow:none; border:none; background: transparent; padding: 0 0 0 12px; }
  .nav__cta .btn--ghost { display: none; }
  .nav__burger { display: block; }
}

/* ---------- 9. Hero ---------- */
.hero { padding-block: clamp(46px, 6vw, 86px); position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
@media (max-width: 920px){ .hero__grid { grid-template-columns: 1fr; gap: 36px; } }
.hero h1 { margin: 18px 0 18px; }
.hero .lead { max-width: 50ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__trust { display: flex; align-items: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
.hero__trust .who { display:flex; }
.hero__trust .who span {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--bg);
  background: linear-gradient(140deg,#2a2f37,#10141a); margin-left: -10px; display:grid; place-items:center; font-size:0.7rem; color: var(--text-soft);
}
.hero__trust .who span:first-child { margin-left: 0; }
.hero__media {
  position: relative; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line-2);
  background:
    radial-gradient(120% 120% at 80% 0%, rgba(180,255,57,0.18), transparent 55%),
    linear-gradient(160deg, #11151b, #0a0d11);
  min-height: 360px; box-shadow: var(--shadow-pop);
  display: grid; place-items: center; padding: 28px;
}
.hero__media .play {
  width: 74px; height: 74px; border-radius: 50%; background: var(--lime); color:#08140a; display: grid; place-items:center;
  box-shadow: 0 0 0 12px rgba(180,255,57,0.12), 0 0 40px var(--lime-glow);
}
.hero__media .play svg { width: 28px; height: 28px; margin-left: 3px; }
.hero__mediacard {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  background: rgba(7,9,12,0.7); backdrop-filter: blur(8px); border: 1px solid var(--line-2);
  border-radius: var(--r-md); padding: 14px 16px; display:flex; align-items:center; justify-content: space-between; gap: 12px;
}
.hero__mediacard small { color: var(--text-muted); font-size: var(--fs-xs); }

/* ---------- 10. Logo marquee ---------- */
.marquee { 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: 56px; width: max-content; animation: scrollx 32s linear infinite; }
.marquee__track span { color: var(--text-faint); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; white-space: nowrap; opacity: .8; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- 11. Platform cards ---------- */
.platform { display:flex; align-items: flex-start; gap: 16px; }
.platform .logo {
  width: 48px; height: 48px; border-radius: 12px; display:grid; place-items:center; flex: none;
  background: var(--surface-2); border: 1px solid var(--line-2); font-weight: 800;
}

/* ---------- 12. Steps ---------- */
.step { position: relative; }
.step .num {
  display:inline-grid; place-items:center; width: 40px; height: 40px; border-radius: 12px;
  background: var(--lime); color:#08140a; font-weight: 800; margin-bottom: 16px;
}
.step .label { font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 8px; }

/* ---------- 13. Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
@media (max-width: 1080px){ .pricing-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .pricing-grid { grid-template-columns: 1fr; } }
.price {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; display:flex; flex-direction: column; position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.price:hover { transform: translateY(-5px); border-color: var(--line-2); }
.price--feature { border-color: rgba(180,255,57,0.45); background: linear-gradient(180deg, rgba(180,255,57,0.06), var(--surface) 40%); box-shadow: var(--shadow-lime); }
.price__flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--lime); color:#08140a; font-size: var(--fs-xs); font-weight: 700; padding: 5px 14px; border-radius: var(--r-pill);
}
.price__name { font-size: 1.15rem; font-weight: 600; }
.price__amt { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.03em; margin: 10px 0 2px; }
.price__amt span { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.price__per { color: var(--text-faint); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.14em; }
.price .btn { margin: 18px 0; }
.price__group { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-faint); margin: 14px 0 10px; }
.price__list { display: grid; gap: 10px; }
.price__list li { display:flex; gap: 10px; font-size: var(--fs-sm); color: var(--text-soft); line-height: 1.4; }
.price__list li svg { width: 16px; height: 16px; color: var(--lime); flex: none; margin-top: 3px; }
.price__foot { margin-top: auto; padding-top: 16px; font-size: var(--fs-xs); color: var(--text-faint); }

/* ---------- 14. Comparison table ---------- */
.compare { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.compare th, .compare td { padding: 16px 20px; text-align: center; font-size: var(--fs-sm); border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--surface-2); font-weight: 600; font-size: var(--fs-sm); }
.compare thead th.col-us { color: var(--lime); }
.compare tbody td:first-child, .compare thead th:first-child { text-align: left; color: var(--text-soft); font-weight: 500; }
.compare .col-us { background: rgba(180,255,57,0.05); font-weight: 600; }
.compare tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--green-ok); }
.compare .no { color: var(--red-no); }
.table-wrap { overflow-x: auto; }
@media (max-width: 620px){ .compare th, .compare td { padding: 12px 10px; font-size: var(--fs-xs); } }

/* ---------- 15. Testimonials ---------- */
.tcard { display:flex; flex-direction: column; gap: 14px; }
.tcard .quote { font-size: 1rem; color: var(--text); line-height: 1.55; }
.tcard .who { display:flex; align-items:center; gap: 12px; margin-top: auto; }
.tcard .who .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(140deg,#222831,#0e1216); display:grid; place-items:center; font-weight:700; color: var(--lime); }
.tcard .who b { display:block; font-size: var(--fs-sm); }
.tcard .who small { color: var(--text-faint); font-size: var(--fs-xs); }

/* ---------- 16. FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); overflow: hidden; transition: border-color .25s; }
.faq__item.open { border-color: var(--line-2); }
.faq__q { width: 100%; display:flex; align-items:center; justify-content: space-between; gap: 16px; text-align: left; padding: 18px 22px; font-weight: 500; font-size: 1rem; }
.faq__q .ic { width: 22px; height: 22px; flex: none; border-radius: 50%; border: 1px solid var(--line-2); display:grid; place-items:center; transition: .3s var(--ease); color: var(--lime); }
.faq__item.open .faq__q .ic { transform: rotate(45deg); background: var(--lime); color:#08140a; border-color: var(--lime); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 22px 20px; color: var(--text-muted); font-size: var(--fs-sm); line-height: 1.6; }

/* ---------- 17. Forms ---------- */
.field { display:flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: var(--fs-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.field label .req { color: var(--lime); }
.input, .select, .textarea {
  width: 100%; padding: 13px 15px; background: var(--surface-2); border: 1px solid var(--line-2);
  border-radius: var(--r-md); color: var(--text); transition: border-color .2s, box-shadow .2s;
}
.input::placeholder, .textarea::placeholder { color: var(--text-faint); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(180,255,57,0.15); }
.textarea { min-height: 120px; resize: vertical; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23b4ff39' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
@media (max-width: 560px){ .form-grid { grid-template-columns: 1fr; } }
.form-note { font-size: var(--fs-xs); color: var(--text-faint); margin-top: 6px; }

/* ---------- 18. Booking calendar ---------- */
.booking { display:grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: start; }
@media (max-width: 900px){ .booking { grid-template-columns: 1fr; } }
.cal {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px;
}
.cal__head { display:flex; align-items:center; justify-content: space-between; margin-bottom: 18px; }
.cal__head h3 { font-size: 1.1rem; }
.cal__nav { display:flex; gap: 8px; }
.cal__nav button { width: 38px; height: 38px; border-radius: var(--r-sm); border: 1px solid var(--line-2); background: var(--surface-2); display:grid; place-items:center; transition: .2s; }
.cal__nav button:hover:not(:disabled) { background: var(--surface-3); }
.cal__nav button:disabled { opacity: .3; cursor: not-allowed; }
.cal__grid { display:grid; grid-template-columns: repeat(7,1fr); gap: 6px; }
.cal__dow { text-align:center; font-size: var(--fs-xs); color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; padding-bottom: 6px; }
.cal__day {
  aspect-ratio: 1; border-radius: var(--r-sm); display:grid; place-items:center; font-size: var(--fs-sm);
  background: var(--surface-2); border: 1px solid transparent; transition: .18s; color: var(--text-soft);
}
.cal__day:hover:not(:disabled) { border-color: var(--lime); color: var(--text); }
.cal__day.is-empty { background: transparent; pointer-events:none; }
.cal__day:disabled { color: var(--text-faint); background: transparent; cursor: not-allowed; }
.cal__day.is-today { box-shadow: inset 0 0 0 1px var(--line-strong); }
.cal__day.is-selected { background: var(--lime); color:#08140a; font-weight: 700; border-color: var(--lime); }
.cal__legend { display:flex; gap:16px; margin-top: 16px; font-size: var(--fs-xs); color: var(--text-faint); }
.cal__legend span { display:inline-flex; align-items:center; gap:6px; }
.cal__legend i { width:10px;height:10px;border-radius:3px;display:inline-block; }

.slots { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.slots__date { font-size: var(--fs-sm); color: var(--lime); font-weight: 600; margin-bottom: 4px; }
.slots__grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 16px; }
@media (max-width: 420px){ .slots__grid { grid-template-columns: repeat(2,1fr); } }
.slot {
  padding: 11px 8px; border-radius: var(--r-sm); border: 1px solid var(--line-2); background: var(--surface-2);
  font-size: var(--fs-sm); font-weight: 500; transition: .18s; text-align:center;
}
.slot:hover:not(:disabled) { border-color: var(--lime); color: var(--text); }
.slot.is-selected { background: var(--lime); color:#08140a; font-weight: 700; border-color: var(--lime); }
.slot:disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.slots__empty { color: var(--text-faint); font-size: var(--fs-sm); padding: 24px 0; text-align:center; }
.booking__summary { margin-top: 20px; padding: 16px; border-radius: var(--r-md); background: rgba(180,255,57,0.07); border: 1px solid rgba(180,255,57,0.3); font-size: var(--fs-sm); display:none; }
.booking__summary.show { display:block; }
.confirmation {
  display:none; text-align:center; padding: 40px 24px;
}
.confirmation.show { display:block; }
.confirmation .check { width: 72px; height:72px; border-radius:50%; background: var(--lime); color:#08140a; display:grid; place-items:center; margin: 0 auto 18px; box-shadow: 0 0 40px var(--lime-glow); }
.confirmation .check svg { width: 36px; height:36px; }

/* ---------- 19. Stats ---------- */
.stat { text-align:center; }
.stat b { display:block; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -0.03em; color: var(--lime); }
.stat span { font-size: var(--fs-sm); color: var(--text-muted); }

/* ---------- 20. Timeline (about) ---------- */
.timeline { position: relative; display: grid; gap: 26px; padding-left: 26px; }
.timeline::before { content:""; position:absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--lime), transparent); }
.tl { position: relative; }
.tl::before { content:""; position:absolute; left: -26px; top: 4px; width: 14px; height:14px; border-radius:50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(180,255,57,0.15); }
.tl .yr { font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--lime); font-weight: 700; }
.tl h3 { font-size: 1.15rem; margin: 6px 0 8px; }
.tl p { color: var(--text-muted); font-size: var(--fs-sm); }

/* ---------- 21. CTA band ---------- */
.cta-band {
  border-radius: var(--r-xl); padding: clamp(40px, 6vw, 72px);
  background:
    radial-gradient(80% 120% at 80% 0%, rgba(180,255,57,0.18), transparent 60%),
    linear-gradient(160deg, #11151b, #0a0d11);
  border: 1px solid var(--line-2); text-align:center; position: relative; overflow: hidden;
}
.cta-band h2 { max-width: 18ch; margin: 0 auto 14px; }
.cta-band .lead { max-width: 52ch; margin: 0 auto 28px; }

/* ---------- 22. Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: 56px 30px; margin-top: 40px; }
.footer__grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 820px){ .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; }
.footer a { display:block; color: var(--text-muted); font-size: var(--fs-sm); padding: 5px 0; transition: color .2s; }
.footer a:hover { color: var(--lime); }
.footer__bottom { display:flex; align-items:center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--text-faint); font-size: var(--fs-xs); }
.footer__disc { max-width: 70ch; color: var(--text-faint); font-size: var(--fs-xs); margin-top: 8px; line-height: 1.5; }

/* ---------- 23. Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1;transform:none;} .marquee__track{animation:none;} * {scroll-behavior:auto;} }

/* ---------- 24. Misc utilities ---------- */
.mt-s{margin-top:12px;} .mt-m{margin-top:24px;} .mt-l{margin-top:40px;}
.divider { height:1px; background: var(--line); border:0; margin-block: 0; }
.hide-mobile { } @media (max-width:900px){ .hide-mobile{display:none!important;} }
.badge-soft { display:inline-flex; align-items:center; gap:6px; padding:5px 11px; border-radius: var(--r-pill); background: rgba(255,255,255,0.05); border:1px solid var(--line); font-size: var(--fs-xs); color: var(--text-soft); }

/* ============================================================
   25. v2 — atmospheric accents, brand logos, hero image, pixel icons
   ============================================================ */

/* Per-section soft aura so sections feel lit, not flat */
.section { isolation: isolate; }
.section--aura::before {
  content:""; position:absolute; inset:0; z-index:-1; pointer-events:none;
  background: radial-gradient(60% 70% at 50% -10%, rgba(180,255,57,0.08), transparent 60%);
}
.section--aura-r::before {
  content:""; position:absolute; inset:0; z-index:-1; pointer-events:none;
  background: radial-gradient(45% 60% at 92% 10%, rgba(180,255,57,0.10), transparent 60%);
}
.section--aura-l::before {
  content:""; position:absolute; inset:0; z-index:-1; pointer-events:none;
  background: radial-gradient(45% 60% at 6% 12%, rgba(140,224,0,0.08), transparent 60%);
}
/* give cards a touch of depth over the busier bg */
.card, .price, .cal, .slots { backdrop-filter: blur(2px); }

/* ---- Pixel icon system ---- */
.px { display:inline-block; line-height:0; color: currentColor; }
.px svg { width:100%; height:100%; display:block; image-rendering: pixelated; shape-rendering: crispEdges; }
.card .ico .px, .card .ico svg { width:24px; height:24px; }
.ico .px svg { width:24px; height:24px; }
.chip .cic, .price__list .cic, .field .cic { width:16px; height:16px; flex:none; color: var(--lime); display:inline-block; }
.chip .cic svg, .price__list .cic svg, .field .cic svg { width:16px; height:16px; image-rendering: pixelated; shape-rendering: crispEdges; }
.price__list li .cic { margin-top:2px; }
.btn .px { width:16px; height:16px; }
.btn .px svg { image-rendering: pixelated; shape-rendering: crispEdges; }

/* ---- Brand logos ---- */
.brandlogo { display:inline-flex; align-items:center; justify-content:center; color: var(--text); }
.brandlogo svg { width:100%; height:100%; fill: currentColor; }
/* platform card logo tile now holds a real svg */
.platform .logo.brand { background: var(--surface-2); color:#fff; }
.platform .logo.brand svg { width:26px; height:26px; }
.platform .logo.brand.meta { color:#0866ff; }
.platform .logo.brand.google svg { fill: initial; }      /* google glyph is multicolor via its own path? keep mono */
.platform .logo.brand.tiktok { color:#fff; }

/* marquee now shows logos, dimmed to monochrome then lit on hover */
.marquee__track .brandlogo {
  height: 26px; width:auto; color: var(--text-faint);
  opacity:.6; transition: opacity .3s, color .3s; align-items:center;
}
.marquee__track .brandlogo svg { width:auto; height:26px; }
.marquee:hover .brandlogo, .marquee__track .brandlogo:hover { opacity:1; color: var(--text-soft); }
.marquee__track .brandlogo span.lbl { font-weight:700; font-size:1.05rem; letter-spacing:-0.02em; margin-left:10px; white-space:nowrap; }

/* Google rating badge in hero */
.gbadge { display:inline-flex; align-items:center; gap:10px; padding:8px 14px; border-radius: var(--r-md);
  background: var(--surface); border:1px solid var(--line-2); }
.gbadge .glogo { width:20px; height:20px; }
.gbadge b { font-size:.9rem; }

/* ---- Hero media: real image fill ---- */
.hero__media.has-img { padding:0; place-items: stretch; }
.hero__media .shot { width:100%; height:100%; min-height:360px; object-fit: cover; display:block; }
.hero__media .play.over {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:3;
}
.hero__media.has-img::after { /* readability scrim + lime tint over image */
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background: linear-gradient(180deg, rgba(6,7,10,0) 40%, rgba(6,7,10,.65) 100%),
              radial-gradient(70% 60% at 80% 0%, rgba(180,255,57,.14), transparent 60%);
}
.hero__media .hero__mediacard { z-index:3; }

/* dashboard SVG hero */
.hero__media--dash { padding: 20px; place-items: center; min-height: 0;
  background: radial-gradient(120% 120% at 80% 0%, rgba(180,255,57,0.16), transparent 55%), linear-gradient(160deg,#11151b,#0a0d11); }
.hero__media--dash .dash { width: 100%; height: auto; border-radius: 12px; filter: drop-shadow(0 20px 40px rgba(0,0,0,.5)); }

/* marquee logo items */
.marquee__track .mq { display:inline-flex; align-items:center; gap:10px; color: var(--text-faint);
  font-weight:700; font-size:1.05rem; letter-spacing:-0.02em; white-space:nowrap; opacity:.55; transition:opacity .3s, color .3s; }
.marquee:hover .mq { opacity:.85; }
.marquee__track .mq:hover { opacity:1; color: var(--text-soft); }
.marquee__track .mq .brandlogo { width:24px; height:24px; }
.marquee__track .mq .brandlogo svg { width:24px; height:24px; }

/* generic image card used on about/service pages */
.imgframe { position:relative; border-radius: var(--r-xl); overflow:hidden; border:1px solid var(--line-2); box-shadow: var(--shadow-pop); }
.imgframe img { width:100%; display:block; }
.imgframe::after { content:""; position:absolute; inset:0; background: radial-gradient(60% 60% at 80% 0%, rgba(180,255,57,.12), transparent 60%); pointer-events:none; }
