/* ============================================================
   ITZ Web Development — Premium Studio Design System
   webdesign.itz.ae
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

/* ---------- Design Tokens ---------- */
:root {
  /* Core surface palette (dark, premium) */
  --bg: #08090d;
  --bg-1: #0c0e14;
  --bg-2: #10131c;
  --surface: rgba(255, 255, 255, 0.028);
  --surface-2: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.14);

  /* Text */
  --heading: #f4f6fb;
  --text: #c3c9d6;
  --text-soft: #8b93a7;
  --text-faint: #5c6478;

  /* Signature accents */
  --acc-cyan: #4ff0d6;
  --acc-blue: #5b8cff;
  --acc-violet: #9d7bff;
  --acc-lime: #c6ff4d;
  --accent: #5eead4;

  --gradient-brand: linear-gradient(115deg, #5b8cff 0%, #4ff0d6 100%);
  --gradient-iris: linear-gradient(120deg, #9d7bff 0%, #5b8cff 45%, #4ff0d6 100%);
  --gradient-text: linear-gradient(105deg, #9d7bff, #5b8cff 40%, #4ff0d6);
  --gradient-line: linear-gradient(90deg, transparent, var(--acc-cyan), transparent);

  --whatsapp: #25d366;
  --success: #4ade80;
  --danger: #ff6b6b;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 40px 90px rgba(0, 0, 0, 0.6);
  --glow-cyan: 0 0 0 1px rgba(79, 240, 214, 0.35), 0 20px 60px rgba(79, 240, 214, 0.22);
  --glow-iris: 0 22px 70px rgba(91, 140, 255, 0.4);

  /* Layout */
  --container: 1240px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Typography */
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: "Space Grotesk", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --space: clamp(4rem, 9vw, 8rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(60% 50% at 12% -5%, rgba(91, 140, 255, 0.12), transparent 60%),
    radial-gradient(50% 45% at 95% 5%, rgba(157, 123, 255, 0.10), transparent 60%),
    radial-gradient(45% 40% at 50% 110%, rgba(79, 240, 214, 0.08), transparent 60%);
  background-attachment: fixed;
  line-height: 1.7;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* Fine-grain film over everything */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%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)' opacity='0.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
main, header, footer { position: relative; z-index: 2; }

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--acc-cyan); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--acc-blue); }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--heading); line-height: 1.08; font-weight: 600; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.5rem, 6.2vw, 4.7rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { color: var(--text-soft); }
strong { color: var(--text); }
::selection { background: var(--acc-cyan); color: #05221d; }
:focus-visible { outline: 2px solid var(--acc-cyan); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout Helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.2rem, 4vw, 2.2rem); }
.section { padding-block: var(--space); position: relative; }
.section--alt { background: linear-gradient(180deg, var(--bg-1), rgba(12,14,20,0.4)); border-block: 1px solid var(--line); }
.section--dark { position: relative; overflow: hidden; }
.section--dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 60% at 15% 20%, rgba(91,140,255,0.16), transparent 60%),
    radial-gradient(40% 60% at 85% 80%, rgba(157,123,255,0.14), transparent 60%);
}
.narrow { max-width: 760px; }
.center { text-align: center; margin-inline: auto; }
.grid { display: grid; gap: 1.6rem; }

/* Monospace developer kicker */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-size: .76rem; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase; color: var(--acc-cyan); margin-bottom: 1.2rem;
}
.eyebrow::before { content: "//"; color: var(--acc-violet); font-weight: 600; }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--text-soft); line-height: 1.7; }
.section-head { max-width: 760px; margin-bottom: 3.2rem; }
.section-head.center { margin-inline: auto; }
.text-gradient { background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: .96rem; letter-spacing: -.01em;
  padding: .92rem 1.65rem; border-radius: var(--radius-pill); border: 1px solid transparent;
  cursor: pointer; transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, background .25s, color .2s, border-color .25s;
  white-space: nowrap; line-height: 1; overflow: hidden;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary { background: var(--gradient-brand); color: #05131f; font-weight: 700; box-shadow: var(--glow-iris); }
.btn--primary:hover { color: #05131f; transform: translateY(-3px); box-shadow: 0 28px 80px rgba(79,240,214,.45); }
.btn--dark { background: var(--surface-2); color: var(--heading); border-color: var(--line-2); backdrop-filter: blur(6px); }
.btn--dark:hover { color: var(--heading); border-color: var(--acc-cyan); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--heading); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--acc-cyan); color: var(--acc-cyan); transform: translateY(-3px); }
.btn--light { background: var(--heading); color: #0a0c12; font-weight: 700; }
.btn--light:hover { color: #0a0c12; transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--wa, a.btn--wa, .footer a.btn--wa { background: #25d366; color: #ffffff; font-weight: 700; }
.btn--wa svg, a.btn--wa svg { color: #ffffff; fill: #ffffff; }
.btn--wa:hover, a.btn--wa:hover, .footer a.btn--wa:hover { color: #ffffff; background: #1ebe5d; transform: translateY(-3px); box-shadow: 0 20px 50px rgba(37,211,102,.4); }
.btn--lg { padding: 1.08rem 2.1rem; font-size: 1.03rem; }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  padding: .7rem 0 .55rem;
  background: linear-gradient(180deg, rgba(8, 9, 13, .88) 0%, rgba(8, 9, 13, .35) 70%, transparent 100%);
  border-bottom: none;
  transition: background .3s ease, padding .3s ease;
}
.site-header.scrolled {
  padding: .45rem 0;
  background: linear-gradient(180deg, rgba(8, 9, 13, .96) 0%, rgba(8, 9, 13, .55) 80%, transparent 100%);
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 64px;
  padding: .4rem .45rem .4rem .7rem;
  background: rgba(12, 14, 20, 0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .38);
  backdrop-filter: saturate(170%) blur(18px);
}
.site-header.scrolled .nav { background: rgba(8, 9, 13, 0.94); border-color: var(--line-2); }

.brand { display: flex; align-items: center; gap: .7rem; flex: 0 0 auto; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--heading); letter-spacing: -.02em; white-space: nowrap; }
.brand:hover { color: var(--heading); }
.brand__logo {
  width: 40px; height: 40px; border-radius: 11px;
  display: block; flex-shrink: 0; object-fit: cover;
  box-shadow: var(--glow-iris);
  background: #0a0e18;
}
.brand__text { line-height: 1; }
.brand small { display: none; }
.footer__brand .brand small { display: block; font-family: var(--font-mono); font-size: .58rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); line-height: 1.4; margin-top: .2rem; }
.footer__brand .brand { white-space: normal; font-size: 1.16rem; }
.footer__brand .brand__logo { width: 48px; height: 48px; border-radius: 13px; }

/* Even, underline-style navigation */
.nav__links { flex: 1 1 auto; display: flex; align-items: center; justify-content: center; gap: 0; min-width: 0; }
.nav__links > li { display: flex; align-items: center; flex: 0 0 auto; }
.nav__links > li > a { position: relative; color: var(--text-soft); font-weight: 600; font-size: .86rem; letter-spacing: -.01em; padding: .55rem .72rem; border-radius: 10px; transition: color .2s ease, background .2s ease; white-space: nowrap; }
.nav__links > li > a:hover { color: var(--heading); background: rgba(255, 255, 255, .05); }
.nav__links > li > a.active { color: var(--heading); background: rgba(79, 240, 214, .08); box-shadow: none; }
.nav__links > li > a.active::after {
  content: ""; position: absolute; left: 18%; right: 18%; bottom: 5px; height: 2px; border-radius: 2px;
  background: var(--gradient-brand);
}
.has-dropdown > a { display: inline-flex; align-items: center; gap: .32rem; }
.nav-chevron { width: 11px; height: 11px; opacity: .7; transition: transform .28s ease; }
.has-dropdown:hover > a .nav-chevron, .has-dropdown:focus-within > a .nav-chevron { transform: rotate(180deg); opacity: 1; }

.nav__cta { display: flex; align-items: center; gap: .5rem; flex: 0 0 auto; margin-left: auto; }
.nav__phone { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; flex-shrink: 0; font-family: var(--font-mono); font-weight: 500; color: var(--text); font-size: .8rem; padding: .48rem .85rem; border: 1px solid var(--line); border-radius: var(--radius-pill); transition: color .2s ease, border-color .2s ease, background .2s ease; }
.nav__phone svg { color: var(--acc-cyan); flex-shrink: 0; }
.nav__phone-num { white-space: nowrap; }
.nav__phone:hover { color: var(--acc-cyan); border-color: var(--acc-cyan); background: rgba(79, 240, 214, .06); }
.nav__quote { flex-shrink: 0; white-space: nowrap; padding: .58rem 1.05rem; font-size: .86rem; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: .45rem; border-radius: 10px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--heading); border-radius: 3px; transition: .3s; }
.nav__toggle span + span { margin-top: 5px; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 0; min-width: 260px;
  background: rgba(14, 16, 22, 0.97); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: .6rem; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: .24s ease; z-index: 20; backdrop-filter: blur(16px);
}
.dropdown::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; flex-direction: column; padding: .6rem .8rem; border-radius: var(--radius-sm); }
.dropdown a span { font-size: .76rem; font-weight: 500; color: var(--text-faint); }
.dropdown a strong { font-weight: 700; color: var(--heading); font-size: .9rem; font-family: var(--font-head); }
.dropdown a:hover { background: var(--surface-2); }
.dropdown a:hover strong { color: var(--acc-cyan); }
.dropdown--mega { display: grid; grid-template-columns: 1fr 1fr; gap: .1rem 1.4rem; min-width: 660px; padding: 1.1rem; left: 50%; transform: translate(-50%, 10px); }
.has-dropdown:hover .dropdown--mega, .has-dropdown:focus-within .dropdown--mega { transform: translate(-50%, 0); }
.dropdown__col { display: flex; flex-direction: column; }
.dropdown__label { font-family: var(--font-mono); font-size: .64rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--acc-violet); padding: .3rem .8rem .55rem; }
/* Icon mega-menu items */
.dropdown--mega .mega-item { flex-direction: row; align-items: center; gap: .8rem; padding: .5rem .7rem; }
.dropdown--mega .mega-ic { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--line); color: var(--acc-cyan); transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease; }
.dropdown--mega .mega-ic svg { width: 19px; height: 19px; }
.dropdown--mega .mega-tx { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.dropdown--mega .mega-item:hover .mega-ic { background: var(--gradient-brand); color: #05131f; border-color: transparent; transform: translateY(-2px) rotate(-4deg); box-shadow: var(--glow-cyan); }
.dropdown--mega .dropdown__cta { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .5rem; padding: .85rem 1rem; border-radius: var(--radius); background: linear-gradient(135deg, var(--bg-2), var(--bg-1)); border: 1px solid var(--line-2); }
.dropdown--mega .dropdown__cta:hover { background: linear-gradient(135deg, var(--bg-2), var(--bg-1)); border-color: var(--acc-cyan); }
.dropdown--mega .dropdown__cta-tx { display: flex; flex-direction: column; gap: .1rem; }
.dropdown--mega .dropdown__cta .btn { white-space: nowrap; padding: .55rem 1rem; font-size: .82rem; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(4.5rem, 10vw, 8rem); }
.hero__grid {
  position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 52px 52px; mask-image: radial-gradient(75% 65% at 40% 20%, #000, transparent);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(45% 55% at 18% 8%, rgba(91,140,255,.28), transparent 60%),
    radial-gradient(40% 50% at 88% 15%, rgba(157,123,255,.22), transparent 60%),
    radial-gradient(45% 45% at 70% 95%, rgba(79,240,214,.16), transparent 60%);
}
.hero > .container { position: relative; z-index: 1; }
.hero__media {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.hero__media img, .hero__media video {
  position: absolute; inset: 0; width: 100%; height: 100%; max-width: none;
  object-fit: cover; object-position: center 32%;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,10,20,.48) 0%, rgba(6,10,20,.74) 55%, var(--bg) 100%),
    radial-gradient(55% 70% at 82% 12%, rgba(91,140,255,.18), transparent 62%);
}
.hero.has-video::before { opacity: .22; }
.hero.has-video .hero__grid { opacity: .2; }
.hero.has-video .aurora { opacity: .28; }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center; }
.hero h1 { margin-bottom: 1.5rem; }
.hero p.lead { color: var(--text); max-width: 560px; }
.hero__pill {
  display: inline-flex; align-items: center; gap: .55rem; padding: .5rem 1rem; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid var(--line); font-family: var(--font-mono); font-size: .78rem; font-weight: 500; color: var(--text); margin-bottom: 1.8rem;
}
.hero__pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--acc-lime); box-shadow: 0 0 0 4px rgba(198,255,77,.18); animation: blink 2.4s infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.4;} }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 2.4rem; margin-top: 2.8rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.hero__stats a.stat { text-decoration: none; color: inherit; }
.hero__stats a.stat:hover strong { color: var(--acc-cyan); }
.hero__stats .stat strong { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--heading); line-height: 1; letter-spacing: -.03em; }
.hero__stats .stat span { font-family: var(--font-mono); font-size: .74rem; color: var(--text-faint); }

/* Hero code window */
.hero__visual { position: relative; }
.code-win {
  background: rgba(13, 16, 23, 0.9); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; backdrop-filter: blur(10px);
  position: relative;
}
.code-win::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(140deg, rgba(157,123,255,.5), transparent 40%, transparent 60%, rgba(79,240,214,.4)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.code-win__bar { display: flex; align-items: center; gap: .5rem; padding: .85rem 1.1rem; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.02); }
.code-win__bar i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.code-win__bar i:nth-child(1){ background:#ff5f57; } .code-win__bar i:nth-child(2){ background:#febc2e; } .code-win__bar i:nth-child(3){ background:#28c840; }
.code-win__file { margin-left: .7rem; font-family: var(--font-mono); font-size: .74rem; color: var(--text-faint); }
.code-win__body { padding: 1.3rem 1.4rem; font-family: var(--font-mono); font-size: .82rem; line-height: 1.85; min-height: 250px; }
.code-win__body pre { margin: 0; white-space: pre-wrap; word-break: break-word; }
.code-line { display: block; opacity: 0; transform: translateY(6px); transition: opacity .45s ease, transform .45s ease; }
.code-line.in { opacity: 1; transform: none; }
.code-line .indent { padding-left: 1.6em; } .code-line .indent2 { padding-left: 3.2em; }
.tok-key { color: var(--acc-violet); } .tok-fn { color: var(--acc-blue); } .tok-str { color: var(--acc-cyan); } .tok-num { color: var(--acc-lime); } .tok-com { color: var(--text-faint); font-style: italic; } .tok-punc { color: var(--text-soft); }
.caret { display: inline-block; width: 8px; height: 1.05em; background: var(--acc-cyan); margin-left: 2px; vertical-align: text-bottom; animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.hero__badge {
  position: absolute; bottom: -20px; right: -6px; background: rgba(16,19,28,.95); border: 1px solid var(--line-2); color: var(--heading);
  border-radius: var(--radius); padding: .85rem 1.05rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .75rem;
  animation: float 5s ease-in-out infinite; backdrop-filter: blur(10px);
}
.hero__badge .ic { width: 38px; height: 38px; border-radius: 11px; background: var(--gradient-brand); color: #05131f; display: grid; place-items: center; }
.hero__badge strong { display: block; font-size: .92rem; font-family: var(--font-head); }
.hero__badge span { font-family: var(--font-mono); font-size: .68rem; color: var(--text-faint); }
@keyframes float { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-10px);} }

/* Marquee trust bar */
.trust { border-block: 1px solid var(--line); background: var(--bg-1); padding-block: 1.8rem; overflow: hidden; }
.trust__label { text-align: center; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 1.3rem; }
.trust__row { display: flex; gap: 3.5rem; align-items: center; width: max-content; animation: marquee 26s linear infinite; }
.trust:hover .trust__row { animation-play-state: paused; }
.trust__row span { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; color: var(--text-faint); letter-spacing: -.02em; white-space: nowrap; transition: color .2s; }
.trust__row span:hover { color: var(--acc-cyan); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.1rem 1.8rem; transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s, background .3s; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .35s; pointer-events: none;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgba(79,240,214,.14), transparent 60%);
}
.card:hover { transform: translateY(-7px); border-color: var(--line-2); background: var(--surface-2); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 1.4rem;
  background: linear-gradient(135deg, rgba(91,140,255,.16), rgba(79,240,214,.12)); color: var(--acc-cyan); border: 1px solid var(--line);
}
.card__icon svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .95rem; margin-bottom: 1.1rem; }
.card__link { font-family: var(--font-mono); font-weight: 500; font-size: .82rem; display: inline-flex; align-items: center; gap: .4rem; color: var(--acc-cyan); }
.card__link svg { width: 15px; height: 15px; transition: transform .25s; }
.card:hover .card__link svg { transform: translateX(5px); }
.card--dark { background: var(--surface-2); }
.card--dark h3 { color: #fff; } .card--dark p { color: var(--text-soft); }

/* Feature list */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem 2rem; }
.feature { display: flex; gap: 1rem; }
.feature .tick { width: 32px; height: 32px; flex-shrink: 0; border-radius: 10px; background: rgba(79,240,214,.1); color: var(--acc-cyan); display: grid; place-items: center; border: 1px solid var(--line); }
.feature .tick svg { width: 16px; height: 16px; }
.feature h4 { font-family: var(--font-head); font-size: 1.02rem; margin-bottom: .25rem; color: var(--heading); font-weight: 600; }
.feature p { font-size: .9rem; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.media-frame img { width: 100%; display: block; }

/* Stat band */
.statband { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.6rem; text-align: center; }
.statband .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.4rem, 4.5vw, 3.4rem); background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; letter-spacing: -.03em; }
.statband .lbl { color: var(--text-faint); font-family: var(--font-mono); font-size: .8rem; margin-top: .6rem; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.6rem; }
.step { position: relative; padding: 2.2rem 1.6rem 1.6rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); transition: border-color .3s, transform .3s; }
.step:hover { border-color: var(--line-2); transform: translateY(-5px); }
.step__num { position: absolute; top: -18px; left: 1.6rem; width: 44px; height: 44px; border-radius: 12px; background: var(--gradient-brand); color: #05131f; display: grid; place-items: center; font-family: var(--font-mono); font-weight: 600; box-shadow: var(--glow-iris); }
.step h3 { font-size: 1.15rem; margin: .7rem 0 .5rem; }
.step p { font-size: .92rem; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.6rem; align-items: stretch; }
.price { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.2rem 1.9rem; display: flex; flex-direction: column; transition: transform .3s, border-color .3s; }
.price:hover { transform: translateY(-7px); border-color: var(--line-2); }
.price.featured { border-color: transparent; background: var(--surface-2); box-shadow: var(--glow-cyan); }
.price.featured::before { content: "Most Popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gradient-brand); color: #05131f; font-family: var(--font-mono); font-size: .68rem; font-weight: 600; padding: .35rem .9rem; border-radius: var(--radius-pill); letter-spacing: .04em; }
.price h3 { font-size: 1.3rem; }
.price .amount { font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: var(--heading); margin: .7rem 0 .2rem; }
.price .amount small { font-size: .92rem; font-weight: 500; color: var(--text-faint); font-family: var(--font-mono); }
.price .desc { font-size: .9rem; margin-bottom: 1.3rem; }
.price ul { display: grid; gap: .75rem; margin: .4rem 0 1.7rem; }
.price li { display: flex; gap: .6rem; font-size: .91rem; color: var(--text); align-items: flex-start; }
.price li svg { width: 18px; height: 18px; color: var(--acc-cyan); flex-shrink: 0; margin-top: 2px; }
.price .btn { margin-top: auto; }

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.1rem 1.8rem; transition: border-color .3s, transform .3s; }
.quote:hover { border-color: var(--line-2); transform: translateY(-5px); }
.quote .stars { color: #ffc451; display: flex; gap: 2px; margin-bottom: 1.1rem; font-size: 1.05rem; letter-spacing: 2px; }
.quote p { color: var(--text); font-size: 1.02rem; margin-bottom: 1.4rem; line-height: 1.65; }
.quote .who { display: flex; align-items: center; gap: .85rem; }
.quote .avatar { width: 46px; height: 46px; border-radius: 12px; background: #0a0e18 url("../assets/logo-mark.svg") center/cover no-repeat; color: transparent; font-size: 0; }
.quote .who strong { display: block; font-size: .95rem; color: var(--heading); font-family: var(--font-head); }
.quote .who span { font-family: var(--font-mono); font-size: .76rem; color: var(--text-faint); }

/* Portfolio */
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 1.6rem; }
.work { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--surface); transition: transform .3s, border-color .3s; display: flex; flex-direction: column; color: inherit; text-decoration: none; }
a.work:hover { transform: translateY(-7px); border-color: var(--acc-cyan); color: inherit; }
.work__thumb { aspect-ratio: 16/10; position: relative; overflow: hidden; display: grid; place-items: center; color: #fff; background: var(--surface-2); }
.work__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.work__body { padding: 1.5rem 1.6rem; }
.work__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .85rem; }
.tag { font-family: var(--font-mono); font-size: .68rem; font-weight: 500; color: var(--acc-cyan); background: rgba(79,240,214,.09); padding: .28rem .6rem; border-radius: var(--radius-pill); border: 1px solid var(--line); }
.work__body h3 { font-size: 1.18rem; margin-bottom: .4rem; }
.work__body p { font-size: .9rem; }
.work__visit { display: inline-flex; align-items: center; gap: .35rem; margin-top: .85rem; font-family: var(--font-mono); font-size: .74rem; color: var(--acc-cyan); }
a.work:hover .work__visit { color: var(--heading); }

.proof-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 920px; margin-inline: auto; }
.proof { display: flex; flex-direction: column; gap: .35rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem 1.5rem; color: inherit; text-decoration: none; transition: .25s; }
.proof:hover { border-color: var(--acc-cyan); transform: translateY(-4px); color: inherit; }
.proof strong { font-family: var(--font-head); font-size: 1.7rem; color: var(--heading); line-height: 1.1; }
.proof span { font-family: var(--font-mono); font-size: .78rem; color: var(--text-faint); }
@media (max-width: 800px) { .proof-row { grid-template-columns: 1fr; } }

/* FAQ / Accordion */
.faq { display: grid; gap: .9rem; max-width: 840px; margin-inline: auto; }
.acc { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; transition: border-color .3s; }
.acc.open { border-color: var(--line-2); }
.acc__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 1.25rem 1.5rem; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--heading); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.acc__q .chev { width: 22px; height: 22px; flex-shrink: 0; transition: transform .3s; color: var(--acc-cyan); }
.acc.open .acc__q .chev { transform: rotate(180deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc__a-inner { padding: 0 1.5rem 1.4rem; color: var(--text-soft); font-size: .96rem; }

/* Interactive FAQ */
.faq-tools { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; justify-content: space-between; align-items: center; max-width: 1000px; margin: 0 auto 2.2rem; }
.faq-search { position: relative; flex: 1 1 260px; max-width: 420px; }
.faq-search svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--text-faint); pointer-events: none; }
.faq-search input { width: 100%; font-family: var(--font-sans); font-size: .95rem; color: var(--heading); padding: .8rem 1rem .8rem 2.8rem; border: 1px solid var(--line); border-radius: var(--radius-pill); background: rgba(255,255,255,.03); transition: border-color .2s, box-shadow .2s, background .2s; }
.faq-search input::placeholder { color: var(--text-faint); }
.faq-search input:focus { outline: none; border-color: var(--acc-cyan); box-shadow: 0 0 0 3px rgba(79,240,214,.14); background: rgba(255,255,255,.05); }
.faq-filters { display: flex; flex-wrap: wrap; gap: .5rem; }
.faq-chip { font-family: var(--font-mono); font-size: .78rem; font-weight: 500; padding: .48rem .95rem; border-radius: var(--radius-pill); border: 1px solid var(--line); background: var(--surface); color: var(--text-soft); cursor: pointer; transition: .2s; }
.faq-chip:hover { border-color: var(--acc-cyan); color: var(--acc-cyan); transform: translateY(-2px); }
.faq-chip.active { background: var(--gradient-brand); color: #05131f; border-color: transparent; font-weight: 600; box-shadow: var(--glow-iris); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; max-width: 1000px; margin-inline: auto; align-items: start; }
.faq-grid .acc.hide { display: none; }
.acc__qt { display: flex; align-items: baseline; gap: .7rem; }
.acc__q .num { font-family: var(--font-mono); font-size: .8rem; font-weight: 600; color: var(--acc-violet); flex-shrink: 0; }
.faq-empty { text-align: center; color: var(--text-soft); font-size: 1rem; margin: 1.5rem auto 0; max-width: 520px; }
@media (max-width: 760px) { .faq-grid { grid-template-columns: 1fr; } .faq-tools { justify-content: center; } .faq-search { max-width: none; } }

/* ---------- Blog ---------- */
.posts { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 1.7rem; }
.post-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); transition: transform .3s, border-color .3s; color: inherit; }
.post-card:hover { transform: translateY(-7px); border-color: var(--line-2); color: inherit; }
.post-card.hide { display: none; }
.post-card__thumb { aspect-ratio: 16/9; position: relative; display: grid; place-items: center; padding: 0; text-align: center; overflow: hidden; background: var(--surface-2); }
.post-card__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; transition: transform .55s ease; }
.post-card:hover .post-card__thumb img { transform: scale(1.06); }
.post-card__thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,10,20,.05), rgba(5,10,20,.32)); }
.post-card__thumb .kicker { position: relative; z-index: 1; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: #fff; letter-spacing: -.02em; line-height: 1.25; }
.post-card__cat { position: absolute; top: .9rem; left: .9rem; z-index: 2; font-family: var(--font-mono); font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: #05131f; background: rgba(255,255,255,.92); padding: .3rem .6rem; border-radius: var(--radius-pill); }
.post-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { font-family: var(--font-mono); font-size: .74rem; color: var(--text-faint); margin-bottom: .7rem; }
.post-card h3 { font-size: 1.18rem; line-height: 1.25; margin-bottom: .6rem; }
.post-card:hover h3 { color: var(--acc-cyan); }
.post-card p { font-size: .93rem; margin-bottom: 1rem; }
.post-card .read-more { margin-top: auto; font-family: var(--font-mono); font-size: .8rem; color: var(--acc-cyan); display: inline-flex; align-items: center; gap: .4rem; }
.post-card:hover .read-more svg { transform: translateX(4px); }
.post-card .read-more svg { width: 15px; height: 15px; transition: transform .25s; }

.post-featured { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border: 1px solid var(--line-2); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); margin-bottom: 2.4rem; transition: border-color .3s; }
.post-featured:hover { border-color: var(--acc-cyan); color: inherit; }
.post-featured__media { position: relative; min-height: 320px; display: grid; place-items: center; padding: 0; text-align: center; background: var(--surface-2); }
.post-featured__media img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; transition: transform .6s ease; }
.post-featured:hover .post-featured__media img { transform: scale(1.04); }
.post-featured__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,10,20,.04), rgba(5,10,20,.28)); }
.post-featured__media .kicker { position: relative; z-index: 1; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.4rem,2.4vw,2rem); color: #fff; letter-spacing: -.02em; }
.post-featured__body { padding: clamp(1.8rem,3vw,2.6rem); display: flex; flex-direction: column; justify-content: center; }
.post-featured__body .badge { align-self: flex-start; font-family: var(--font-mono); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--acc-cyan); background: rgba(79,240,214,.09); border: 1px solid var(--line); padding: .35rem .8rem; border-radius: var(--radius-pill); margin-bottom: 1rem; }
.post-featured__body h2 { font-size: clamp(1.5rem,2.6vw,2.1rem); margin-bottom: .8rem; }
.post-featured__body p { margin-bottom: 1.4rem; }

/* Article */
.article-hero .page-hero__inner { max-width: 860px; }
.article-cover {
  margin: 0 0 2rem; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 16 / 9; background: var(--surface-2);
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-fig { margin: 1.8rem 0 2rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.article-fig img { width: 100%; height: auto; }
.article-fig figcaption { font-family: var(--font-mono); font-size: .74rem; color: var(--text-faint); padding: .7rem 1rem 1rem; }
.article-cat { display: inline-block; font-family: var(--font-mono); font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--acc-cyan); background: rgba(79,240,214,.09); border: 1px solid var(--line); padding: .35rem .85rem; border-radius: var(--radius-pill); margin-bottom: 1rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; font-family: var(--font-mono); font-size: .8rem; color: var(--text-faint); margin-top: 1.2rem; }
.article-meta .who { color: var(--text); }
.article { max-width: 820px; margin-inline: auto; }
.article > p { margin-bottom: 1.25rem; font-size: 1.06rem; line-height: 1.85; color: var(--text); }
.article h2 { margin: 2.6rem 0 1rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.article h3 { margin: 2rem 0 .7rem; font-size: 1.2rem; color: var(--heading); }
.article ul, .article ol { margin: 0 0 1.5rem; padding-left: 0; display: grid; gap: .6rem; }
.article li { color: var(--text); font-size: 1.02rem; line-height: 1.7; }
.article ul li { list-style: none; position: relative; padding-left: 1.6rem; }
.article ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; border-radius: 2px; background: var(--gradient-brand); }
.article ol { padding-left: 1.3rem; }
.article ol li { list-style: decimal; padding-left: .3rem; }
.article a { color: var(--acc-cyan); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(79,240,214,.4); }
.article a:hover { text-decoration-color: var(--acc-cyan); }
.article strong { color: var(--heading); }
.article blockquote { border-left: 3px solid var(--acc-cyan); background: var(--surface); padding: 1rem 1.3rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 0 0 1.5rem; color: var(--text); font-size: 1.05rem; }
.article .lead-in { font-size: 1.14rem; line-height: 1.75; color: var(--heading); background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--acc-cyan); padding: 1.15rem 1.4rem; border-radius: var(--radius); margin-bottom: 1.8rem; }
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin: 0 0 1.8rem; }
.quality-card { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.25rem 1.15rem; }
.quality-card span { display: block; font-family: var(--font-mono); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--acc-cyan); margin-bottom: .45rem; }
.quality-card strong { display: block; font-family: var(--font-head); color: var(--heading); margin-bottom: .4rem; font-size: 1.05rem; }
.quality-card p { margin: 0; font-size: .92rem; line-height: 1.65; color: var(--text-soft); }
@media (max-width: 640px) { .quality-grid { grid-template-columns: 1fr; } }
.table-wrap { overflow-x: auto; margin: 0 0 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); }
.article table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 460px; }
.article th, .article td { text-align: left; padding: .85rem 1.1rem; border-bottom: 1px solid var(--line); }
.article thead th { font-family: var(--font-head); color: var(--heading); font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; background: var(--surface-2); }
.article tbody td { color: var(--text-soft); }
.article tbody tr:last-child td { border-bottom: none; }
.post-cta { background: linear-gradient(135deg, var(--bg-2), var(--bg-1)); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 1.5rem 1.7rem; margin: 2.2rem 0; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; position: relative; overflow: hidden; }
.post-cta p { margin: 0; color: var(--heading); font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; max-width: 60%; }
.author-card { display: flex; gap: 1.1rem; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem 1.5rem; margin-top: 2.6rem; }
.author-card .avatar { width: 56px; height: 56px; border-radius: 14px; background: #0a0e18 url("../assets/logo-mark.svg") center/cover no-repeat; color: transparent; font-size: 0; flex-shrink: 0; }
.author-card strong { color: var(--heading); font-family: var(--font-head); font-size: 1.05rem; }
.author-card p { margin: .2rem 0 0; font-size: .9rem; }

.related-posts { margin: 2.8rem 0 0; padding-top: 2.2rem; border-top: 1px solid var(--line); }
.related-posts h2 { margin: 0 0 1.35rem; font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
.related-posts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); color: inherit; text-decoration: none; transition: transform .25s, border-color .25s; }
.article .related-card { text-decoration: none; color: inherit; }
.article .related-card:hover { text-decoration: none; color: inherit; border-color: var(--acc-cyan); }
.related-card:hover { transform: translateY(-4px); border-color: var(--acc-cyan); color: inherit; }
.related-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: var(--surface-2); }
.related-card__cat { font-family: var(--font-mono); font-size: .66rem; font-weight: 600; color: var(--acc-cyan); padding: .85rem 1rem 0; text-transform: uppercase; letter-spacing: .06em; }
.related-card strong { display: block; padding: .4rem 1rem 1.15rem; font-size: .95rem; line-height: 1.35; color: var(--heading); font-family: var(--font-head); }
@media (max-width: 720px) { .related-posts__grid { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .post-featured { grid-template-columns: 1fr; } .post-cta p { max-width: 100%; } }

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--bg-2), var(--bg-1)); border: 1px solid var(--line-2); color: var(--heading); border-radius: clamp(20px, 3vw, 32px); padding: clamp(2.6rem, 5vw, 4.2rem); text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(50% 90% at 80% 0%, rgba(91,140,255,.22), transparent 60%), radial-gradient(45% 80% at 15% 100%, rgba(79,240,214,.16), transparent 60%); }
.cta-band::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(120deg, rgba(157,123,255,.6), transparent 45%, rgba(79,240,214,.5)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.cta-band > * { position: relative; }
.cta-band--video { isolation: isolate; }
.cta-band--video .bg-video { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cta-band--video .bg-video img,
.cta-band--video .bg-video video {
  position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover;
}
.cta-band--video .bg-video::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,12,22,.84), rgba(10,16,32,.78));
}
.cta-band--video > *:not(.bg-video) { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--text); max-width: 640px; margin: 1rem auto 0; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2.2rem; }

/* ---------- Forms ---------- */
.form-card { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: clamp(1.7rem, 3vw, 2.8rem); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-weight: 500; font-size: .78rem; letter-spacing: .04em; color: var(--text-soft); text-transform: uppercase; }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 1rem; color: var(--heading); padding: .88rem 1rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.03); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field select { color: var(--heading); }
.field select option { background: var(--bg-2); color: var(--heading); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--acc-cyan); box-shadow: 0 0 0 3px rgba(79,240,214,.14); background: rgba(255,255,255,.05); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-family: var(--font-mono); font-size: .78rem; color: var(--text-faint); margin-top: 1rem; text-align: center; }

/* Contact methods */
.contact-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.cmethod { position: relative; display: flex; gap: 1rem; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.15rem 1.2rem; transition: .25s; color: inherit; min-height: 92px; }
.cmethod:hover { border-color: var(--acc-cyan); transform: translateY(-3px); color: inherit; background: var(--surface-2); }
.cmethod .ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; flex-shrink: 0; color: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.28); }
.cmethod .ic svg { width: 24px; height: 24px; }
.cmethod--wa .ic { background: #25d366; }
.cmethod--call .ic { background: #5b8cff; }
.cmethod--mail .ic { background: #12c4b0; }
.cmethod--pin .ic { background: #8b6cf7; }
.cmethod__tx { min-width: 0; flex: 1; }
.cmethod__tx span { display: block; font-family: var(--font-mono); font-size: .68rem; color: var(--text-faint); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .2rem; }
.cmethod__tx strong { display: block; font-size: 1.05rem; color: var(--heading); font-family: var(--font-head); line-height: 1.25; word-break: break-word; }
.cmethod__tx em { display: block; font-style: normal; font-size: .78rem; color: var(--text-soft); margin-top: .22rem; }
.cmethod__go { flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; color: var(--text-faint); background: var(--surface-2); border: 1px solid var(--line); }
.cmethod:hover .cmethod__go { color: var(--acc-cyan); border-color: var(--acc-cyan); }
@media (min-width: 1081px) {
  .cmethod { flex-direction: column; align-items: flex-start; gap: .9rem; min-height: 0; padding: 1.35rem 1.3rem 1.25rem; }
  .cmethod__go { position: absolute; top: 1.2rem; right: 1.1rem; }
}
@media (max-width: 1080px) { .contact-methods { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .contact-methods { grid-template-columns: 1fr; } }

.map-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.map-embed { aspect-ratio: 16 / 8; min-height: 280px; background: var(--surface-2); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-card__meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 1.4rem; padding: 1.35rem 1.5rem 1.5rem; }
.map-card__meta h2 { font-size: clamp(1.15rem, 2vw, 1.4rem); margin: .2rem 0 .35rem; }
.map-card__meta p { color: var(--text-soft); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-1); border-top: 1px solid var(--line); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1.2fr 1.4fr; gap: 2.5rem; padding-bottom: 3.5rem; }
.footer__brand .brand { color: #fff; margin-bottom: 1.1rem; }
.footer__brand p { color: var(--text-faint); font-size: .92rem; max-width: 330px; }
.footer h4 { color: #fff; font-family: var(--font-head); font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer ul { display: grid; gap: .65rem; }
.footer a { color: var(--text-soft); font-size: .92rem; }
.footer a:hover { color: var(--acc-cyan); }
.footer__contact li { display: flex; gap: .75rem; align-items: center; font-size: .92rem; color: var(--text-soft); }
.footer__contact .fic { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; background: var(--surface-2); border: 1px solid var(--line); color: var(--acc-cyan); }
.footer__contact .fic svg { width: 16px; height: 16px; margin: 0; color: inherit; }
.footer__contact a { color: var(--heading); }
.footer a.btn--wa { width: 100%; justify-content: center; margin-top: 1.2rem; color: #ffffff; }
.footer__social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; color: #fff; transition: .25s; }
.footer__social a:hover { background: var(--gradient-brand); color: #05131f; border-color: transparent; transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid var(--line); padding-block: 1.6rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-family: var(--font-mono); font-size: .78rem; color: var(--text-faint); }
.footer__bottom a { color: var(--text-faint); }

/* Breadcrumb */
.crumb { padding-top: 1.8rem; font-family: var(--font-mono); font-size: .8rem; color: var(--text-faint); }
.crumb a { color: var(--text-soft); } .crumb a:hover { color: var(--acc-cyan); }
.crumb span { margin-inline: .4rem; color: var(--acc-violet); }

/* Page hero (interior) */
.page-hero { padding-block: clamp(3rem, 7vw, 5.5rem); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(45% 70% at 18% 0%, rgba(91,140,255,.2), transparent 60%), radial-gradient(40% 60% at 92% 20%, rgba(157,123,255,.16), transparent 60%); }
.page-hero__inner { position: relative; max-width: 840px; }
.page-hero h1 { margin: .7rem 0 1.1rem; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip { font-family: var(--font-mono); font-size: .82rem; font-weight: 500; color: var(--text); background: var(--surface); border: 1px solid var(--line); padding: .5rem 1rem; border-radius: var(--radius-pill); transition: .2s; }
a.chip:hover { border-color: var(--acc-cyan); color: var(--acc-cyan); transform: translateY(-2px); }

/* Floating WhatsApp */
.fab-wa { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp); color: #fff; display: grid; place-items: center; box-shadow: 0 14px 34px rgba(37,211,102,.5); animation: pulse 2.8s infinite; }
.fab-wa:hover { color: #fff; transform: scale(1.08); }
.fab-wa svg { width: 30px; height: 30px; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* Cursor spotlight */
.cursor-glow { position: fixed; top: 0; left: 0; width: 460px; height: 460px; border-radius: 50%; pointer-events: none; z-index: 0; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(91,140,255,.10), transparent 65%); transition: opacity .3s; opacity: 0; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Signature Animations ---------- */
/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: var(--gradient-iris); box-shadow: 0 0 14px rgba(79,240,214,.7); }

/* Shimmering gradient text */
.text-gradient { background-size: 220% auto; animation: textShimmer 7s linear infinite; }
@keyframes textShimmer { to { background-position: 220% center; } }

/* Animated aurora (injected into hero / page-hero) */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; filter: blur(72px); opacity: .55; }
.aurora b { position: absolute; display: block; width: 46vw; height: 46vw; max-width: 660px; max-height: 660px; border-radius: 50%; mix-blend-mode: screen; will-change: transform; }
.aurora b:nth-child(1) { background: radial-gradient(circle, #5b8cff, transparent 60%); top: -14%; left: -8%; animation: drift1 22s ease-in-out infinite; }
.aurora b:nth-child(2) { background: radial-gradient(circle, #9d7bff, transparent 60%); top: -10%; right: -10%; animation: drift2 27s ease-in-out infinite; }
.aurora b:nth-child(3) { background: radial-gradient(circle, #4ff0d6, transparent 62%); bottom: -20%; left: 28%; animation: drift3 25s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(14%,12%) scale(1.18); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-12%,16%) scale(1.12); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(10%,-14%) scale(1.22); } }

/* Tilt (JS-driven) */
.card, .code-win { transform-style: preserve-3d; }
.tilt-active { transition: transform .08s linear !important; }

/* Scramble text keeps layout stable */
.scramble { white-space: nowrap; }

/* Animated underline sweep for section eyebrows on reveal */
.reveal.in .eyebrow::before { animation: dashIn .6s ease both; }
@keyframes dashIn { from { opacity: 0; transform: translateX(-6px); } to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .nav__phone-num { display: none; }
  .nav__phone { width: 42px; height: 42px; padding: 0; justify-content: center; border-radius: 12px; }
  .brand__text { font-size: .95rem; }
}
@media (max-width: 1080px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: block; }
  .nav { padding-right: .55rem; }
  .site-header.open .nav__links {
    display: flex; flex-direction: column; align-items: stretch; position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    background: rgba(10, 12, 18, 0.98); border: 1px solid var(--line); border-radius: 16px; padding: .85rem; gap: .15rem; box-shadow: var(--shadow-lg); backdrop-filter: blur(16px);
  }
  .site-header.open .nav__links a { padding: .85rem .9rem; }
  .site-header.open .nav__links > li > a.active { border-radius: 10px; }
  .site-header.open .nav__links > li > a.active::after { display: none; }
  .site-header.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: .4rem; background: transparent; }
  .site-header.open .dropdown::before { display: none; }
  .site-header.open .dropdown--mega { grid-template-columns: 1fr; min-width: 0; gap: 0; padding: 0 0 0 .6rem; left: 0; transform: none; }
  .site-header.open .has-dropdown:hover .dropdown--mega, .site-header.open .has-dropdown:focus-within .dropdown--mega { transform: none; }
  .site-header.open .dropdown__cta { flex-wrap: wrap; }
  .nav.open .nav__toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav.open .nav__toggle span:nth-child(2){ opacity: 0; }
  .nav.open .nav__toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 540px; }
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 840px) {
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__stats { gap: 1.6rem; }
  .hero__actions .btn { flex: 1; }
}
@media (hover: none) { .cursor-glow { display: none; } }
@media (max-width: 767px) {
  .hero__media video, .cta-band--video .bg-video video { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .trust__row { animation: none; }
  .hero__media video, .cta-band--video .bg-video video { display: none; }
}
