/* ============================================================
   DISTRICT SENSATION v2 — style.css
   Brutalist + high-fashion + tech
   Bebas Neue (display) + Space Grotesk (body) + Space Mono (accent)
   ============================================================ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --black:    #0b0b0b;
  --white:    #F2EDE6;
  --accent:   #00e0ff;
  --dim:      #1A1A1A;
  --muted:    #555555;
  --border:   rgba(242, 237, 230, 0.08);
  --border-m: rgba(242, 237, 230, 0.15);

  --f-display: 'Bebas Neue', sans-serif;
  --f-body:    'Space Grotesk', sans-serif;
  --f-mono:    'Space Mono', monospace;

  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 1, 1);

  --nav-h: 64px;
}

/* ─── IMPACT CANVAS ─── */
.impact__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.impact__badge,
.impact__headline-wrap,
.impact__sub-wrap,
.impact__scroll-hint {
  position: relative;
  z-index: 1;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }

/* ─── CURSOR ─── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
  mix-blend-mode: difference;
}

.cursor-trail {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(214, 242, 51, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.12s var(--ease), top 0.12s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  body.cursor-enabled,
  body.cursor-enabled a,
  body.cursor-enabled button,
  body.cursor-enabled .nav__burger,
  body.cursor-enabled .service-row,
  body.cursor-enabled .cg__cell,
  body.cursor-enabled .clients__nav-btn,
  body.cursor-enabled .form-field input,
  body.cursor-enabled .form-field textarea,
  body.cursor-enabled .form-field select,
  body.cursor-enabled .custom-select__trigger,
  body.cursor-enabled .custom-select__option,
  body.cursor-enabled .contact__submit {
    cursor: none;
  }

  body.cursor-enabled:has(a:hover) .cursor,
  body.cursor-enabled:has(button:hover) .cursor { width: 20px; height: 20px; }
  body.cursor-enabled:has(a:hover) .cursor-trail,
  body.cursor-enabled:has(button:hover) .cursor-trail { width: 60px; height: 60px; opacity: 0.5; }
}

@media (hover: none), (pointer: coarse) {
  .cursor,
  .cursor-trail {
    display: none;
  }
}

/* ─── NOISE OVERLAY ─── */
.noise {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9990;
  animation: noise-shift 8s steps(2) infinite;
}

.page-progress {
  position: fixed;
  top: calc(var(--nav-h) + 20px);
  right: 18px;
  bottom: 24px;
  width: 1px;
  z-index: 120;
  pointer-events: none;
}

.page-progress__track,
.page-progress__bar {
  position: absolute;
  left: 0;
  width: 100%;
  border-radius: 999px;
}

.page-progress__track {
  top: 0;
  bottom: 0;
  background: rgba(242, 237, 230, 0.08);
}

.page-progress__bar {
  top: 0;
  height: 0%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(0, 224, 255, 0.45);
  transition: height 0.12s linear;
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 224, 255, 0.22);
  background: rgba(8, 8, 8, 0.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--white);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  z-index: 121;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), border-color 0.28s, background 0.28s;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  border-color: rgba(0, 224, 255, 0.44);
  background: rgba(10, 10, 10, 0.9);
}

.back-to-top__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.back-to-top__icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}

.back-to-top__icon svg {
  width: 100%;
  height: 100%;
}

@keyframes noise-shift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-1%, -1%); }
  50%  { transform: translate(1%, 0); }
  75%  { transform: translate(0, 1%); }
  100% { transform: translate(-1%, 1%); }
}

/* ─── INTRO SCREEN ─── */
.intro {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.intro__status,
.intro__orbit,
.intro__line,
.intro__bar {
  position: relative;
  z-index: 1;
}

.intro__status {
  position: absolute;
  top: clamp(26px, 4vw, 42px);
  left: clamp(22px, 4vw, 48px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.56);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s var(--ease);
}

.intro__status.visible {
  opacity: 1;
  transform: translateY(0);
}

.intro__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(0, 224, 255, 0.45);
  animation: intro-pulse 1.2s ease-in-out infinite;
}

.intro__orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(180px, 24vw, 320px);
  height: clamp(180px, 24vw, 320px);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.intro__orbit.visible {
  opacity: 1;
}

.intro__orbit-ring,
.intro__orbit-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.intro__orbit-ring {
  border: 1px solid rgba(0, 224, 255, 0.16);
}

.intro__orbit-ring::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(0, 224, 255, 0.4);
  transform-origin: 0 calc(-1 * clamp(90px, 12vw, 160px));
  animation: intro-orbit 2.4s linear infinite;
}

.intro__orbit-core {
  inset: 20%;
  background: radial-gradient(circle, rgba(0, 224, 255, 0.12) 0%, rgba(0, 224, 255, 0) 70%);
  filter: blur(10px);
}

.intro__line {
  font-family: var(--f-display);
  font-size: clamp(60px, 15vw, 180px);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 0.9;
  overflow: hidden;
  transform: translateY(110%);
  transition: transform 0.8s var(--ease);
}

.intro__line.visible {
  transform: translateY(0);
}

.intro__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  transition: width 0.9s var(--ease);
}

.intro.exit {
  transform: translateY(-100%);
  transition: transform 0.8s var(--ease-in);
}

@keyframes intro-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.45); opacity: 1; }
}

@keyframes intro-orbit {
  from { transform: rotate(0deg) translateY(calc(-1 * clamp(90px, 12vw, 160px))) rotate(0deg); }
  to { transform: rotate(360deg) translateY(calc(-1 * clamp(90px, 12vw, 160px))) rotate(-360deg); }
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(11, 11, 11, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(242, 237, 230, 0.05);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), background 0.3s;
  pointer-events: none;
}

.nav.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__logo {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--white);
  opacity: 0.9;
  text-transform: uppercase;
}

.nav__location {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  opacity: 0.5;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  flex-shrink: 0;
  border: 1px solid rgba(242, 237, 230, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lang-switch__btn {
  min-width: 42px;
  padding: 7px 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.55);
  transition: color 0.28s ease, background 0.28s ease, opacity 0.28s ease;
}

.lang-switch__btn:hover {
  color: var(--white);
}

.lang-switch__btn.active {
  color: var(--black);
  background: var(--accent);
}

.nav__link {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--white);
  opacity: 0.35;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
  transition: opacity 0.3s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav__link:hover { opacity: 1; }
.nav__link:hover::after { transform: scaleX(1); }

.nav__link.active {
  opacity: 0.95;
}

.nav__link.active::after {
  transform: scaleX(1);
  background: var(--accent);
}

.nav__link--cta {
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  background-image: linear-gradient(to right, var(--accent) 50%, transparent 50%);
  background-size: 201% 100%;
  background-position: 100% 0;
  border: 1.5px solid var(--accent);
  padding: 8px 18px;
  border-radius: 0;
  box-shadow: 0 0 16px rgba(0, 224, 255, 0.07);
  transition: opacity 0.2s, color 0.3s, background-position 0.38s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
}

.nav__link--cta::before { display: none; }
.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  opacity: 1;
  color: var(--black);
  background-position: 0 0;
  transform: translate3d(var(--mx, 0), calc(var(--my, 0) - 2px), 0);
  box-shadow: 0 12px 30px rgba(0, 224, 255, 0.24);
}

.nav__link-mark,
.impact__cta-arrow,
.service-row__arrow,
.work-row__arrow,
.contact__info-arrow,
.contact__submit-arrow,
.footer__link-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex: 0 0 auto;
}

.nav__link-mark svg,
.impact__cta-arrow svg,
.service-row__arrow svg,
.work-row__arrow svg,
.contact__info-arrow svg,
.contact__submit-arrow svg,
.footer__link-mark svg {
  width: 16px;
  height: 16px;
  display: block;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__burger span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav__burger.open span:first-child { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:last-child  { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile-link {
  font-family: var(--f-display);
  font-size: clamp(40px, 10vw, 80px);
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.2s;
}

.nav__mobile-link:hover { color: var(--accent); }
.nav__mobile-link.active { color: var(--accent); }

.nav__mobile-link--cta {
  color: var(--accent);
}

.nav__mobile-link--cta:hover {
  color: var(--white);
}

.lang-switch--mobile {
  margin-top: 8px;
  justify-content: center;
}

.lang-switch--mobile .lang-switch__btn {
  min-width: 60px;
  padding: 10px 14px;
  font-size: 11px;
}

/* ─── SECTION NUM ─── */
.section-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.7;
  display: block;
  margin-bottom: 24px;
}

/* ─── SECTION 01 — IMPACT ─── */
.impact {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 48px 80px;
  position: relative;
  overflow: hidden;
}

.impact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.impact__badge {
  position: absolute;
  top: calc(var(--nav-h) + 32px);
  right: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.impact__badge span + span::before {
  content: '/';
  margin-right: 8px;
  opacity: 0.3;
}

.impact__badge span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.impact__headline-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.impact__primary {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0.88;
  will-change: transform;
  font-size: inherit;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

.impact__primary-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  overflow: hidden;
  padding-top: clamp(12px, 3vw, 50px);
  margin-top: clamp(-12px, -3vw, -50px);
}

.impact__primary-row--offset {
  padding-left: clamp(32px, 6vw, 100px);
}

.impact__primary-row--right {
  justify-content: flex-end;
}

.impact__char-group {
  font-family: var(--f-display);
  font-size: clamp(68px, 13vw, 190px);
  letter-spacing: -0.01em;
  display: inline-block;
  color: var(--white);
  opacity: 0;
  transform: translateY(105%) skewY(4deg);
  transition: transform 0.85s var(--ease), opacity 0.5s var(--ease), color 0.3s;
}

.impact__char-group.visible {
  opacity: 1;
  transform: translateY(0) skewY(0deg);
}

.impact__char-group--stroke {
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
}

.impact__char-group--stroke.visible {
  color: transparent;
}

.impact__char-group--accent {
  color: var(--accent);
}

.impact__char-group--dim {
  color: var(--muted);
  font-size: clamp(50px, 9vw, 130px);
}

.impact__char-group--ghost {
  -webkit-text-stroke: 1px rgba(242, 237, 230, 0.18);
  color: transparent;
  font-size: clamp(74px, 14.5vw, 210px);
}

.impact__char-group--ghost.visible {
  color: transparent;
}

.impact__char-group:hover {
  letter-spacing: 0.01em;
  transition: letter-spacing 0.4s var(--ease), transform 0.85s var(--ease), opacity 0.5s var(--ease), color 0.3s;
}

.impact__secondary {
  position: relative;
  font-family: var(--f-body);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 400;
  color: rgba(242, 237, 230, 0.78);
  line-height: 1.45;
  max-width: 260px;
  padding-left: 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  margin-top: auto;
  padding-top: 32px;
}

.impact__secondary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 32px;
  width: 1px;
  bottom: 0;
  height: auto;
  background: rgba(0, 224, 255, 0.3);
}

.impact__secondary.visible {
  opacity: 1;
  transform: translateY(0);
}

.impact__sub-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 48px;
  flex-wrap: wrap;
  gap: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.impact__sub-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

.impact__meta {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 10px 18px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  justify-content: end;
  text-align: right;
}

.impact__meta span {
  display: block;
  line-height: 1.4;
}

.impact__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background-image: linear-gradient(to right, var(--accent) 50%, transparent 50%);
  background-size: 201% 100%;
  background-position: 100% 0;
  padding: 18px 38px;
  border: 1.5px solid var(--accent);
  white-space: nowrap;
  box-shadow:
    0 0 28px rgba(0, 224, 255, 0.08),
    inset 0 0 28px rgba(0, 224, 255, 0.03);
  transition: color 0.3s, background-position 0.42s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
}

.impact__cta::before { display: none; }
.impact__cta::after { display: none; }

.impact__cta:hover {
  color: var(--black);
  background-position: 0 0;
  transform: translate3d(var(--mx, 0), calc(var(--my, 0) - 3px), 0);
  box-shadow: 0 14px 46px rgba(0, 224, 255, 0.24);
}

.impact__cta-text,
.impact__cta-arrow {
  position: relative;
  z-index: 1;
}

.impact__cta-arrow {
  font-size: 16px;
  transition: transform 0.3s var(--ease);
}

.impact__cta:hover .impact__cta-arrow {
  transform: translateX(4px);
}

.impact__scroll-hint {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.impact__scroll-hint span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.impact__scroll-line {
  width: 1px;
  height: 48px;
  background: var(--accent);
  opacity: 0.4;
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.1; transform: scaleY(0.3); transform-origin: top; }
  50%      { opacity: 0.5; transform: scaleY(1); transform-origin: top; }
}

/* ─── MARQUEE ─── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.ticker-row {
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}

.ticker-row--top {
  border-bottom: 1px solid var(--border);
}

.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  will-change: transform;
}

.ticker-track--fwd {
  animation: ticker-fwd 28s linear infinite;
}

.ticker-track--rev {
  animation: ticker-rev 22s linear infinite;
}

.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-track span {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 237, 230, 0.15);
  white-space: nowrap;
  padding: 0 40px;
  transition: color 0.3s, -webkit-text-stroke 0.3s;
  line-height: 1;
}

.ticker-track span:hover {
  color: var(--white);
  -webkit-text-stroke: 1px transparent;
}

.ticker-row--bottom .ticker-track span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 224, 255, 0.2);
  font-size: clamp(36px, 5vw, 72px);
}

.ticker-row--bottom .ticker-track span:hover {
  color: var(--accent);
  -webkit-text-stroke: 1px transparent;
}

@keyframes ticker-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes ticker-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ─── STATS ─── */
.stats {
  padding: 120px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.stats__visual {
  position: relative;
}

.stats__visual-frame {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(242, 237, 230, 0.08);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  background:
    radial-gradient(circle at top left, rgba(0,224,255,0.18), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 24px 48px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.stats__visual-frame::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(242, 237, 230, 0.05);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.stats__visual-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(rgba(242, 237, 230, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 237, 230, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 88%);
  pointer-events: none;
}

.stats__visual-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats__visual-map::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 70% 65% at center, transparent 0%, rgba(11,11,11,0.3) 55%, rgba(11,11,11,0.65) 75%, rgba(11,11,11,0.82) 100%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .stats__visual-map::after {
    display: none;
  }
}

.stats__leaflet {
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  background: #0a0a0a;
}

.stats__leaflet .leaflet-control-container,
.stats__leaflet .leaflet-bottom,
.stats__leaflet .leaflet-top {
  display: none;
}

.stats__leaflet .leaflet-tile-pane {
  opacity: 0.95;
  filter: brightness(0.85) contrast(1.2) saturate(0.5);
}

.stats__leaflet .leaflet-marker-pane {
  filter: none;
  z-index: 650 !important;
  position: relative;
}

.stats__leaflet .leaflet-tile {
  image-rendering: auto;
}

.stats-map-marker {
  position: relative;
  width: 28px;
  height: 64px;
}

.stats-map-marker__dot,
.stats-map-marker__pulse,
.stats-map-marker__stem {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.stats-map-marker__dot {
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(0, 224, 255, 0.85);
}

.stats-map-marker__pulse {
  top: -8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 224, 255, 0.12);
  border: 1px solid rgba(0, 224, 255, 0.45);
  animation: map-ping 2s ease-out infinite;
}

.stats-map-marker__stem {
  top: 9px;
  width: 1px;
  height: 36px;
  background: rgba(0, 224, 255, 0.72);
}

.stats__visual-chip {
  position: absolute;
  z-index: 4;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.62);
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(242, 237, 230, 0.08);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.stats__visual-chip--tl { top: 22px; left: 22px; }
.stats__visual-chip--tr { top: 22px; right: 22px; }
.stats__visual-chip--ml { top: 50%; left: 18px; transform: translateY(-50%); }
.stats__visual-chip--mr { top: 50%; right: 18px; transform: translateY(-50%); }
.stats__visual-chip--bl { left: 22px; bottom: 22px; }
.stats__visual-chip--br { right: 22px; bottom: 22px; }

@keyframes map-ping {
  0% { transform: translateX(-50%) scale(0.35); opacity: 0.8; }
  70% { transform: translateX(-50%) scale(1.25); opacity: 0; }
  100% { transform: translateX(-50%) scale(1.25); opacity: 0; }
}

.stats__visual-tags {
  position: absolute;
  z-index: 4;
  right: 24px;
  top: 72px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 148px;
}

.stats__visual-tags span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.52);
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(242, 237, 230, 0.06);
}

.stats__statement {
  max-width: 480px;
}

.stats__statement p {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--muted);
}

.stats__statement em {
  font-style: normal;
  color: var(--white);
}


/* ─── PINNED SCROLL SECTION ─── */
.pin-section {
  height: 300vh;
  position: relative;
}

.pin-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.pin-word-wrap {
  position: relative;
  height: clamp(100px, 18vw, 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.pin-word {
  position: absolute;
  font-family: var(--f-display);
  font-size: clamp(72px, 16vw, 220px);
  letter-spacing: -0.01em;
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(60px) skewY(3deg);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  pointer-events: none;
  will-change: transform, opacity;
}

.pin-word.active {
  opacity: 1;
  transform: translateY(0) skewY(0deg);
}

.pin-word.exit {
  opacity: 0;
  transform: translateY(-60px) skewY(-3deg);
  transition: opacity 0.35s var(--ease-in), transform 0.35s var(--ease-in);
}

.pin-word[data-step="0"] { color: var(--muted); -webkit-text-stroke: 1px var(--muted); }
.pin-word[data-step="1"] { color: var(--white); }
.pin-word[data-step="2"] { color: var(--accent); }

.pin-sub-wrap {
  position: relative;
  height: 60px;
  margin-top: 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pin-sub {
  position: absolute;
  font-family: var(--f-body);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 300;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  transition-delay: 0.15s;
}

.pin-sub.active {
  opacity: 1;
  transform: translateY(0);
}

.pin-sub.exit {
  opacity: 0;
  transform: translateY(-10px);
  transition-delay: 0s;
}

.pin-progress {
  position: absolute;
  bottom: 48px;
  left: 48px;
  right: 48px;
  height: 1px;
  background: var(--border);
}

.pin-progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.1s linear;
  transform-origin: left;
}

.pin-steps {
  position: absolute;
  bottom: 64px;
  right: 48px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.pin-step-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.3;
  transition: opacity 0.3s, background 0.3s, width 0.3s var(--ease);
}

.pin-step-dot.active {
  opacity: 1;
  background: var(--accent);
  width: 20px;
  border-radius: 2px;
}

@media (max-width: 767px) {
  .pin-section { height: 190vh; }
  .pin-word-wrap { height: clamp(82px, 22vw, 132px); }
  .pin-word { font-size: clamp(58px, 15vw, 92px); }
  .pin-sub-wrap {
    height: 52px;
    margin-top: 22px;
    padding: 0 24px;
  }
  .pin-sub {
    font-size: 13px;
    line-height: 1.55;
    max-width: 260px;
  }
  .pin-progress { left: 20px; right: 20px; bottom: 40px; }
  .pin-steps { right: 20px; bottom: 32px; }
}

/* ─── SERVICES ─── */
.services {
  padding: 120px 48px;
  border-bottom: 1px solid var(--border);
}

.services__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px;
}

.services__num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
  padding-top: 12px;
  opacity: 0.7;
}

.services__title {
  font-family: var(--f-display);
  font-size: clamp(64px, 11vw, 160px);
  letter-spacing: -0.02em;
  line-height: 0.88;
  color: var(--white);
  text-align: right;
}

.services__title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
  font-family: var(--f-display);
}

.services__list {
  display: flex;
  flex-direction: column;
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 48px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: padding-left 0.4s var(--ease);
}

.service-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--accent);
  transition: width 0.5s var(--ease);
}

.service-row::after {
  content: attr(data-index);
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-display);
  font-size: clamp(80px, 12vw, 160px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 237, 230, 0.04);
  line-height: 1;
  pointer-events: none;
  transition: -webkit-text-stroke 0.4s var(--ease), transform 0.4s var(--ease);
  letter-spacing: -0.02em;
}

.service-row:hover { padding-left: 16px; }
.service-row:hover::before { width: 100%; }
.service-row:hover::after {
  -webkit-text-stroke: 1px rgba(0, 224, 255, 0.12);
  transform: translateY(-50%) scale(1.05);
}

.service-row__num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
  opacity: 0.4;
  transition: opacity 0.3s;
}

.service-row:hover .service-row__num { opacity: 1; }

.service-row__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-row__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 0em;
  line-height: 0.95;
  color: var(--white);
  transition: color 0.3s, letter-spacing 0.4s var(--ease);
}

.service-row:hover .service-row__title {
  color: var(--accent);
  letter-spacing: 0.02em;
}

.service-row__body {
  font-size: 14px;
  font-weight: 400;
  color: rgba(242, 237, 230, 0.62);
  max-width: 420px;
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  transform: translateY(-6px);
  transition: opacity 0.4s var(--ease), max-height 0.4s var(--ease), transform 0.4s var(--ease);
  overflow: hidden;
}

.service-row:hover .service-row__body {
  opacity: 1;
  max-height: 120px;
  transform: translateY(0);
}

.service-row__tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s;
  max-width: 230px;
}

.service-row:hover .service-row__tags { opacity: 1; }

.service-row__tags span {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.5;
  white-space: nowrap;
}

.service-row__arrow {
  font-size: 20px;
  color: var(--muted);
  transition: color 0.3s, transform 0.4s var(--ease);
  align-self: center;
  justify-self: end;
  opacity: 0.4;
}

.service-row:hover .service-row__arrow {
  color: var(--accent);
  opacity: 1;
  transform: translateX(2px);
}

.services__system {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.services__system-line {
  width: min(16vw, 120px);
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(90deg, rgba(0, 224, 255, 0.5), transparent);
}

.services__system-text {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.6;
  color: rgba(242, 237, 230, 0.5);
  text-align: left;
}

/* ─── WORK ─── */
/* ─── CLIENT GRID ─── */
.cg {
  padding: 120px 48px;
  border-bottom: 1px solid var(--border);
}

.cg__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 40px;
}

.cg__kicker {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  padding-top: 12px;
}

.cg__title {
  font-family: var(--f-display);
  font-size: clamp(52px, 7vw, 110px);
  letter-spacing: -0.025em;
  line-height: 0.88;
  color: var(--white);
  text-align: right;
}

.cg__title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
}

.cg__frame {
  position: relative;
  padding: 0;
  overflow: visible;
}

/* Outer glow layer */
.cg__frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  pointer-events: none;
  z-index: 0;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
  background: linear-gradient(
    135deg,
    rgba(0, 224, 255, 0.55) 0%,
    rgba(0, 224, 255, 0.08) 40%,
    rgba(0, 224, 255, 0.08) 60%,
    rgba(0, 224, 255, 0.45) 100%
  );
  filter: blur(1px);
}

/* Inner border layer */
.cg__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
  border: 1px solid rgba(0, 224, 255, 0.45);
  background: none;
  box-shadow:
    0 0 80px rgba(0, 224, 255, 0.12),
    0 0 160px rgba(0, 224, 255, 0.06),
    inset 0 0 60px rgba(0, 0, 0, 0.5);
}

/* Corner accents — top-left, top-right, bottom-left, bottom-right */
.cg__frame .cg__corner {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 3;
}
.cg__frame .cg__corner--tl { top: -1px;  left: -1px;  border-top: 2px solid rgba(0,224,255,0.9); border-left: 2px solid rgba(0,224,255,0.9); }
.cg__frame .cg__corner--tr { top: -1px;  right: -1px; border-top: 2px solid rgba(0,224,255,0.9); border-right: 2px solid rgba(0,224,255,0.9); }
.cg__frame .cg__corner--bl { bottom: -1px; left: -1px;  border-bottom: 2px solid rgba(0,224,255,0.9); border-left: 2px solid rgba(0,224,255,0.9); }
.cg__frame .cg__corner--br { bottom: -1px; right: -1px; border-bottom: 2px solid rgba(0,224,255,0.9); border-right: 2px solid rgba(0,224,255,0.9); }

/* Grid */
.cg__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 1px;
  background: rgba(0, 224, 255, 0.12);
  border: 1px solid rgba(0, 224, 255, 0.2);
  position: relative;
  z-index: 1;
  overflow: visible;
  box-shadow:
    0 0 0 1px rgba(0, 224, 255, 0.08),
    0 0 60px rgba(0, 224, 255, 0.04),
    inset 0 0 40px rgba(0, 0, 0, 0.4);
}

/* Cell */
.cg__cell {
  position: relative;
  background: #0a0a0a;
  isolation: isolate;
  z-index: 1;
  transition: transform 0.45s var(--ease),
              opacity 0.45s var(--ease),
              background 0.45s var(--ease),
              box-shadow 0.45s var(--ease),
              border-color 0.45s var(--ease);
}

/* Subtle top accent on every cell by default */
.cg__cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(0,224,255,0.6);
  transition: width 0.5s var(--ease);
  z-index: 3;
}

.cg__cell.active::before { width: 100%; }

/* Corner accent on each cell */
.cg__cell-content::before {
  content: '';
  position: absolute;
  top: 12px; right: 12px;
  width: 6px; height: 6px;
  border-top: 1px solid rgba(0, 224, 255, 0.25);
  border-right: 1px solid rgba(0, 224, 255, 0.25);
  pointer-events: none;
  z-index: 5;
}

.cg__cell-content::after {
  content: '';
  position: absolute;
  bottom: 12px; left: 12px;
  width: 6px; height: 6px;
  border-bottom: 1px solid rgba(0, 224, 255, 0.25);
  border-left: 1px solid rgba(0, 224, 255, 0.25);
  pointer-events: none;
  z-index: 5;
}

.cg__grid.has-hover .cg__cell:not(.active) {
  background:
    linear-gradient(180deg, rgba(0, 224, 255, 0.035) 0%, rgba(0, 224, 255, 0) 24%),
    linear-gradient(90deg, rgba(0, 224, 255, 0.012) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(0, 224, 255, 0.01) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 82% 18%, rgba(0, 224, 255, 0.03) 0%, rgba(0, 224, 255, 0) 34%),
    linear-gradient(145deg, #0b0e10 0%, #030405 100%);
  background-size: auto, 100% 100%, 100% 100%, auto, auto;
  box-shadow:
    inset 0 0 0 1px rgba(0, 224, 255, 0.05),
    inset 0 -68px 110px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    inset 0 0 16px rgba(0, 224, 255, 0.012),
    0 8px 16px rgba(0, 0, 0, 0.12);
  transform: scale(0.972);
}

.cg__grid.has-hover .cg__cell:not(.active)::after {
  inset: 10px;
  opacity: 1;
  border: 1px solid rgba(0, 224, 255, 0.05);
  background:
    linear-gradient(135deg, rgba(0, 224, 255, 0.045), transparent 22%),
    linear-gradient(315deg, rgba(0, 224, 255, 0.018), transparent 38%),
    repeating-linear-gradient(
      0deg,
      transparent 0 24px,
      rgba(0, 224, 255, 0.008) 24px 25px
    );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.008),
    0 0 8px rgba(0, 224, 255, 0.012);
}

.cg__grid.has-hover .cg__cell.active {
  outline: 1px solid rgba(0, 224, 255, 0.3);
  z-index: 4;
  transform: scale(1.085);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(0, 224, 255, 0.22),
    0 0 42px rgba(0, 224, 255, 0.14);
  transition: outline 0s;
}

/* Accent line top */
.cg__cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(0,224,255,0.6);
  transition: width 0.5s var(--ease);
  z-index: 3;
}

.cg__cell.active::before { width: 100%; }

/* Logo + meta — default state */
.cg__cell-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  transition: opacity 0.3s var(--ease),
              transform 0.3s var(--ease),
              filter 0.3s var(--ease);
  z-index: 2;
}

.cg__cell.active .cg__cell-content {
  opacity: 0;
  transform: scale(0.9);
}

.cg__grid:not(.has-hover) .cg__cell-content {
  align-items: center;
  justify-content: center;
  padding: 24px;
  filter: none;
}

.cg__grid:not(.has-hover) .cg__logo {
  position: static;
  top: auto;
  right: auto;
  left: auto;
  height: 52px;
  width: auto;
  max-width: 160px;
  max-height: none;
  object-position: center;
  opacity: 0.88;
  filter:
    brightness(0)
    invert(0.95)
    grayscale(1)
    contrast(1.08)
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.06));
  transform: none;
  mix-blend-mode: normal;
}

.cg__grid:not(.has-hover) .cg__meta {
  align-items: center;
  text-align: center;
  width: auto;
  gap: 4px;
}

.cg__grid:not(.has-hover) .cg__name {
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: normal;
  max-width: none;
  color: var(--white);
  opacity: 0.9;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.cg__grid:not(.has-hover) .cg__tags {
  display: block;
  width: auto;
  max-width: 100%;
  padding-top: 0;
  color: var(--accent);
  opacity: 0.5;
  letter-spacing: 0.12em;
  border-top: 0;
  text-shadow: none;
}

.cg__grid.has-hover .cg__cell:not(.active) .cg__cell-content {
  align-items: center;
  justify-content: center;
  padding: 24px;
  transform: none;
  filter: saturate(0.88);
}

/* Logo — beli, sa glow efektom na hover */
.cg__logo {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter:
    brightness(0)
    invert(0.95)
    grayscale(1)
    contrast(1.08)
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.05));
  opacity: 0.86;
  transition: opacity 0.35s var(--ease),
              filter 0.35s var(--ease),
              transform 0.35s var(--ease);
}

.cg__grid.has-hover .cg__cell:not(.active) .cg__logo {
  position: static;
  top: auto;
  right: auto;
  left: auto;
  height: 52px;
  width: auto;
  max-width: 160px;
  max-height: none;
  object-position: center;
  opacity: 0.18;
  filter:
    brightness(0)
    invert(0.92)
    grayscale(1)
    contrast(1.02)
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.03));
  transform: none;
  mix-blend-mode: normal;
}

.cg__cell:hover .cg__logo {
  opacity: 1;
  filter:
    brightness(0)
    invert(1)
    grayscale(1)
    contrast(1.12)
    drop-shadow(0 0 14px rgba(0, 224, 255, 0.14));
  transform: scale(1.06);
}

.cg__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.cg__grid.has-hover .cg__cell:not(.active) .cg__meta {
  align-items: center;
  text-align: center;
  width: auto;
  gap: 4px;
}

.cg__name {
  font-family: var(--f-display);
  font-size: clamp(14px, 1.4vw, 20px);
  letter-spacing: -0.01em;
  color: var(--white);
  opacity: 0.9;
  transition: color 0.35s var(--ease),
              opacity 0.35s var(--ease),
              text-shadow 0.35s var(--ease),
              -webkit-text-stroke 0.35s var(--ease);
}

.cg__grid.has-hover .cg__cell:not(.active) .cg__name {
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: normal;
  max-width: none;
  color: rgba(242, 237, 230, 0.52);
  opacity: 0.62;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

/* Tagovi — nikad ne prelaze u novi red */
.cg__tags {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  transition: opacity 0.35s var(--ease),
              letter-spacing 0.35s var(--ease),
              color 0.35s var(--ease);
}

.cg__grid.has-hover .cg__cell:not(.active) .cg__tags {
  display: block;
  width: auto;
  max-width: 100%;
  padding-top: 0;
  opacity: 0.24;
  color: rgba(0, 224, 255, 0.3);
  letter-spacing: 0.12em;
  border-top: 0;
  text-shadow: none;
}

/* Expand panel — shown on hover */
.cg__expand {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(
    160deg,
    rgba(0,224,255,0.06) 0%,
    rgba(0,0,0,0.92) 60%
  );
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  z-index: 2;
}

.cg__cell.active .cg__expand {
  opacity: 1;
  transform: translateY(0);
}

.cg__expand-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  margin-bottom: 12px;
}

.cg__expand-name {
  font-family: var(--f-display);
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
  flex: 0 1 auto;
}

.cg__expand-stat {
  font-family: var(--f-display);
  font-size: clamp(11px, 1vw, 15px);
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--accent);
  white-space: normal;
  text-align: left;
  max-width: 100%;
  flex: 0 1 auto;
  opacity: 0.92;
}

.cg__expand-desc {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(242,237,230,0.55);
  font-weight: 300;
  margin-bottom: 14px;
}

.cg__expand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  overflow: visible;
  align-items: flex-start;
}

.cg__expand-tags em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0,224,255,0.25);
  padding: 2px 7px;
  white-space: normal;
  line-height: 1.45;
  flex-shrink: 1;
}

/* Radial glow on active cell */
.cg__cell-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0,224,255,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 1;
}

.cg__cell.active .cg__cell-bg { opacity: 1; }

.cg__more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 32px 0 0;
  margin-top: 1px;
  border-top: 1px solid var(--border);
}

.cg__more-line {
  width: min(18vw, 140px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 224, 255, 0.45));
}

.cg__more-text {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.5);
}

.cg__more-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(0, 224, 255, 0.35);
}


@media (max-width: 680px) {
  .cg { padding: 80px 20px; }
  .cg__header { flex-direction: column; gap: 16px; }
  .cg__title { text-align: left; font-size: clamp(48px, 13vw, 80px); }
  .cg__frame { padding: 0; }
  .cg__frame::before {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  }
  .cg__frame::after {
    inset: 7px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .cg__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 200px);
    grid-auto-rows: 200px;
  }
  .cg__grid.has-hover .cg__cell.active {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
    transform: none;
  }
  .cg__cell-content {
    padding: 18px;
    gap: 12px;
  }
  .cg__logo {
    max-width: 118px;
    height: 44px;
  }
  .cg__name,
  .cg__grid:not(.has-hover) .cg__name,
  .cg__grid.has-hover .cg__cell:not(.active) .cg__name {
    font-size: 18px;
  }
  .cg__tags,
  .cg__grid:not(.has-hover) .cg__tags,
  .cg__grid.has-hover .cg__cell:not(.active) .cg__tags {
    font-size: 8px;
    letter-spacing: 0.1em;
  }
  .cg__expand {
    padding: 14px 14px 12px;
    justify-content: flex-end;
    overflow: hidden;
  }
  .cg__expand-header {
    gap: 4px;
    margin-bottom: 8px;
  }
  .cg__expand-name {
    font-size: 18px;
    line-height: 0.95;
  }
  .cg__expand-stat {
    font-size: 9px;
    line-height: 1.25;
    max-width: 100%;
  }
  .cg__expand-desc {
    font-size: 9px;
    line-height: 1.35;
    margin-bottom: 8px;
  }
  .cg__expand-tags {
    flex-wrap: wrap;
    gap: 4px;
    overflow: hidden;
  }
  .cg__expand-tags em {
    font-size: 7px;
    letter-spacing: 0.08em;
    padding: 2px 5px;
  }
}

@media (max-width: 400px) {
  .cg__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 180px);
    grid-auto-rows: 180px;
  }
  .cg__grid.has-hover .cg__cell.active {
    min-height: auto;
    transform: none;
  }
  .cg__cell-content {
    padding: 14px;
    gap: 10px;
  }
  .cg__logo {
    max-width: 96px;
    height: 36px;
  }
  .cg__name,
  .cg__grid:not(.has-hover) .cg__name,
  .cg__grid.has-hover .cg__cell:not(.active) .cg__name {
    font-size: 15px;
  }
  .cg__tags,
  .cg__grid:not(.has-hover) .cg__tags,
  .cg__grid.has-hover .cg__cell:not(.active) .cg__tags {
    font-size: 7px;
    letter-spacing: 0.08em;
  }
  .cg__expand {
    padding: 12px 12px 10px;
  }
  .cg__expand-name {
    font-size: 16px;
  }
  .cg__expand-stat {
    font-size: 8px;
    line-height: 1.2;
  }
  .cg__expand-desc {
    display: block;
    font-size: 8px;
    line-height: 1.3;
    margin-bottom: 6px;
  }
  .cg__expand-tags em {
    font-size: 6px;
    padding: 2px 4px;
  }
}


/* ─── CLIENTS / TESTIMONIALS ─── */
.clients {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 560px;
  border-bottom: 1px solid var(--border);
}

.clients__left {
  padding: 64px 48px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.clients__kicker {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

.clients__title {
  font-family: var(--f-display);
  font-size: clamp(56px, 6vw, 96px);
  letter-spacing: -0.025em;
  line-height: 0.88;
  color: var(--white);
  margin-top: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
}

.clients__title span {
  display: block;
}

.clients__title em {
  display: block;
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
}

.clients__nav {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.clients__nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.clients__nav-btn:hover {
  border-color: var(--accent);
  background: rgba(0, 224, 255, 0.06);
}

.clients__nav-btn svg {
  width: 20px;
  height: 20px;
}

.clients__stage {
  position: relative;
  overflow: hidden;
}

.clients__card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.clients__card.enter-prev {
  transform: translateX(-40px);
}

.clients__card.enter-next {
  transform: translateX(40px);
}

.clients__card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.clients__card.exit-next {
  opacity: 0;
  transform: translateX(-40px);
}

.clients__card.exit-prev {
  opacity: 0;
  transform: translateX(40px);
}

.clients__quote {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 48px;
  position: relative;
}

.clients__quote::before {
  content: '"';
  font-family: var(--f-display);
  font-size: 120px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: -10px;
  left: -24px;
  pointer-events: none;
}

.clients__author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}

.clients__author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.clients__author-info strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}

.clients__author-info span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.35);
}

@media (max-width: 768px) {
  .clients__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .clients__left {
    padding: 48px 24px 32px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .clients__title {
    font-size: clamp(52px, 14vw, 80px);
    display: block;
    margin-top: 16px;
  }

  .clients__nav {
    margin-top: 28px;
  }

  .clients__card {
    position: relative;
    inset: auto;
    padding: 40px 24px;
    opacity: 1;
    transform: none;
    display: none;
    pointer-events: auto;
  }

  .clients__card.active {
    display: flex;
    transform: none;
  }

  .clients__stage {
    min-height: 360px;
  }
}

/* ─── PROOF ─── */
.proof {
  position: relative;
  height: calc(2 * 100vh);
}

.proof__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.proof__row {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

.proof__row.active {
  opacity: 1;
  pointer-events: auto;
}

.proof__cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 4vw;
  border-right: 1px solid var(--border);
  height: 60%;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.proof__row.active .proof__cell {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger per cell */
.proof__row.active .proof__cell:nth-child(1) { transition-delay: 0s; }
.proof__row.active .proof__cell:nth-child(2) { transition-delay: 0.08s; }
.proof__row.active .proof__cell:nth-child(3) { transition-delay: 0.16s; }
.proof__row.active .proof__cell:nth-child(4) { transition-delay: 0.24s; }

.proof__cell:last-child {
  border-right: none;
}

.proof__eyebrow {
  font-family: var(--f-mono);
  font-size: clamp(9px, 0.75vw, 11px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: clamp(12px, 1.5vh, 24px);
}

.proof__number {
  font-family: var(--f-display);
  font-size: clamp(56px, 7vw, 110px);
  letter-spacing: -0.03em;
  line-height: 0.85;
  color: var(--white);
}

.proof__unit {
  color: var(--accent);
  font-size: 0.55em;
  vertical-align: baseline;
}

.proof__label {
  font-family: var(--f-body);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 300;
  color: rgba(242, 237, 230, 0.4);
  margin-top: clamp(10px, 1.5vh, 20px);
  letter-spacing: 0.02em;
}

.proof__rows-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.proof__row-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(242, 237, 230, 0.2);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.proof__row-dot.active {
  background: var(--accent);
  transform: scale(1.6);
  box-shadow: 0 0 8px rgba(0, 224, 255, 0.5);
}

.proof__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(242, 237, 230, 0.06);
}

.proof__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(0, 224, 255, 0.6);
  transition: width 0.1s linear;
}

@media (max-width: 768px) {
  .proof {
    height: 240svh;
    border-top: 1px solid var(--border);
    background:
      radial-gradient(circle at 18% 22%, rgba(0, 224, 255, 0.12), transparent 34%),
      radial-gradient(circle at 82% 78%, rgba(0, 224, 255, 0.07), transparent 30%),
      linear-gradient(180deg, #0f1113 0%, #090909 58%, #060606 100%);
  }
  .proof__sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    display: flex;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 24%),
      linear-gradient(90deg, rgba(0, 224, 255, 0.08), transparent 26%, transparent 74%, rgba(0, 224, 255, 0.06));
  }
  .proof__row {
    position: absolute;
    inset: 0;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    align-content: stretch;
    gap: 1px;
    background: var(--border);
    opacity: 0;
    pointer-events: none;
    padding: calc(var(--nav-h) + 20px) 0 56px;
  }
  .proof__cell {
    padding: 24px 20px;
    border-right: none;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.028) 0%, rgba(255, 255, 255, 0.01) 100%),
      rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
    height: 100%;
    min-height: 0;
    opacity: 0;
    transform: translateY(18px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .proof__number {
    font-size: clamp(42px, 12vw, 72px);
  }
  .proof__eyebrow {
    font-size: 9px;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
  }
  .proof__label {
    max-width: 14ch;
    font-size: 12px;
    line-height: 1.35;
    margin-top: 8px;
  }
  .proof__rows-indicator {
    bottom: 22px;
  }
  .proof__progress {
    display: block;
  }
}

/* ─── STATEMENT ─── */
.statement {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background: #0c0c0c;
}

/* Diagonal accent line */
.statement::after {
  content: '';
  position: absolute;
  top: 0;
  right: 18vw;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 224, 255, 0.12) 30%,
    rgba(0, 224, 255, 0.25) 50%,
    rgba(0, 224, 255, 0.12) 70%,
    transparent 100%
  );
  pointer-events: none;
}

/* Ghost DS watermark */
.statement__bg-text {
  position: absolute;
  bottom: -80px;
  right: -60px;
  font-family: var(--f-display);
  font-size: clamp(280px, 38vw, 600px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 237, 230, 0.04);
  pointer-events: none;
  user-select: none;
}

/* Top bar */
.statement__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.statement__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.3);
}

/* Main headline — takes up most of the space */
.statement__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 48px 0;
}

.statement__line {
  font-family: var(--f-display);
  font-size: clamp(72px, 12vw, 200px);
  letter-spacing: -0.025em;
  line-height: 0.88;
  color: var(--white);
  display: block;
  overflow: hidden;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.9s var(--ease), opacity 0.6s var(--ease);
}

.statement__line.visible {
  transform: translateY(0);
  opacity: 1;
}

.statement__line--stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.statement__line--accent {
  color: var(--accent);
}

/* Bottom bar — CTA + support text */
.statement__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.statement__support {
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.45;
  color: rgba(242, 237, 230, 0.72);
  font-weight: 400;
  max-width: 300px;
}

.statement__cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.statement__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 38px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background-image: linear-gradient(to right, var(--accent) 50%, transparent 50%);
  background-size: 201% 100%;
  background-position: 100% 0;
  border: 1.5px solid var(--accent);
  white-space: nowrap;
  box-shadow: 0 0 28px rgba(0, 224, 255, 0.08);
  opacity: 0;
  transform: translateY(12px);
  transition: color 0.3s, background-position 0.42s var(--ease),
              transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              opacity 0.6s var(--ease);
  transition-delay: 0.35s;
}

.statement__cta.visible { opacity: 1; transform: translateY(0); }
.statement__cta::before { display: none; }
.statement__cta::after  { display: none; }

.statement__cta:hover {
  color: var(--black);
  background-position: 0 0;
  transform: translateY(-2px);
  box-shadow: 0 12px 44px rgba(0, 224, 255, 0.22);
}

.statement__cta svg { transition: transform 0.3s var(--ease); }
.statement__cta:hover svg { transform: translateX(4px); }

.statement__cta-secondary {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.4);
  position: relative;
  transition: color 0.3s var(--ease);
}

.statement__cta-secondary::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}

.statement__cta-secondary:hover { color: var(--white); }
.statement__cta-secondary:hover::after { width: 100%; }

.statement__filter {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.2);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .statement {
    padding: 0 24px;
    min-height: 100svh;
  }

  .statement__line {
    font-size: clamp(64px, 18vw, 120px);
  }

  .statement__line--stroke {
    -webkit-text-stroke: 1.5px var(--white);
  }

  .statement__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .statement__filter {
    display: none;
  }

  .statement__bg-text {
    font-size: 55vw;
    bottom: -40px;
    right: -30px;
  }
}

/* ─── PROCESS ─── */
.process {
  position: relative;
  height: 300vh;
}

.process__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--border);
}

.process__track {
  display: flex;
  width: 300%;
  height: 100%;
  will-change: transform;
  transition: transform 0s;
}

.process__panel {
  width: calc(100% / 3);
  height: 100%;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  padding: 80px max(48px, 6vw);
  position: relative;
  border-right: 1px solid var(--border);
}

.process__panel:last-child {
  border-right: none;
}

.process__num {
  position: absolute;
  top: 50%;
  right: max(48px, 6vw);
  transform: translateY(-50%);
  font-family: var(--f-display);
  font-size: clamp(180px, 22vw, 320px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 237, 230, 0.05);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.process__content {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.process__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 32px;
}

.process__title {
  font-family: var(--f-display);
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 40px;
}

.process__body {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: rgba(242, 237, 230, 0.55);
  max-width: 420px;
  margin-bottom: 48px;
}

.process__detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process__detail span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.35);
  padding-left: 16px;
  border-left: 1px solid var(--accent);
  line-height: 1;
}

.process__index {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.2);
  align-self: end;
  padding-bottom: 8px;
}

.process__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(242, 237, 230, 0.06);
}

.process__progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.1s linear;
}

.process__dots {
  position: absolute;
  bottom: 32px;
  right: max(48px, 6vw);
  display: flex;
  gap: 8px;
}

.process__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(242, 237, 230, 0.2);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.process__dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

@media (max-width: 768px) {
  .process {
    height: 300svh;
  }

  .process__sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    overflow: hidden;
  }

  .process__track {
    flex-direction: row;
    width: 300%;
  }

  .process__panel {
    width: calc(100% / 3);
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    padding: calc(var(--nav-h) + 28px) 24px 72px;
    border-right: 1px solid var(--border);
    border-bottom: none;
    height: 100%;
  }

  .process__num {
    position: absolute;
    top: auto;
    right: 20px;
    bottom: 108px;
    transform: none;
    font-size: clamp(104px, 28vw, 160px);
    color: transparent;
    -webkit-text-stroke: 1px rgba(242, 237, 230, 0.08);
    margin-bottom: 0;
  }

  .process__content {
    max-width: 100%;
    justify-content: flex-start;
    padding-right: 14vw;
  }

  .process__label {
    margin-bottom: 20px;
  }

  .process__title {
    font-size: clamp(42px, 12vw, 64px);
    margin-bottom: 24px;
  }

  .process__body {
    font-size: 14px;
    line-height: 1.6;
    max-width: 30ch;
    margin-bottom: 28px;
  }

  .process__detail {
    gap: 8px;
  }

  .process__detail span {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .process__index {
    padding-bottom: 0;
  }

  .process__dots {
    display: flex;
    right: 24px;
    bottom: 24px;
  }

  .process__progress {
    display: block;
  }
}

/* ─── CONTACT ─── */
.contact {
  padding: 120px 48px;
  border-bottom: 1px solid var(--border);
}

.contact__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px;
}

.contact__num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
  padding-top: 12px;
  opacity: 0.7;
}

.contact__title {
  font-family: var(--f-display);
  font-size: clamp(64px, 11vw, 160px);
  letter-spacing: -0.02em;
  line-height: 0.88;
  color: var(--white);
  text-align: right;
}

.contact__title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
}

html:lang(sr) .services__title,
html:lang(sr) .cg__title,
html:lang(sr) .clients__title,
html:lang(sr) .process__title,
html:lang(sr) .contact__title {
  letter-spacing: 0;
  line-height: 0.96;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

html:lang(sr) .services__title em,
html:lang(sr) .cg__title em,
html:lang(sr) .clients__title em,
html:lang(sr) .contact__title em {
  -webkit-text-stroke-width: 1px;
}

.contact__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
}

.contact__info-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: padding-left 0.35s var(--ease);
  overflow: hidden;
}

.contact__info-row::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0%; height: 1px;
  background: var(--accent);
  transition: width 0.45s var(--ease);
}

.contact__info-row:not(.contact__info-row--plain):hover {
  padding-left: 12px;
}

.contact__info-row:not(.contact__info-row--plain):hover::before {
  width: 100%;
}

.contact__info-row:last-child {
  border-bottom: 1px solid var(--border);
}

.contact__info-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
}

.contact__info-value {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  transition: color 0.25s;
}

.contact__info-row:not(.contact__info-row--plain):hover .contact__info-value {
  color: var(--accent);
}

.contact__info-arrow {
  font-size: 16px;
  color: var(--muted);
  opacity: 0.3;
  justify-self: end;
  transition: opacity 0.25s, transform 0.35s var(--ease), color 0.25s;
}

.contact__info-row:hover .contact__info-arrow {
  opacity: 1;
  color: var(--accent);
  transform: translateX(2px);
}

/* ─── FORM ─── */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.contact__form::before,
.contact__form::after { display: none; }

.contact__form-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid rgba(242, 237, 230, 0.08);
}

.contact__form-kicker {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact__form-intro {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(242, 237, 230, 0.72);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  padding: 20px 0 0;
  transition: border-color 0.3s;
}

.form-field--select {
  position: relative;
}

.form-field:focus-within {
  border-color: var(--accent);
}

.form-field label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
  margin-bottom: 10px;
  transition: opacity 0.2s, color 0.2s;
}

.form-field:focus-within label {
  opacity: 1;
  color: var(--accent);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(242, 237, 230, 0.1);
  border-radius: 0;
  color: var(--white);
  font-family: var(--f-body);
  font-size: 15px;
  padding: 12px 0 16px;
  width: 100%;
  transition: border-color 0.25s;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-field select {
  padding-right: 34px;
  cursor: pointer;
}

.form-field--select select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  padding: 0;
  border: 0;
}

.form-field--select::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 23px;
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(242, 237, 230, 0.55);
  border-bottom: 1px solid rgba(242, 237, 230, 0.55);
  transform: rotate(45deg);
  pointer-events: none;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
  opacity: 0.35;
}

.form-field select:invalid {
  color: rgba(242, 237, 230, 0.36);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.form-field--select:focus-within::after {
  border-right-color: var(--accent);
  border-bottom-color: var(--accent);
  transform: rotate(45deg) translate(-1px, -1px);
}

.form-field input.error,
.form-field textarea.error {
  border-bottom-color: #E24B4A;
}

.form-field select option { background: var(--dim); color: var(--white); }

.custom-select {
  position: relative;
}

.custom-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 34px 16px 0;
  border-bottom: 1px solid rgba(242, 237, 230, 0.1);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 15px;
  text-align: left;
  transition: border-color 0.25s, color 0.25s;
}

.custom-select__value {
  color: rgba(242, 237, 230, 0.36);
  transition: color 0.25s;
}

.custom-select.selected .custom-select__value {
  color: var(--white);
}

.custom-select.open .custom-select__trigger,
.form-field--select:focus-within .custom-select__trigger {
  border-bottom-color: var(--accent);
}

.custom-select__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  gap: 1px;
  padding: 1px;
  background: rgba(242, 237, 230, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 10;
}

.custom-select.open .custom-select__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.custom-select__option {
  width: 100%;
  padding: 14px 16px;
  background: #0f0f0f;
  color: rgba(242, 237, 230, 0.72);
  font-family: var(--f-body);
  font-size: 14px;
  text-align: left;
  border: none;
  transition: background 0.25s, color 0.25s, padding-left 0.25s var(--ease);
}

.custom-select__option:hover,
.custom-select__option.active {
  background: rgba(0, 224, 255, 0.08);
  color: var(--white);
  padding-left: 20px;
}

.contact__submit {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  padding: 18px 38px;
  color: var(--white);
  background-image: linear-gradient(to right, var(--accent) 50%, transparent 50%);
  background-size: 201% 100%;
  background-position: 100% 0;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--accent);
  border-radius: 0;
  box-shadow: 0 0 28px rgba(0, 224, 255, 0.08);
  transition: color 0.3s, background-position 0.42s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
}

.contact__submit::before { display: none; }

.contact__submit:hover {
  color: var(--black);
  background-position: 0 0;
  transform: translate3d(var(--mx, 0), calc(var(--my, 0) - 3px), 0);
  box-shadow: 0 14px 46px rgba(0, 224, 255, 0.24);
}
.contact__submit:active { transform: translate3d(var(--mx, 0), var(--my, 0), 0); }

.contact__submit.ready {
  box-shadow:
    0 0 36px rgba(0, 224, 255, 0.16),
    inset 0 0 24px rgba(0, 224, 255, 0.05);
  border-color: rgba(0, 224, 255, 0.8);
}

.contact__submit.ready .contact__submit-text::after {
  content: " ready";
  color: rgba(0, 224, 255, 0.92);
}

.contact__submit-text,
.contact__submit-arrow {
  position: relative;
  z-index: 1;
}

.contact__submit-arrow {
  transition: transform 0.3s var(--ease);
}

.contact__submit:hover .contact__submit-arrow { transform: translateX(4px); }

.form-success {
  padding: 20px;
  background: rgba(214, 242, 51, 0.08);
  border: 1px solid rgba(214, 242, 51, 0.2);
  border-radius: 2px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.form-error-banner {
  padding: 20px;
  background: rgba(226, 75, 74, 0.08);
  border: 1px solid rgba(226, 75, 74, 0.24);
  border-radius: 2px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #ff8d8c;
}

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}

.footer__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__logo {
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.footer__tagline {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.footer__nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.footer__nav a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  opacity: 0.4;
}

/* ─── LEGAL PAGES ─── */
.legal-page {
  min-height: 100vh;
}

.legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  padding: 0 48px;
  border-bottom: 1px solid rgba(242, 237, 230, 0.06);
  background: rgba(11, 11, 11, 0.92);
}

.legal-top__brand {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

.legal-top__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.legal-top__nav a {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.5);
  transition: color 0.25s ease;
}

.legal-top__nav a:hover {
  color: var(--accent);
}

.legal-main {
  padding: 96px 48px 120px;
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: end;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--border);
}

.legal-hero__kicker {
  grid-column: 1 / -1;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
}

.legal-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(72px, 12vw, 170px);
  line-height: 0.9;
  letter-spacing: 0;
  color: var(--white);
}

.legal-hero h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--white);
}

.legal-hero p {
  max-width: 460px;
  color: rgba(242, 237, 230, 0.56);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
}

.legal-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  padding-top: 72px;
}

.legal-block {
  max-width: 720px;
}

.legal-block h2 {
  font-family: var(--f-display);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--white);
  margin-bottom: 28px;
}

.legal-block h3 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 34px 0 10px;
}

.legal-block p {
  color: rgba(242, 237, 230, 0.62);
  font-size: 15px;
  line-height: 1.72;
  margin-bottom: 14px;
}

.legal-block strong {
  color: var(--white);
  font-weight: 500;
}

.legal-block a {
  color: var(--white);
  border-bottom: 1px solid rgba(0, 224, 255, 0.45);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.legal-block a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ─── SCROLL REVEAL (generic) ─── */
.s-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.s-reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1199px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .work__grid {
    grid-template-columns: 1fr 1fr;
  }
  .work-card--large,
  .work-card--wide {
    grid-column: 1 / -1;
    aspect-ratio: 16/7;
  }
  .service-row {
    grid-template-columns: 48px 1fr auto;
  }
  .service-row__tags { display: none; }
}

@media (max-width: 767px) {
  body { cursor: auto; }
  .cursor, .cursor-trail { display: none; }
  button { cursor: pointer; }
  a { cursor: pointer; }

  .nav {
    padding: 0 20px;
  }

  .page-progress {
    right: 10px;
    top: calc(var(--nav-h) + 14px);
    bottom: 18px;
  }

  .back-to-top {
    right: 16px;
    bottom: 18px;
    padding: 11px 12px;
    gap: 8px;
  }

  .back-to-top__label {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .nav__right { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }
  .nav__location { display: none; }
  .lang-switch--mobile { display: inline-flex; }

  .impact {
    min-height: 100svh;
    padding: calc(var(--nav-h) + 28px) 20px 72px;
  }

  .impact__badge { display: none; }

  .impact::before {
    background:
      linear-gradient(180deg, rgba(11, 11, 11, 0.20) 0%, rgba(11, 11, 11, 0.14) 28%, rgba(11, 11, 11, 0.38) 62%, rgba(11, 11, 11, 0.72) 100%),
      linear-gradient(90deg, rgba(11, 11, 11, 0.34) 0%, rgba(11, 11, 11, 0.08) 38%, rgba(11, 11, 11, 0.30) 100%);
  }

  .impact__canvas {
    opacity: 0.58;
  }

  .impact__char-group {
    font-size: clamp(48px, 14vw, 88px);
  }

  .impact__char-group--ghost {
    font-size: clamp(50px, 15vw, 92px);
    -webkit-text-stroke: 1px rgba(242, 237, 230, 0.12);
  }

  .impact__char-group--dim {
    font-size: clamp(34px, 10vw, 58px);
  }

  .impact__primary-row--offset {
    padding-left: 10px;
  }

  .impact__primary-row {
    gap: 14px;
  }

  .impact__secondary {
    font-size: 14px;
    line-height: 1.5;
    white-space: normal;
    color: rgba(242, 237, 230, 0.88);
    max-width: 220px;
    padding-top: 24px;
  }

  .impact__secondary::before {
    top: 24px;
    bottom: 0;
    height: auto;
  }

  .impact__sub-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 36px;
  }

  .impact__meta {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 8px;
    font-size: 9px;
    letter-spacing: 0.06em;
    justify-content: stretch;
    text-align: center;
  }

  .impact__cta { width: 100%; justify-content: space-between; }

  .impact__scroll-hint {
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
  }

  .ticker-wrap {
    border-top-color: var(--border-m);
    border-bottom-color: var(--border-m);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 100%);
  }
  .ticker-row {
    padding: 16px 0;
  }
  .ticker-row--top {
    border-bottom-color: var(--border-m);
  }
  .ticker-track span {
    font-size: clamp(38px, 10vw, 60px);
    padding: 0 28px;
    -webkit-text-stroke: 1px rgba(242, 237, 230, 0.32);
  }
  .ticker-row--bottom .ticker-track span {
    font-size: clamp(30px, 8vw, 48px);
    -webkit-text-stroke: 1px rgba(0, 224, 255, 0.42);
  }

  .stats {
    padding: 80px 20px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stats__visual-frame { min-height: 360px; }
  .stats__visual-map { inset: 0; }
  .stats__leaflet { height: 360px; }
  .stats__leaflet .leaflet-tile-pane {
    opacity: 1;
    filter: brightness(1.2) contrast(1.1) saturate(0.6);
  }
  .stats__visual-chip { font-size: 9px; padding: 7px 9px; }
  .stats__visual-chip--ml,
  .stats__visual-chip--mr { top: auto; bottom: 70px; transform: none; }
  .stats__visual-chip--ml { left: 18px; }
  .stats__visual-chip--mr { right: 18px; }
  .stats__visual-tags { right: 18px; top: 64px; max-width: 128px; }

  .services { padding: 80px 20px; }
  .services__header { flex-direction: column; gap: 16px; }
  .services__title { font-size: clamp(52px, 14vw, 90px); text-align: left; }

  .service-row {
    grid-template-columns: 48px 1fr auto;
    gap: 20px;
    padding: 28px 0;
  }
  .service-row::after { display: none; }
  .service-row:hover { padding-left: 8px; }
  .service-row__tags { display: none; }
  .service-row__body { font-size: 14px; line-height: 1.5; max-height: none; opacity: 1; transform: none; }

  .statement { padding: 100px 20px; }
  .statement__actions {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .statement__support {
    max-width: none;
    font-size: 15px;
    line-height: 1.5;
  }
  .statement__cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .statement__filter {
    max-width: none;
  }

  .contact { padding: 80px 20px; }
  .contact__header { flex-direction: column; gap: 16px; }
  .contact__title { font-size: clamp(52px, 14vw, 90px); text-align: left; }
  .contact__body { grid-template-columns: 1fr; gap: 48px; }
  .contact__info-row { grid-template-columns: 80px 1fr auto; gap: 12px; }
  .contact__submit { width: 100%; justify-content: space-between; }

  .footer { padding: 40px 20px; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__nav { gap: 20px; }

  .legal-top {
    padding: 0 20px;
  }
  .legal-top__nav {
    gap: 18px;
  }
  .legal-main {
    padding: 72px 20px 88px;
  }
  .legal-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 48px;
  }
  .legal-hero h1 {
    font-size: clamp(58px, 18vw, 96px);
  }
  .legal-content {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 56px;
  }
  .legal-block p {
    font-size: 14px;
    line-height: 1.68;
  }
}

@media (prefers-reduced-motion: reduce) {
  .impact__char-group,
  .impact__secondary,
  .impact__sub-wrap,
  .statement__line,
  .statement__cta,
  .s-reveal { transition: none; opacity: 1; transform: none; }
  .ticker-track { animation: none; }
  .noise { animation: none; }
  .intro__line { transition: none; transform: none; }
  .impact__scroll-line { animation: none; }
}
