/* ===== ATAS Advertising Agency — styles ===== */

:root {
  --bg: #000000;
  --bg-1: #0a0a0a;
  --bg-2: #0f0f12;
  --bg-3: #15151a;
  --light: #ffffff;
  --light-2: #f5f5f5;
  --text: #ffffff;
  --text-dim: #a0a0a0;
  --text-dim-2: #6b6b6b;
  --text-dark: #0a0a0a;
  --text-dark-dim: #5a5a5a;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --border-light: #e8e8e8;
  --accent: #e63027;
  --accent-hover: #ff3a2e;
  --accent-soft: rgba(230,48,39,0.12);
  --accent-line: rgba(230,48,39,0.6);

  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Geist Mono', ui-monospace, monospace;

  --container: 1280px;
  --pad-x: 80px;
  --pad-section: 120px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1024px) {
  :root { --pad-x: 32px; --pad-section: 80px; }
}
@media (max-width: 640px) {
  :root { --pad-x: 24px; --pad-section: 64px; }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* subtle texture across the whole site to break up flat black */
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 1.5px);
  background-size: 28px 28px;
  background-attachment: fixed;
  background-position: 0 0;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}

/* ===== Type ===== */
.h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 7.5vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  margin: 0;
  text-wrap: balance;
}
.h1 .h1-line { display: block; }
.h1 .accent { color: var(--accent); position: relative; }
.h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -0.04em;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: lineIn 1s var(--ease) 0.8s forwards;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.h2-dark { color: var(--text-dark); }
.h2-xl { font-size: clamp(44px, 6.4vw, 96px); }

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.eyebrow.center { text-align: center; }
.eyebrow-dark { color: var(--text-dark-dim); }

.section-head {
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section-lead {
  font-size: 20px;
  line-height: 1.45;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  border-radius: 999px;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 0 var(--accent-soft);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: scale(1.02);
  box-shadow: 0 0 24px rgba(230,48,39,0.4), 0 0 0 6px var(--accent-soft);
}
.btn-primary:disabled {
  background: #2a2a2e;
  color: #6b6b6b;
  cursor: not-allowed;
  box-shadow: none;
}
.btn-primary:disabled:hover { transform: none; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.55); }
.btn-ghost-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid #c8c8c8;
}
.btn-ghost-dark:hover { background: #fff; border-color: var(--text-dark); }
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-xs { padding: 8px 14px; font-size: 12px; }
.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ===== Header — Liquid Glass ===== */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  /* Always-on frosted glass */
  background: rgba(10, 10, 10, 0.42);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  /* Inner highlight (top edge "rim") + soft drop shadow */
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 4px 24px rgba(0, 0, 0, 0.18);
  transition:
    background 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
/* Subtle liquid sheen — animated horizontal highlight at the very top */
.hdr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 30%,
    rgba(255, 255, 255, 0.32) 50%,
    rgba(255, 255, 255, 0.18) 70%,
    transparent 100%
  );
  opacity: 0.6;
  pointer-events: none;
}
.hdr.is-scrolled {
  background: rgba(5, 5, 5, 0.62);
  backdrop-filter: saturate(200%) blur(28px);
  -webkit-backdrop-filter: saturate(200%) blur(28px);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 36px rgba(0, 0, 0, 0.4);
}
.hdr.is-scrolled::before { opacity: 0.85; }
.hdr-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  flex-shrink: 0;
}
.logo-mark { color: #fff; line-height: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 3px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: auto;
}
.nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav a:hover { color: #fff; }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
  transition: right 0.2s var(--ease);
}
.nav a:hover::after { right: 0; }

.hdr-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.lang { display: flex; gap: 2px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; }
.lang-btn {
  padding: 4px 6px;
  color: var(--text-dim);
  transition: color 0.2s var(--ease);
}
.lang-btn.is-active { color: #fff; font-weight: 600; }
.lang-btn:hover { color: #fff; }
.hdr-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.burger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.burger span { width: 20px; height: 1.5px; background: #fff; }

/* ===== Header CTA button — attention animation ===== */
.hdr .btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: hdrBtnBreath 2.8s ease-in-out infinite;
}
.hdr .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  background: var(--accent);
}
.hdr .btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 25%,
    rgba(255,255,255,0.0) 35%,
    rgba(255,255,255,0.45) 50%,
    rgba(255,255,255,0.0) 65%,
    transparent 75%
  );
  transform: skewX(-18deg);
  animation: hdrBtnShine 4.2s ease-in-out infinite;
  animation-delay: 1.2s;
  pointer-events: none;
  z-index: 0;
}
.hdr .btn-primary > * { position: relative; z-index: 1; }
.hdr .btn-primary:hover {
  animation-play-state: paused;
  /* hover scale is inherited from .btn-primary:hover */
}
.hdr .btn-primary:active {
  transform: scale(0.97);
}
.hdr.is-scrolled .btn-primary {
  /* slightly slower / softer breathing once header is in compact state */
  animation-duration: 3.4s;
}

@keyframes hdrBtnBreath {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(230,48,39,0.55),
      0 4px 14px rgba(230,48,39,0.28);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(230,48,39,0),
      0 6px 22px rgba(230,48,39,0.55);
  }
}
@keyframes hdrBtnShine {
  0%   { left: -120%; }
  55%  { left: 160%; }
  100% { left: 160%; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hdr .btn-primary,
  .hdr .btn-primary::after { animation: none; }
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .hdr-phone { display: none; }
  .lang { display: none; }
  .burger { display: flex; }
}

/* ===== Burger → X transform ===== */
.burger { position: relative; z-index: 105; }
.burger span {
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
  transform-origin: center;
}
.burger.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ===== Mobile menu overlay ===== */
.hdr { z-index: 110; }     /* keep burger above overlay */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(5,5,5,0.94);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  display: flex;
  flex-direction: column;
  padding: 100px var(--pad-x) 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.32s var(--ease), visibility 0.32s, transform 0.32s var(--ease);
  overflow-y: auto;
}
.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(230,48,39,0.18), transparent 60%),
    radial-gradient(ellipse 60% 70% at 0% 100%, rgba(230,48,39,0.08), transparent 60%);
}
.menu-overlay-nav {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.menu-overlay-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 7vw, 44px);
  letter-spacing: -0.025em;
  color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: baseline;
  gap: 18px;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), color 0.2s;
}
.menu-overlay-nav a:hover { color: var(--accent); }
.menu-overlay-nav a.is-active { color: var(--accent); }
.menu-overlay-nav a .num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  min-width: 36px;
}
.menu-overlay-nav a .arrow {
  margin-left: auto;
  font-family: var(--font-display);
  color: var(--text-dim);
  transition: transform 0.2s var(--ease), color 0.2s;
}
.menu-overlay-nav a:hover .arrow { color: var(--accent); transform: translateX(6px); }
.menu-overlay.is-open .menu-overlay-nav a {
  opacity: 1;
  transform: translateX(0);
}
.menu-overlay.is-open .menu-overlay-nav a:nth-child(1) { transition-delay: 0.06s; }
.menu-overlay.is-open .menu-overlay-nav a:nth-child(2) { transition-delay: 0.11s; }
.menu-overlay.is-open .menu-overlay-nav a:nth-child(3) { transition-delay: 0.16s; }
.menu-overlay.is-open .menu-overlay-nav a:nth-child(4) { transition-delay: 0.21s; }

.menu-overlay-bottom {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: auto;
  padding-top: 32px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease) 0.28s, transform 0.4s var(--ease) 0.28s;
}
.menu-overlay.is-open .menu-overlay-bottom {
  opacity: 1;
  transform: translateY(0);
}
.menu-overlay-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.menu-overlay-row .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.menu-overlay-row a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.015em;
}
.menu-overlay-row a + a { margin-top: 2px; display: block; }
.menu-overlay-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  margin-top: 8px;
}
.menu-overlay-lang {
  display: flex;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
}
.menu-overlay-lang button {
  background: transparent;
  color: var(--text-dim);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
}
.menu-overlay-lang button.is-active {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.menu-overlay-social {
  display: flex;
  gap: 8px;
}
.menu-overlay-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.18s var(--ease);
}
.menu-overlay-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.menu-overlay-social svg { width: 16px; height: 16px; }

/* Body lock while menu is open */
body.menu-open { overflow: hidden; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px var(--pad-x) 80px;
  overflow: hidden;
  background: #000;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: saturate(1.05) brightness(0.55) contrast(1.08);
  pointer-events: none;
  /* fade in once loaded */
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.hero-video.is-loaded { opacity: 1; }
.hero-grid {
  position: absolute; inset: 0;
  z-index: 1;
  mix-blend-mode: overlay;
  opacity: 0.7;
  background:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 96px 100%,
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 100% 96px,
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(230,48,39,0.18), transparent 70%),
    radial-gradient(ellipse 50% 70% at 10% 100%, rgba(230,48,39,0.08), transparent 70%);
}
.hero-vignette {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 35%, transparent 65%),
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.55) 75%, #000 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 30%, transparent 65%, rgba(0,0,0,0.92) 100%);
}

.trail {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(230,48,39,0.9) 60%, #ff5040, transparent);
  filter: blur(0.4px);
  opacity: 0.5;
  animation: streak 4s linear infinite;
}
.trail-1 { top: 32%; left: -40%; width: 50%; animation-duration: 5s; }
.trail-2 { top: 58%; left: -50%; width: 70%; animation-duration: 7s; animation-delay: 1.2s; opacity: 0.7; }
.trail-3 { top: 76%; left: -30%; width: 40%; animation-duration: 4s; animation-delay: 2.4s; opacity: 0.4; }
.trail-4 { top: 18%; left: -45%; width: 60%; animation-duration: 6s; animation-delay: 3s; opacity: 0.35; }

@keyframes streak {
  0% { transform: translateX(0); }
  100% { transform: translateX(220vw); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  animation: fadeUp 1s var(--ease) 0.2s both;
}
.hero-lead {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--text-dim);
  max-width: 540px;
  margin: -8px 0 0;
  font-weight: 400;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-scroll-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-scroll-line {
  position: relative;
  display: block;
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.18);
  overflow: hidden;
}
.hero-scroll-dot {
  position: absolute;
  top: -8px; left: -2px;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: scrollDot 2s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(70px); opacity: 0; }
}

.hero-corner {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.32);
  z-index: 2;
  pointer-events: none;
}
.hero-corner-tl { top: calc(72px + 16px); left: var(--pad-x); }
.hero-corner-tr { top: calc(72px + 16px); right: var(--pad-x); }
.hero-corner-bl { bottom: 40px; left: var(--pad-x); }
.hero-corner-br {
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent);
}
.hero-corner-br::before {
  content: '●';
  margin-right: 8px;
  animation: pulse 1.6s infinite;
  font-size: 9px;
}
@media (max-width: 640px) {
  .hero-corner-tl, .hero-corner-tr { display: none; }
  .hero-scroll { display: none; }
}

/* ===== Marquee ===== */
.marquee {
  position: relative;
  background: var(--bg-1);
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.marquee-head {
  position: absolute;
  z-index: 3;
  left: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  padding: 0 32px 0 var(--pad-x);
  background:
    linear-gradient(to right, var(--bg-1) 0%, var(--bg-1) 75%, rgba(10,10,10,0) 100%);
  border-right: 1px solid var(--border);
  pointer-events: none;
}
.marquee-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: marqueeMove 60s linear infinite;
  flex-shrink: 0;
  white-space: nowrap;
  padding-left: 340px;
}
.marquee-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s var(--ease);
  white-space: nowrap;
}
.marquee-logo:hover { color: #fff; }
@keyframes marqueeMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .marquee-head { padding-right: 20px; }
  .marquee-track { gap: 36px; animation-duration: 40s; padding-left: 240px; }
  .marquee-logo { font-size: 15px; }
}

/* ===== Stats ===== */
.stats {
  position: relative;
  padding: var(--pad-section) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(230,48,39,0.08), transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(230,48,39,0.05), transparent 60%);
  pointer-events: none;
}
.stats > .container { position: relative; z-index: 1; }
.stats .eyebrow { margin-bottom: 64px; display: block; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 32px 24px;
  border-left: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 9vw, 156px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: #fff;
}
.stat-num-glyph { font-weight: 500; }
.stat-label {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.3;
}
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* uniform padding across all 4 cells so digits sit on the same baseline
     within each column */
  .stat {
    border-left: 0;
    padding: 28px 20px;
    margin: 0;
  }
  .stat:first-child { padding-left: 20px; }   /* cancel desktop :first-child reset */
  /* vertical divider between columns */
  .stat:nth-child(even) {
    border-left: 1px solid rgba(255,255,255,0.1);
  }
  /* horizontal divider between rows */
  .stat:nth-child(n+3) {
    border-top: 1px solid rgba(255,255,255,0.1);
  }
}

/* ===== Formats ===== */
.formats {
  position: relative;
  padding: var(--pad-section) 0;
  background: var(--bg);
  overflow: hidden;
}
.formats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.015) 50%, transparent 100%),
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(230,48,39,0.04), transparent 70%);
  pointer-events: none;
}
.formats > .container { position: relative; z-index: 1; }
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fmt-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-1);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  min-height: 480px;
  color: #fff;
}
.fmt-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230,48,39,0.4);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.8), 0 0 0 1px rgba(230,48,39,0.25);
}
.fmt-media {
  position: relative;
  flex: 1;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  min-height: 260px;
  overflow: hidden;
}
/* dark gradient overlay so the number stays readable on any photo */
.fmt-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.1) 32%, rgba(10,10,10,0.05) 65%, rgba(10,10,10,0.55) 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s var(--ease);
}
.fmt-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
  filter: saturate(0.95) brightness(0.88) contrast(1.04);
}
.fmt-card:hover .fmt-photo {
  transform: scale(1.05);
  filter: saturate(1.05) brightness(0.95) contrast(1.05);
}
.fmt-card:hover .fmt-media::after { opacity: 0.85; }
.fmt-num {
  position: absolute;
  top: 18px;
  left: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.9);
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.fmt-num::before { content: '/ '; color: var(--accent); }
.fmt-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.fmt-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}
.fmt-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
  padding-right: 40px;
}
.fmt-arrow {
  position: absolute;
  right: 28px;
  bottom: 32px;
  font-size: 22px;
  color: var(--text-dim);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.fmt-card:hover .fmt-arrow { color: var(--accent); transform: translateX(4px); }

@media (max-width: 1024px) {
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .formats-grid { grid-template-columns: 1fr; }
  .fmt-card { min-height: 420px; }
}

/* ===== Calculator ===== */
.calc {
  padding: var(--pad-section) 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.calc-left { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 120px; }
.calc-disclaimer {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-dim-2);
  margin: 16px 0 0;
}
.calc-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.calc-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.calc-step-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.calc-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  padding: 3px 7px;
  border: 1px solid var(--accent-line);
  border-radius: 4px;
}
.calc-hint {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-dim-2);
  text-transform: uppercase;
  margin-left: auto;
}
.calc-slider-val {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.calc-slider-val span { color: var(--accent); font-size: 16px; }

.calc-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.calc-chips-city { display: flex; flex-wrap: wrap; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  transition: all 0.18s var(--ease);
  text-align: left;
}
.chip:hover { border-color: rgba(255,255,255,0.32); background: rgba(255,255,255,0.04); }
.chip.is-on {
  border-color: var(--accent);
  background: rgba(230,48,39,0.08);
  color: #fff;
}
.chip.is-on .chip-ico { color: var(--accent); }
.chip-pill { border-radius: 999px; padding: 9px 16px; }
.chip-ico {
  display: inline-block;
  width: 18px; height: 18px;
  color: var(--text-dim);
  flex-shrink: 0;
}
.chip-ico::before {
  content: '';
  display: block;
  width: 100%; height: 100%;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.chip-ico[data-ico="bus"]::before { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><rect x='3' y='5' width='18' height='12' rx='2'/><path d='M3 13 H21'/><circle cx='7' cy='19' r='2'/><circle cx='17' cy='19' r='2'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><rect x='3' y='5' width='18' height='12' rx='2'/><path d='M3 13 H21'/><circle cx='7' cy='19' r='2'/><circle cx='17' cy='19' r='2'/></svg>"); }
.chip-ico[data-ico="stop"]::before { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><rect x='4' y='5' width='16' height='12'/><path d='M3 17 H21'/><path d='M7 17 V21'/><path d='M17 17 V21'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><rect x='4' y='5' width='16' height='12'/><path d='M3 17 H21'/><path d='M7 17 V21'/><path d='M17 17 V21'/></svg>"); }
.chip-ico[data-ico="led"]::before { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><rect x='3' y='4' width='18' height='12'/><path d='M12 16 V20'/><path d='M8 20 H16'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><rect x='3' y='4' width='18' height='12'/><path d='M12 16 V20'/><path d='M8 20 H16'/></svg>"); }
.chip-ico[data-ico="rail"]::before { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><rect x='5' y='3' width='14' height='14' rx='2'/><circle cx='9' cy='13' r='1' fill='black'/><circle cx='15' cy='13' r='1' fill='black'/><path d='M7 17 L4 21'/><path d='M17 17 L20 21'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><rect x='5' y='3' width='14' height='14' rx='2'/><circle cx='9' cy='13' r='1' fill='black'/><circle cx='15' cy='13' r='1' fill='black'/><path d='M7 17 L4 21'/><path d='M17 17 L20 21'/></svg>"); }
.chip-ico[data-ico="indoor"]::before { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><rect x='3' y='4' width='18' height='12'/><path d='M9 20 H15'/><path d='M12 16 V20'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><rect x='3' y='4' width='18' height='12'/><path d='M9 20 H15'/><path d='M12 16 V20'/></svg>"); }
.chip-ico[data-ico="billboard"]::before { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><rect x='3' y='4' width='18' height='10'/><path d='M11 14 V22'/><path d='M13 14 V22'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><rect x='3' y='4' width='18' height='10'/><path d='M11 14 V22'/><path d='M13 14 V22'/></svg>"); }
.chip-ico[data-ico="metro"]::before { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><path d='M4 16 V8 a4 4 0 0 1 4 -4 h8 a4 4 0 0 1 4 4 V16 Z'/><path d='M4 16 H20'/><circle cx='8' cy='19' r='1.4' fill='black'/><circle cx='16' cy='19' r='1.4' fill='black'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><path d='M4 16 V8 a4 4 0 0 1 4 -4 h8 a4 4 0 0 1 4 4 V16 Z'/><path d='M4 16 H20'/><circle cx='8' cy='19' r='1.4' fill='black'/><circle cx='16' cy='19' r='1.4' fill='black'/></svg>"); }
.chip-ico[data-ico="house"]::before { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><path d='M3 20 V9 L12 3 L21 9 V20 Z'/><rect x='10' y='13' width='4' height='7'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><path d='M3 20 V9 L12 3 L21 9 V20 Z'/><rect x='10' y='13' width='4' height='7'/></svg>"); }
.chip-ico[data-ico="sign"]::before { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><rect x='3' y='6' width='18' height='8' rx='1'/><path d='M7 14 V18'/><path d='M17 14 V18'/><path d='M5 18 H19'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><rect x='3' y='6' width='18' height='8' rx='1'/><path d='M7 14 V18'/><path d='M17 14 V18'/><path d='M5 18 H19'/></svg>"); }

.calc-slider {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  background: var(--accent);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(230,48,39,0.18);
}
.calc-slider::-moz-range-thumb {
  width: 18px; height: 18px;
  background: var(--accent);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(230,48,39,0.18);
}
.calc-slider-ticks {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-dim-2);
  margin-top: 4px;
}

.calc-result {
  border-top: 1px dashed rgba(255,255,255,0.12);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.calc-result-label {
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.calc-result-value {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  text-align: right;
}
.calc-result-value-red { color: var(--accent); }
.calc-empty {
  font-size: 13px;
  color: var(--text-dim-2);
  padding: 8px 0;
}
.calc-result .btn { margin-top: 12px; }

@media (max-width: 1024px) {
  .calc-wrap { grid-template-columns: 1fr; gap: 48px; }
  .calc-left { position: static; }
  .calc-chips { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .calc-card { padding: 28px 20px; }
}

/* ===== Map ===== */
.map {
  padding: var(--pad-section) 0;
  background: var(--bg);
}
.map-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.map-wrap {
  position: relative;
  background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1200 / 620;
}
.map-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.map-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.city-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
}
.city-dot-inner {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 0 rgba(230,48,39,0.6);
}
.city-dot-pulse {
  position: absolute;
  left: 50%; top: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%,-50%);
  animation: dotPulse 2.6s ease-out infinite;
  z-index: 1;
}
.city-dot.big .city-dot-inner { width: 14px; height: 14px; }
.city-dot.big .city-dot-pulse { width: 14px; height: 14px; }
.city-dot-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.city-dot.big .city-dot-label { font-size: 11px; color: #fff; }
.city-dot:hover .city-dot-label { color: var(--accent); }
.city-dot-tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #0a0a0a;
  border: 1px solid rgba(230,48,39,0.4);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s var(--ease);
}
.city-dot:hover .city-dot-tooltip { opacity: 1; }
.city-dot-tooltip strong { display: block; color: #fff; margin-bottom: 4px; }
.city-dot-tooltip span { display: block; color: var(--text-dim); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; }

@keyframes dotPulse {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: 0.7; }
  100% { transform: translate(-50%,-50%) scale(5); opacity: 0; }
}

.map-legend {
  position: absolute;
  left: 24px; bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}
.map-legend-item { display: flex; align-items: center; gap: 8px; }
.legend-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.legend-dot-lg { width: 10px; height: 10px; }

/* ===== Cases (light) ===== */
.cases {
  padding: var(--pad-section) 0;
  background: #f5f5f5;
  color: var(--text-dark);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.case:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,0.18);
}
.case-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #1a1a1a;
  overflow: hidden;
}
.case-media-stripes {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 18px),
    radial-gradient(ellipse at 70% 30%, rgba(230,48,39,0.2), transparent 60%),
    linear-gradient(180deg, #1a1a1a, #050505);
}
.case-media-label {
  position: absolute;
  left: 20px; bottom: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
}
.case-body { padding: 28px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.case-brand {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dark-dim);
}
.case-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
  color: var(--text-dark);
}
.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-top: auto;
}
.case-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  line-height: 1.15;
}
.case-num-lbl {
  font-size: 11px;
  color: var(--text-dark-dim);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.case-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.case-link span { transition: transform 0.2s var(--ease); }
.case-link:hover span { transform: translateX(4px); }
.cases-cta {
  text-align: center;
  margin-top: 56px;
}

@media (max-width: 1024px) {
  .cases-grid { grid-template-columns: 1fr; }
}

/* ===== Process timeline ===== */
.process {
  position: relative;
  padding: var(--pad-section) 0;
  background: var(--bg);
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(230,48,39,0.05), transparent 70%);
  pointer-events: none;
}
.process > .container { position: relative; z-index: 1; }
.timeline {
  list-style: none;
  margin: 0;
  padding: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--accent) 8%, var(--accent) 92%, transparent 100%);
  opacity: 0.6;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 16px;
  position: relative;
}
.step::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px var(--accent);
  z-index: 1;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 18px;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 20px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .timeline { grid-template-columns: 1fr; gap: 24px; padding-top: 16px; }
  .timeline::before {
    top: 0; bottom: 0;
    left: 30px; right: auto;
    width: 1px; height: auto;
    background: linear-gradient(to bottom, transparent 0%, var(--accent) 8%, var(--accent) 92%, transparent 100%);
  }
  .step { padding: 0 0 0 70px; }
  .step::before {
    top: 22px;
    left: 30px;
    transform: translate(-50%, 0);
  }
  .step-num { font-size: 36px; margin-bottom: 0; }
  .step-title { margin-top: 4px; }
}

/* ===== Why ===== */
.why {
  position: relative;
  padding: var(--pad-section) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(230,48,39,0.06), transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 100%, rgba(230,48,39,0.04), transparent 60%);
  pointer-events: none;
}
.why > .container { position: relative; z-index: 1; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.why-card {
  background: var(--bg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s var(--ease);
}
.why-card:hover { background: var(--bg-1); }
.why-ico {
  color: var(--accent);
  margin-bottom: 12px;
}
.why-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.015em;
  margin: 0;
  color: #fff;
}
.why-desc {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ===== CTA banner ===== */
.cta-banner {
  position: relative;
  padding: 140px var(--pad-x);
  overflow: hidden;
  background: #000;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg .trail-1 { top: 28%; }
.cta-bg .trail-2 { top: 54%; }
.cta-bg .trail-3 { top: 78%; }
.cta-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(0,0,0,0.5) 70%, #000 100%),
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(230,48,39,0.15), transparent 70%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 900px;
}
.cta-lead {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--text-dim);
  margin: 0 0 16px;
  max-width: 600px;
}

/* ===== Footer ===== */
.ftr {
  background: #050505;
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
}
.ftr-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr 0.8fr;
  gap: 48px;
  padding-bottom: 56px;
}
.ftr-brand { display: flex; flex-direction: column; gap: 20px; }
.ftr-tag {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
  max-width: 260px;
  line-height: 1.5;
}
.ftr-social { display: flex; gap: 10px; margin-top: 8px; }
.ftr-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: all 0.2s var(--ease);
}
.ftr-social a:hover { border-color: var(--accent); color: var(--accent); }
.ftr-col { display: flex; flex-direction: column; gap: 12px; }
.ftr-h {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.ftr-col a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.18s var(--ease);
}
.ftr-col a:hover { color: #fff; }
.ftr-col a.is-active { color: #fff; }
.ftr-addr { font-size: 13px; color: var(--text-dim-2); margin: 4px 0 0; }
.ftr-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  font-size: 12px;
  color: var(--text-dim-2);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}
.ftr-bottom a:hover { color: #fff; }

@media (max-width: 1024px) {
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ftr-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .ftr-grid { grid-template-columns: 1fr; }
  .ftr-bottom { flex-direction: column; gap: 8px; }
}

/* ===== Floating ===== */
.float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.float-main {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(230,48,39,0.4), 0 0 0 0 rgba(230,48,39,0.5);
  position: relative;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
  animation: floatPulse 2.4s var(--ease) infinite;
}
.float-main:hover { background: var(--accent-hover); transform: scale(1.06); }
.float-status {
  position: absolute;
  top: 4px; right: 4px;
  width: 10px; height: 10px;
  background: #28d166;
  border: 2px solid #050505;
  border-radius: 50%;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(230,48,39,0.4), 0 0 0 0 rgba(230,48,39,0.5); }
  50% { box-shadow: 0 12px 32px rgba(230,48,39,0.4), 0 0 0 14px rgba(230,48,39,0); }
}
.float-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.float.is-open .float-list { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-item {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #050505;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: all 0.18s var(--ease);
}
.float-item:hover { background: var(--accent); color: #fff; transform: scale(1.06); }

/* ===== Cookie ===== */
.cookie {
  position: fixed;
  left: 24px; bottom: 24px;
  z-index: 59;
  background: rgba(10,10,10,0.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-dim);
  max-width: calc(100vw - 120px);
  transform: translateY(0);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.cookie.is-hidden { transform: translateY(150%); opacity: 0; pointer-events: none; }
@media (max-width: 640px) {
  .cookie { left: 12px; right: 88px; max-width: none; bottom: 12px; }
}

/* ===== Modal ===== */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
}
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.2s var(--ease);
}
.modal-card {
  position: relative;
  z-index: 1;
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 560px;
  width: calc(100% - 32px);
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cardIn 0.3s var(--ease);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  font-size: 22px;
  color: var(--text-dim);
  border-radius: 50%;
  transition: all 0.18s var(--ease);
}
.modal-close:hover { background: rgba(255,255,255,0.06); color: #fff; }
.modal-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.025em;
  margin: 4px 0 0;
}
.modal-sub { color: var(--text-dim); margin: -4px 0 16px; font-size: 14px; }
.modal-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field span { font-size: 12px; color: var(--text-dim); font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; }
.field-full { grid-column: 1 / -1; }
.field input,
.field select,
.field textarea {
  background: #050505;
  border: 1px solid var(--border-strong);
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.18s var(--ease);
}
.field textarea { resize: vertical; min-height: 80px; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent); }
.modal-form .btn { grid-column: 1 / -1; margin-top: 6px; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(8px) scale(0.99); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes lineIn { to { transform: scaleX(1); } }

/* ===== Reveal on scroll ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* hide modal when not open */
.modal[hidden] { display: none; }

/* ===== Scroll-reveal animation (added in v2) ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
