/* ==========================================================================
   WESTONIX — Digital Growth Studio
   Design system & components
   Premium dark "aurora" theme · cyan → indigo → violet · emerald growth accent
   ========================================================================== */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&f[]=general-sans@400,500,600,700&display=swap');

/* ------------------------------------------------------------------ Tokens */
:root {
  /* Surfaces */
  --bg:           #060814;
  --bg-2:         #0a0e1d;
  --bg-3:         #0f1530;
  --surface:      rgba(255, 255, 255, 0.035);
  --surface-2:    rgba(255, 255, 255, 0.06);
  --surface-3:    rgba(255, 255, 255, 0.09);
  --border:       rgba(255, 255, 255, 0.09);
  --border-2:     rgba(255, 255, 255, 0.16);

  /* Text */
  --text:         #eef1fb;
  --text-soft:    #c4cae0;
  --muted:        #8a92ad;
  --muted-2:      #626b86;

  /* Accents */
  --cyan:         #22d3ee;
  --blue:         #4f7cff;
  --indigo:       #6366f1;
  --violet:       #a855f7;
  --emerald:      #34e1a3;
  --lime:         #b7f24a;

  /* Gradients */
  --grad-brand:   linear-gradient(120deg, #22d3ee 0%, #6366f1 48%, #a855f7 100%);
  --grad-brand-soft: linear-gradient(120deg, #22d3ee33, #6366f133 48%, #a855f733);
  --grad-growth:  linear-gradient(120deg, #34e1a3, #22d3ee);
  --grad-text:    linear-gradient(100deg, #d7e3ff 0%, #8ad9ff 30%, #b69cff 60%, #8affd0 100%);

  /* Glows */
  --glow-violet:  0 0 48px rgba(124, 108, 246, 0.40);
  --glow-cyan:    0 0 44px rgba(34, 211, 238, 0.32);
  --glow-emerald: 0 0 44px rgba(52, 225, 163, 0.30);

  /* Shadows */
  --shadow-sm:    0 4px 18px rgba(0, 0, 0, 0.35);
  --shadow:       0 18px 50px rgba(2, 4, 14, 0.55);
  --shadow-lg:    0 40px 90px rgba(2, 4, 14, 0.65);

  /* Radii */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-full: 999px;

  /* Type */
  --font-head: 'Satoshi', 'General Sans', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'General Sans', 'Satoshi', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Motion */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:   .18s;
  --t:        .32s;
  --t-slow:   .6s;

  /* Layout */
  --container: 1200px;
  --nav-h: 76px;

  /* Z-scale */
  --z-deco: 0;
  --z-base: 1;
  --z-nav: 50;
  --z-overlay: 80;
  --z-cursor: 100;
}

/* ------------------------------------------------------------------ Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.1px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
}

img, video { display: block; max-width: 100%; }
/* Safe default for inline icons: any SVG without a scoped size rule stays icon-sized
   (prevents un-sized inline SVGs from ballooning to full width). */
svg { max-width: 100%; width: 1.15em; height: 1.15em; vertical-align: -0.18em; flex: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }
::selection { background: rgba(124, 108, 246, 0.4); color: #fff; }

/* Page background: deep navy with fixed aurora wash */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(99, 102, 241, 0.18), transparent 60%),
    radial-gradient(55% 45% at 95% 5%, rgba(34, 211, 238, 0.14), transparent 60%),
    radial-gradient(70% 60% at 50% 110%, rgba(168, 85, 247, 0.14), transparent 60%),
    var(--bg);
}
/* Fine grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-wide { max-width: 1340px; }
.container-narrow { max-width: 820px; }

section { position: relative; padding-block: clamp(70px, 9vw, 130px); }
.section-tight { padding-block: clamp(48px, 6vw, 80px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan);
  padding: 7px 14px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-full);
  background: var(--surface);
  backdrop-filter: blur(6px);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 10px var(--emerald); animation: pulse-dot 2.4s var(--ease) infinite; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 20px; }

/* --------------------------------------------------------- Typography */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: #fff; }
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); font-weight: 900; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.15rem; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.32rem); color: var(--text-soft); line-height: 1.6; }
p { color: var(--text-soft); }
.muted { color: var(--muted); }
.measure { max-width: 65ch; }

.gradient-text {
  background: var(--grad-text);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: text-shimmer 7s linear infinite;
}
.growth-text {
  background: var(--grad-growth);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ------------------------------------------------------------- Buttons */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 15.5px;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease), background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--t) var(--ease); }
.btn-primary {
  color: #07101a;
  background: var(--grad-brand);
  background-size: 160% 160%;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.35), inset 0 1px 0 rgba(255,255,255,.4);
  animation: btn-flow 6s var(--ease) infinite;
  font-weight: 900;
}
.btn-primary:hover { box-shadow: 0 14px 44px rgba(99, 102, 241, 0.55), var(--glow-cyan); transform: translateY(-2px); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  color: var(--text);
  background: var(--surface);
  border-color: var(--border-2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--border-2); transform: translateY(-2px); color: #fff; }
.btn-lg { padding: 17px 32px; font-size: 16.5px; }
.btn-block { width: 100%; }

.text-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; color: var(--cyan); transition: gap var(--t) var(--ease), color var(--t); }
.text-link svg { width: 17px; height: 17px; transition: transform var(--t) var(--ease); }
.text-link:hover { color: #fff; gap: 11px; }
.text-link:hover svg { transform: translateX(3px); }

/* ----------------------------------------------------------- Navigation */
.nav {
  position: fixed; inset: 16px 16px auto 16px;
  z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 14px 0 22px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  background: rgba(8, 11, 24, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: background var(--t), border-color var(--t), box-shadow var(--t), inset 0 0;
  max-width: 1340px; margin-inline: auto;
}
.nav.scrolled { background: rgba(8, 11, 24, 0.82); border-color: var(--border-2); box-shadow: var(--shadow); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 16px; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 900; font-size: 20px; letter-spacing: -0.02em; color: #fff; }
.brand__mark { width: 34px; height: 34px; flex: none; filter: drop-shadow(0 4px 12px rgba(99,102,241,.5)); transition: transform var(--t) var(--ease); }
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.06); }
.brand__name b { font-weight: 900; }
.brand__name span { color: var(--muted); font-weight: 500; font-size: 12px; display: block; letter-spacing: 0.16em; text-transform: uppercase; margin-top: -3px; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  color: var(--text-soft);
  padding: 10px 15px; border-radius: var(--r-full);
  transition: color var(--t), background var(--t);
}
.nav__link:hover, .nav__link.active { color: #fff; background: var(--surface); }
.nav__link.active::after {
  content: ""; position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 8px var(--emerald);
}

/* Dropdown */
.nav__item { position: relative; }
.nav__dd {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 340px; padding: 10px;
  background: rgba(12, 16, 32, 0.94);
  border: 1px solid var(--border-2); border-radius: var(--r-lg);
  backdrop-filter: blur(20px); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: opacity var(--t), transform var(--t) var(--ease), visibility var(--t);
}
.nav__item:hover .nav__dd, .nav__item:focus-within .nav__dd { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__dd::before { content:""; position:absolute; top:-14px; left:0; right:0; height:14px; }
.dd-item { display: flex; gap: 13px; align-items: flex-start; padding: 13px; border-radius: var(--r); transition: background var(--t); }
.dd-item:hover { background: var(--surface-2); }
.dd-item__ico { flex: none; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--border); color: var(--cyan); }
.dd-item__ico svg { width: 19px; height: 19px; }
.dd-item__t { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: #fff; }
.dd-item__d { font-size: 12.5px; color: var(--muted); line-height: 1.4; }

.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__burger { display: none; width: 46px; height: 46px; border-radius: var(--r-full); border: 1px solid var(--border-2); background: var(--surface); place-items: center; }
.nav__burger span { display: block; width: 19px; height: 2px; background: #fff; border-radius: 2px; transition: transform var(--t), opacity var(--t); position: relative; }
.nav__burger span + span { margin-top: 5px; }
.nav.open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed; inset: calc(var(--nav-h) + 28px) 16px auto 16px; z-index: 49;
  background: rgba(10, 14, 30, 0.97); border: 1px solid var(--border-2);
  border-radius: var(--r-xl); padding: 14px; backdrop-filter: blur(22px);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-12px) scale(0.98);
  transform-origin: top center; transition: opacity var(--t), transform var(--t) var(--ease), visibility var(--t);
}
.nav.open .nav__drawer { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.nav__drawer a { display: block; font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--text-soft); padding: 14px 16px; border-radius: var(--r); }
.nav__drawer a:hover, .nav__drawer a.active { background: var(--surface-2); color: #fff; }
.nav__drawer .btn { margin-top: 10px; }
.nav__drawer-sub { font-size: 12px; text-transform: uppercase; letter-spacing: .2em; color: var(--muted-2); padding: 14px 16px 6px; }

/* ----------------------------------------------------------------- Cards */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px;
  backdrop-filter: blur(8px);
  transition: transform var(--t) var(--ease), border-color var(--t), background var(--t), box-shadow var(--t);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad-brand); opacity: 0;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  transition: opacity var(--t);
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); background: var(--surface-2); box-shadow: var(--shadow); }
.card:hover::before { opacity: 0.9; }

/* Glow that follows cursor (set via JS --mx/--my) */
.card--spot::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity var(--t);
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 0%), rgba(124,108,246,.18), transparent 60%);
}
.card--spot:hover::after { opacity: 1; }

.card__ico {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--border-2); color: var(--cyan);
  margin-bottom: 22px; transition: transform var(--t) var(--ease), color var(--t);
}
.card__ico svg { width: 26px; height: 26px; }
.card:hover .card__ico { transform: scale(1.08) rotate(-4deg); color: #fff; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 15.5px; color: var(--muted); }

/* Service card (richer) */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card { display: flex; flex-direction: column; }
.svc-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.svc-card .price { font-family: var(--font-head); font-weight: 900; font-size: 1.5rem; color: #fff; }
.svc-card .price small { display: block; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.svc-card .tag { font-family: var(--font-head); font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--emerald); padding: 6px 11px; border-radius: var(--r-full); background: rgba(52,225,163,.1); border: 1px solid rgba(52,225,163,.25); }
.svc-card ul.ticks { margin: 18px 0 24px; display: flex; flex-direction: column; gap: 11px; }
.svc-card ul.ticks li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--text-soft); }
.svc-card ul.ticks svg { flex: none; width: 19px; height: 19px; color: var(--emerald); margin-top: 2px; }
.svc-card .svc-foot { margin-top: auto; }

/* Pricing accent border for featured card */
.svc-card.featured { background: linear-gradient(180deg, rgba(99,102,241,.12), var(--surface)); border-color: var(--border-2); }
.svc-card.featured::before { opacity: 0.6; }
.ribbon { position: absolute; top: 18px; right: -34px; transform: rotate(45deg); background: var(--grad-brand); color: #07101a; font-family: var(--font-head); font-weight: 900; font-size: 11px; letter-spacing: .12em; padding: 6px 40px; }

/* ----------------------------------------------------------- Bento grid */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bento .card { padding: 28px; }
.col-2 { grid-column: span 2; }
.row-2 { grid-row: span 2; }

/* --------------------------------------------------------------- Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 28px 18px; border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--surface); }
.stat__num { font-family: var(--font-head); font-weight: 900; font-size: clamp(2.1rem, 4vw, 3rem); line-height: 1; letter-spacing: -0.03em; }
.stat__label { margin-top: 10px; font-size: 14px; color: var(--muted); }

/* ------------------------------------------------------------- Process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--surface); overflow: hidden; transition: transform var(--t) var(--ease), border-color var(--t); }
.step:hover { transform: translateY(-5px); border-color: var(--border-2); }
.step__n { font-family: var(--font-head); font-weight: 900; font-size: 3.4rem; line-height: 1; letter-spacing: -.04em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: .85; }
.step h3 { font-size: 1.2rem; margin: 14px 0 8px; }
.step p { font-size: 14.5px; color: var(--muted); }
.step__line { position: absolute; top: 52px; right: -11px; color: var(--border-2); display: none; }

/* --------------------------------------------------------- Testimonials */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tst { display: flex; flex-direction: column; gap: 20px; }
.tst__quote { font-size: 16px; line-height: 1.7; color: var(--text-soft); }
.tst__quote::before { content: "\201C"; font-family: var(--font-head); font-size: 3.4rem; line-height: 0; color: var(--cyan); display: block; height: 24px; opacity: .6; }
.tst__who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.avatar { width: 46px; height: 46px; flex: none; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 900; color: #07101a; font-size: 16px; }
.tst__name { display: block; font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 15px; }
.tst__role { display: block; font-size: 13px; color: var(--muted); }
.dd-item__t, .dd-item__d { display: block; }
.dd-item > span:last-child { min-width: 0; }
.stars { display: inline-flex; gap: 3px; color: var(--lime); }
.stars svg { width: 16px; height: 16px; }

/* Marquee */
.marquee { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--muted); display: inline-flex; align-items: center; gap: 56px; white-space: nowrap; letter-spacing: .02em; }
.marquee__item::after { content: "✦"; color: var(--cyan); opacity: .6; }

/* --------------------------------------------------------------- FAQ */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item { border: 1px solid var(--border); border-radius: var(--r); background: var(--surface); overflow: hidden; transition: border-color var(--t), background var(--t); }
.faq__item.open { border-color: var(--border-2); background: var(--surface-2); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; text-align: left; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: #fff; }
.faq__q .ico { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border-2); display: grid; place-items: center; transition: transform var(--t) var(--ease), background var(--t); position: relative; }
.faq__q .ico::before, .faq__q .ico::after { content: ""; position: absolute; background: var(--cyan); border-radius: 2px; }
.faq__q .ico::before { width: 11px; height: 2px; }
.faq__q .ico::after { width: 2px; height: 11px; transition: transform var(--t) var(--ease); }
.faq__item.open .ico::after { transform: rotate(90deg); opacity: 0; }
.faq__item.open .ico { background: var(--grad-brand); border-color: transparent; }
.faq__item.open .ico::before { background: #07101a; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--t-slow) var(--ease); }
.faq__a p { padding: 0 24px 24px; color: var(--muted); font-size: 15.5px; }

/* --------------------------------------------------------------- CTA band */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); border: 1px solid var(--border-2); padding: clamp(40px, 6vw, 76px); text-align: center; background: linear-gradient(135deg, rgba(34,211,238,.08), rgba(168,85,247,.1)); }
.cta-band h2 { margin-bottom: 16px; }
.cta-band .lead { margin-inline: auto; max-width: 560px; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------- Forms */
.form { display: grid; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--text-soft); }
.field label .req { color: var(--violet); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: #fff;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r);
  padding: 14px 16px; transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--violet); background: var(--surface-3); box-shadow: 0 0 0 4px rgba(124,108,246,.15); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a92ad' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 18px; padding-right: 44px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__note { font-size: 13px; color: var(--muted); }
.form__success { display: none; text-align: center; padding: 30px; border-radius: var(--r-lg); border: 1px solid rgba(52,225,163,.3); background: rgba(52,225,163,.08); }
.form__success.show { display: block; animation: pop-in .5s var(--ease); }
.form__success svg { width: 54px; height: 54px; color: var(--emerald); margin: 0 auto 14px; }

/* --------------------------------------------------------------- Footer */
.footer { position: relative; border-top: 1px solid var(--border); margin-top: 40px; padding-top: clamp(50px, 7vw, 90px); padding-bottom: 36px; overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 56px; }
.footer__brand p { font-size: 14.5px; color: var(--muted); max-width: 34ch; margin: 18px 0 22px; }
.footer__col h4 { font-family: var(--font-head); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.footer__col a { display: block; color: var(--text-soft); font-size: 14.5px; padding: 6px 0; transition: color var(--t), transform var(--t); }
.footer__col a:hover { color: #fff; transform: translateX(4px); }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; color: var(--text-soft); font-size: 14.5px; padding: 6px 0; }
.footer__contact svg { flex: none; width: 18px; height: 18px; color: var(--cyan); margin-top: 3px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 28px; }
.footer__legal { font-size: 13px; color: var(--muted-2); }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-2); display: grid; place-items: center; color: var(--text-soft); transition: background var(--t), color var(--t), transform var(--t); }
.footer__socials a:hover { background: var(--grad-brand); color: #07101a; transform: translateY(-3px); }
.footer__socials svg { width: 18px; height: 18px; }

/* --------------------------------------------------------- Cookie banner */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: var(--z-overlay);
  max-width: 560px; margin-inline: auto;
  background: rgba(12, 16, 32, 0.94); border: 1px solid var(--border-2); border-radius: var(--r-lg);
  padding: 22px 24px; backdrop-filter: blur(20px); box-shadow: var(--shadow-lg);
  transform: translateY(140%); transition: transform var(--t-slow) var(--ease);
}
.cookie.show { transform: translateY(0); }
.cookie p { font-size: 14px; color: var(--text-soft); margin-bottom: 16px; }
.cookie p a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie .btn { padding: 11px 20px; font-size: 14px; }

/* ----------------------------------------------------- Page hero (sub) */
.page-hero { padding-top: calc(var(--nav-h) + 70px); padding-bottom: clamp(40px, 5vw, 64px); position: relative; }
.breadcrumb { display: flex; gap: 9px; align-items: center; font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }

/* ===================================================================
   DECORATIVE ANIMATED ELEMENTS (unique per screen)
   =================================================================== */
.deco { position: absolute; pointer-events: none; z-index: var(--z-deco); }
.deco--front { z-index: 2; }

/* 1. Aurora blobs */
.deco-blob { border-radius: 50%; filter: blur(60px); opacity: .5; animation: drift 22s var(--ease) infinite; }
.deco-blob.c1 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(99,102,241,.6), transparent 70%); }
.deco-blob.c2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(34,211,238,.5), transparent 70%); animation-duration: 26s; animation-direction: reverse; }
.deco-blob.c3 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(168,85,247,.5), transparent 70%); animation-duration: 30s; }
.deco-blob.green { background: radial-gradient(circle, rgba(52,225,163,.45), transparent 70%); }

/* 2. Dotted / grid plane */
.deco-grid { inset: 0; background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px); background-size: 32px 32px; -webkit-mask: radial-gradient(70% 60% at 50% 40%, #000, transparent 75%); mask: radial-gradient(70% 60% at 50% 40%, #000, transparent 75%); opacity: .5; }
.deco-grid--persp { background-size: 46px 46px; transform: perspective(420px) rotateX(58deg) scale(1.6); transform-origin: top; opacity: .35; -webkit-mask: linear-gradient(#000, transparent 80%); mask: linear-gradient(#000, transparent 80%); }

/* 3. Rotating dashed ring */
.deco-ring { border-radius: 50%; border: 1.5px dashed rgba(255,255,255,.18); animation: spin 40s linear infinite; }
.deco-ring::after { content: ""; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); transform: translateX(-50%); }
.deco-ring.slow { animation-duration: 60s; animation-direction: reverse; border-color: rgba(168,85,247,.18); }
.deco-ring.slow::after { background: var(--violet); box-shadow: 0 0 14px var(--violet); }

/* 4. Orbiting particles */
.deco-orbit { width: 280px; height: 280px; }
.deco-orbit .core { position: absolute; inset: 0; margin: auto; width: 14px; height: 14px; border-radius: 50%; background: var(--grad-brand); box-shadow: var(--glow-violet); }
.deco-orbit .o { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); animation: spin 18s linear infinite; }
.deco-orbit .o2 { animation-duration: 26s; animation-direction: reverse; inset: 28px; }
.deco-orbit .o3 { animation-duration: 34s; inset: 56px; }
.deco-orbit .o .p { position: absolute; top: -4px; left: 50%; transform: translateX(-50%); width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.deco-orbit .o2 .p { background: var(--emerald); box-shadow: 0 0 12px var(--emerald); }
.deco-orbit .o3 .p { background: var(--violet); box-shadow: 0 0 12px var(--violet); }

/* 5. (rising-bars equalizer removed per request) */

/* 6. Sparkle field */
.deco-spark { width: 14px; height: 14px; animation: twinkle 3.4s var(--ease) infinite; }
.deco-spark svg { width: 100%; height: 100%; color: var(--cyan); }
.deco-spark.v svg { color: var(--violet); }
.deco-spark.g svg { color: var(--emerald); }

/* 7. Floating shapes (parallax via JS data-speed) */
.deco-shape { color: rgba(255,255,255,.14); animation: float 8s var(--ease) infinite; }
.deco-shape svg { width: 100%; height: 100%; }
.deco-shape.glow { color: rgba(34,211,238,.45); filter: drop-shadow(0 0 10px rgba(34,211,238,.5)); }

/* 8. Conic gradient halo */
.deco-conic { border-radius: 50%; background: conic-gradient(from 0deg, transparent, rgba(124,108,246,.5), transparent 40%, rgba(34,211,238,.5), transparent 70%); filter: blur(26px); animation: spin 24s linear infinite; opacity: .6; }

/* 9. Pulse rings (radar) */
.deco-radar { width: 16px; height: 16px; }
.deco-radar span { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid var(--cyan); animation: radar 3s var(--ease) infinite; }
.deco-radar span:nth-child(2){ animation-delay: 1s; }
.deco-radar span:nth-child(3){ animation-delay: 2s; }

/* 10. Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 60; background: var(--grad-brand); box-shadow: 0 0 12px rgba(124,108,246,.7); transition: width .1s linear; }

/* Custom cursor */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: var(--z-cursor); pointer-events: none; border-radius: 50%; transform: translate(-50%, -50%); mix-blend-mode: screen; }
.cursor-dot { width: 7px; height: 7px; background: var(--cyan); }
.cursor-ring { width: 38px; height: 38px; border: 1.5px solid rgba(124,108,246,.7); transition: width .25s var(--ease), height .25s var(--ease), border-color .25s, background .25s; }
.cursor-ring.hover { width: 56px; height: 56px; border-color: var(--cyan); background: rgba(34,211,238,.08); }

/* =================================================== Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: var(--d, 0s); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-34px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal-l.in { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(34px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal-r.in { opacity: 1; transform: none; }
.reveal-s { opacity: 0; transform: scale(.94); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal-s.in { opacity: 1; transform: none; }

/* =================================================== Keyframes */
@keyframes text-shimmer { to { background-position: 220% center; } }
@keyframes btn-flow { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes pulse-dot { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .5; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes drift { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(40px,-30px) scale(1.1); } 66% { transform: translate(-30px,20px) scale(.95); } }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-18px) rotate(8deg); } }
@keyframes twinkle { 0%,100% { transform: scale(.6) rotate(0); opacity: .3; } 50% { transform: scale(1.1) rotate(90deg); opacity: 1; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes radar { 0% { transform: scale(.5); opacity: 1; } 100% { transform: scale(5); opacity: 0; } }
@keyframes pop-in { 0% { transform: scale(.9); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ===================================================== Utilities & sub-page components */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: start; }
.text-center { text-align: center; }
.mt-s { margin-top: 18px; } .mt-m { margin-top: 32px; } .mt-l { margin-top: 56px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.chip { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--text-soft); padding: 9px 16px; border-radius: var(--r-full); background: var(--surface); border: 1px solid var(--border-2); }
.chip svg { width: 16px; height: 16px; color: var(--cyan); }
.chip--price { color: #fff; font-size: 15px; }
.chip--price b { color: #fff; }

/* Sub-page hero price block */
.hero-price { font-family: var(--font-head); font-weight: 900; font-size: clamp(2.4rem, 5vw, 3.4rem); letter-spacing: -.03em; color: #fff; line-height: 1; }
.hero-price small { font-size: 15px; font-weight: 600; color: var(--muted); letter-spacing: .04em; }

/* Numbered list (deliverables / "Do 1 — Do 2 — Do 3") */
.do-list { display: grid; gap: 16px; counter-reset: do; }
.do-item { display: flex; gap: 18px; align-items: flex-start; padding: 22px 24px; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); transition: border-color var(--t), transform var(--t) var(--ease); }
.do-item:hover { border-color: var(--border-2); transform: translateX(4px); }
.do-item__n { flex: none; counter-increment: do; width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 900; color: #07101a; background: var(--grad-brand); }
.do-item__n::before { content: counter(do, decimal-leading-zero); }
.do-item h4 { margin-bottom: 5px; }
.do-item p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* Checklist (generic, outside service cards) */
.checklist { display: grid; gap: 13px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: var(--text-soft); }
.checklist svg { flex: none; width: 21px; height: 21px; color: var(--emerald); margin-top: 2px; }

/* Info list (contact details) */
.info-list { display: grid; gap: 4px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); }
.info-list li:last-child { border-bottom: 0; }
.info-list .ico { flex: none; width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--border); color: var(--cyan); }
.info-list .ico svg { width: 20px; height: 20px; }
.info-list .k { display: block; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 2px; }
.info-list .v { display: block; font-family: var(--font-head); font-weight: 600; color: #fff; font-size: 15.5px; }
.info-list .v a:hover { color: var(--cyan); }

/* Spec / definition rows (billing) */
.spec-list { display: grid; gap: 0; }
.spec-list div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.spec-list div:last-child { border-bottom: 0; }
.spec-list dt { color: var(--muted); }
.spec-list dd { color: #fff; font-weight: 600; text-align: right; }

/* Map */
.map-embed { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border-2); position: relative; }
.map-embed iframe { display: block; width: 100%; height: 280px; border: 0; filter: grayscale(.3) invert(.92) hue-rotate(180deg) contrast(.9) brightness(.9); }

/* Legal article */
.legal { max-width: 760px; }
.legal__meta { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.legal__toc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px 26px; margin-bottom: 44px; }
.legal__toc h4 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.legal__toc ol { list-style: none; counter-reset: toc; display: grid; gap: 8px; }
.legal__toc li { counter-increment: toc; }
.legal__toc a { color: var(--text-soft); font-size: 15px; transition: color var(--t); }
.legal__toc a::before { content: counter(toc) ". "; color: var(--cyan); font-family: var(--font-head); font-weight: 700; }
.legal__toc a:hover { color: #fff; }
.legal h2 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); margin: 46px 0 14px; scroll-margin-top: calc(var(--nav-h) + 24px); }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.18rem; margin: 28px 0 10px; }
.legal p, .legal li { color: var(--text-soft); font-size: 16px; line-height: 1.78; margin-bottom: 14px; }
.legal ul { padding-left: 22px; list-style: disc; margin-bottom: 18px; }
.legal ul li { margin-bottom: 9px; }
.legal strong { color: #fff; font-weight: 600; }
.legal a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.legal__note { margin-top: 44px; padding: 22px 26px; border-radius: var(--r-lg); border: 1px solid var(--border-2); background: var(--surface); color: var(--muted); font-size: 14.5px; }

@media (max-width: 880px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ===================================================== Hero */
.hero { overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding-top: calc(var(--nav-h) + 64px); padding-bottom: clamp(56px, 8vw, 110px); position: relative; z-index: 1; }
.hero__copy h1 { margin: 22px 0; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__trust { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 14px; flex-wrap: wrap; }

.hero__panel { position: relative; perspective: 1300px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 10px var(--emerald); animation: pulse-dot 1.8s var(--ease) infinite; }

.console {
  position: relative; z-index: 2;
  background: linear-gradient(180deg, rgba(24, 30, 58, 0.92), rgba(10, 13, 28, 0.9));
  border: 1px solid var(--border-2); border-radius: var(--r-xl);
  padding: 24px 24px 20px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
  transition: transform .35s var(--ease);
  overflow: hidden;
  will-change: transform;
}
.console__glow { position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 0;
  background: radial-gradient(440px circle at var(--gx, 74%) var(--gy, 4%), rgba(124, 108, 246, 0.22), transparent 62%); }
.console > *:not(.console__glow) { position: relative; z-index: 1; }
.console::after { content: ""; position: absolute; top: 0; left: 0; width: 45%; height: 100%; z-index: 3;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  transform: translateX(-170%) skewX(-16deg); animation: shine 7s var(--ease) infinite; pointer-events: none; }
@keyframes shine { 0% { transform: translateX(-170%) skewX(-16deg); } 26% { transform: translateX(330%) skewX(-16deg); } 100% { transform: translateX(330%) skewX(-16deg); } }

.console__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.console__brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); }
.console__badge { font-family: var(--font-head); font-weight: 800; font-size: 9.5px; letter-spacing: .18em; color: var(--cyan); padding: 5px 10px; border-radius: var(--r-full); border: 1px solid rgba(34, 211, 238, .3); background: rgba(34, 211, 238, .08); }
.console__label { font-size: 12.5px; color: var(--muted); }
.console__big { display: flex; align-items: baseline; gap: 12px; margin-top: 2px; }
.console__big > span:first-child { font-family: var(--font-head); font-weight: 900; font-size: clamp(2.6rem, 5vw, 3.4rem); line-height: 1; letter-spacing: -.03em; color: #fff; }
.console__delta { display: inline-flex; align-items: center; gap: 3px; font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--emerald); }
.console__delta svg { width: 14px; height: 14px; }
.console__chart { margin: 10px 0 16px; }
.console__chart svg { width: 100%; height: auto; display: block; overflow: visible; }
.cl-grid line { stroke: rgba(255, 255, 255, .06); stroke-width: 1; }
.cl-area { opacity: 0; animation: cl-fade 1.1s ease .7s forwards; }
@keyframes cl-fade { to { opacity: 1; } }
.cl-line { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1.9s var(--ease-out) .25s forwards; }
.cl-pulse { transform-box: fill-box; transform-origin: center; animation: cl-pulse 2.4s var(--ease) infinite; }
@keyframes cl-pulse { 0% { transform: scale(.45); opacity: .85; } 70% { transform: scale(3.2); opacity: 0; } 100% { transform: scale(3.2); opacity: 0; } }

.kpi-row { display: flex; gap: 10px; border-top: 1px solid var(--border); padding-top: 16px; }
.kpi-row > div { flex: 1; }
.k-n { display: block; font-family: var(--font-head); font-weight: 900; font-size: 1.35rem; color: #fff; }
.k-l { font-size: 11px; color: var(--muted); letter-spacing: .04em; }

/* Floating live cards */
.float-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 11px;
  background: rgba(15, 19, 40, .94); border: 1px solid var(--border-2); border-radius: 14px;
  padding: 11px 15px 11px 12px; box-shadow: var(--shadow); backdrop-filter: blur(10px);
  animation: fc-float 6s var(--ease) infinite; }
.float-card .fc__ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.float-card b { display: block; font-family: var(--font-head); font-weight: 700; font-size: 13px; color: #fff; line-height: 1.25; }
.float-card .fc__t { display: block; font-size: 11px; color: var(--muted); }
.fc-a { top: -22px; left: -34px; }
.fc-b { bottom: -20px; right: -26px; animation-delay: -3s; }
@keyframes fc-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===================================================== Service hero visuals */
.svc-hero { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 48px; align-items: center; }
.svc-hero__visual { position: relative; }
.console__brand svg { width: 16px; height: 16px; color: var(--cyan); }

/* 1 — Strategy radar (Launch Architecture) */
.radar { position: relative; padding: 4px 0; }
.radar__svg { width: 100%; max-width: 320px; height: auto; display: block; margin-inline: auto; overflow: visible; }
.radar__grid polygon { fill: none; stroke: rgba(255, 255, 255, .08); stroke-width: 1; }
.radar__grid line { stroke: rgba(255, 255, 255, .07); stroke-width: 1; }
.radar__data { fill: rgba(124, 108, 246, .26); stroke: url(#radarStroke); stroke-width: 2.5; stroke-linejoin: round; transform-box: view-box; transform-origin: 120px 120px; animation: radar-breathe 5s var(--ease) infinite alternate; }
.radar__dot { fill: #fff; }
.radar__sweep { transform-box: view-box; transform-origin: 120px 120px; animation: spin 6s linear infinite; }
.radar-axis { fill: var(--muted); font-size: 10px; font-family: var(--font-head); font-weight: 600; }
.radar__foot { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; border-top: 1px solid var(--border); padding-top: 16px; }
.rtag { font-family: var(--font-head); font-weight: 700; font-size: 11.5px; letter-spacing: .03em; color: var(--text-soft); padding: 6px 12px; border-radius: var(--r-full); border: 1px solid var(--border-2); background: var(--surface); }
.rtag--on { color: #07101a; background: var(--grad-growth); border-color: transparent; }
@keyframes radar-breathe { from { transform: scale(.96); } to { transform: scale(1.03); } }

/* 2 — Conversion funnel (Lead Gen) */
.funnel { display: flex; flex-direction: column; gap: 13px; align-items: center; margin: 4px 0 18px; }
.fn-row { width: 100%; }
.fn-row--2 { width: 84%; } .fn-row--3 { width: 62%; } .fn-row--4 { width: 42%; }
.fn-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.fn-k { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.fn-v { font-family: var(--font-head); font-weight: 800; font-size: 15px; color: #fff; }
.fn-track { height: 30px; border-radius: 9px; background: rgba(255, 255, 255, .05); border: 1px solid var(--border); overflow: hidden; }
.fn-fill { display: block; height: 100%; border-radius: 9px; background: var(--grad-growth); transform-origin: left; animation: fn-grow 1.1s var(--ease) both; }
.fn-row--1 .fn-fill { animation-delay: .15s; }
.fn-row--2 .fn-fill { animation-delay: .3s; background: linear-gradient(120deg, #34e1a3, #22d3ee); }
.fn-row--3 .fn-fill { animation-delay: .45s; background: linear-gradient(120deg, #22d3ee, #6366f1); }
.fn-row--4 .fn-fill { animation-delay: .6s; background: linear-gradient(120deg, #6366f1, #a855f7); }
@keyframes fn-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* 3 — SERP rank climb (SEO) */
.serp { margin: 4px 0; }
.serp__bar { display: flex; align-items: center; gap: 10px; background: var(--surface-2); border: 1px solid var(--border-2); border-radius: var(--r-full); padding: 11px 16px; margin-bottom: 16px; }
.serp__bar svg { width: 16px; height: 16px; color: var(--muted); }
.serp__q { font-size: 13.5px; color: var(--text-soft); }
.serp__caret { width: 1.5px; height: 15px; background: var(--cyan); animation: caret 1.1s steps(1) infinite; }
.serp__list { position: relative; height: 214px; }
.serp__row { position: absolute; left: 0; right: 0; height: 46px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); display: flex; align-items: center; gap: 9px; padding: 0 14px; }
.serp__row--p1 { top: 0; } .serp__row--p2 { top: 56px; } .serp__row--p3 { top: 112px; } .serp__row--p4 { top: 168px; }
.serp__tag { font-family: var(--font-head); font-weight: 800; font-size: 9.5px; letter-spacing: .08em; color: var(--emerald); border: 1px solid rgba(52, 225, 163, .4); border-radius: 5px; padding: 2px 6px; flex: none; }
.serp__ln { display: inline-block; height: 7px; border-radius: 4px; background: rgba(255, 255, 255, .12); }
.serp__ln--t { height: 9px; background: rgba(255, 255, 255, .2); }
.serp__brand { position: absolute; left: 0; right: 0; top: 0; height: 46px; border-radius: 12px; padding: 0 14px; display: flex; align-items: center; gap: 11px; background: linear-gradient(120deg, rgba(34, 211, 238, .16), rgba(124, 108, 246, .16)); border: 1px solid var(--cyan); box-shadow: var(--glow-cyan); animation: rank-climb 6s var(--ease) infinite; z-index: 3; }
.serp__brand > div { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.serp__fav { width: 26px; height: 26px; border-radius: 7px; flex: none; background: var(--grad-brand); display: grid; place-items: center; font-family: var(--font-head); font-weight: 900; font-size: 13px; color: #07101a; }
.serp__name { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: #fff; }
.serp__url { font-size: 11px; color: var(--cyan); }
.serp__rank { margin-left: auto; display: inline-flex; align-items: center; gap: 4px; font-family: var(--font-head); font-weight: 800; font-size: 13px; color: var(--emerald); flex: none; }
.serp__rank svg { width: 14px; height: 14px; }
@keyframes rank-climb {
  0% { transform: translateY(168px); opacity: 0; }
  9% { opacity: 1; }
  50% { transform: translateY(0); opacity: 1; }
  85% { transform: translateY(0); opacity: 1; }
  93% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(168px); opacity: 0; }
}
@keyframes caret { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

@media (max-width: 980px) {
  .svc-hero { grid-template-columns: 1fr; gap: 40px; }
  .svc-hero__visual { max-width: 480px; margin-inline: auto; width: 100%; }
}

/* Results draw-on-scroll line */
.results-line { position: relative; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; background: var(--surface); overflow: hidden; }
.growth-line { width: 100%; height: 160px; display: block; }
.gl-stroke { stroke-dasharray: 1; stroke-dashoffset: 1; }
.results-line.in .gl-stroke { animation: draw 2.2s var(--ease-out) forwards; }
.gl-fill { opacity: 0; transition: opacity 1.2s ease .5s; }
.results-line.in .gl-fill { opacity: 1; }
.gl-caption { display: block; margin-top: 14px; text-align: center; color: var(--muted); font-size: 14px; }

@keyframes bar-rise { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* Outcomes panel (results section) */
.outcomes { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 24px; align-items: stretch; }
.outcomes__kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.okpi { display: flex; flex-direction: column; gap: 12px; padding: 24px; border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--surface); transition: border-color var(--t), transform var(--t) var(--ease), background var(--t); }
.okpi:hover { border-color: var(--border-2); background: var(--surface-2); transform: translateY(-4px); }
.okpi__ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--border-2); color: var(--cyan); }
.okpi__ico svg { width: 20px; height: 20px; }
.okpi__n { font-family: var(--font-head); font-weight: 900; font-size: clamp(1.9rem, 3vw, 2.5rem); line-height: 1; letter-spacing: -.03em; margin-top: auto; }
.okpi__l { font-size: 13.5px; color: var(--muted); }

.outcomes__chart { position: relative; display: flex; flex-direction: column; padding: 24px; border-radius: var(--r-lg); border: 1px solid var(--border-2); background: linear-gradient(180deg, rgba(20, 26, 50, .55), var(--surface)); }
.oc__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.oc__title { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: #fff; }
.oc__legend { display: flex; gap: 16px; }
.oc__legend .lg { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); font-weight: 600; }
.lg__d { width: 11px; height: 11px; border-radius: 3px; flex: none; }
.lg__d--paid { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.lg__d--organic { background: var(--violet); box-shadow: 0 0 8px var(--violet); }
.oc__svg { width: 100%; height: auto; display: block; overflow: visible; margin-top: 6px; }
.oc__cap { margin-top: 12px; font-size: 13px; color: var(--muted); text-align: center; }
.oc-grid line { stroke: rgba(255, 255, 255, .06); stroke-width: 1; }
.oc-axis text { fill: var(--muted-2); font-size: 11px; font-family: var(--font-body); }
.oc-area { opacity: 1; }
.oc-line { stroke-dasharray: 1; stroke-dashoffset: 0; }
.outcomes.in .oc-line--paid { animation: draw-line 1.7s var(--ease-out) .2s both; }
.outcomes.in .oc-line--organic { animation: draw-line 2s var(--ease-out) .45s both; }
.oc-dot { opacity: 1; }
@keyframes draw-line { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }

@media (max-width: 900px) { .outcomes { grid-template-columns: 1fr; } }
@media (max-width: 460px) { .outcomes__kpis { grid-template-columns: 1fr; } }

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__panel { max-width: 460px; margin-inline: auto; width: 100%; }
}
@media (max-width: 600px) {
  .float-card { display: none; }
  .console { padding: 20px; }
}

/* ===================================================== Responsive */
@media (max-width: 1024px) {
  .svc-grid, .steps, .stats, .tst-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .col-2 { grid-column: span 2; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: grid; }
  .nav { padding-right: 10px; }
  body { font-size: 16px; }
}
@media (max-width: 680px) {
  .svc-grid, .steps, .stats, .tst-grid, .bento, .form__row, .footer__grid { grid-template-columns: 1fr; }
  .col-2, .row-2 { grid-column: auto; grid-row: auto; }
  .nav { inset: 10px 10px auto 10px; }
  .card { padding: 24px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  h1 { font-size: clamp(2.1rem, 9vw, 3rem); }
}

/* ===================================================== Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-l, .reveal-r, .reveal-s { opacity: 1 !important; transform: none !important; }
  .deco, .cursor-dot, .cursor-ring, .scroll-progress { display: none !important; }
  .marquee__track { animation: none !important; }
}

/* Hide custom cursor on touch */
@media (hover: none) { .cursor-dot, .cursor-ring { display: none !important; } }
