/* ═══════════════════════════
   DESIGN TOKENS
═══════════════════════════ */
:root {
  --black:   #080807;
  --black2:  #0f0f0e;
  --black3:  #161615;
  --surface: #1c1c1b;
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --orange:  #FF5C00;
  --orange2: #FF7A2E;
  --orange-dim: rgba(255,92,0,0.10);
  --orange-glow: rgba(255,92,0,0.20);
  --white:   #FAF9F6;
  --muted:   rgba(250,249,246,0.42);
  --muted2:  rgba(250,249,246,0.18);
  --fh: 'Geologica', sans-serif;
  --fb: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--fb);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* scrollbar */
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ═══════════════════════════
   CURSOR
═══════════════════════════ */
#cur {
  position: fixed; width: 10px; height: 10px;
  background: var(--orange); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  mix-blend-mode: normal;
  transition: transform .12s, width .2s, height .2s;
}
#curR {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid rgba(255,92,0,0.4); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .22s, height .22s, border-color .22s, background .22s;
}
.csr-big #curR { width: 64px; height: 64px; border-color: rgba(255,92,0,.55); background: rgba(255,92,0,.06); }
.csr-big #cur  { width: 6px; height: 6px; }
/* ── Hide custom cursor on touch/mobile devices ── */
@media (hover: none), (pointer: coarse) {
  #cur, #curR { display: none !important; }
  body { cursor: auto !important; }
  * { cursor: auto !important; }
}


/* ═══════════════════════════
   PAGES
═══════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ═══════════════════════════
   NAV
═══════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 60px;
  background: rgba(8,8,7,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
/* Logo: column 1, left-aligned */
.logo { justify-self: start; }
/* Nav links: column 2, perfectly centered */
.nav-links { justify-self: center; }
/* Right side: column 3, right-aligned */
.nav-right { justify-self: end; }
/* Burger: stays in flow, column 3 on mobile */
.nav-burger { justify-self: end; }
.logo {
  font-family: var(--fh); font-size: 18px; font-weight: 900;
  letter-spacing: -0.5px; text-decoration: none; color: var(--white);
  display: flex; align-items: center; gap: 8px;
}
.logo-sq {
  width: 28px; height: 28px; background: var(--orange);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #080807;
  transition: transform .3s;
}
.logo:hover .logo-sq { transform: rotate(12deg); }

.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; height: 100%; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 13px; font-weight: 400; letter-spacing: .3px;
  padding: 7px 14px; border-radius: 4px;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.06); }

/* ─ DROPDOWN NAV ─ */
.nav-dropdown {
  position: relative;
  cursor: none;
  /* must stay display:list-item or inherit from nav-links flex row */
  display: flex;
  align-items: center;
  align-self: center;   /* align within nav-links flex row */
}
.nav-dropdown > a {
  display: inline-flex; align-items: center; gap: 5px;
  cursor: none;
  line-height: 1;
  /* match exactly the padding of regular nav links */
  padding: 7px 14px;
  border-radius: 4px;
  font-size: 13px; font-weight: 400; letter-spacing: .3px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s, background .2s;
}
.nav-dropdown > a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform .22s ease, opacity .2s;
  flex-shrink: 0;
  vertical-align: middle;
  margin-left: 3px;
  opacity: .7;
}
.nav-dropdown:hover > a::after,
.nav-dropdown.open > a::after {
  transform: rotate(-135deg) translate(-1px, -1px);
  opacity: 1;
}

/* Invisible bridge fills the gap between nav link and dropdown so hover doesn't break */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 12px; /* covers the gap */
  background: transparent;
  z-index: 599;
}

.nav-drop-menu {
  position: absolute;
  /* sit flush under the nav bar — no gap, bridge covers it */
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(12,12,11,0.97);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 8px;
  min-width: 230px;
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 40px rgba(0,0,0,.65), 0 0 0 1px rgba(255,92,0,.06);
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 600;
  cursor: none;
}
/* Arrow tip */
.nav-drop-menu::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  width: 10px; height: 10px;
  background: rgba(12,12,11,0.97);
  border-left: 1px solid var(--border2);
  border-top: 1px solid var(--border2);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown.open .nav-drop-menu {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  cursor: none;
}
.nav-drop-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 6px;
  text-decoration: none; color: var(--muted);
  font-size: 13px; transition: all .18s;
  cursor: none;
}
.nav-drop-item:hover {
  background: rgba(255,92,0,.08);
  color: var(--white);
}
.nav-drop-item-ico {
  width: 32px; height: 32px; border-radius: 6px;
  background: var(--orange-dim); border: 1px solid rgba(255,92,0,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
  transition: background .18s;
  cursor: none;
}
.nav-drop-item:hover .nav-drop-item-ico {
  background: rgba(255,92,0,.16);
}
.nav-drop-item-text strong {
  display: block; font-size: 13px; font-weight: 600; color: var(--white);
  margin-bottom: 2px;
}
.nav-drop-item-text span {
  font-size: 11px; color: var(--muted2);
}
.nav-drop-divider {
  height: 1px; background: var(--border); margin: 6px 0;
}

.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-sw { display: flex; gap: 1px; background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: 2px; }
.lb {
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 10px; border-radius: 3px; background: none; border: none;
  color: var(--muted); cursor: none; transition: all .2s;
}
.lb.on { background: var(--orange); color: #080807; }
.lb:hover:not(.on) { color: var(--white); }
.nav-cta {
  font-size: 13px; font-weight: 600; letter-spacing: .3px;
  padding: 9px 20px; background: var(--orange); color: #080807;
  border-radius: 4px; text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange2); transform: translateY(-1px); }

/* ═══════════════════════════
   UTILS
═══════════════════════════ */
.sec-label {
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.sec-label::before { content: ''; width: 20px; height: 1.5px; background: var(--orange); }
.sec-h {
  font-family: var(--fh);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 900; line-height: .92; letter-spacing: -2.5px;
}
.sec-h em { font-style: italic; font-weight: 400; color: var(--muted); }

.btn-orange {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; letter-spacing: .3px;
  padding: 14px 28px; background: var(--orange); color: #080807;
  border-radius: 4px; text-decoration: none; border: none;
  transition: background .2s, transform .15s; cursor: none; white-space: nowrap;
}
.btn-orange:hover { background: var(--orange2); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 400; color: var(--muted);
  padding: 13px 28px; border: 1px solid var(--border2);
  border-radius: 4px; text-decoration: none;
  transition: all .2s; cursor: none; white-space: nowrap;
}
.btn-outline:hover { border-color: rgba(255,255,255,.3); color: var(--white); }

.btn-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--orange);
  text-decoration: none; letter-spacing: .3px;
  transition: gap .2s;
}
.btn-arrow:hover { gap: 14px; }

/* Reveal */
.rv {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .08s; }
.rv.d2 { transition-delay: .16s; }
.rv.d3 { transition-delay: .24s; }
.rv.d4 { transition-delay: .32s; }

/* ═══════════════════════════
   PAGE: HOME
═══════════════════════════ */

/* ─ HERO ─ */
.hero {
  min-height: 100vh; padding-top: 70px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
/* Animated orange glow */
.hero-glow {
  position: absolute; pointer-events: none;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,92,0,.15) 0%, rgba(255,92,0,.04) 40%, transparent 70%);
  right: -200px; top: 50%; transform: translateY(-50%);
  animation: glowPulse 6s ease-in-out infinite;
  filter: blur(40px);
}
.hero-glow2 {
  position: absolute; pointer-events: none;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,92,0,.07) 0%, transparent 70%);
  left: -100px; bottom: 0;
  filter: blur(60px);
  animation: glowPulse 8s ease-in-out 2s infinite;
}
@keyframes glowPulse {
  0%,100%{opacity:1;transform:translateY(-50%) scale(1)}
  50%{opacity:.7;transform:translateY(-52%) scale(1.05)}
}
.hero-glow2 { animation: glow2Pulse 8s ease-in-out 2s infinite; }
@keyframes glow2Pulse { 0%,100%{opacity:1}50%{opacity:.5} }

/* Dot grid background */
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-main {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; padding: 80px 60px 60px;
  position: relative; z-index: 2;
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 36px;
  animation: fadeUp .5s ease .1s both;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px; background: var(--orange); border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none} }

h1.hero-h {
  font-family: var(--fh);
  font-size: clamp(64px, 9vw, 130px);
  font-weight: 900; line-height: .88; letter-spacing: -4px;
  margin-bottom: 36px;
  animation: fadeUp .7s ease .2s both;
}
h1.hero-h .line-muted { color: var(--muted); font-weight: 400; font-style: italic; }
h1.hero-h .line-orange { color: var(--orange); }

.hero-bottom {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 60px;
  animation: fadeUp .6s ease .42s both;
}
.hero-desc { max-width: 420px; font-size: 16px; line-height: 1.75; color: var(--muted); }
.hero-ctas { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; flex-shrink: 0; }
.hero-ctas-row { display: flex; gap: 12px; }
.hero-cta-note { font-size: 12px; color: var(--muted2); text-align: right; }

/* Stats ticker */
.hero-ticker {
  display: flex; border-top: 1px solid var(--border);
  margin-top: 60px; animation: fadeUp .6s ease .6s both;
}
.ticker-item {
  flex: 1; padding: 32px 40px;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background .3s;
}
.ticker-item:last-child { border-right: none; }
.ticker-item:hover { background: rgba(255,255,255,.02); }
.ticker-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: transparent; transition: background .3s;
}
.ticker-item:hover::before { background: var(--orange); }
.ticker-n {
  font-family: var(--fh); font-size: 48px; font-weight: 900;
  letter-spacing: -2.5px; line-height: 1; color: var(--white);
}
.ticker-n sup { font-size: 22px; color: var(--orange); }
.ticker-l { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ─ MARQUEE ─ */
.marquee {
  overflow: hidden; border-top: 1px solid var(--border);
  padding: 0; background: var(--black2);
}
.marquee-track { display: flex; width: max-content; animation: scroll 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 20px;
  padding: 16px 28px;
  font-family: var(--fh); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted2);
  white-space: nowrap;
  border-right: 1px solid var(--border);
  transition: color .2s, background .2s;
}
.marquee-item:hover { color: var(--orange); background: var(--orange-dim); }
.marquee-dot { width: 4px; height: 4px; background: var(--orange); border-radius: 50%; opacity: .5; }
@keyframes scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─ VIDEO SECTION ─ */
.video-section {
  padding: 100px 60px 110px;
  background: var(--black);
  position: relative;
  text-align: center;
}
.video-section-head {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 40px; gap: 16px; text-align: center;
}
.video-section-head .sec-label { justify-content: center; margin-bottom: 8px; }
.video-section-head .sec-h { font-size: clamp(36px, 4vw, 56px); letter-spacing: -2px; text-align: center; }
.video-section-right-text {
  max-width: 460px; color: var(--muted); font-size: 16px; line-height: 1.75;
  text-align: center;
}
.video-wrap {
  position: relative; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--black2);
  aspect-ratio: 16/9;
  max-width: 900px;
  margin: 0 auto;
  cursor: none;
  box-shadow: 0 40px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,92,0,.06);
}
.video-wrap iframe,
.video-wrap video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none; display: block;
}
/* Placeholder when no video src */
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--black2), var(--black3));
  gap: 20px;
}
.video-placeholder-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,92,0,.07) 0%, transparent 70%);
}
.video-play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
  cursor: none; position: relative; z-index: 2;
  transition: transform .3s, background .3s;
  box-shadow: 0 0 32px rgba(255,92,0,.4);
}
.video-play-btn:hover { transform: scale(1.1); background: var(--orange2); }
.video-play-btn svg { width: 22px; height: 22px; fill: #080807; margin-left: 3px; }
.video-placeholder-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted2); position: relative; z-index: 2;
}
/* Pulse ring around play button */
.video-play-btn::before {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  border: 1px solid rgba(255,92,0,.25);
  animation: pulseRing 2.5s ease-in-out infinite;
}
.video-play-btn::after {
  content: ''; position: absolute; inset: -20px; border-radius: 50%;
  border: 1px solid rgba(255,92,0,.12);
  animation: pulseRing 2.5s ease-in-out .5s infinite;
}
@keyframes pulseRing {
  0%,100%{transform:scale(1);opacity:1}
  50%{transform:scale(1.08);opacity:.5}
}
/* Video overlay */
.video-overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,8,7,.4);
  transition: opacity .4s;
  cursor: none;
}
.video-overlay.hidden { opacity: 0; pointer-events: none; }
.video-corner-tag {
  position: absolute; top: 16px; left: 16px; z-index: 4;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); background: rgba(8,8,7,.7);
  padding: 4px 10px; border-radius: 100px;
  border: 1px solid rgba(255,92,0,.25);
  backdrop-filter: blur(8px);
}

/* ─ WHAT WE BUILD ─ */
.wwb { padding: 120px 60px; background: var(--black); }
.wwb-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 72px; gap: 48px; }
.wwb-right-head { max-width: 320px; color: var(--muted); font-size: 15px; line-height: 1.75; }

.wwb-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--border); }
.svc-card {
  background: var(--black2); padding: 44px 36px 76px;
  position: relative; overflow: hidden;
  border-right: 1px solid var(--border);
  transition: background .4s, box-shadow .4s;
  color: var(--white);
  display: block;
}
.svc-card:last-child { border-right: none; }
.svc-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,92,0,.07) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.svc-card:hover {
  background: var(--black3);
  box-shadow: inset 0 0 60px rgba(255,92,0,.04);
}
.svc-card:hover::after { opacity: 1; }

.svc-top-line {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: transparent; transition: background .35s;
}
.svc-card:hover .svc-top-line { background: var(--orange); }

.svc-num { font-family: var(--fh); font-size: 11px; letter-spacing: 2px; color: var(--muted2); margin-bottom: 40px; }
.svc-icon-box {
  width: 52px; height: 52px; background: var(--orange-dim);
  border: 1px solid rgba(255,92,0,.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 28px;
  transition: background .3s, border-color .3s, transform .3s;
}
.svc-card:hover .svc-icon-box { background: rgba(255,92,0,.16); border-color: rgba(255,92,0,.35); transform: scale(1.08); }

.svc-name {
  font-family: var(--fh); font-size: 22px; font-weight: 800;
  letter-spacing: -.5px; line-height: 1.1; margin-bottom: 14px;
  transition: color .3s;
}
.svc-card:hover .svc-name { color: var(--white); }
.svc-desc { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.svc-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.sp {
  font-size: 11px; color: var(--muted); letter-spacing: .4px;
  border: 1px solid var(--border); padding: 5px 12px; border-radius: 100px;
  transition: all .3s;
}
.svc-card:hover .sp { border-color: rgba(255,92,0,.3); color: rgba(255,165,100,.85); background: rgba(255,92,0,.05); }

.svc-arr {
  position: absolute; bottom: 44px; right: 36px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--muted2);
  transition: all .3s;
}
.svc-card:hover .svc-arr {
  background: var(--orange); border-color: var(--orange);
  color: #080807; transform: translate(3px,-3px) rotate(45deg);
}

/* ─ SVC MORE BUTTON ─ */
.svc-more {
  position: absolute; bottom: 28px; left: 36px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; letter-spacing: .3px;
  color: var(--orange); text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(255,92,0,.3);
  border-radius: 4px;
  background: rgba(255,92,0,.06);
  transition: all .25s;
}
.svc-card:hover .svc-more {
  background: var(--orange); color: #080807;
  border-color: var(--orange);
}

/* ─ HERO CTA BAND ─ */
.cta-inline {
  background: var(--orange); padding: 64px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.cta-inline-text {
  font-family: var(--fh); font-size: clamp(28px,3.5vw,44px);
  font-weight: 900; letter-spacing: -1.5px; line-height: .95;
  color: #080807;
}
.cta-inline-sub { font-size: 15px; color: rgba(8,8,7,.6); margin-top: 10px; }
.cta-inline-btns { display: flex; gap: 12px; flex-shrink: 0; }
.btn-black {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700; letter-spacing: .3px;
  padding: 15px 30px; background: #080807; color: var(--orange);
  border-radius: 4px; text-decoration: none; cursor: none;
  transition: background .2s; white-space: nowrap;
}
.btn-black:hover { background: #1a1a18; }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; letter-spacing: .3px;
  padding: 14px 30px; background: rgba(8,8,7,.12); color: #080807;
  border: 1px solid rgba(8,8,7,.2); border-radius: 4px; text-decoration: none; cursor: none;
  transition: background .2s; white-space: nowrap;
}
.btn-white:hover { background: rgba(8,8,7,.2); }

/* ─ FEATURED ─ */
.featured { padding: 0 60px 120px; background: var(--black); }
.feat-card {
  background: var(--black2); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
}
.feat-left { padding: 72px 64px; position: relative; }
.feat-left::after {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(135deg, rgba(255,92,0,.05) 0%, transparent 60%);
  pointer-events: none;
}
.feat-tag {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange); background: var(--orange-dim);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 24px;
}
.feat-title { font-family: var(--fh); font-size: 44px; font-weight: 900; letter-spacing: -2px; line-height: .95; margin-bottom: 20px; }
.feat-desc { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 40px; }
.feat-stats { display: flex; gap: 40px; padding-top: 32px; border-top: 1px solid var(--border); margin-bottom: 40px; }
.fs-n { font-family: var(--fh); font-size: 34px; font-weight: 900; letter-spacing: -1.5px; }
.fs-n span { color: var(--orange); }
.fs-l { font-size: 12px; color: var(--muted); margin-top: 3px; }
.feat-right {
  background: var(--black3); border-left: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; min-height: 400px;
}
.feat-right-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,92,0,.08) 0%, transparent 70%);
}
.feat-mockup {
  position: relative; z-index: 2;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted2); text-align: center;
}
.feat-mockup-frame {
  width: 200px; height: 300px; border: 1px solid var(--border2);
  border-radius: 24px; margin: 0 auto 16px;
  background: var(--surface); display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.feat-mockup-frame::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 4px; background: var(--border2); border-radius: 0 0 4px 4px;
}
.feat-mockup-inner {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--black3), var(--surface));
  display: flex; align-items: center; justify-content: center;
}
.feat-mockup-icon { font-size: 36px; }

/* ─ NUMBERS ─ */
.numbers {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.num-c {
  background: var(--black2); padding: 56px 48px;
  position: relative; transition: background .3s;
}
.num-c:hover { background: var(--black3); }
.num-c::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: transparent; transition: background .3s;
}
.num-c:hover::after { background: var(--orange); }
.num-n {
  font-family: var(--fh); font-size: clamp(52px,5.5vw,80px);
  font-weight: 900; letter-spacing: -3px; line-height: 1; color: var(--white);
}
.num-n sup { font-size: clamp(22px,2.5vw,36px); color: var(--orange); }
.num-l { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* ─ PROCESS (HOME PREVIEW) ─ */
.proc-home { padding: 120px 60px; background: var(--black); }
.proc-home-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 72px; }
.proc-track {
  position: relative; display: flex; flex-direction: column; gap: 0;
}
/* animated vertical line */
.proc-line {
  position: absolute; left: 27px; top: 28px; bottom: 28px;
  width: 1px; background: var(--border2);
}
.proc-line-fill {
  position: absolute; left: 27px; top: 28px;
  width: 1px; background: var(--orange);
  height: 0; transition: height .6s ease;
}
.proc-home-row {
  display: grid; grid-template-columns: 56px 1fr; gap: 32px;
  padding: 24px 0; position: relative; z-index: 2;
}
.prh-dot-wrap { display: flex; flex-direction: column; align-items: center; }
.prh-dot {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--border2); background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 13px; font-weight: 700; color: var(--muted);
  transition: all .35s; flex-shrink: 0;
}
.proc-home-row.active .prh-dot {
  background: var(--orange); border-color: var(--orange);
  color: #080807; transform: scale(1.1);
  box-shadow: 0 0 24px rgba(255,92,0,.4);
}
/* Keep hover effect separate - only for desktop */
@media (hover: hover) {
  .proc-home-row:hover .prh-dot {
    background: var(--orange); border-color: var(--orange);
    color: #080807; transform: scale(1.1);
    box-shadow: 0 0 24px rgba(255,92,0,.4);
  }
}
.prh-content { padding-top: 12px; padding-bottom: 12px; }
.prh-name {
  font-family: var(--fh); font-size: 20px; font-weight: 800;
  letter-spacing: -.5px; margin-bottom: 6px;
  transition: color .3s;
}
.proc-home-row.active .prh-name { color: var(--orange); }
@media (hover: hover) {
  .proc-home-row:hover .prh-name { color: var(--orange); }
}
.prh-desc { font-size: 14px; color: var(--muted); line-height: 1.65; max-height: 0; overflow: hidden; transition: max-height .4s ease, opacity .3s; opacity: 0; }
.proc-home-row.active .prh-desc { max-height: 100px; opacity: 1; }
@media (hover: hover) {
  .proc-home-row:hover .prh-desc { max-height: 100px; opacity: 1; }
}
.prh-tag {
  display: inline-block; margin-top: 10px;
  font-size: 11px; color: var(--orange); background: var(--orange-dim);
  padding: 3px 10px; border-radius: 100px;
  opacity: 0; transition: opacity .3s;
}
.proc-home-row.active .prh-tag { opacity: 1; }
@media (hover: hover) {
  .proc-home-row:hover .prh-tag { opacity: 1; }
}

/* ─ TESTIMONIALS ─ */
.testi { padding: 120px 60px; background: var(--black2); }
.testi-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; gap: 40px; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); }
.tc {
  background: var(--black3); padding: 44px 40px;
  position: relative; transition: background .3s;
}
.tc:hover { background: var(--surface); }
.tc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: transparent; transition: background .3s;
}
.tc:hover::before { background: var(--orange); }
.tc-q {
  font-size: 15px; line-height: 1.8; color: var(--muted);
  padding-top: 44px; margin-bottom: 32px; position: relative;
}
.tc-q::before {
  content: '"'; position: absolute; top: 0; left: -2px;
  font-family: var(--fh); font-size: 60px; font-weight: 900;
  color: var(--orange); line-height: .8;
}
.tc-auth { display: flex; align-items: center; gap: 14px; padding-top: 24px; border-top: 1px solid var(--border); }
.tc-av {
  width: 40px; height: 40px; border-radius: 50%; background: var(--orange-dim);
  border: 1px solid rgba(255,92,0,.2); display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 13px; font-weight: 800; color: var(--orange);
}
.tc-name { font-size: 14px; font-weight: 500; }
.tc-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ─ FINAL CTA ─ */
.final-cta {
  padding: 140px 60px; text-align: center;
  background: var(--black);
  position: relative; overflow: hidden;
}
.fcta-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,92,0,.09) 0%, transparent 65%);
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  filter: blur(40px); pointer-events: none;
}
.fcta-h {
  font-family: var(--fh);
  font-size: clamp(52px,7.5vw,108px);
  font-weight: 900; letter-spacing: -4px; line-height: .88;
  margin-bottom: 32px; position: relative;
}
.fcta-h em { font-style: italic; font-weight: 400; color: var(--muted); }
.fcta-h span.o { color: var(--orange); }
.fcta-sub { font-size: 17px; color: var(--muted); margin-bottom: 52px; position: relative; }
.fcta-btns { display: flex; gap: 14px; justify-content: center; position: relative; flex-wrap: wrap; }
.fcta-note { font-size: 13px; color: var(--muted2); margin-top: 20px; position: relative; }

/* ═══════════════════════════
   PAGE: SERVICES
═══════════════════════════ */
.p-hero {
  padding: 140px 60px 80px;
  border-bottom: 1px solid var(--border);
  background: var(--black);
  position: relative; overflow: hidden;
}
.p-hero-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,92,0,.08) 0%, transparent 70%);
  right: -100px; top: -100px; filter: blur(60px); pointer-events: none;
}
.ph-lbl { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.ph-h {
  font-family: var(--fh); font-size: clamp(56px,8vw,100px);
  font-weight: 900; line-height: .88; letter-spacing: -4px; margin-bottom: 28px;
}
.ph-d { font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.72; }

.srv-full { padding: 80px 60px; }
.sf-row {
  display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px;
  padding: 72px 0; border-top: 1px solid var(--border); align-items: start;
  transition: background .3s; padding-left: 16px; padding-right: 16px;
  margin-left: -16px; margin-right: -16px; border-radius: 4px;
}
.sf-row:last-child { border-bottom: 1px solid var(--border); }
.sf-row:hover { background: rgba(255,255,255,.02); }
.sf-n { font-family: var(--fh); font-size: 11px; letter-spacing: 2px; color: var(--muted2); margin-bottom: 16px; }
.sf-name { font-family: var(--fh); font-size: 36px; font-weight: 900; letter-spacing: -1.5px; line-height: 1; margin-bottom: 12px; }
.sf-tag {
  display: inline-block; font-size: 11px; color: var(--orange);
  background: var(--orange-dim); padding: 4px 12px; border-radius: 100px;
  font-weight: 600; letter-spacing: .5px;
}
.sf-desc { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.sf-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.sf-feat {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: var(--surface); border-radius: 6px;
  border: 1px solid var(--border); font-size: 13px; color: var(--white);
  line-height: 1.5; transition: border-color .2s;
}
.sf-row:hover .sf-feat { border-color: rgba(255,92,0,.15); }
.sf-feat-ico { font-size: 16px; flex-shrink: 0; }

/* ═══════════════════════════
   PAGE: CASES
═══════════════════════════ */
.cases-grid-wrap { padding: 80px 60px; }
.cg { display: grid; grid-template-columns: repeat(12,1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); }
.cc {
  position: relative; overflow: hidden; cursor: none;
  background: var(--black2);
}
.cc:nth-child(1) { grid-column: span 7; aspect-ratio: 7/4; }
.cc:nth-child(2) { grid-column: span 5; aspect-ratio: 5/4; }
.cc:nth-child(3) { grid-column: span 5; aspect-ratio: 5/4; }
.cc:nth-child(4) { grid-column: span 7; aspect-ratio: 7/4; }
.cc:nth-child(5) { grid-column: span 4; aspect-ratio: 4/3; }
.cc:nth-child(6) { grid-column: span 4; aspect-ratio: 4/3; }
.cc:nth-child(7) { grid-column: span 4; aspect-ratio: 4/3; }

.cc-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted2);
  transition: transform .6s ease;
}
.cc:hover .cc-bg { transform: scale(1.04); }
.cc-over {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,7,.92) 0%, transparent 60%);
  padding: 32px; display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0; transition: opacity .35s;
}
.cc:hover .cc-over { opacity: 1; }
.cc-cat { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.cc-name { font-family: var(--fh); font-size: 20px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 10px; }
.cc-tags { display: flex; gap: 6px; }
.cc-t { font-size: 11px; color: rgba(250,249,246,.5); background: rgba(255,255,255,.08); padding: 3px 9px; border-radius: 100px; }
/* hover border glow */
.cc::before { content: ''; position: absolute; inset: 0; border: 2px solid transparent; transition: border-color .35s; z-index: 5; pointer-events: none; }
.cc:hover::before { border-color: var(--orange); }

/* ═══════════════════════════
   PAGE: ABOUT
═══════════════════════════ */
.about-body { padding: 80px 60px; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 100px; }
.ab-txt {}
.ab-h { font-family: var(--fh); font-size: clamp(38px,4.5vw,56px); font-weight: 900; letter-spacing: -2px; line-height: .95; margin-bottom: 28px; }
.ab-h em { font-style: italic; font-weight: 400; color: var(--muted); }
.ab-p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.ab-img {
  background: var(--black2); border: 1px solid var(--border);
  border-radius: 8px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.ab-img-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,92,0,.07) 0%, transparent 70%);
}
.ab-img-txt { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted2); position: relative; }

.team-s { padding: 0 60px 100px; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 56px; }
.team-card {
  position: relative; padding: 32px 28px; border: 1px solid var(--border);
  background: var(--black2); border-radius: 6px;
  transition: border-color .3s, background .3s, transform .3s;
}
.team-card:hover { border-color: rgba(255,92,0,.3); background: var(--black3); transform: translateY(-4px); }
.team-av {
  width: 64px; height: 64px; border-radius: 10px;
  background: var(--orange-dim); border: 1px solid rgba(255,92,0,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 18px; font-weight: 900; color: var(--orange);
  margin-bottom: 20px;
}
.team-name { font-family: var(--fh); font-size: 17px; font-weight: 700; letter-spacing: -.3px; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--muted); }

/* ═══════════════════════════
   PAGE: PROCESS (FULL)
═══════════════════════════ */
.proc-full { padding: 80px 60px; }
.proc-full-steps { display: flex; flex-direction: column; gap: 0; }
.pf-row {
  display: grid; grid-template-columns: 100px 280px 1fr; gap: 48px;
  padding: 56px 24px; border-top: 1px solid var(--border);
  align-items: start; border-radius: 4px;
  transition: background .3s;
  cursor: none;
}
.pf-row:last-child { border-bottom: 1px solid var(--border); }
.pf-row:hover { background: rgba(255,255,255,.02); }
.pf-row.pf-active { background: rgba(255,92,0,.04); }
.pf-n {
  font-family: var(--fh); font-size: 64px; font-weight: 900;
  letter-spacing: -3px; line-height: 1; color: rgba(255,255,255,.04);
  transition: color .3s;
}
.pf-row:hover .pf-n, .pf-row.pf-active .pf-n { color: rgba(255,92,0,.2); }
.pf-left {}
.pf-name { font-family: var(--fh); font-size: 28px; font-weight: 900; letter-spacing: -1px; margin-bottom: 8px; }
.pf-duration {
  font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--orange); background: var(--orange-dim);
  padding: 4px 10px; border-radius: 100px; display: inline-block;
}
.pf-desc { font-size: 15px; color: var(--muted); line-height: 1.78; margin-bottom: 20px; }
.pf-delivers { display: flex; flex-direction: column; gap: 8px; }
.pf-d { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--white); }
.pf-d::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* Left line animation */
.pf-row { position: relative; }
.pf-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: transparent; transition: background .3s; border-radius: 2px;
}
.pf-row:hover::before, .pf-row.pf-active::before { background: var(--orange); }

/* ═══════════════════════════
   PAGE: CONTACTS
═══════════════════════════ */
.contacts-body { padding: 80px 60px; }
.contact-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.con-h { font-family: var(--fh); font-size: clamp(36px,4.5vw,54px); font-weight: 900; letter-spacing: -2px; line-height: .95; margin-bottom: 28px; }
.con-d { font-size: 15px; color: var(--muted); line-height: 1.78; margin-bottom: 48px; }
.con-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.ci-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: var(--black2);
  border: 1px solid var(--border); border-radius: 6px;
  transition: border-color .25s;
}
.ci-card:hover { border-color: rgba(255,92,0,.3); }
.ci-ico { font-size: 20px; flex-shrink: 0; }
.ci-lbl { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted2); margin-bottom: 3px; }
.ci-val { font-size: 15px; font-weight: 500; }

/* Form */
.cf { display: flex; flex-direction: column; gap: 14px; }
.cf-h { font-family: var(--fh); font-size: 24px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 8px; }
.cf input, .cf textarea, .cf select {
  width: 100%; padding: 14px 16px;
  background: var(--black2); border: 1px solid var(--border);
  border-radius: 6px; font-family: var(--fb); font-size: 14px;
  color: var(--white); outline: none;
  transition: border-color .2s, background .2s;
  resize: none;
}
.cf input:focus, .cf textarea:focus, .cf select:focus { border-color: var(--orange); background: var(--black3); }
.cf input::placeholder, .cf textarea::placeholder { color: var(--muted2); }
.cf select option { background: var(--black2); }
.cf textarea { height: 120px; }
.cf-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf-submit {
  padding: 16px; background: var(--orange); color: #080807;
  border: none; border-radius: 6px; font-family: var(--fh);
  font-size: 15px; font-weight: 900; letter-spacing: .3px;
  cursor: none; transition: background .2s, transform .15s;
}
.cf-submit:hover { background: var(--orange2); transform: translateY(-2px); }
.cf-note { font-size: 12px; color: var(--muted2); text-align: center; }

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
footer {
  background: var(--black2); padding: 72px 60px 40px;
  border-top: 1px solid var(--border);
}
.foot-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; padding-bottom: 56px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.foot-logo-w { display: block; margin-bottom: 18px; }
.foot-desc { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 240px; }
.foot-ch { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted2); margin-bottom: 20px; }
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foot-links a { text-decoration: none; color: var(--muted); font-size: 14px; transition: color .2s; }
.foot-links a:hover { color: var(--white); }
.foot-bot { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted2); }

/* ═══════════════════════════
   SERVICES INLINE STYLES
═══════════════════════════ */
/* Process Steps */
.sf-process {
  margin: 28px 0 24px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
}
.sf-process-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.sf-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.sf-step {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 7px 12px;
}
.sf-step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange, #FF6B2C);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sf-step-text {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.sf-step-arrow {
  color: rgba(255,255,255,0.2);
  font-size: 14px;
  flex-shrink: 0;
}

/* Sub-types / Badges */
.sf-subtypes {
  margin: 20px 0 0;
}
.sf-subtype-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.sf-subtypes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.sf-subtype-badge {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,107,44,0.3);
  color: rgba(255,255,255,0.65);
  background: rgba(255,107,44,0.06);
  white-space: nowrap;
  transition: all 0.2s ease;
  cursor: default;
}
.sf-subtype-badge:hover {
  border-color: rgba(255,107,44,0.6);
  color: rgba(255,255,255,0.9);
  background: rgba(255,107,44,0.12);
}



/* ═══════════════════════════════════════════════════
   MOBILE & RESPONSIVE
═══════════════════════════════════════════════════ */

/* ── Hamburger ── */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px; cursor: pointer; flex-shrink: 0;
  transition: border-color .2s, background .2s;
  position: relative; z-index: 600;
}
.nav-burger:hover { border-color: var(--orange); background: rgba(255,92,0,.08); }
.nav-burger span {
  display: block; width: 18px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hide cursor on touch devices ── */
@media (hover: none), (pointer: coarse) {
  #cur, #curR { display: none !important; }
  body { cursor: auto !important; }
}

/* ═══════════════════════════════════════════════════
   SIDE DRAWER
═══════════════════════════════════════════════════ */
.mob-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 800;
  background: rgba(0,0,0,0); pointer-events: none;
  transition: background .3s ease;
}
.mob-overlay.open { background: rgba(0,0,0,.6); pointer-events: auto; }

.mob-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 810;
  width: min(76vw, 280px);
  background: #111110;
  border-right: 1px solid rgba(255,255,255,.07);
  transform: translateX(-100%);
  transition: transform .34s cubic-bezier(.32,1,.32,1);
  display: none; flex-direction: column;
  overflow: hidden;
}
.mob-drawer.open { transform: translateX(0); }

.mob-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}
.mob-drawer-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--fh); font-size: 16px; font-weight: 900;
  color: var(--white); text-decoration: none; letter-spacing: -.3px;
}
.mob-drawer-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: none;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); cursor: pointer;
  transition: background .2s, color .2s; flex-shrink: 0;
}
.mob-drawer-close:hover { background: rgba(255,255,255,.12); color: var(--white); }

.mob-list { list-style: none; padding: 8px 0; flex: 1; overflow: hidden; }
.mob-list-item {
  display: block; padding: 13px 20px;
  font-size: 15px; font-weight: 400; font-family: var(--fb);
  color: rgba(250,249,246,.72); text-decoration: none;
  transition: background .15s, color .15s;
}
.mob-list-item:hover, .mob-list-item:active { background: rgba(255,255,255,.05); color: var(--white); }
.mob-list-item.active { color: var(--orange); }
.mob-list-item--sub { padding-left: 28px; font-size: 14px; color: rgba(250,249,246,.55); }
.mob-list-item--sub:hover, .mob-list-item--sub:active { color: var(--orange); background: rgba(255,92,0,.05); }
.mob-list-group-label {
  padding: 8px 20px 4px; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.25);
}
.mob-list-divider { height: 1px; background: rgba(255,255,255,.06); margin: 4px 0; }

.mob-drawer-footer {
  padding: 14px 20px 20px;
  border-top: 1px solid rgba(255,255,255,.06); flex-shrink: 0;
}
.mob-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px 20px;
  background: var(--orange); color: #080807;
  font-family: var(--fh); font-size: 15px; font-weight: 900;
  border-radius: 10px; text-decoration: none; border: none; cursor: pointer;
  transition: background .2s; margin-bottom: 12px;
}
.mob-cta-btn:active { background: var(--orange2); }
.mob-drawer-contacts {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px; color: rgba(250,249,246,.3);
}
.mob-drawer-contacts a { color: rgba(250,249,246,.45); text-decoration: none; }

/* ── Testimonials carousel ── */
.testi-carousel { display: none; }

/* ════════════════════════════════
   BREAKPOINT ≤ 640px
════════════════════════════════ */

/* ═══════════════════════════════════════════════════
   CURSOR — hide on touch/mobile
═══════════════════════════════════════════════════ */
@media (hover: none), (pointer: coarse) {
  #cur, #curR { display: none !important; }
  body { cursor: auto !important; }
  * { cursor: auto !important; }
}

/* ═══════════════════════════════════════════════════
   HAMBURGER BUTTON
═══════════════════════════════════════════════════ */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px; cursor: pointer; flex-shrink: 0;
  transition: border-color .2s, background .2s;
  position: relative; z-index: 601;
}
.nav-burger:hover { border-color: var(--orange); background: rgba(255,92,0,.08); }
.nav-burger span {
  display: block; width: 18px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   SIDE DRAWER
═══════════════════════════════════════════════════ */
.mob-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 800;
  background: rgba(0,0,0,0); pointer-events: none;
  transition: background .3s ease;
}
.mob-overlay.open { background: rgba(0,0,0,.6); pointer-events: auto; }

.mob-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 810;
  width: min(76vw, 280px);
  background: #111110;
  border-right: 1px solid rgba(255,255,255,.07);
  transform: translateX(-100%);
  transition: transform .34s cubic-bezier(.32,1,.32,1);
  display: none; flex-direction: column; overflow: hidden;
}
.mob-drawer.open { transform: translateX(0); }

.mob-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06); flex-shrink: 0;
}
.mob-drawer-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--fh); font-size: 16px; font-weight: 900;
  color: var(--white); text-decoration: none; letter-spacing: -.3px;
}
.mob-drawer-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: none;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); cursor: pointer;
  transition: background .2s, color .2s;
}
.mob-drawer-close:hover { background: rgba(255,255,255,.12); color: var(--white); }

.mob-list { list-style: none; padding: 8px 0; flex: 1; overflow: hidden; }
.mob-list-item {
  display: block; padding: 13px 20px;
  font-size: 15px; font-weight: 400; font-family: var(--fb);
  color: rgba(250,249,246,.72); text-decoration: none;
  transition: background .15s, color .15s;
}
.mob-list-item:hover,
.mob-list-item:active { background: rgba(255,255,255,.05); color: var(--white); }
.mob-list-item.active { color: var(--orange); }
.mob-list-item--sub { padding-left: 28px; font-size: 14px; color: rgba(250,249,246,.55); }
.mob-list-item--sub:hover,
.mob-list-item--sub:active { color: var(--orange); background: rgba(255,92,0,.05); }
.mob-list-group-label {
  padding: 8px 20px 4px; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.25);
}
.mob-list-divider { height: 1px; background: rgba(255,255,255,.06); margin: 4px 0; }

.mob-drawer-footer {
  padding: 14px 20px 20px;
  border-top: 1px solid rgba(255,255,255,.06); flex-shrink: 0;
}
.mob-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px 20px;
  background: var(--orange); color: #080807;
  font-family: var(--fh); font-size: 15px; font-weight: 900;
  border-radius: 10px; text-decoration: none; border: none; cursor: pointer;
  transition: background .2s; margin-bottom: 12px;
}
.mob-cta-btn:active { background: var(--orange2); }
.mob-drawer-contacts {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px; color: rgba(250,249,246,.3);
}
.mob-drawer-contacts a { color: rgba(250,249,246,.45); text-decoration: none; }

/* ── Carousel hidden by default ── */
.testi-carousel { display: none; }

/* ═══════════════════════════════════════════════════
   ≤ 1024px
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  /* Cursor */
  #cur, #curR { display: none !important; }

  /* Show drawer */
  .mob-overlay { display: block; }
  .mob-drawer  { display: flex; }

  /* Nav: 3-col grid, burger in col 3 */
  nav {
    height: 60px;
    padding: 0 16px;
    grid-template-columns: auto 1fr auto;
  }
  .nav-links,
  .nav-right  { display: none !important; }
  .nav-burger { display: flex !important; grid-column: 3; justify-self: end; }

  /* Hero */
  .hero { padding-top: 60px; }
  .hero-main { padding: 48px 20px 32px; max-width: 100%; }
  h1.hero-h  { font-size: clamp(44px, 12vw, 76px); letter-spacing: -2.5px; margin-bottom: 24px; }
  .hero-bottom { flex-direction: column; gap: 24px; align-items: flex-start; }
  .hero-desc { max-width: 100%; font-size: 15px; }
  .hero-ctas { align-items: flex-start; width: 100%; }
  .hero-ctas-row { flex-direction: column; width: 100%; gap: 10px; }
  .hero-ctas-row .btn-orange,
  .hero-ctas-row .btn-outline { width: 100%; justify-content: center; padding: 16px 20px; font-size: 15px; }
  .hero-cta-note { text-align: left; }

  /* Ticker — 2 per row */
  .hero-ticker { flex-wrap: wrap; }
  .ticker-item { flex: 1 1 50%; min-width: 140px; padding: 20px 16px; border-bottom: 1px solid var(--border); }
  .ticker-item:last-child { border-right: none; }
  .ticker-n { font-size: 38px; letter-spacing: -2px; }

  /* Video */
  .video-section { padding: 48px 20px 56px; text-align: left; }
  .video-section-head { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
  .video-section-head .sec-h { font-size: clamp(26px,8vw,40px); }
  .video-section-right-text { max-width: 100%; font-size: 14px; }

  /* What we build */
  .wwb { padding: 56px 20px; }
  .wwb-head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
  .wwb-right-head { max-width: 100%; }
  .wwb-grid { grid-template-columns: 1fr 1fr; }
  .svc-card { padding: 28px 20px 72px; }
  .svc-card:nth-child(2n) { border-right: none; }
  .svc-card:nth-child(n+3) { border-top: 1px solid var(--border); }
  .svc-more { left: 20px; bottom: 20px; }

  /* CTA band */
  .cta-inline { flex-direction: column; gap: 20px; padding: 40px 20px; align-items: flex-start; }
  .cta-inline-btns { flex-direction: column; width: 100%; gap: 10px; }
  .cta-inline-btns .btn-black,
  .cta-inline-btns .btn-white { width: 100%; justify-content: center; padding: 15px 20px; }

  /* Featured */
  .featured { padding: 0 20px 64px !important; }
  .feat-card { grid-template-columns: 1fr; }
  .feat-right { display: none; }
  .feat-left { padding: 32px 20px; }
  .feat-title { font-size: 32px; letter-spacing: -1.5px; }
  .feat-stats { gap: 20px; flex-wrap: wrap; }

  /* Process home */
  .proc-home { padding: 56px 20px; }
  .proc-home-head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 36px; }
  .prh-content { padding-left: 4px; }
  .prh-name { font-size: 17px; }
  .prh-dot { width: 44px; height: 44px; font-size: 11px; }
  .proc-line { left: 21px; }
  .proc-line-fill { left: 21px; }
  .proc-home-row { grid-template-columns: 44px 1fr; gap: 16px; }

  /* Testimonials → carousel */
  .testi { padding: 56px 0; }
  .testi-head { padding: 0 20px; flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
  .testi-grid { display: none; }
  .testi-carousel { display: block; }
  .testi-carousel-track { display: flex; transition: transform .38s cubic-bezier(.4,0,.2,1); }
  .tc-slide { flex: 0 0 100%; min-width: 0; padding: 32px 20px; background: var(--black3); border: 1px solid var(--border); position: relative; }
  .tc-slide::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--orange); }
  .tc-slide .tc-q { padding-top: 36px; font-size: 14px; line-height: 1.75; }
  .tc-slide .tc-auth { padding-top: 16px; border-top: 1px solid var(--border); }
  .testi-carousel-nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px 4px; }
  .tc-arr-btn { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; }
  .tc-arr-btn:hover { background: rgba(255,92,0,.1); border-color: rgba(255,92,0,.3); color: var(--orange); }
  .tc-dots { display: flex; gap: 6px; align-items: center; }
  .tc-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.18); border: none; cursor: pointer; padding: 0; transition: background .25s, width .3s; }
  .tc-dot.active { background: var(--orange); width: 22px; border-radius: 4px; }

  /* Final CTA */
  .final-cta { padding: 64px 20px; }
  .fcta-h { font-size: clamp(36px, 10vw, 70px); letter-spacing: -2px; }
  .fcta-btns { flex-direction: column; align-items: center; gap: 10px; }
  .fcta-btns .btn-orange,
  .fcta-btns .btn-outline { width: 100%; max-width: 320px; justify-content: center; }

  /* Page heros */
  .p-hero { padding: 88px 20px 48px; }
  .ph-h { font-size: clamp(40px,10vw,70px); letter-spacing: -2.5px; }
  .ph-d { font-size: 15px; max-width: 100%; }

  /* Services */
  .srv-full { padding: 28px 20px; }
  .sf-row { grid-template-columns: 1fr; gap: 20px; padding: 36px 0; margin: 0; }
  .sf-feats { grid-template-columns: 1fr; }
  .sf-steps { flex-direction: column; align-items: flex-start; }
  .sf-step-arrow { transform: rotate(90deg); }

  /* Cases */
  .cases-grid-wrap { padding: 28px 20px; }
  .cg { grid-template-columns: 1fr; }
  .cc:nth-child(n) { grid-column: span 1; aspect-ratio: 16/9; }

  /* About */
  .about-body { padding: 32px 20px; }
  .about-split { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
  .ab-img { display: none; }
  .team-s { padding: 0 20px 48px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Process full */
  .proc-full { padding: 28px 20px; }
  .pf-row { grid-template-columns: 56px 1fr; gap: 16px; padding: 28px 0; }
  .pf-row .pf-n { font-size: 40px; }
  .pf-delivers { flex-direction: column; gap: 8px; }

  /* Contacts */
  .contacts-body { padding: 32px 20px; }
  .contact-split { grid-template-columns: 1fr; gap: 36px; }
  .cf-row2 { grid-template-columns: 1fr; }

  /* Footer */
  footer { padding: 48px 20px 28px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 28px; }
  .foot-bot { flex-direction: column; gap: 8px; align-items: center; text-align: center; }

  /* sec-h smaller */
  .sec-h { font-size: clamp(28px, 7vw, 48px); letter-spacing: -1.5px; }

  /* Services inline */
  div.cta-inline[style] { margin: 0 20px 48px !important; }
}

/* ═══════════════════════════════════════════════════
   ≤ 640px
═══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .wwb-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; padding: 24px 16px 68px; }
  .svc-card:last-child { border-bottom: none !important; }
  .svc-more { left: 16px; bottom: 18px; font-size: 12px; padding: 6px 12px; }
  .foot-top { grid-template-columns: 1fr; gap: 24px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pf-row { grid-template-columns: 1fr; gap: 4px; padding: 24px 0; }
  .pf-row .pf-n { display: none; }
  .pf-name { font-size: 20px; }
}

/* ═══════════════════════════════════════════════════
   ≤ 380px
═══════════════════════════════════════════════════ */
@media (max-width: 380px) {
  h1.hero-h { font-size: 38px; }
  .team-grid { grid-template-columns: 1fr; }
}