/* ════════════════════════════════
   TOKENS
════════════════════════════════ */
:root {
  --obsidian:   #060810;
  --space:      #0C1220;
  --space2:     #111827;
  --amber:      #F59E0B;
  --amber2:     #FBBF24;
  --amber-dim:  rgba(245,158,11,0.12);
  --amber-glow: rgba(245,158,11,0.25);
  --ice:        #F8FAFF;
  --slate:      #64748B;
  --slate2:     #94A3B8;
  --glass:      rgba(255,255,255,0.03);
  --glass-b:    rgba(255,255,255,0.07);
  --radius-lg:  24px;
  --radius-md:  14px;
  --radius-sm:  8px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--obsidian);
  color: var(--ice);
  overflow-x: hidden;
  cursor: none;
}

/* ════════════════════════════════
   LOADER
════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--obsidian);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.loader-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  opacity: 0;
}

.loader-logo em { color: var(--amber); font-style: normal; }

.loader-bar-wrap {
  width: 240px;
  height: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--amber), var(--amber2));
  border-radius: 1px;
  transition: width 0.05s linear;
}

.loader-pct {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate2);
  letter-spacing: 2px;
}

/* ════════════════════════════════
   CURSOR
════════════════════════════════ */
#cur-dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 8888;
  transform: translate(-50%,-50%);
  transition: transform 0.05s;
}

#cur-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(245,158,11,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 8887;
  transform: translate(-50%,-50%);
}

/* ════════════════════════════════
   NAV
════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 28px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

#nav.stuck {
  padding: 16px 64px;
  background: rgba(6,8,16,0.88);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--glass-b);
}

.nav-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--ice);
}

.nav-brand em { color: var(--amber); font-style: normal; }

.nav-center {
  display: flex;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: 100px;
  padding: 6px;
}

.nav-center a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--slate2);
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 100px;
  transition: all 0.25s;
  white-space: nowrap;
}

.nav-center a:hover, .nav-center a.active {
  background: rgba(245,158,11,0.12);
  color: var(--amber);
}

.nav-right { display: flex; gap: 12px; align-items: center; }

.nav-tel {
  font-size: 13px;
  color: var(--slate2);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.nav-tel:hover { color: var(--ice); }

.btn-amber {
  background: var(--amber);
  color: var(--obsidian);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: none;
}

.btn-amber:hover {
  background: var(--amber2);
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(245,158,11,0.35);
}

/* Mobile nav toggle */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ice);
  border-radius: 1px;
  transition: all 0.3s;
}

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 498;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-nav-backdrop.open {
  display: block;
  opacity: 1;
}

.mobile-nav {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 78%;
  max-width: 340px;
  background: linear-gradient(165deg, var(--space2), var(--obsidian));
  border-left: 1px solid var(--glass-b);
  z-index: 499;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
  padding: 90px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  overflow-y: auto;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ice);
  cursor: pointer;
}
.mobile-nav a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ice);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid var(--glass-b);
  opacity: 0;
  transform: translateX(20px);
}
.mobile-nav a:hover { color: var(--amber); }
.mobile-nav a:active { transform: translateX(4px); }

.mobile-nav.open a {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-nav.open a:nth-child(1) { transition-delay: 0.08s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.13s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.18s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.23s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.28s; }

.mobile-nav .btn-amber {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  font-size: 15px !important;
  padding: 14px 24px !important;
  border-radius: 12px !important;
  border-bottom: none !important;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

#globe-canvas {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 56%;
  height: 110%;
  pointer-events: none;
  z-index: 1;
}

.hero-left {
  position: relative;
  z-index: 2;
  padding: 160px 0 100px 64px;
  max-width: 620px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 100px;
  padding: 7px 18px 7px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(12px);
}

.tag-dot {
  width: 24px; height: 24px;
  background: var(--amber-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.hero-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -3px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-h1 .line { display: block; overflow: hidden; }
.hero-h1 .word { display: inline-block; }
.hero-h1 .amber { color: var(--amber); }

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--slate2);
  max-width: 440px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(16px);
}

.hero-sub strong { color: var(--ice); font-weight: 500; }

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(16px);
}

.btn-ghost {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ice);
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid var(--glass-b);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: none;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  background: var(--glass);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(12px);
}

.trust-avatars {
  display: flex;
}

.trust-av {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--obsidian);
  margin-left: -8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-av:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg,#6366f1,#8b5cf6); }
.av2 { background: linear-gradient(135deg,#ec4899,#f43f5e); }
.av3 { background: linear-gradient(135deg,#14b8a6,#06b6d4); }
.av4 { background: linear-gradient(135deg,#f59e0b,#ef4444); }

.trust-text {
  font-size: 13px;
  color: var(--slate2);
  line-height: 1.5;
}

.trust-text strong { color: var(--ice); font-weight: 600; display: block; }

/* ════════════════════════════════
   MARQUEE STRIP
════════════════════════════════ */
.marquee-strip {
  position: relative;
  z-index: 3;
  background: var(--amber);
  padding: 0;
  overflow: hidden;
  height: 48px;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
  gap: 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--obsidian);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.mi-sep { width: 4px; height: 4px; background: rgba(6,8,16,0.35); border-radius: 50%; }

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

/* ════════════════════════════════
   BENTO STATS
════════════════════════════════ */
#bento {
  padding: 100px 64px;
  background: var(--space);
}

.bento-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bento-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px,4vw,48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 48px;
  max-width: 480px;
  line-height: 1.1;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bc {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.bc:hover {
  border-color: rgba(245,158,11,0.25);
  transform: translateY(-4px);
}

.bc::after {
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 80% 20%, rgba(245,158,11,0.06), transparent 60%);
  opacity:0;
  transition: opacity 0.4s;
  pointer-events:none;
}

.bc:hover::after { opacity:1; }

.bc-1 { grid-column: span 4; }
.bc-2 { grid-column: span 4; }
.bc-3 { grid-column: span 4; }
.bc-4 { grid-column: span 5; }
.bc-5 { grid-column: span 7; }

.bc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.bc-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--ice) 40%, var(--slate2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bc-suffix { color: var(--amber); -webkit-text-fill-color: var(--amber); }

.bc-label {
  font-size: 14px;
  color: var(--slate2);
  font-weight: 400;
  line-height: 1.5;
}

/* Bento card 4 — recovery rate ring */
.bc-4-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.ring-wrap { position:relative; width:120px; height:120px; flex-shrink:0; }

.ring-svg { width:100%; height:100%; transform: rotate(-90deg); }

.ring-bg { fill:none; stroke:rgba(255,255,255,0.06); stroke-width:8; }

.ring-fill {
  fill: none;
  stroke: url(#amberGrad);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 2s cubic-bezier(0.4,0,0.2,1);
}

.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ring-pct {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -1px;
}

.ring-sub { font-size: 10px; color: var(--slate2); font-weight: 500; letter-spacing:0.5px; }

.bc-4-text {}
.bc-4-text h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

/* Bento 5 — mini activity feed */
.activity-feed { display:flex; flex-direction:column; gap:12px; margin-top:20px; }

.af-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}

.af-item:hover { background: rgba(255,255,255,0.05); }

.af-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.af-pulse::after {
  content:'';
  position:absolute;
  inset: -4px;
  border-radius: 50%;
  animation: afpulse 2s infinite;
}

.afc-green { background: #22C55E; }
.afc-green::after { background: rgba(34,197,94,0.3); }
.afc-amber { background: var(--amber); }
.afc-amber::after { background: rgba(245,158,11,0.3); }
.afc-blue  { background: #60A5FA; }
.afc-blue::after  { background: rgba(96,165,250,0.3); }

@keyframes afpulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(2);opacity:0} }

.af-info { flex:1; }
.af-info strong { font-size:13px; font-weight:600; display:block; }
.af-info span { font-size:11px; color:var(--slate2); }
.af-amt { font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:14px; color:var(--amber); }

/* ════════════════════════════════
   SERVICES — HORIZONTAL SCROLL
════════════════════════════════ */
#services {
  padding: 100px 0;
  overflow: hidden;
}

.services-head {
  padding: 0 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.services-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px,4vw,46px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.services-sub {
  font-size: 15px;
  color: var(--slate2);
  max-width: 300px;
  line-height: 1.65;
  text-align: right;
}

.hscroll-wrap {
  display: flex;
  gap: 20px;
  padding: 0 64px 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.hscroll-wrap::-webkit-scrollbar { display:none; }
.hscroll-wrap.grabbing { cursor: grabbing; }

.svc-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--space2);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.4s;
}

.svc-card:hover {
  border-color: rgba(245,158,11,0.3);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(245,158,11,0.1);
}

.svc-card-gfx {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--amber-dim), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.svc-card:hover .svc-card-gfx { opacity:1; }

.svc-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-tag::before {
  content:'';
  width:20px;
  height:1px;
  background:var(--amber);
  display:inline-block;
}

.svc-icon {
  width: 56px; height: 56px;
  background: var(--amber-dim);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.svc-card:hover .svc-icon { transform: rotate(-8deg) scale(1.1); }

.svc-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.svc-desc {
  font-size: 14px;
  color: var(--slate2);
  line-height: 1.75;
  margin-bottom: 32px;
}

.svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  text-decoration: none;
  transition: gap 0.2s;
}

.svc-arrow:hover { gap: 14px; }

.scroll-hint {
  padding: 12px 64px 0;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--slate);
}

.sh-line {
  width: 32px;
  height: 1px;
  background: var(--slate);
  animation: shline 2s ease-in-out infinite;
}

@keyframes shline {
  0%,100%{transform:scaleX(1)} 50%{transform:scaleX(1.5)}
}

/* ════════════════════════════════
   PROCESS — DIAGONAL
════════════════════════════════ */
#process {
  padding: 120px 64px;
  background: linear-gradient(160deg, var(--space) 0%, var(--obsidian) 100%);
  position: relative;
  overflow: hidden;
}

#process::before {
  content:'';
  position:absolute;
  top:-200px; right:-200px;
  width:500px; height:500px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(245,158,11,0.06), transparent);
  pointer-events:none;
}

.proc-header {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:60px;
  align-items:center;
  margin-bottom:80px;
}

.proc-steps {
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:24px;
}

.proc-step {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position:relative;
  transition: transform 0.3s, border-color 0.3s;
}

.proc-step:hover {
  transform: translateY(-4px);
  border-color: rgba(245,158,11,0.2);
}

.proc-n {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -4px;
  color: rgba(245,158,11,0.08);
  line-height:1;
  position:absolute;
  top:16px; right:20px;
}

.proc-step-icon {
  font-size:28px;
  margin-bottom:16px;
}

.proc-step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size:18px;
  font-weight:700;
  letter-spacing:-0.3px;
  margin-bottom:10px;
}

.proc-step-desc {
  font-size:14px;
  color:var(--slate2);
  line-height:1.7;
}

.proc-connector {
  position:absolute;
  top:50%;
  right:-13px;
  transform:translateY(-50%);
  width:26px;
  height:26px;
  background:var(--obsidian);
  border:1px solid var(--amber);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  color:var(--amber);
  z-index:2;
}

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
#testimonials {
  padding: 120px 64px;
  background: var(--space2);
}

.tst-header {
  text-align:center;
  margin-bottom:64px;
}

.tst-kicker {
  font-size:11px;
  font-weight:700;
  letter-spacing:3px;
  color:var(--amber);
  text-transform:uppercase;
  margin-bottom:14px;
}

.tst-title {
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(28px,4vw,48px);
  font-weight:700;
  letter-spacing:-1.5px;
  line-height:1.1;
}

.tst-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.tst-card {
  background: var(--space);
  border:1px solid var(--glass-b);
  border-radius:var(--radius-lg);
  padding:36px 32px;
  display:flex;
  flex-direction:column;
  gap:20px;
  transition:transform 0.4s,border-color 0.3s;
}

.tst-card:hover {
  transform: translateY(-6px);
  border-color:rgba(245,158,11,0.25);
}

.tst-card.highlight {
  background:linear-gradient(145deg, rgba(245,158,11,0.08), var(--space));
  border-color:rgba(245,158,11,0.2);
}

.tst-stars { display:flex; gap:3px; }
.tst-star { color:var(--amber); font-size:14px; }

.tst-q {
  font-size:32px;
  color:var(--amber);
  font-family:Georgia,serif;
  opacity:0.4;
  line-height:1;
}

.tst-body {
  font-size:15px;
  line-height:1.8;
  color:rgba(248,250,255,0.8);
  font-style:italic;
  flex:1;
}

.tst-author {
  display:flex;
  align-items:center;
  gap:14px;
  padding-top:20px;
  border-top:1px solid var(--glass-b);
}

.tst-ava {
  width:44px;height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:15px;
  flex-shrink:0;
}

.ta1{background:linear-gradient(135deg,#7c3aed,#4f46e5);}
.ta2{background:linear-gradient(135deg,#f59e0b,#ef4444);}
.ta3{background:linear-gradient(135deg,#059669,#0891b2);}

.tst-name{font-weight:600;font-size:14px;line-height:1.3;}
.tst-role{font-size:12px;color:var(--slate2);}

/* ════════════════════════════════
   CONTACT / ENQUIRY
════════════════════════════════ */
#contact {
  padding: 120px 64px;
  background: var(--obsidian);
  position:relative;
  overflow:hidden;
}

#contact::before {
  content:'';
  position:absolute;
  bottom:-200px; left:50%;
  transform:translateX(-50%);
  width:600px; height:600px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(245,158,11,0.05), transparent);
  pointer-events:none;
}

.contact-inner {
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.contact-left {}

.contact-kicker {
  font-size:11px;
  font-weight:700;
  letter-spacing:3px;
  color:var(--amber);
  text-transform:uppercase;
  margin-bottom:16px;
}

.contact-title {
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(32px,4vw,52px);
  font-weight:700;
  letter-spacing:-1.5px;
  line-height:1.1;
  margin-bottom:20px;
}

.contact-sub {
  font-size:16px;
  color:var(--slate2);
  line-height:1.75;
  margin-bottom:48px;
  max-width:400px;
}

.contact-facts {
  display:flex;
  flex-direction:column;
  gap:20px;
}

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

.cf-ico {
  width:46px;height:46px;
  background:var(--amber-dim);
  border:1px solid rgba(245,158,11,0.18);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  flex-shrink:0;
}

.cf-label { font-size:11px; color:var(--slate2); font-weight:600; letter-spacing:0.8px; text-transform:uppercase; margin-bottom:2px; }
.cf-val { font-size:15px; font-weight:500; }

/* Form */
.contact-form {
  background:var(--space);
  border:1px solid var(--glass-b);
  border-radius:var(--radius-lg);
  padding:48px;
}

.cf-title {
  font-family:'Space Grotesk',sans-serif;
  font-size:22px;
  font-weight:700;
  letter-spacing:-0.5px;
  margin-bottom:28px;
}

.fg { margin-bottom:18px; }

.fl {
  display:block;
  font-size:11px;
  font-weight:700;
  color:var(--slate2);
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:8px;
}

.fi {
  width:100%;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--glass-b);
  border-radius:var(--radius-sm);
  padding:13px 16px;
  font-family:'DM Sans',sans-serif;
  font-size:15px;
  color:var(--ice);
  outline:none;
  transition:border-color 0.3s, background 0.3s;
  -webkit-appearance:none;
}

.fi:focus {
  border-color:var(--amber);
  background:rgba(245,158,11,0.05);
}

.fi::placeholder { color:rgba(100,116,139,0.6); }

textarea.fi { resize:vertical; min-height:110px; }

select.fi { cursor:none; }

.frow { display:grid; grid-template-columns:1fr 1fr; gap:14px; }

.btn-submit {
  width:100%;
  background:var(--amber);
  color:var(--obsidian);
  border:none;
  padding:15px;
  border-radius:var(--radius-sm);
  font-family:'Space Grotesk',sans-serif;
  font-size:15px;
  font-weight:700;
  cursor:none;
  transition:all 0.3s;
  margin-top:6px;
  letter-spacing:0.2px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.btn-submit:hover {
  background:var(--amber2);
  transform:translateY(-2px);
  box-shadow:0 12px 40px rgba(245,158,11,0.35);
}

/* ════════════════════════════════
   CTA FULL WIDTH
════════════════════════════════ */
#cta {
  padding:100px 64px;
  background:linear-gradient(135deg, #0f1a0a 0%, #1a120a 50%, #0a0f1a 100%);
  text-align:center;
  position:relative;
  overflow:hidden;
}

.cta-glow1 {
  position:absolute;
  top:-100px;left:20%;
  width:400px;height:400px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(245,158,11,0.1),transparent);
  pointer-events:none;
}

.cta-glow2 {
  position:absolute;
  bottom:-100px;right:20%;
  width:300px;height:300px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(245,158,11,0.07),transparent);
  pointer-events:none;
}

.cta-badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid rgba(245,158,11,0.3);
  border-radius:100px;
  padding:6px 18px;
  font-size:12px;
  font-weight:600;
  color:var(--amber);
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:28px;
  position:relative;
  z-index:1;
}

.cta-h {
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(36px,5.5vw,72px);
  font-weight:700;
  letter-spacing:-2.5px;
  line-height:1.05;
  margin-bottom:20px;
  position:relative;
  z-index:1;
}

.cta-h .amber {color:var(--amber);}

.cta-p {
  font-size:17px;
  color:var(--slate2);
  margin-bottom:40px;
  position:relative;
  z-index:1;
}

.cta-btns {
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  position:relative;
  z-index:1;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  background:var(--space);
  border-top:1px solid var(--glass-b);
  padding:72px 64px 36px;
}

.footer-top {
  display:grid;
  grid-template-columns:2.5fr 1fr 1fr 1fr;
  gap:60px;
  margin-bottom:60px;
}

.footer-brand {
  font-family:'Space Grotesk',sans-serif;
  font-size:20px;
  font-weight:700;
  letter-spacing:-0.5px;
  margin-bottom:14px;
}

.footer-brand em { color:var(--amber); font-style:normal; }

.footer-about {
  font-size:14px;
  color:var(--slate2);
  line-height:1.75;
  margin-bottom:24px;
  max-width:320px;
}

.footer-socials { display:flex; gap:10px; }

.fs-btn {
  width:36px;height:36px;
  border-radius:var(--radius-sm);
  border:1px solid var(--glass-b);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  text-decoration:none;
  color:var(--slate2);
  transition:all 0.3s;
}

.fs-btn:hover {
  background:var(--amber);
  border-color:var(--amber);
  color:var(--obsidian);
  transform:translateY(-2px);
}

.fc-head {
  font-family:'Space Grotesk',sans-serif;
  font-size:13px;
  font-weight:700;
  margin-bottom:18px;
  letter-spacing:0.3px;
}

.fc-links { list-style:none; display:flex; flex-direction:column; gap:11px; }

.fc-links a {
  font-size:14px;
  color:var(--slate2);
  text-decoration:none;
  transition:color 0.2s;
}

.fc-links a:hover { color:var(--amber); }

.footer-bottom {
  border-top: 1px solid var(--glass-b);
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  color: var(--slate);
}

.fb-copy {
  font-size: 12.5px;
  color: var(--slate);
}

.fb-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.fb-legal-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--slate2);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s;
}

.fb-legal-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 0.3s ease;
}

.fb-legal-link:hover {
  color: var(--amber);
}

.fb-legal-link:hover::after {
  width: 100%;
}

.fb-legal-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--slate);
  flex-shrink: 0;
}

.fb-reg {
  font-size: 12.5px;
  color: var(--slate);
  text-align: right;
}

/* Floating mobile CTA */
.sticky-cta {
  display:none;
  position:fixed;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  z-index:400;
  background:var(--amber);
  color:var(--obsidian);
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:14px;
  padding:14px 36px;
  border-radius:100px;
  text-decoration:none;
  box-shadow:0 8px 32px rgba(245,158,11,0.45);
  white-space:nowrap;
}

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}

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

/* Tooltip label */
.wa-label {
  background: var(--space2);
  border: 1px solid var(--glass-b);
  color: var(--ice);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.wa-float:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}

/* Main button circle */
.wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
  position: relative;
}

.wa-float:hover .wa-btn {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}

.wa-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  position: relative;
  z-index: 1;
}

/* Pulse rings */
.wa-btn::before,
.wa-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: wa-pulse 2.4s ease-out infinite;
}

.wa-btn::after {
  animation-delay: 0.8s;
  background: rgba(37,211,102,0.15);
}

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 1; }
  80%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ════════════════════════════════
   ANIMATIONS
════════════════════════════════ */
.fade-up {
  opacity:0;
  transform:translateY(32px);
  transition:opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.in {
  opacity:1;
  transform:translateY(0);
}

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

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width:1024px) {
  .bento-grid { grid-template-columns:repeat(6,1fr); }
  .bc-1,.bc-2,.bc-3 { grid-column:span 3; }
  .bc-4 { grid-column:span 6; }
  .bc-5 { grid-column:span 6; }
  .tst-grid { grid-template-columns:1fr 1fr; }
  .footer-top { grid-template-columns:1fr 1fr; gap:40px; }
}

@media (max-width:768px) {
  #nav { padding:18px 24px; }
  #nav.stuck { padding:14px 24px; }
  .nav-center, .nav-tel { display:none; }
  .nav-right .btn-amber { display:none; }
  .nav-burger { display:flex; }
  #hero { grid-template-columns:1fr; }
  #globe-canvas { width:100%; height:50%; top:auto; bottom:0; right:0; transform:none; opacity:0.35; }
  .hero-left { padding:140px 24px 80px; max-width:100%; }
  .hero-ctas { flex-wrap: nowrap; gap: 10px; }
  .hero-ctas .btn-amber { padding: 12px 18px; font-size: 12.5px; flex: 1; justify-content: center; white-space: nowrap; }
  .hero-ctas .btn-ghost { padding: 12px 16px; font-size: 12.5px; flex: 1; justify-content: center; white-space: nowrap; }
  #bento { padding:80px 24px; }
  .bento-grid { grid-template-columns:1fr 1fr; gap:12px; }
  .bc-1,.bc-2 { grid-column:span 1; }
  .bc-3,.bc-4,.bc-5 { grid-column:span 2; }
  .bc-num { font-size:38px; }
  .bc { padding:24px 20px; }
  .services-head { padding:0 24px; flex-direction:column; align-items:flex-start; gap:16px; }
  .services-sub { text-align:left; max-width:100%; }
  .hscroll-wrap { padding:0 24px 24px; }
  #process { padding:80px 24px; }
  .proc-header { grid-template-columns:1fr; gap:32px; margin-bottom:40px; }
  .proc-steps { grid-template-columns:1fr; }
  #testimonials { padding:80px 24px; }
  .tst-grid { grid-template-columns:1fr; }
  #contact { padding:80px 24px; }
  .contact-inner { grid-template-columns:1fr; gap:48px; }
  .contact-form { padding:28px 22px; }
  .frow { grid-template-columns:1fr; }
  #cta { padding:80px 24px; }
  .footer-top { grid-template-columns:1fr; gap:36px; }
  footer { padding:56px 24px 28px; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .fb-copy { order: 2; }
  .fb-legal-links { order: 1; justify-content: center; flex-wrap: wrap; }
  .fb-reg { order: 3; text-align: center; }
  .bc-4-inner { flex-direction:column; gap:16px; }
  .ring-wrap { width:100px; height:100px; }
}

@media (max-width:480px) {
  .hero-h1 { font-size:38px; letter-spacing:-2px; }
  .bento-grid { grid-template-columns:1fr; }
  .bc-1,.bc-2,.bc-3,.bc-4,.bc-5 { grid-column:span 1; }
  .svc-card { flex:0 0 290px; }
  .cta-h { font-size:34px; letter-spacing:-1.5px; }
}

/* ════════════════════════════════
   TOUCH DEVICE OVERRIDES
   Restores native system cursor/tap behavior on phones & tablets
   where a custom mouse-following cursor makes no sense.
════════════════════════════════ */
@media (hover: none), (pointer: coarse) {
  body,
  .btn-amber, .btn-ghost, .btn-submit,
  .nav-burger, select.fi {
    cursor: auto !important;
  }
  #cur-dot, #cur-ring {
    display: none !important;
  }
}
