@import url('../variables.css');

/* ═══════════════════════════════════════════════════════════
   IZBA — Obsidian Luxe · 3D Interactive Presentation
   ═══════════════════════════════════════════════════════════ */

:root {
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', var(--font-cosmica);
  --font-card-title: var(--font-body);
  --gold: var(--theme-accent, #c9a962);
  --gold-light: var(--theme-accent-light, #e8d5a3);
  --gold-dark: #9a7b3c;
  --gold-glow: var(--theme-accent-glow, rgba(201, 169, 98, 0.45));
  --ember-glow: rgba(255, 90, 0, 0.35);
  --glass: var(--theme-bg-card, rgba(255, 255, 255, 0.04));
  --glass-border: var(--theme-border, rgba(255, 255, 255, 0.08));
  --glass-strong: rgba(255, 255, 255, 0.07);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
  --perspective: 1200px;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--theme-text, var(--color-cloud));
  background: var(--theme-bg, var(--color-obsidian));
  overflow-x: hidden;
  cursor: none;
  transition: background 0.4s ease, color 0.4s ease;
}

body.is-touch { cursor: auto; }
body.is-touch .services-nav-dot,
body.is-touch button { cursor: pointer; }
body.is-touch .cursor-dot,
body.is-touch .cursor-ring { display: none; }

::selection {
  background: rgba(201, 169, 98, 0.35);
  color: var(--color-snow);
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; }

/* ─── Custom Cursor ─── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 10001;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out-expo), height 0.35s var(--ease-out-expo), opacity 0.3s;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 98, 0.5);
  transition: width 0.45s var(--ease-out-expo), height 0.45s var(--ease-out-expo), border-color 0.3s;
}

.cursor-ring.is-hover {
  width: 64px;
  height: 64px;
  border-color: var(--gold);
  background: rgba(201, 169, 98, 0.06);
}

/* ─── Loader ─── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-loader-bg, var(--color-obsidian));
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--theme-heading, var(--color-snow));
  margin-bottom: 1.5rem;
  text-align: center;
}

.loader-logo--image {
  letter-spacing: 0;
  font-size: 0;
}

.loader-logo--image img {
  display: block;
  height: 2.75rem;
  width: auto;
  max-width: min(220px, 75vw);
  margin: 0 auto;
  object-fit: contain;
}

.loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  animation: loadBar 1.2s var(--ease-out-expo) forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}

/* ─── Ambient Background ─── */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  animation: orbFloat 20s ease-in-out infinite;
}

.ambient-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  top: -10%;
  right: -5%;
}

.ambient-orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--ember-glow) 0%, transparent 70%);
  bottom: 20%;
  left: -10%;
  animation-delay: -7s;
}

.ambient-orb--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Progress ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--color-ember));
  z-index: 9999;
  box-shadow: 0 0 20px var(--gold-glow);
}

/* ─── Site logo (scrolls with hero) ─── */
.hero-brand {
  position: absolute;
  top: max(1.25rem, env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  z-index: 3;
}

.site-logo {
  position: relative;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--theme-heading, var(--color-snow));
  text-decoration: none;
}

.site-logo em {
  font-style: normal;
  color: var(--gold);
}

.site-logo--image {
  display: inline-flex;
  align-items: center;
  letter-spacing: 0;
  font-size: 0;
  line-height: 0;
}

.site-logo-img {
  display: block;
  height: clamp(28px, 6.5vw, 38px);
  width: auto;
  max-width: min(180px, 48vw);
  object-fit: contain;
  object-position: left center;
}

.scroll-indicator {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.5;
  transition: opacity 0.5s;
}

.scroll-indicator.is-hidden { opacity: 0; pointer-events: none; }

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-fog);
}

.scroll-indicator-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ─── Layout ─── */
.page-wrap {
  position: relative;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section {
  padding: clamp(2rem, 6vh, 5rem) 0;
  position: relative;
}

.section-header {
  margin-bottom: clamp(0.85rem, 3vw, 2.5rem);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: clamp(0.58rem, 2.2vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--theme-accent, var(--gold));
  margin-bottom: 0.85rem;
}

.section-eyebrow::before {
  content: '';
  width: clamp(20px, 6vw, 40px);
  height: 1px;
  background: linear-gradient(90deg, var(--theme-accent, var(--gold)), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--theme-heading, var(--color-snow));
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-desc {
  font-size: clamp(0.85rem, 3vw, 1.15rem);
  color: var(--theme-text-muted, var(--color-fog));
  line-height: 1.6;
  max-width: 560px;
  margin-top: 0.75rem;
}

/* ─── Glass Card ─── */
.glass {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-3xl-3);
}

.glass-strong {
  background: var(--glass-strong);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.5rem;
  min-height: 48px;
  font-size: clamp(0.82rem, 3vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--color-obsidian);
  box-shadow: 0 8px 32px rgba(201, 169, 98, 0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--color-snow);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  border-color: rgba(201, 169, 98, 0.4);
  box-shadow: 0 0 30px rgba(201, 169, 98, 0.1);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-out-expo);
}

.btn:hover svg { transform: translateX(4px); }

/* ─── Tags ─── */
.tag {
  display: inline-flex;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-cloud);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s;
}

.tag:hover {
  border-color: rgba(201, 169, 98, 0.35);
  background: rgba(201, 169, 98, 0.08);
}

/* ═══════════════════════════════════════════════════════════
   HERO (mobile-first)
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
  padding: clamp(5rem, 14vw, 10rem) 0 clamp(2rem, 5vh, 6rem);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 4vw, 4rem);
  align-items: center;
}

.hero-visual {
  order: -1;
  position: relative;
  perspective: var(--perspective);
  overflow: visible;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem 0.4rem 0.45rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  margin-bottom: 1.25rem;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-badge-text {
  font-size: clamp(0.62rem, 2.5vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--theme-text-muted, var(--color-ash));
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 8.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--theme-heading, var(--color-snow));
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero-headline .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.hero-headline .char {
  display: inline-block;
  transform: translateY(110%);
}

.hero-highlight {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.52em;
  color: var(--theme-accent, var(--gold));
  letter-spacing: 0;
}

.hero-sub {
  font-size: clamp(0.88rem, 3.4vw, 1.125rem);
  color: var(--theme-text-muted, var(--color-fog));
  line-height: 1.65;
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-actions .btn {
  width: 100%;
}

.hero-card-3d {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  overflow: visible;
}

/* ─── Hero District Orbit (coverage visual) ─── */
.hero-coverage-wrap {
  position: relative;
  z-index: 1;
  border-radius: clamp(16px, 4vw, var(--radius-full-3));
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--theme-accent) 25%, var(--glass-border));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  background: var(--theme-bg, #0f172a);
}

.hero-coverage-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-coverage-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  will-change: transform, opacity;
}

.hero-coverage-bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-coverage-bg-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 10, 18, 0.35) 0%, rgba(6, 10, 18, 0.55) 55%, rgba(6, 10, 18, 0.78) 100%),
    linear-gradient(135deg, color-mix(in srgb, var(--theme-bg) 28%, transparent) 0%, transparent 50%);
}

.hero-coverage-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: clamp(340px, 56dvh, 520px);
}

.hero-coverage-visual {
  position: relative;
  flex: 1 1 auto;
  min-height: 240px;
  margin: 0.75rem 0.75rem 0;
  padding: 1.5rem 0.5rem;
  border-radius: 14px;
  overflow: visible;
  background: color-mix(in srgb, var(--theme-bg) 42%, transparent);
  border: 1px solid color-mix(in srgb, var(--theme-accent) 15%, transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-coverage-aurora {
  position: absolute;
  inset: -30%;
  z-index: 0;
  background:
    conic-gradient(from 180deg at 50% 50%, transparent 0deg, color-mix(in srgb, var(--theme-accent) 12%, transparent) 60deg, transparent 120deg, color-mix(in srgb, var(--theme-accent-light, var(--gold)) 10%, transparent) 200deg, transparent 280deg);
  animation: heroOrbitAurora 14s linear infinite;
  opacity: 0.7;
  pointer-events: none;
}

@keyframes heroOrbitAurora {
  to { transform: rotate(360deg); }
}

.hero-coverage-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  border: 1px dashed color-mix(in srgb, var(--theme-accent) 30%, transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-coverage-ring--outer {
  width: min(78%, 240px);
  aspect-ratio: 1;
  animation: heroOrbitSpin 40s linear infinite;
}

.hero-coverage-ring--inner {
  width: min(54%, 168px);
  aspect-ratio: 1;
  border-style: solid;
  border-color: color-mix(in srgb, var(--theme-accent) 15%, transparent);
  animation: heroOrbitSpin 28s linear infinite reverse;
}

@keyframes heroOrbitSpin {
  to { rotate: 360deg; }
}

.hero-orbit-spokes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-orbit-spoke {
  stroke: color-mix(in srgb, var(--theme-accent) 25%, transparent);
  stroke-width: 1;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke 0.4s ease, opacity 0.4s ease;
}

.hero-coverage-stage.is-ready .hero-orbit-spoke {
  stroke-dashoffset: 0;
  opacity: 0.5;
}

.hero-orbit-spoke.is-active {
  stroke: var(--node-accent, var(--theme-accent));
  stroke-width: 1.5;
  opacity: 1;
  filter: drop-shadow(0 0 6px var(--node-accent, var(--theme-accent)));
}

.hero-coverage-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: 2;
  width: 52px;
  height: 52px;
}

.hero-coverage-hub-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--theme-accent) 45%, transparent);
  animation: heroHubPulse 3s ease-in-out infinite;
}

@keyframes heroHubPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.12); opacity: 1; }
}

.hero-coverage-hub-core {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(145deg, color-mix(in srgb, var(--theme-accent) 35%, var(--theme-bg-soft)), var(--theme-bg));
  border: 1px solid color-mix(in srgb, var(--theme-accent) 50%, transparent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--theme-accent) 35%, transparent);
  color: var(--theme-accent-light, var(--theme-accent));
}

.hero-coverage-hub-core svg {
  width: 22px;
  height: 22px;
}

.hero-orbit-nodes {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.hero-orbit-node {
  --orbit-radius: clamp(64px, 24vw, 96px);
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(calc(-1 * var(--orbit-radius))) rotate(calc(-1 * var(--orbit-angle)));
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-orbit-node-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--node-accent) 75%, #fff 8%), color-mix(in srgb, var(--node-accent) 90%, #000 10%));
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--node-accent) 45%, transparent);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-orbit-node-icon {
  width: 20px;
  height: 20px;
  color: var(--theme-bg, #0f172a);
  display: flex;
}

.hero-orbit-node-icon svg {
  width: 100%;
  height: 100%;
}

.hero-orbit-node-label {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--theme-text-muted);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.hero-orbit-node-orbit {
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  border: 1px solid transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-orbit-node.is-active {
  z-index: 6;
  transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(calc(-1 * var(--orbit-radius))) rotate(calc(-1 * var(--orbit-angle))) scale(1.12);
}

.hero-orbit-node.is-active .hero-orbit-node-body {
  box-shadow:
    0 8px 28px color-mix(in srgb, var(--node-accent) 55%, transparent),
    0 0 24px color-mix(in srgb, var(--node-accent) 40%, transparent);
}

.hero-orbit-node.is-active .hero-orbit-node-label {
  opacity: 1;
  color: var(--node-accent);
}

.hero-orbit-node.is-active .hero-orbit-node-orbit {
  opacity: 1;
  border-color: color-mix(in srgb, var(--node-accent) 70%, transparent);
  animation: heroNodeOrbit 2.5s ease-out infinite;
}

@keyframes heroNodeOrbit {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.45); opacity: 0; }
}

.hero-orbit-node:focus-visible .hero-orbit-node-body {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.hero-coverage-panel {
  flex-shrink: 0;
  margin: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid color-mix(in srgb, var(--theme-accent) 20%, var(--glass-border));
  background: color-mix(in srgb, var(--theme-bg) 68%, transparent);
}

.hero-coverage-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.hero-coverage-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-accent-light, var(--theme-accent));
}

.hero-coverage-count {
  font-size: 0.62rem;
  color: var(--theme-text-muted);
}

.hero-coverage-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4.8vw, 1.5rem);
  color: var(--theme-heading);
  margin: 0 0 0.2rem;
  line-height: 1.15;
}

.hero-coverage-desc {
  font-size: clamp(0.72rem, 2.8vw, 0.84rem);
  color: var(--theme-text-muted);
  margin: 0 0 0.65rem;
  line-height: 1.45;
}

.hero-coverage-dots {
  display: flex;
  gap: 0.35rem;
}

.hero-coverage-dot {
  flex: 1;
  height: 3px;
  border-radius: 100px;
  background: color-mix(in srgb, var(--theme-text-muted) 35%, transparent);
  transition: background 0.35s ease, transform 0.35s ease;
}

.hero-coverage-dot.is-active {
  background: linear-gradient(90deg, var(--theme-accent), var(--theme-accent-light, var(--theme-accent)));
  transform: scaleY(1.6);
}

@media (min-width: 768px) {
  .hero-orbit-node {
    --orbit-radius: 102px;
    width: 56px;
    height: 56px;
  }

  .hero-orbit-node-icon {
    width: 22px;
    height: 22px;
  }

  .hero-coverage-hub {
    width: 58px;
    height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-coverage-aurora,
  .hero-coverage-ring,
  .hero-coverage-hub-ring,
  .hero-orbit-node-orbit {
    animation: none !important;
  }
}

.hero-image-wrap {
  position: relative;
  border-radius: clamp(16px, 4vw, var(--radius-full-3));
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.hero-image-wrap img,
.hero-image-wrap video {
  width: 100%;
  height: clamp(240px, 42dvh, 560px);
  object-fit: cover;
  background: var(--theme-bg, #0f172a);
  transform: scale(1.03);
  transition: transform 8s var(--ease-out-expo);
}

.hero-image-wrap video.hero-video {
  display: block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.hero-image-wrap.is-video-paused::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(6, 10, 18, 0.35) 100%);
}

.hero-card-3d:hover .hero-image-wrap img,
.hero-card-3d:hover .hero-image-wrap video {
  transform: scale(1);
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(145deg, rgba(9, 9, 11, 0.42) 0%, transparent 32%),
    linear-gradient(180deg, transparent 38%, rgba(9, 9, 11, 0.68) 100%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   PROBLEM / STATS — impact dashboard (mobile-first)
   ═══════════════════════════════════════════════════════════ */
.stats-section {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 7vh, 5rem) 0;
}

.stats-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.stats-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.42;
}

.stats-bg-orb--1 {
  width: min(460px, 75vw);
  height: min(460px, 75vw);
  top: -18%;
  left: -20%;
  background: var(--theme-orb-1, rgba(56, 189, 248, 0.35));
}

.stats-bg-orb--2 {
  width: min(360px, 60vw);
  height: min(360px, 60vw);
  bottom: -10%;
  right: -15%;
  background: var(--theme-orb-2, rgba(99, 102, 241, 0.22));
}

.stats-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--theme-grid-line, rgba(255, 255, 255, 0.04)) 1px, transparent 1px),
    linear-gradient(90deg, var(--theme-grid-line, rgba(255, 255, 255, 0.04)) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, black 15%, transparent 72%);
  opacity: 0.5;
}

.stats-container {
  position: relative;
  z-index: 1;
}

.stats-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 4vw, 2rem);
  margin-bottom: clamp(1.75rem, 5vw, 2.75rem);
}

.stats-intro .section-title {
  font-size: clamp(1rem, 3.8vw, 3.5rem);
  line-height: 1.08;
  max-width: none;
  white-space: nowrap;
}

.stats-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.stat-metric {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: clamp(0.85rem, 3vw, 1.25rem);
  min-height: 108px;
  border-radius: clamp(14px, 3.5vw, 18px);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out-expo), border-color 0.3s, box-shadow 0.45s;
}

.stat-metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--theme-accent), transparent);
  opacity: 0.65;
}

.stat-metric-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, var(--theme-accent-glow, rgba(201, 169, 98, 0.15)), transparent 55%);
  pointer-events: none;
}

.stat-metric-icon {
  width: 1.65rem;
  height: 1.65rem;
  color: var(--theme-accent);
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

.stat-metric-icon svg {
  width: 100%;
  height: 100%;
}

.stat-metric-body {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 5vw, 2.75rem);
  color: var(--theme-heading, var(--color-snow));
  line-height: 1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: clamp(0.58rem, 2vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--theme-text-muted, var(--color-fog));
  line-height: 1.35;
}

.stat-metric-index {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--theme-accent);
  opacity: 0.45;
  z-index: 1;
}

.cost-cascade {
  position: relative;
}

.cost-cascade-head {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  max-width: 36ch;
}

.cost-cascade-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--theme-accent);
  margin-bottom: 0.45rem;
}

.cost-cascade-eyebrow::before {
  content: '';
  width: 1.25rem;
  height: 1px;
  background: var(--theme-accent);
  opacity: 0.65;
}

.cost-cascade-lead {
  font-size: clamp(0.82rem, 3vw, 0.98rem);
  line-height: 1.55;
  color: var(--theme-text-muted, var(--color-fog));
  margin: 0;
}

.cost-cascade-stage {
  position: relative;
}

.cost-flow {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  width: 100%;
  height: 48px;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
  transform: translateY(-50%);
}

.cost-flow-path {
  stroke: var(--theme-accent);
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 2s var(--ease-out-expo);
}

.stats-section.is-inview .cost-flow-path {
  stroke-dashoffset: 0;
}

.cost-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}

.cost-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  padding: clamp(0.9rem, 3vw, 1.2rem);
  min-height: 118px;
  border-radius: clamp(14px, 3.5vw, 18px);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out-expo), border-color 0.3s, box-shadow 0.45s;
}

.cost-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, var(--theme-border-accent), transparent 55%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}

.cost-card-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 0%, var(--theme-accent-glow, rgba(201, 169, 98, 0.14)), transparent 58%);
  pointer-events: none;
}

.cost-card-icon {
  width: 1.85rem;
  height: 1.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--theme-accent);
  background: linear-gradient(145deg, var(--theme-bg-card-hover), transparent);
  border: 1px solid var(--theme-border-accent);
  box-shadow: 0 0 16px var(--theme-accent-glow);
  position: relative;
  z-index: 1;
}

.cost-card-icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

.cost-card-node {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 1.45rem;
  height: 1.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--theme-inverse, var(--theme-bg));
  background: var(--theme-accent);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--theme-accent-glow);
  z-index: 2;
}

.cost-card-text {
  font-family: var(--font-card-title);
  font-weight: 500;
  font-size: clamp(0.78rem, 2.8vw, 0.95rem);
  line-height: 1.28;
  color: var(--theme-heading, var(--color-snow));
  margin: 0;
  position: relative;
  z-index: 1;
  padding-right: 1.5rem;
}

.cost-card-pulse {
  position: absolute;
  left: 0.85rem;
  bottom: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--theme-accent);
  box-shadow: 0 0 10px var(--theme-accent-glow);
  opacity: 0.55;
  animation: costPulse 2.4s ease-in-out infinite;
}

@keyframes costPulse {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.35); opacity: 0.9; }
}

@media (min-width: 480px) {
  .cost-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
  }
}

@media (min-width: 768px) {
  .cost-flow {
    display: block;
  }

  .cost-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .cost-card {
    min-height: 148px;
    align-items: center;
    text-align: center;
    padding: 1.15rem 0.85rem 1rem;
  }

  .cost-card-text {
    padding-right: 0;
    text-align: center;
  }

  .cost-card-icon {
    width: 2.1rem;
    height: 2.1rem;
    margin-inline: auto;
  }

  .cost-card-icon svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .cost-card-node {
    top: auto;
    bottom: -0.55rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .cost-card-pulse {
    display: none;
  }
}

@media (hover: hover) {
  .stat-metric:hover {
    transform: translateY(-4px);
    border-color: var(--theme-border-accent);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2), 0 0 24px var(--theme-accent-glow);
  }

  .cost-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22), 0 0 22px var(--theme-accent-glow);
  }
}

/* ═══════════════════════════════════════════════════════════
   PILLARS (mobile-first)
   ═══════════════════════════════════════════════════════════ */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.pillar-card {
  padding: clamp(1.25rem, 4vw, 2.75rem);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s, border-color 0.3s;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.pillar-num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 8vw, 4rem);
  line-height: 1;
  color: rgba(201, 169, 98, 0.12);
  position: absolute;
  top: 0.75rem;
  right: 1rem;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.15), rgba(201, 169, 98, 0.05));
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: var(--radius-3xl-2);
  margin-bottom: 1rem;
  color: var(--theme-accent, var(--gold));
}

.pillar-icon svg { width: 22px; height: 22px; }

.pillar-title {
  font-family: var(--font-card-title);
  font-weight: 500;
  font-size: clamp(1.2rem, 4.5vw, 1.75rem);
  color: var(--theme-heading, var(--color-snow));
  margin-bottom: 0.5rem;
}

.pillar-desc {
  font-size: clamp(0.85rem, 3vw, 0.95rem);
  color: var(--theme-text-muted, var(--color-fog));
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   WHY IZBA — 8 cards (mobile-first: 3 cols, desktop: 4 cols)
   ═══════════════════════════════════════════════════════════ */
.why-section {
  overflow: visible;
  position: relative;
}

.why-header {
  margin-bottom: 1rem;
}

.why-title {
  font-size: clamp(1.45rem, 5vw, 2.75rem);
  line-height: 1.1;
}

/* ─── Why grid — shared layout ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.why-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 76px;
  padding: 0.55rem 0.45rem;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease, border-color 0.25s ease, background 0.25s ease;
}

.why-card-num {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--theme-accent);
  opacity: 0.7;
  margin-bottom: 0.35rem;
  position: relative;
  z-index: 1;
}

.why-card-title {
  font-family: var(--font-card-title);
  font-weight: 500;
  font-size: clamp(0.72rem, 2.8vw, 0.95rem);
  line-height: 1.2;
  color: var(--theme-heading);
  margin: 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 480px) {
  .why-grid { gap: 0.55rem; }
  .why-card { min-height: 88px; padding: 0.65rem 0.55rem; }
  .why-card-title { font-size: clamp(0.78rem, 2.5vw, 1rem); }
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  .why-card { min-height: 100px; padding: 0.85rem 0.65rem; border-radius: 16px; }
  .why-header { margin-bottom: 1.5rem; }
}

@media (min-width: 1024px) {
  .why-grid { gap: 1rem; max-width: 960px; margin: 0 auto; }
  .why-card { min-height: 112px; }
  .why-card-title { font-size: 1.05rem; }
}

/* ═══════════════════════════════════════════════════════════
   EXPOSURE — Channel grid (mobile-first)
   ═══════════════════════════════════════════════════════════ */
.exposure-section {
  overflow: visible;
  padding: clamp(3rem, 8vh, 5rem) 0;
}

.exposure-header {
  margin-bottom: 1.25rem;
}

.exposure-title {
  font-size: clamp(1.5rem, 5.5vw, 2.75rem);
  line-height: 1.12;
  max-width: 100%;
}

.exposure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.exposure-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 0.3rem;
  min-height: 72px;
  text-align: center;
  border-radius: 14px;
  background: var(--theme-bg-card);
  border: 1px solid var(--theme-border);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.exposure-card:active,
.exposure-card:hover {
  border-color: var(--theme-border-accent);
  background: var(--theme-bg-card-hover);
}

.exposure-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(28px, 8vw, 36px);
  flex-shrink: 0;
}

.exposure-logo img {
  display: block;
  margin-inline: auto;
  max-width: 94%;
  max-height: clamp(28px, 8vw, 36px);
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
  opacity: 1;
  filter: none;
}

.exposure-name {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--theme-text-muted);
  line-height: 1.2;
  max-width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  padding: 0 2px;
}

@media (min-width: 480px) {
  .exposure-grid { gap: 0.55rem; }
  .exposure-card {
    min-height: 84px;
    padding: 0.65rem 0.4rem;
    gap: 0.45rem;
  }
  .exposure-logo { height: 32px; }
  .exposure-logo img { max-height: 32px; }
  .exposure-name { font-size: 0.55rem; }
}

@media (min-width: 768px) {
  .exposure-header { margin-bottom: 1.75rem; }
  .exposure-grid { gap: 0.75rem; }
  .exposure-card {
    min-height: 96px;
    padding: 0.85rem 0.5rem;
    border-radius: 16px;
  }
  .exposure-logo { height: 38px; }
  .exposure-logo img { max-height: 38px; }
  .exposure-name { font-size: 0.62rem; }
}

@media (min-width: 1024px) {
  .exposure-grid { gap: 1rem; max-width: 880px; margin: 0 auto; }
  .exposure-card {
    min-height: 108px;
    padding: 1rem 0.65rem;
  }
  .exposure-logo { height: 42px; }
  .exposure-logo img { max-height: 42px; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES — Scroll Stack (mobile-first)
   ═══════════════════════════════════════════════════════════ */
.services-stack {
  position: relative;
  padding: 0 !important;
}

.services-stack + .process-section {
  padding-top: clamp(0.25rem, 1vh, 0.5rem);
}

.services-sticky {
  height: auto;
  min-height: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.services-sticky-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  justify-content: flex-start;
  padding-block: clamp(3.25rem, 9vw, 4.25rem) clamp(0.35rem, 1vh, 0.65rem);
}

.services-header {
  flex-shrink: 0;
  margin-bottom: 0.5rem;
  text-align: left;
}

.services-header .section-title {
  font-size: clamp(1.35rem, 5.5vw, 1.85rem);
  margin-bottom: 0;
  line-height: 1.15;
}

.services-header .section-eyebrow {
  margin-bottom: 0.5rem;
}

.services-stage {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  position: relative;
  min-height: 0;
  padding-top: 0.25rem;
  padding-bottom: 0;
}

.services-cards {
  position: relative;
  width: 100%;
  height: clamp(280px, 64vw, 320px);
  min-height: 0;
  perspective: var(--perspective);
}

.service-card-3d {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 0;
  overflow: hidden;
  transform-origin: center top;
  will-change: transform, opacity;
  border-radius: clamp(16px, 4vw, 24px);
  background: var(--theme-bg-card);
  border: 1px solid var(--theme-border);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.service-card-3d::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, var(--theme-border-accent), transparent 55%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.35;
  z-index: 4;
}

.service-card-shine {
  display: none;
}

.service-card-peek {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  background: var(--theme-bg-soft, #1e293b);
  border-bottom: 1px solid var(--theme-border);
  pointer-events: none;
}

.service-peek-num {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--theme-accent);
  flex-shrink: 0;
}

.service-peek-title {
  font-family: var(--font-card-title);
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--theme-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.85;
}

.service-card-3d.is-peek {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background: var(--theme-bg-card);
}

.service-card-3d.is-peek .service-card-peek {
  display: flex;
}

.service-card-3d.is-peek .service-card-body {
  visibility: hidden;
  opacity: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
}

.service-card-3d.is-peek .service-card-image {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  z-index: 0;
}

.service-card-3d.is-peek .service-card-image::after {
  display: none;
}

.service-card-3d.is-peek .service-card-peek {
  position: relative;
  z-index: 2;
}

.service-card-3d.is-active {
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.32),
    0 0 0 1px var(--theme-border);
}

.service-card-3d.is-active .service-card-peek {
  display: none;
}

.service-card-3d.is-past {
  pointer-events: none;
}

.service-card-image {
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: clamp(130px, 28vw, 170px);
  z-index: 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.service-card-3d.is-active:hover .service-card-image img {
  transform: scale(1.04);
}

.service-card-image::after {
  display: none;
}

.service-card-3d.is-active .service-card-image::after {
  display: none;
}

.service-card-body {
  position: relative;
  z-index: 2;
  padding: clamp(0.95rem, 3.2vw, 1.25rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--theme-bg-soft, #1e293b);
  border-top: 1px solid var(--theme-border);
  min-height: clamp(108px, 28vw, 132px);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.service-card-body::before {
  display: none;
}

.service-num {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--theme-accent-light, var(--theme-accent, var(--gold)));
  margin-bottom: 0.45rem;
  opacity: 1;
}

.service-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-card-title);
  font-weight: 600;
  font-size: clamp(1.15rem, 4.8vw, 1.45rem);
  color: var(--theme-heading, var(--color-snow));
  margin-bottom: 0.45rem;
  line-height: 1.22;
}

.service-desc {
  position: relative;
  z-index: 1;
  font-size: clamp(0.84rem, 3.2vw, 0.95rem);
  font-weight: 500;
  color: color-mix(in srgb, var(--theme-heading, #f8fafc) 84%, var(--theme-text, #cbd5e1));
  line-height: 1.55;
  max-width: none;
}

.services-nav {
  position: relative;
  left: auto;
  bottom: auto;
  right: auto;
  top: auto;
  transform: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  z-index: 10;
  margin-top: 0.55rem;
  padding: 0;
}

.services-nav-dot {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: none;
  background: transparent;
  transition: all 0.35s var(--ease-out-expo);
  cursor: pointer;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.services-nav-dot::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  border: 1px solid var(--theme-border-accent, rgba(255, 255, 255, 0.3));
  background: transparent;
  transition: inherit;
}

.services-nav-dot.is-active::after {
  background: var(--theme-accent, var(--gold));
  border-color: var(--theme-accent, var(--gold));
  box-shadow: 0 0 12px var(--theme-accent-glow, var(--gold-glow));
  transform: scale(1.35);
}

@media (min-width: 769px) {
  .services-stack {
    padding: 0 !important;
  }

  .services-stack + .process-section {
    padding-top: clamp(0.35rem, 1.5vh, 0.75rem);
  }

  .services-sticky {
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  .services-sticky-inner {
    height: auto;
    padding-block: clamp(4rem, 8vh, 5rem) clamp(0.5rem, 1vh, 0.85rem);
  }

  .services-header .section-title {
    font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  }

  .services-stage {
    flex: 0 0 auto;
    flex-direction: row;
    align-items: flex-start;
    padding-top: 0.5rem;
    padding-bottom: 0;
  }

  .services-cards {
    height: min(48vh, 420px);
    min-height: 0;
  }

  .service-card-3d {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-rows: 1fr;
    border-radius: var(--radius-3xl-3);
  }

  .service-card-3d.is-peek {
    visibility: hidden;
    pointer-events: none;
  }

  .service-card-image {
    height: auto;
  }

  .service-card-image::after {
    display: none;
  }

  .service-card-body {
    padding: clamp(1.5rem, 3vw, 2.75rem);
    justify-content: center;
    background: var(--theme-bg-soft, #1e293b);
    min-height: 0;
    border-top: none;
    border-left: 1px solid var(--theme-border);
  }

  .service-card-body::before {
    display: none;
  }

  .service-num {
    font-size: 0.75rem;
    margin-bottom: 0.85rem;
  }

  .service-title {
    font-size: clamp(1.5rem, 2.8vw, 2.5rem);
    margin-bottom: 0.65rem;
  }

  .service-desc {
    font-size: clamp(0.88rem, 1.2vw, 1.02rem);
    max-width: 400px;
    color: var(--theme-text, #cbd5e1);
  }

  .services-nav {
    position: absolute;
    left: auto;
    right: 0;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0;
    padding: 0.25rem;
  }

  .services-nav-dot {
    width: 10px;
    height: 10px;
    cursor: none;
  }

  .services-nav-dot::after {
    inset: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transform: none;
  }

  .services-nav-dot.is-active::after {
    transform: scale(1.35);
  }
}

/* ═══════════════════════════════════════════════════════════
   PROCESS — 3D step grid (mobile-first)
   ═══════════════════════════════════════════════════════════ */
.process-section {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 4vh, 3rem) 0 clamp(2.5rem, 7vh, 5rem);
}

.process-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.process-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(88px);
  opacity: 0.38;
}

.process-bg-orb--1 {
  width: min(400px, 70vw);
  height: min(400px, 70vw);
  top: -10%;
  right: -18%;
  background: var(--theme-orb-1, rgba(56, 189, 248, 0.3));
}

.process-bg-orb--2 {
  width: min(320px, 55vw);
  height: min(320px, 55vw);
  bottom: -8%;
  left: -14%;
  background: var(--theme-orb-2, rgba(99, 102, 241, 0.22));
}

.process-container {
  position: relative;
  z-index: 1;
}

.process-header {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(1.25rem, 3vw, 2.5rem);
}

.process-header .section-title {
  max-width: 100%;
  word-wrap: break-word;
  font-size: clamp(1.35rem, 5.5vw, 3rem);
}

.process-stage {
  position: relative;
  perspective: 1100px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
}

.process-step-card {
  position: relative;
  padding: clamp(0.85rem, 3vw, 1.15rem);
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.55rem;
  border-radius: clamp(14px, 3.5vw, 18px);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease-out-expo), border-color 0.3s, box-shadow 0.45s;
  will-change: transform;
}

.process-step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, var(--theme-border-accent), transparent 60%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
  transition: opacity 0.35s;
}

.process-step-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 0%, var(--theme-accent-glow, rgba(201, 169, 98, 0.16)), transparent 58%);
  pointer-events: none;
  transition: opacity 0.35s;
}

.process-step-watermark {
  position: absolute;
  right: 0.2rem;
  bottom: -0.35rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3rem);
  line-height: 1;
  color: var(--theme-accent);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

.process-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.process-step-num {
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 2.5vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--theme-accent);
  opacity: 0.9;
}

.process-step-icon {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--theme-accent);
  background: linear-gradient(145deg, var(--theme-bg-card-hover), transparent);
  border: 1px solid var(--theme-border-accent);
  box-shadow: 0 0 14px var(--theme-accent-glow);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.process-step-icon svg {
  width: 0.9rem;
  height: 0.9rem;
}

.process-step-title {
  font-family: var(--font-card-title);
  font-weight: 500;
  font-size: clamp(0.76rem, 2.6vw, 0.92rem);
  line-height: 1.28;
  color: var(--theme-heading, var(--color-snow));
  margin: 0;
  position: relative;
  z-index: 1;
  padding-right: 0.25rem;
}

.process-step-accent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--theme-accent), transparent 75%);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease-out-expo), opacity 0.35s;
}

.process-step-card:active .process-step-accent,
.process-step-card:hover .process-step-accent {
  opacity: 0.75;
  transform: scaleX(1);
}

@media (min-width: 480px) {
  .process-grid {
    gap: 0.75rem;
  }

  .process-step-card {
    min-height: 118px;
  }
}

@media (hover: hover) {
  .process-step-card:hover {
    transform: translateY(-6px) rotateX(4deg) rotateY(-2deg);
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.28),
      0 0 28px var(--theme-accent-glow);
  }

  .process-step-card:hover::before {
    opacity: 1;
  }

  .process-step-card:hover .process-step-icon {
    transform: scale(1.08) translateZ(12px);
    box-shadow: 0 0 22px var(--theme-accent-glow);
  }

  .process-step-card:hover .process-step-shine {
    opacity: 1.2;
  }
}

.process-visual {
  margin-top: clamp(1.25rem, 4vw, 3rem);
  border-radius: clamp(16px, 4vw, var(--radius-full-3));
  overflow: hidden;
  height: clamp(180px, 28dvh, 360px);
  position: relative;
}

.process-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 9, 11, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: clamp(1rem, 3vw, 2rem);
}

/* ═══════════════════════════════════════════════════════════
   DUE DILIGENCE — verification pipeline (mobile-first)
   ═══════════════════════════════════════════════════════════ */
.diligence-section,
.outcome-section {
  overflow: hidden;
  position: relative;
}

.diligence-section {
  padding: clamp(2.5rem, 7vh, 5rem) 0;
}

.diligence-bg,
.outcome-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.diligence-bg-orb,
.outcome-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.diligence-bg-orb--1 {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  top: -12%;
  right: -18%;
  background: var(--theme-orb-1, rgba(56, 189, 248, 0.35));
}

.diligence-bg-orb--2 {
  width: min(320px, 55vw);
  height: min(320px, 55vw);
  bottom: -8%;
  left: -12%;
  background: var(--theme-orb-2, rgba(99, 102, 241, 0.25));
}

.diligence-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--theme-grid-line, rgba(255, 255, 255, 0.04)) 1px, transparent 1px),
    linear-gradient(90deg, var(--theme-grid-line, rgba(255, 255, 255, 0.04)) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 20%, transparent 75%);
  opacity: 0.55;
}

.diligence-container,
.outcome-container {
  position: relative;
  z-index: 1;
}

.diligence-header,
.outcome-header {
  margin-bottom: clamp(1.25rem, 4vw, 2rem);
}

.diligence-stage {
  position: relative;
}

.diligence-flow {
  display: none;
  position: absolute;
  inset: 18% 0 auto;
  width: 100%;
  height: 52%;
  z-index: 0;
  opacity: 0.65;
  pointer-events: none;
}

.diligence-flow-path {
  stroke: var(--theme-accent);
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  opacity: 0.4;
  transition: stroke-dashoffset 2.2s var(--ease-out-expo);
}

.diligence-section.is-inview .diligence-flow-path {
  stroke-dashoffset: 0;
}

.diligence-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  perspective: 900px;
}

.diligence-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.75rem;
  padding: clamp(0.95rem, 3vw, 1.35rem);
  min-height: 118px;
  border-radius: clamp(16px, 4vw, 20px);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out-expo), border-color 0.3s, box-shadow 0.45s;
}

.diligence-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--theme-accent), transparent);
  opacity: 0.55;
}

.diligence-card-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, var(--theme-accent-glow, rgba(201, 169, 98, 0.12)), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.diligence-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.5rem;
}

.diligence-step {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--theme-accent);
  opacity: 0.85;
}

.diligence-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--theme-accent);
  background: linear-gradient(145deg, var(--theme-bg-card-hover), transparent);
  border: 1px solid var(--theme-border-accent);
  box-shadow: 0 0 18px var(--theme-accent-glow);
}

.diligence-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.diligence-card-title {
  font-family: var(--font-card-title);
  font-weight: 500;
  font-size: clamp(0.82rem, 3vw, 1.05rem);
  line-height: 1.25;
  color: var(--theme-heading);
  margin: 0;
  position: relative;
  z-index: 1;
}

.diligence-card-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--theme-accent), transparent 70%);
  opacity: 0.25;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.diligence-card:hover .diligence-card-line,
.diligence-card:active .diligence-card-line {
  transform: scaleX(1);
  opacity: 0.5;
}

.diligence-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: clamp(1rem, 3vw, 1.5rem);
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--theme-border-accent);
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

.diligence-seal-icon {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--theme-accent);
  flex-shrink: 0;
}

.diligence-seal-icon svg {
  width: 100%;
  height: 100%;
}

.diligence-seal-text {
  font-size: clamp(0.62rem, 2.2vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-accent-light, var(--theme-accent));
}

/* ═══════════════════════════════════════════════════════════
   OUTCOME — dual-panel benefits (mobile-first)
   ═══════════════════════════════════════════════════════════ */
.outcome-section {
  padding: clamp(2.5rem, 7vh, 5rem) 0;
}

.outcome-bg-orb--1 {
  width: min(380px, 65vw);
  height: min(380px, 65vw);
  top: 10%;
  left: -20%;
  background: var(--theme-orb-2, rgba(99, 102, 241, 0.22));
}

.outcome-bg-orb--2 {
  width: min(440px, 72vw);
  height: min(440px, 72vw);
  bottom: -15%;
  right: -22%;
  background: var(--theme-orb-1, rgba(56, 189, 248, 0.28));
}

.outcome-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.75rem, 5vw, 2.5rem);
  align-items: start;
  position: relative;
  max-width: 980px;
  margin-inline: auto;
}

.outcome-column-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.35rem, 2vw, 0.75rem);
  margin-bottom: clamp(0.45rem, 2vw, 0.75rem);
}

.outcome-column-label {
  font-size: clamp(0.52rem, 2.2vw, 0.62rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--theme-accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.outcome-column-line {
  flex: 1;
  width: auto;
  height: 1px;
  background: linear-gradient(90deg, var(--theme-accent), transparent);
  opacity: 0.45;
}

.outcome-column--gain .outcome-column-line {
  background: linear-gradient(270deg, var(--theme-accent), transparent);
}

.outcome-cards {
  display: grid;
  gap: clamp(0.4rem, 2vw, 0.65rem);
}

.outcome-card {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-radius: clamp(14px, 3.5vw, 18px);
  overflow: hidden;
  border: 1px solid var(--theme-border);
  background: var(--theme-bg-card);
  transition: transform 0.45s var(--ease-out-expo), border-color 0.3s, box-shadow 0.45s;
}

.outcome-card-accent {
  width: 3px;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--theme-accent), transparent);
  opacity: 0.85;
}

.outcome-card--gain .outcome-card-accent {
  background: linear-gradient(180deg, var(--theme-accent-light, var(--theme-accent)), transparent);
}

.outcome-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(2rem, 9vw, 3rem);
  padding: 0 clamp(0.25rem, 1.5vw, 0.15rem) 0 clamp(0.45rem, 2.5vw, 0.85rem);
  color: var(--theme-accent);
  opacity: 0.55;
}

.outcome-card-icon svg {
  width: clamp(0.85rem, 3.5vw, 1.15rem);
  height: clamp(0.85rem, 3.5vw, 1.15rem);
}

.outcome-card-body {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 2vw, 0.75rem);
  padding: clamp(0.55rem, 2.5vw, 1rem) clamp(0.55rem, 2.5vw, 1.15rem) clamp(0.55rem, 2.5vw, 1rem) clamp(0.15rem, 1vw, 0.35rem);
  flex: 1;
  min-width: 0;
}

.outcome-check {
  display: none;
}

.outcome-text {
  font-family: var(--font-card-title);
  font-weight: 500;
  font-size: clamp(0.62rem, 2.6vw, 1.05rem);
  line-height: 1.25;
  color: var(--theme-heading);
  margin: 0;
}

@media (min-width: 480px) {
  .outcome-cards {
    gap: 0.55rem;
  }

  .outcome-text {
    font-size: clamp(0.75rem, 2.5vw, 0.92rem);
  }
}

@media (min-width: 480px) {
  .diligence-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .diligence-card {
    min-height: 128px;
  }
}

@media (min-width: 768px) {
  .diligence-flow {
    display: block;
  }

  .diligence-grid {
    gap: 1rem;
    max-width: 960px;
    margin-inline: auto;
  }

  .diligence-card {
    min-height: 142px;
    padding: 1.25rem 1.15rem;
  }

  .diligence-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .diligence-icon svg {
    width: 1.15rem;
    height: 1.15rem;
  }
}

@media (hover: hover) {
  .diligence-card:hover {
    transform: translateY(-4px);
    border-color: var(--theme-border-accent);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22), 0 0 24px var(--theme-accent-glow);
  }

  .outcome-card:hover {
    transform: translateX(4px);
    border-color: var(--theme-border-accent);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  }

  .outcome-column--gain .outcome-card:hover {
    transform: translateX(-4px);
  }
}

/* ═══════════════════════════════════════════════════════════
   TRUST (mobile-first)
   ═══════════════════════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.trust-card {
  padding: clamp(1.15rem, 3.5vw, 2.25rem);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.5s var(--ease-out-expo), border-color 0.3s;
}

.trust-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.2), rgba(201, 169, 98, 0.05));
  border-radius: var(--radius-xl);
  color: var(--theme-accent, var(--gold));
  font-size: 1.1rem;
}

.trust-title {
  font-family: var(--font-card-title);
  font-weight: 500;
  font-size: clamp(1.05rem, 4vw, 1.35rem);
  color: var(--theme-heading, var(--color-snow));
  margin-bottom: 0.35rem;
}

.trust-desc {
  font-size: clamp(0.82rem, 3vw, 0.9rem);
  color: var(--theme-text-muted, var(--color-fog));
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════
   HOW WE WORK — Timeline (mobile-first vertical)
   ═══════════════════════════════════════════════════════════ */
.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
  margin-top: 1.5rem;
  padding-left: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--theme-accent, var(--gold)) 12%,
    var(--theme-accent, var(--gold)) 88%,
    transparent 100%
  );
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

.timeline-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  text-align: left;
  padding: 0 0 1.75rem;
  position: relative;
  z-index: 1;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-node {
  width: 44px;
  height: 44px;
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--theme-accent, var(--gold));
  background: var(--theme-bg, var(--color-obsidian));
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 50%;
  position: static;
  transform: none;
  z-index: 1;
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.12);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s;
}

.timeline-body {
  flex: 1;
  min-width: 0;
}

.timeline-title {
  font-family: var(--font-card-title);
  font-weight: 500;
  font-size: clamp(1.05rem, 4vw, 1.5rem);
  color: var(--theme-heading, var(--color-snow));
  margin-bottom: 0.5rem;
  padding-top: 0.15rem;
  line-height: 1.25;
}

.timeline-desc {
  font-size: clamp(0.82rem, 3vw, 0.9rem);
  color: var(--theme-text-muted, var(--color-fog));
  line-height: 1.55;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   SHOWCASE + MARQUEE
   ═══════════════════════════════════════════════════════════ */
.showcase-section {
  padding: 0;
  overflow: hidden;
}

.showcase-hero {
  position: relative;
  height: clamp(300px, 48dvh, 720px);
}

.showcase-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, var(--color-obsidian) 0%, transparent 40%),
    linear-gradient(180deg, rgba(9,9,11,0.4) 0%, transparent 30%);
}

.showcase-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1.5rem, 5vw, 5rem) clamp(1rem, 4vw, 2.5rem);
  z-index: 2;
}

.showcase-content .container {
  padding: 0;
}

.marquee-wrap {
  padding: 1.25rem 0;
  border-top: 1px solid var(--theme-border, var(--glass-border));
  border-bottom: 1px solid var(--theme-border, var(--glass-border));
  overflow: hidden;
  background: var(--theme-bg-soft, rgba(255, 255, 255, 0.02));
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  color: var(--theme-text-muted, var(--color-fog));
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 4.5vw, 2.5rem);
  color: var(--theme-heading, var(--color-snow));
  opacity: 0.72;
  white-space: nowrap;
  transition: color 0.3s, opacity 0.3s;
}

.marquee-item:hover {
  color: var(--theme-accent-light, var(--theme-accent, var(--gold)));
  opacity: 1;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--theme-accent, var(--gold));
  border-radius: 50%;
  opacity: 0.65;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact-section {
  position: relative;
  padding-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-form-visual {
  position: relative;
  padding: clamp(1.5rem, 4vw, 4rem);
  overflow: hidden;
}

.contact-form-visual .btn {
  width: 100%;
}

.contact-form-visual .contact-orbs + .btn {
  margin-top: 0;
}

.contact-form-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.3;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 7vw, 4rem);
  color: var(--theme-heading, var(--color-snow));
  line-height: 1.08;
  margin-bottom: 0.85rem;
}

.contact-desc {
  font-size: clamp(0.88rem, 3.2vw, 1.05rem);
  color: var(--theme-text-muted, var(--color-fog));
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 100%;
}

/* Contact orbs — inspired by real_estate InsightsTeam ContactOrb */
.contact-orbs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  width: 100%;
  margin-top: 1.5rem;
  padding-top: 0.25rem;
}

.contact-orb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex: 1 1 0;
  max-width: 2.75rem;
  min-width: 2.15rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 6px 16px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s var(--ease-out-expo), border-color 0.25s, background 0.25s;
  -webkit-tap-highlight-color: transparent;
}

.contact-orb:active {
  transform: scale(0.94);
}

.contact-orb__glow {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.contact-orb__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-orb__inner svg {
  width: 0.95rem;
  height: 0.95rem;
}

.contact-orb--sky .contact-orb__glow,
.contact-orb--sky .contact-orb__inner {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.35), rgba(37, 99, 235, 0.15));
}

.contact-orb--sky .contact-orb__inner svg {
  color: #e0f2fe;
}

.contact-orb--emerald .contact-orb__glow,
.contact-orb--emerald .contact-orb__inner {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.35), rgba(22, 163, 74, 0.15));
}

.contact-orb--emerald .contact-orb__inner svg {
  color: #d1fae5;
}

.contact-orb--accent .contact-orb__glow,
.contact-orb--accent .contact-orb__inner {
  background: linear-gradient(135deg, color-mix(in srgb, var(--theme-accent, #c9a962) 45%, transparent), color-mix(in srgb, var(--theme-accent, #c9a962) 12%, transparent));
}

.contact-orb--accent .contact-orb__inner svg {
  color: var(--theme-accent-light, var(--gold-light));
}

.contact-orb--violet .contact-orb__glow,
.contact-orb--violet .contact-orb__inner {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.35), rgba(109, 40, 217, 0.15));
}

.contact-orb--violet .contact-orb__inner svg {
  color: #ede9fe;
}

.contact-orb--maps .contact-orb__glow,
.contact-orb--maps .contact-orb__inner {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.38), rgba(234, 88, 12, 0.16));
}

.contact-orb--maps .contact-orb__inner svg {
  color: #ffedd5;
}

.contact-orb--instagram .contact-orb__glow,
.contact-orb--instagram .contact-orb__inner {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.38), rgba(168, 85, 247, 0.18));
}

.contact-orb--instagram .contact-orb__inner svg {
  color: #fce7f3;
}

.contact-orb--facebook .contact-orb__glow,
.contact-orb--facebook .contact-orb__inner {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.38), rgba(29, 78, 216, 0.16));
}

.contact-orb--facebook .contact-orb__inner svg {
  color: #dbeafe;
}

@media (hover: hover) and (pointer: fine) {
  .contact-orb:hover {
    transform: translateY(-3px) scale(1.08);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.5);
  }

  .contact-orb:hover .contact-orb__glow {
    opacity: 0.6;
  }
}

.footer {
  padding: clamp(2rem, 5vh, 5rem) 0 1.5rem;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  margin-top: clamp(2.5rem, 6vh, 6rem);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5.5vw, 3.5rem);
  font-style: italic;
  color: var(--theme-text-muted, var(--color-fog));
  letter-spacing: 0.03em;
  line-height: 1.2;
  padding: 0 0.5rem;
}

.footer-tagline span { color: var(--gold); }

.footer-copy {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--color-steel);
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════════════
   DESKTOP ENHANCEMENTS + TOUCH
   ═══════════════════════════════════════════════════════════ */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  button { cursor: none; }

  .btn:hover { transform: translateY(-3px); }
  .pillar-card:hover {
    transform: translateY(-12px) rotateX(6deg) rotateY(-2deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 169, 98, 0.08);
  }
  .pillar-card:hover::before { opacity: 1; }
  .trust-card:hover { transform: translateX(8px); }
  .timeline-item:hover .timeline-node {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(201, 169, 98, 0.3);
  }
}

@media (min-width: 769px) {
  .hero-brand {
    top: 2rem;
  }

  .site-logo {
    font-size: 0.95rem;
    letter-spacing: 0.3em;
  }

  .site-logo-img {
    height: clamp(32px, 4vw, 42px);
    max-width: min(200px, 36vw);
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    width: auto;
  }

  .stats-hero {
    grid-template-columns: 1fr 1.15fr;
    align-items: end;
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .stats-metrics {
    gap: 0.85rem;
  }

  .stat-metric {
    min-height: 132px;
    padding: 1.15rem 1.1rem;
  }

  .stat-value {
    font-size: clamp(2rem, 3.5vw, 3rem);
  }

  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .process-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.85rem;
  }

  .process-step-card {
    padding: 1.1rem 1rem;
    min-height: 132px;
  }

  .process-step-icon {
    width: 2rem;
    height: 2rem;
  }

  .process-step-icon svg {
    width: 1rem;
    height: 1rem;
  }

  .process-step-title {
    font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 3rem;
    padding-left: 0;
    border-left: none;
  }

  .timeline::before {
    display: block;
    left: 10%;
    top: 40px;
    bottom: auto;
    right: 10%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--theme-accent, var(--gold)), transparent);
    opacity: 1;
  }

  .timeline-item {
    display: block;
    text-align: center;
    padding: 0 1.5rem;
  }

  .timeline-body {
    min-width: unset;
  }

  .timeline-node {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    font-size: 1.5rem;
  }

  .timeline-title {
    padding-top: 0;
    margin-bottom: 0.75rem;
  }

  .contact-orbs {
    gap: 0.5rem;
  }

  .contact-orb {
    width: 2.65rem;
    height: 2.65rem;
    max-width: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 4rem);
  }

  .hero-visual {
    order: 0;
    max-width: none;
  }

  .hero-sub {
    max-width: 480px;
    margin-bottom: 2.5rem;
  }

  .hero-badge {
    margin-bottom: 2rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
  }

  .hero-headline { margin-bottom: 1.5rem; }

  .hero-coverage-wrap {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  }

  .hero-coverage-stage {
    height: clamp(380px, 48vh, 520px);
  }

  .hero-grid { background-size: 80px 80px; }

  .section-eyebrow {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .marquee-wrap { padding: 2rem 0; }

  .marquee-content { gap: 3rem; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }

  .scroll-indicator { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee { animation: none; }
}
