/* =========================================================
   Linkit Marketing — Dark Premium Agency
   Design system tokens + layout + components
   ========================================================= */

:root {
  /* Color */
  --bg:            #0a0a0f;
  --bg-elev:       #0f0f17;
  --surface:       #111118;
  --surface-2:    #1a1a24;
  --surface-3:    #22222f;
  --border:        rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);

  --brand:         #6366f1;
  --brand-2:       #06b6d4;
  --brand-3:       #a855f7;
  --success:       #10b981;
  --warning:       #f59e0b;

  --grad:          linear-gradient(135deg,#6366f1 0%,#06b6d4 100%);
  --grad-soft:     linear-gradient(135deg,rgba(99,102,241,.18),rgba(6,182,212,.18));
  --grad-radial:   radial-gradient(1200px 600px at 50% -10%,rgba(99,102,241,.35),transparent 60%),
                   radial-gradient(900px 500px at 80% 10%,rgba(6,182,212,.25),transparent 60%),
                   radial-gradient(800px 400px at 0% 30%,rgba(168,85,247,.22),transparent 60%);

  --text:          #f8fafc;
  --text-2:        #cbd5e1;
  --text-3:        #94a3b8;
  --text-4:        #64748b;

  /* Typography */
  --font-head: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --container: 1240px;
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Motion */
  --ease:      cubic-bezier(.22,.61,.36,1);
  --ease-out:  cubic-bezier(0,0,.2,1);
  --t-fast:    .2s var(--ease);
  --t:         .4s var(--ease);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 .5em; color: var(--text); }
h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.3vw, 1.9rem); }
h4 { font-size: 1.15rem; }
p  { margin: 0 0 1em; color: var(--text-3); }

::selection { background: rgba(99,102,241,.45); color: #fff; }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 999;
  background: var(--brand); color: #fff; padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { left: 8px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

.section { padding: 80px 0; position: relative; }
@media (min-width: 1024px) { .section { padding: 120px 0; } }
.section--sm { padding: 56px 0; }
.section--tight { padding: 48px 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: .78rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--text-3);
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  margin-bottom: 24px;
}
.section-label::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 18px rgba(99,102,241,.8);
}

.section-head { max-width: 780px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.1rem; color: var(--text-3); }

.eyebrow {
  font-family: var(--font-body);
  font-size: .75rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--text-3);
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ---------- Top bar ---------- */
.top-bar {
  background: #050509;
  border-bottom: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-3);
}
.top-bar__inner {
  padding: 8px 24px;
  text-align: center;
  letter-spacing: .01em;
}
.top-bar a { color: var(--text); border-bottom: 1px dashed var(--text-4); }
.top-bar a:hover { color: var(--brand-2); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,15,.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.site-header.is-scrolled {
  background: rgba(10,10,15,.92);
  border-bottom-color: var(--border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; letter-spacing: -.02em;
  color: var(--text);
}
.logo__mark {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--grad); color: #fff; font-weight: 800;
  box-shadow: 0 6px 24px -6px rgba(99,102,241,.6);
}
.logo__word span { color: var(--text-3); font-weight: 600; }

.nav__list { display: none; gap: 4px; list-style: none; padding: 0; margin: 0; }
@media (min-width: 1024px) {
  .nav__list { display: flex; }
}
.nav__link {
  padding: 10px 14px;
  font-size: .92rem; font-weight: 500;
  color: var(--text-2);
  border-radius: 10px;
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.nav__link:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav__link.is-active { color: var(--text); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; border-radius: 2px; background: var(--grad);
}

.nav__cta { display: none; }
@media (min-width: 1024px) { .nav__cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  padding: 10px; border-radius: 10px;
  background: rgba(255,255,255,.04);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform var(--t-fast); }

.mobile-nav {
  border-top: 1px solid var(--border);
  background: rgba(10,10,15,.98);
  padding: 20px 24px 32px;
}
.mobile-nav__list { list-style: none; padding: 0; margin: 0 0 16px; }
.mobile-nav__list a {
  display: block; padding: 14px 4px;
  font-size: 1.05rem; font-weight: 600;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
}
.mobile-nav__list a:hover { color: var(--brand-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  border-radius: 12px;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
  position: relative;
  appearance: none; -webkit-appearance: none; border: 0; line-height: 1.2;
  text-decoration: none;
}
button.btn { font: inherit; font-weight: 600; font-size: .95rem; }
form.checkout-form { display: inline-flex; margin: 0; }
.btn svg { width: 16px; height: 16px; }
.btn--sm  { padding: 10px 16px; font-size: .85rem; border-radius: 10px; }
.btn--lg  { padding: 18px 28px; font-size: 1.05rem; border-radius: 14px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 10px 30px -10px rgba(99,102,241,.65), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(99,102,241,.8), inset 0 1px 0 rgba(255,255,255,.3); }

.btn--ghost {
  background: rgba(255,255,255,.04); color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); }

.btn--link {
  padding: 6px 0; color: var(--text-2); font-weight: 600;
}
.btn--link:hover { color: var(--brand-2); gap: 12px; }

/* ---------- Cards ---------- */
.card {
  position: relative;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none; opacity: 0;
  background: radial-gradient(400px 200px at var(--mx,50%) var(--my,0%), rgba(99,102,241,.18), transparent 60%);
  transition: opacity var(--t);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,.35);
  box-shadow: 0 30px 60px -30px rgba(6,182,212,.35), 0 0 0 1px rgba(99,102,241,.15);
}
.card:hover::before { opacity: 1; }

.card__icon {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad-soft);
  border: 1px solid var(--border-strong);
  color: var(--brand-2);
  margin-bottom: 20px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p  { color: var(--text-3); margin-bottom: 18px; }
.card__link { color: var(--text); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--t-fast), color var(--t-fast); }
.card__link:hover { gap: 12px; color: var(--brand-2); }

/* ---------- Special Offer Banner ---------- */
.special-banner {
  background: linear-gradient(135deg, rgba(99,102,241,.14), rgba(6,182,212,.14));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 14px 0;
  position: relative;
  overflow: hidden;
}
.special-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 90% at 50% 0%, rgba(99,102,241,.12), transparent 60%);
  pointer-events: none;
}
.special-banner__inner {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap; position: relative;
}
.special-banner__flag {
  display: inline-flex; align-items: center;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: var(--grad); color: #fff;
  box-shadow: 0 6px 18px -6px rgba(99,102,241,.6);
  white-space: nowrap;
}
.special-banner__item {
  display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1.2;
  padding: 4px 10px; border-radius: 10px;
  text-decoration: none; color: var(--text);
  transition: background var(--t-fast), transform var(--t-fast);
}
.special-banner__item strong { font-size: .95rem; font-weight: 700; }
.special-banner__item span { font-size: .78rem; color: var(--text-3); }
.special-banner__item:hover { background: rgba(255,255,255,.05); transform: translateY(-1px); }
.special-banner__divider { color: var(--text-4); font-weight: 700; }
@media (max-width: 640px) {
  .special-banner__inner { gap: 10px; text-align: center; }
  .special-banner__item { align-items: center; }
  .special-banner__divider { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 110px 0 100px;
  isolation: isolate;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero { padding: 140px 0 120px; }
}
.hero__bg {
  position: absolute; inset: -10% -5% -5% -5%; z-index: -2;
  background: var(--grad-radial);
  filter: blur(20px);
  animation: hero-drift 18s ease-in-out infinite alternate;
}
.hero__grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.5'/></svg>");
  mix-blend-mode: overlay; opacity: .35;
}
.hero__inner { max-width: 980px; margin: 0 auto; text-align: center; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-3);
  margin-bottom: 32px;
}
.hero__kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 12px rgba(16,185,129,.9); }
.hero h1 { margin-bottom: 24px; }
.hero__lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-2); max-width: 680px; margin: 0 auto 40px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 56px; }

/* Floating stat cards */
.hero__stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .hero__stats { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.stat-chip {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  text-align: left;
  transition: transform var(--t), border-color var(--t);
}
.stat-chip:hover { transform: translateY(-4px); border-color: rgba(99,102,241,.35); }
.stat-chip__num {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -.03em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1.1;
}
.stat-chip__label {
  display: block; margin-top: 6px;
  font-size: .82rem; color: var(--text-3);
  letter-spacing: .04em;
}

@keyframes hero-drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(-2%, 1%, 0) scale(1.02); }
  100% { transform: translate3d(2%, -1%, 0) scale(1.01); }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex; gap: 56px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee__item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--text);
  letter-spacing: -.02em;
}
.marquee__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--grad); flex-shrink: 0; }
.marquee__item .muted { color: var(--text-4); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .grid--4 { grid-template-columns: repeat(4, 1fr); gap: 28px; }
}

/* ---------- Stats block ---------- */
.stats-block {
  position: relative;
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.stats-block::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: var(--grad-radial); opacity: .35;
}
.stats-block__grid {
  position: relative;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px;
}
@media (min-width: 768px) { .stats-block__grid { grid-template-columns: repeat(4, 1fr); } }
.stat-big {
  text-align: left;
  padding: 24px 0;
}
.stat-big__num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  letter-spacing: -.04em; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-big__label {
  margin-top: 10px;
  font-size: .95rem; color: var(--text-3);
  font-weight: 500;
}

/* ---------- Split ---------- */
.split { display: grid; gap: 48px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; gap: 80px; } }
.split--reverse > :first-child { order: 2; }
@media (max-width: 1023px) { .split--reverse > :first-child { order: 0; } }

.value-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.value-tile {
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--t), transform var(--t);
}
.value-tile:hover { border-color: rgba(99,102,241,.35); transform: translateY(-2px); }
.value-tile__icon {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 12px; background: var(--grad-soft); color: var(--brand-2);
  margin-bottom: 14px;
}
.value-tile__icon svg { width: 22px; height: 22px; }
.value-tile h4 { margin-bottom: 6px; color: var(--text); }
.value-tile p { margin: 0; font-size: .92rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  padding: 72px 32px;
  border-radius: var(--radius-xl);
  background: var(--grad);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  color: #fff;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(500px 300px at 80% 100%, rgba(0,0,0,.18), transparent 60%);
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.9); max-width: 600px; margin: 0 auto 28px; font-size: 1.1rem; }
.cta-banner .btn--ghost { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); color: #fff; }
.cta-banner .btn--ghost:hover { background: rgba(255,255,255,.24); }
.cta-banner .btn--white { background: #fff; color: #0a0a0f; }
.cta-banner .btn--white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(0,0,0,.4); }

/* ---------- Footer ---------- */
.site-footer {
  background: #05050a;
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
  color: var(--text-3);
}
.footer__grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__brand { max-width: 360px; }
.footer__tagline { font-size: .95rem; color: var(--text-3); margin: 20px 0; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 10px; background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: color var(--t-fast), background var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
}
.footer__social a:hover { color: #fff; background: var(--grad); border-color: transparent; transform: translateY(-2px); }

.footer__heading {
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  color: var(--text); margin: 0 0 16px;
}
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__list a { color: var(--text-3); font-size: .9rem; transition: color var(--t-fast); }
.footer__list a:hover { color: var(--brand-2); }
.footer__list--contact li { display: flex; gap: 10px; font-size: .9rem; color: var(--text-3); }
.footer__list--contact svg { color: var(--brand-2); margin-top: 3px; flex-shrink: 0; }

.footer__bottom {
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 6px;
  justify-content: space-between; align-items: center;
  font-size: .82rem;
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; } }
.footer__bottom p { margin: 0; color: var(--text-4); }
.footer__sister a { color: var(--text-3); border-bottom: 1px dashed var(--text-4); }
.footer__sister a:hover { color: var(--brand-2); }

/* ---------- Services page ---------- */
.svc-row {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 1024px) {
  .svc-row { grid-template-columns: 1fr 1fr; gap: 80px; padding: 88px 0; align-items: center; }
  .svc-row--reverse .svc-row__media { order: -1; }
}
.svc-row:first-child { border-top: 0; }
.svc-row__media {
  position: relative;
  padding: 48px;
  background: linear-gradient(135deg, rgba(99,102,241,.12), rgba(6,182,212,.12));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  min-height: 340px;
  display: grid; place-items: center;
  overflow: hidden;
}
.svc-row__media::before {
  content: ""; position: absolute; inset: 0; opacity: .6;
  background: var(--grad-radial);
}
.svc-row__icon {
  position: relative;
  width: 120px; height: 120px; border-radius: 28px;
  background: var(--grad); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 30px 60px -20px rgba(99,102,241,.6);
}
.svc-row__icon svg { width: 56px; height: 56px; }
.svc-row__eyebrow { color: var(--text-4); letter-spacing: .24em; font-size: .78rem; text-transform: uppercase; margin-bottom: 14px; font-weight: 600; }
.svc-row h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.svc-row p.lede { color: var(--text-2); font-size: 1.05rem; margin-bottom: 24px; }

.feature-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .95rem; color: var(--text-2);
}
.feature-list li::before {
  content: ""; flex-shrink: 0; margin-top: 7px;
  width: 14px; height: 14px; border-radius: 4px;
  background: var(--grad);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid; gap: 24px; grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(99,102,241,.35); }
.pricing-card__badge {
  display: inline-block; margin-bottom: 16px;
  padding: 6px 10px; border-radius: 999px;
  background: var(--grad-soft); color: var(--brand-2);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700;
}
.pricing-card__name { font-size: 1.3rem; margin-bottom: 8px; }
.pricing-card__sub  { color: var(--text-3); font-size: .92rem; margin: 0 0 20px; min-height: 44px; }
.pricing-card__price {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.6rem); letter-spacing: -.03em;
  color: var(--text); line-height: 1; margin-bottom: 4px;
}
.pricing-card__period { color: var(--text-3); font-size: .9rem; margin-bottom: 20px; }
.pricing-card__savings { color: var(--success); font-size: .85rem; font-weight: 600; margin-bottom: 20px; }
.pricing-card__features {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; gap: 10px;
  flex: 1;
}
.pricing-card__features li {
  display: flex; gap: 10px; color: var(--text-2); font-size: .92rem;
}
.pricing-card__features li::before {
  content: ""; flex-shrink: 0; margin-top: 6px;
  width: 14px; height: 14px; border-radius: 4px; background: var(--grad);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}
.pricing-card--featured {
  border: 0;
  background: linear-gradient(180deg, rgba(99,102,241,.12), rgba(6,182,212,.06));
  box-shadow: 0 30px 60px -30px rgba(99,102,241,.5);
}
.pricing-card--featured::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}

.pricing-hero-card {
  position: relative;
  padding: 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #111118, #0c0c14);
  border: 1px solid var(--border);
  overflow: hidden;
}
.pricing-hero-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: var(--grad-radial); opacity: .5;
}
.pricing-hero-card > * { position: relative; }
.pricing-hero-card__grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 1024px) { .pricing-hero-card__grid { grid-template-columns: 1.2fr 1fr; } }
.pricing-hero-card__badge {
  display: inline-block;
  padding: 8px 14px; border-radius: 999px;
  background: var(--grad); color: #fff;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 18px;
}
.pricing-hero-card__price {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(3rem, 6vw, 4.6rem); letter-spacing: -.04em;
  line-height: 1; margin-bottom: 6px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pricing-hero-card__sub { color: var(--text-3); margin-bottom: 20px; font-size: .95rem; }
.pricing-hero-card__features {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: grid; gap: 10px;
}
.pricing-hero-card__features li { display: flex; gap: 10px; color: var(--text-2); font-size: .95rem; }
.pricing-hero-card__features li::before {
  content: ""; flex-shrink: 0; margin-top: 6px;
  width: 14px; height: 14px; border-radius: 4px; background: var(--grad);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

/* ---------- Portfolio ---------- */
.portfolio-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 40px;
}
.portfolio-filter {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text-2);
  font-size: .88rem; font-weight: 500;
  transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}
.portfolio-filter:hover { color: #fff; border-color: rgba(99,102,241,.4); }
.portfolio-filter.is-active {
  background: var(--grad); color: #fff; border-color: transparent;
}

.portfolio-grid {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.project-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t);
}
.project-card:hover { transform: translateY(-4px); border-color: rgba(99,102,241,.4); }
.project-card.is-hidden { display: none; }
.project-card__thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, rgba(99,102,241,.25), rgba(6,182,212,.18));
  overflow: hidden;
}
.project-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.project-card:hover .project-card__thumb img { transform: scale(1.05); }
.project-card__thumb-fallback {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800;
  font-size: 2rem;
  background: var(--grad-radial);
  color: var(--text);
  text-align: center; padding: 20px;
}
.project-card__tag {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(10,10,15,.85); backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--text);
}
.project-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.project-card__body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.project-card__body p  { font-size: .92rem; margin-bottom: 16px; flex: 1; }
.project-card__metrics {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.project-card__metric {
  font-size: .82rem; color: var(--text-3);
}
.project-card__metric strong {
  display: block; color: var(--text); font-family: var(--font-head); font-size: 1.05rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -.01em;
}

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.testi__stars { display: flex; gap: 2px; color: var(--warning); margin-bottom: 16px; }
.testi__stars svg { width: 16px; height: 16px; fill: currentColor; }
.testi__quote { color: var(--text-2); font-size: 1rem; line-height: 1.6; margin-bottom: 20px; }
.testi__who { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.testi__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad); display: grid; place-items: center;
  color: #fff; font-weight: 700; font-family: var(--font-head);
}
.testi__name { color: var(--text); font-weight: 600; font-size: .92rem; }
.testi__role { color: var(--text-4); font-size: .8rem; }

/* ---------- FAQ ---------- */
.faq-grid { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
.faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq[open] { border-color: rgba(99,102,241,.4); }
.faq summary {
  padding: 22px 24px;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 600; color: var(--text); font-family: var(--font-head);
  font-size: 1.05rem;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex-shrink: 0;
  width: 22px; height: 22px;
  background: rgba(255,255,255,.06); border-radius: 50%;
  position: relative;
  transition: background var(--t-fast), transform var(--t-fast);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-size: 14px 14px; background-position: center; background-repeat: no-repeat;
}
.faq[open] summary::after { transform: rotate(180deg); background: var(--grad); }
.faq__body { padding: 0 24px 22px; color: var(--text-3); }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .contact-wrap { grid-template-columns: 1.3fr 1fr; gap: 64px; } }

.contact-form {
  padding: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.contact-form h2 { font-size: 1.6rem; margin-bottom: 6px; }
.form-row {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: .82rem; color: var(--text-3);
  font-weight: 600; letter-spacing: .02em;
}
.field label .req { color: var(--warning); }
.field input, .field select, .field textarea {
  padding: 14px 16px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: .95rem;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(99,102,241,.55);
  background: rgba(255,255,255,.04);
  box-shadow: 0 0 0 3px rgba(99,102,241,.18);
}
.field select { appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgb(148,163,184)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
  padding-right: 42px;
}
.field textarea { min-height: 140px; resize: vertical; font-family: var(--font-body); }
.field.field--full { grid-column: 1 / -1; }
.form-error {
  padding: 12px 16px; border-radius: 12px;
  background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.35);
  color: var(--warning); font-size: .9rem; margin-bottom: 16px;
}

.contact-info { display: grid; gap: 20px; align-content: start; }
.info-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.info-card h3 { font-size: 1.1rem; margin-bottom: 14px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; padding: 10px 0; color: var(--text-2); font-size: .92rem; }
.info-row svg { color: var(--brand-2); margin-top: 3px; flex-shrink: 0; }
.info-row a { color: var(--text); font-weight: 600; border-bottom: 1px solid var(--border); }
.info-row a:hover { color: var(--brand-2); border-color: var(--brand-2); }

.expectations { display: grid; gap: 10px; padding-left: 4px; }
.expectations li {
  display: flex; gap: 10px; font-size: .92rem; color: var(--text-2);
}
.expectations li::before {
  content: ""; flex-shrink: 0; margin-top: 6px;
  width: 14px; height: 14px; border-radius: 4px; background: var(--grad);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

/* Honeypot */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Team ---------- */
.team-grid {
  display: grid; gap: 24px; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  padding: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.team-card__avatar {
  width: 88px; height: 88px; margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--grad); display: grid; place-items: center;
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.8rem;
  box-shadow: 0 20px 40px -20px rgba(99,102,241,.6);
}
.team-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card p.role { color: var(--brand-2); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 14px; font-weight: 600; }
.team-card p.bio { color: var(--text-3); font-size: .92rem; margin: 0; }

/* ---------- Industry tags ---------- */
.industry-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px)  { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
.industry-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--t), border-color var(--t);
}
.industry-card:hover { transform: translateY(-3px); border-color: rgba(99,102,241,.35); }
.industry-card__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--grad-soft); color: var(--brand-2); display: grid; place-items: center; margin-bottom: 14px; }
.industry-card h4 { font-size: 1rem; margin-bottom: 6px; }
.industry-card p  { font-size: .88rem; margin: 0; color: var(--text-3); }

/* ---------- Process steps ---------- */
.process-grid {
  display: grid; gap: 24px; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  position: relative;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.process-step__num {
  font-family: var(--font-head); font-weight: 800;
  font-size: 2.4rem; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px;
}
.process-step h4 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p  { margin: 0; font-size: .92rem; }

/* ---------- Thank you page ---------- */
.ty-hero {
  min-height: calc(100dvh - 72px - 33px);
  display: grid; place-items: center;
  padding: 80px 24px;
  text-align: center;
}
.ty-hero__icon {
  width: 96px; height: 96px; border-radius: 28px;
  background: var(--grad); color: #fff;
  display: grid; place-items: center; margin: 0 auto 28px;
  box-shadow: 0 30px 60px -20px rgba(99,102,241,.55);
}
.ty-hero__icon svg { width: 44px; height: 44px; }

/* ---------- Page hero (non-home) ---------- */
.page-hero {
  position: relative;
  padding: 96px 0 64px;
  overflow: hidden;
}
@media (min-width: 1024px) { .page-hero { padding: 128px 0 96px; } }
.page-hero__bg {
  position: absolute; inset: 0; z-index: -1; opacity: .6;
  background: var(--grad-radial);
}
.page-hero__inner { max-width: 900px; }
.page-hero h1 { font-size: clamp(2.2rem, 4.2vw, 4rem); margin-bottom: 20px; }
.page-hero p { font-size: 1.15rem; color: var(--text-2); max-width: 720px; }
.breadcrumb { display: flex; gap: 8px; font-size: .82rem; color: var(--text-4); margin-bottom: 18px; }
.breadcrumb a { color: var(--text-3); }
.breadcrumb a:hover { color: var(--brand-2); }
.breadcrumb span { color: var(--border-strong); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.divider { height: 1px; background: var(--border); margin: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
