/* ============================================================
   TOKENS
============================================================ */
:root {
  --bg: #050508;
  --glass: rgba(255, 255, 255, 0.055);
  --glass-md: rgba(255, 255, 255, 0.09);
  --glass-hi: rgba(255, 255, 255, 0.14);
  --stroke: rgba(255, 255, 255, 0.10);
  --stroke-hi: rgba(255, 255, 255, 0.22);
  --text: #f0f0f0;
  --muted: rgba(240, 240, 240, 0.48);
  --muted-hi: rgba(240, 240, 240, 0.72);
  --accent: #c8ff00;
  --accent-glow: rgba(200, 255, 0, 0.32);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

/* Grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

/* Ambient blobs */
body::before {
  content: '';
  position: fixed;
  inset: -30%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(200, 255, 0, 0.065), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(80, 100, 255, 0.085), transparent 32%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.025), transparent 50%);
  filter: blur(40px);
  animation: ambDrift 22s ease-in-out infinite alternate;
}

@keyframes ambDrift {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }

  to {
    transform: translate3d(2%, 1%, 0) scale(1.06);
  }
}

/* ============================================================
   SCROLL PROGRESS
============================================================ */
#scrollBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), rgba(200, 255, 0, 0.3));
  z-index: 9999;
  box-shadow: 0 0 10px var(--accent-glow);
  transition: width 0.08s linear;
}

/* ============================================================
   CONTAINER
============================================================ */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
.display {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.mono {
  font-family: 'DM Mono', monospace;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.kicker::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.sec-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  background: linear-gradient(170deg, #fff 0%, rgba(255, 255, 255, 0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-sub {
  font-size: 17px;
  color: var(--muted-hi);
  line-height: 1.65;
  max-width: 580px;
  margin-top: 14px;
}

/* ============================================================
   GLASS
============================================================ */
.glass {
  background: linear-gradient(145deg, var(--glass-hi), var(--glass-md) 55%, var(--glass));
  border: 1px solid var(--stroke-hi);
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 22px 55px rgba(0, 0, 0, 0.55);
}

.glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  border-radius: var(--radius-pill);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), filter 280ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px) scale(1.015);
}

.btn-white {
  background: linear-gradient(180deg, #f2f2f2 0%, #d6d6d6 100%);
  color: #080808;
  padding: 13px 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 14px 32px rgba(0, 0, 0, 0.5);
}

.btn-white:hover {
  filter: brightness(1.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 20px 44px rgba(0, 0, 0, 0.65);
}

.btn-accent {
  background: var(--accent);
  color: #060608;
  padding: 13px 28px;
  box-shadow: 0 0 26px var(--accent-glow), 0 8px 22px rgba(0, 0, 0, 0.4);
  font-weight: 700;
}

.btn-accent:hover {
  box-shadow: 0 0 40px var(--accent-glow), 0 12px 30px rgba(0, 0, 0, 0.5);
}

.btn-ghost {
  background: var(--glass);
  border: 1px solid var(--stroke-hi);
  color: var(--text);
  padding: 12px 26px;
  backdrop-filter: blur(14px);
}

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

/* ============================================================
   REVEAL
============================================================ */
.rv {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: var(--d, 0ms);
}

.rv.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   DIVIDER
============================================================ */
.div {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--stroke), transparent);
}

/* ============================================================
   NAV
============================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(5, 5, 8, 0.55);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-bottom: 1px solid var(--stroke);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.38);
  transition: background 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
}

.logo {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--accent);
}

.logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* Desktop links pill */
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  background: linear-gradient(180deg, var(--glass-md), var(--glass));
  border: 1px solid var(--stroke-hi);
  backdrop-filter: blur(18px);
  padding: 7px 10px;
  border-radius: var(--radius-pill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 28px rgba(0, 0, 0, 0.45);
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: var(--glass-md);
}

.nav-cta {
  font-size: 13px !important;
  padding: 10px 20px !important;
}

.mob-btn {
  display: none;
  background: var(--glass-md);
  border: 1px solid var(--stroke-hi);
  border-radius: 10px;
  color: #fff;
  width: 42px;
  height: 42px;
  font-size: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.mob-btn:hover {
  background: var(--glass-hi);
}

/* Mobile drawer */
#mobMenu {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  top: var(--nav-h);
  left: 12px;
  right: 12px;
  z-index: 999;
  background: rgba(7, 7, 12, 0.96);
  backdrop-filter: blur(32px);
  border: 1px solid var(--stroke-hi);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

#mobMenu a {
  color: var(--muted-hi);
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 18px;
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s;
  display: block;
}

#mobMenu a:hover {
  background: var(--glass-md);
  color: #fff;
}

@media(max-width:860px) {
  .nav-links {
    display: none;
  }

  .mob-btn {
    display: flex;
  }
}

/* ============================================================
   HOME â€” HERO
============================================================ */
#home {
  padding: calc(var(--nav-h) + 100px) 0 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 480px at 50% 28%, rgba(200, 255, 0, 0.065), transparent 60%),
    radial-gradient(ellipse 640px 380px at 18% 65%, rgba(80, 100, 255, 0.08), transparent 55%),
    radial-gradient(ellipse 560px 320px at 82% 70%, rgba(200, 255, 0, 0.042), transparent 50%);
  animation: aurShift 18s ease-in-out infinite alternate;
}

@keyframes aurShift {
  from {
    opacity: .85;
    transform: scale(1);
  }

  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  transition: transform 450ms var(--ease);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-md);
  border: 1px solid var(--stroke-hi);
  backdrop-filter: blur(14px);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  color: var(--muted-hi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
  margin-bottom: 32px;
  animation: fadeUp 0.8s var(--ease) both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .45;
    transform: scale(.82);
  }
}

.hero-h1 {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(46px, 7.2vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  max-width: 900px;
  margin: 0 auto 26px;
  background: linear-gradient(170deg, #fff 0%, rgba(255, 255, 255, 0.68) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp 0.9s var(--ease) 0.1s both;
}

.hero-h1 .aw {
  background: linear-gradient(135deg, var(--accent) 0%, #deff6e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 1.9vw, 19px);
  color: var(--muted-hi);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 46px;
  animation: fadeUp 1s var(--ease) 0.2s both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 1.1s var(--ease) 0.3s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 56px;
  animation: fadeUp 1.2s var(--ease) 0.5s both;
}

.chip {
  background: var(--glass);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--muted-hi);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.05em;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Reel strip */
.reel-strip {
  padding: 48px 0;
  overflow: hidden;
  position: relative;
}

.reel-strip::before,
.reel-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  width: 100px;
  pointer-events: none;
}

.reel-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.reel-strip::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

.reel-track {
  display: flex;
  gap: 16px;
  animation: reelScroll 55s linear infinite;
  width: max-content;
}

/* Force continuous scroll animation even on hover */
.reel-track:hover {
  animation-play-state: running !important;
}

@keyframes reelScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-231px * 7));
  }
}

.reel {
  width: 215px;
  height: 382px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--stroke);
  background: var(--glass);
  backdrop-filter: blur(14px);
  position: relative;
  transition: transform 380ms var(--ease), border-color 380ms, box-shadow 380ms;
  cursor: pointer;
}

.reel:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--stroke-hi);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .6);
}

.reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.reel-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--glass-hi), var(--glass));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: var(--muted);
}

/* Hero inline icon */
.hero-inline-icon {
  width: 1em !important;
  height: 1em !important;
  max-width: none !important;
  display: inline-block !important;
  object-fit: contain;
  vertical-align: -0.08em;
  margin-left: 0.3em;
  filter: drop-shadow(0 6px 18px rgba(200, 255, 0, 0.35));
}

/* Service icon images */
.svc-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

/* Panel GIF image */
.panel-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  margin: 14px 0;
  background: var(--glass);
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.panel-img video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Panel tags */
.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0;
}

.panel-tag {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--stroke-hi);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--muted-hi);
  text-transform: uppercase;
  background: var(--glass);
  font-family: 'DM Mono', monospace;
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--stroke);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media(max-width:720px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat {
  background: var(--glass);
  backdrop-filter: blur(18px);
  padding: 42px 28px;
  text-align: center;
  transition: background 0.28s;
}

.stat:hover {
  background: var(--glass-md);
}

.stat-n {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-n span {
  color: var(--accent);
}

.stat-l {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: 'DM Mono', monospace;
}

/* ============================================================
   SERVICES
============================================================ */
#services {
  padding: 110px 0;
}

.svc-header {
  text-align: center;
  margin-bottom: 60px;
}

.svc-header .sec-sub {
  margin: 14px auto 0;
}

.svc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  margin-top: 56px;
  align-items: stretch;
}

.svc-list {
  height: 100%;
}

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

.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-li .svc-row {
  display: grid;
  grid-template-columns: 46px 1fr 22px;
  align-items: center;
  gap: 14px;
  padding: 15px 17px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, var(--glass-md), var(--glass));
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  cursor: pointer;
  transition: transform 230ms var(--ease), border-color 230ms, box-shadow 230ms;
  position: relative;
  overflow: hidden;
}

.svc-li .svc-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.svc-li .svc-row:hover {
  transform: translateY(-2px);
  border-color: var(--stroke-hi);
}

.svc-li.on .svc-row {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 12px 34px rgba(0, 0, 0, .5);
  background: linear-gradient(180deg, var(--glass-hi), var(--glass-md));
}

.svc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-md);
  border: 1px solid var(--stroke-hi);
  font-size: 20px;
  flex-shrink: 0;
}

.svc-name-t {
  display: block;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.svc-desc-t {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.svc-arr {
  font-size: 16px;
  color: var(--muted);
  transition: transform 0.22s, color 0.22s;
}

.svc-li.on .svc-arr,
.svc-li .svc-row:hover .svc-arr {
  transform: translateX(4px);
  color: #fff;
}

/* Service Category Colors (Tech vs Marketing) */
.svc-tech .svc-icon {
  border-color: rgba(0, 240, 255, 0.25) !important;
  background: rgba(0, 240, 255, 0.03) !important;
}

.svc-marketing .svc-icon {
  border-color: rgba(200, 255, 0, 0.25) !important;
  background: rgba(200, 255, 0, 0.03) !important;
}

/* Active Glows */
.svc-li.on.svc-tech .svc-row {
  border-color: rgba(0, 240, 255, 0.35) !important;
  box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 12px 34px rgba(0, 0, 0, 0.5) !important;
}

.svc-li.on.svc-marketing .svc-row {
  border-color: rgba(200, 255, 0, 0.35) !important;
  box-shadow: 0 0 0 2px rgba(200, 255, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 12px 34px rgba(0, 0, 0, 0.5) !important;
}

.svc-li.on.svc-tech .svc-icon {
  border-color: rgba(0, 240, 255, 0.6) !important;
  background: rgba(0, 240, 255, 0.1) !important;
}

.svc-li.on.svc-marketing .svc-icon {
  border-color: rgba(200, 255, 0, 0.6) !important;
  background: rgba(200, 255, 0, 0.1) !important;
}

/* Panel */
.svc-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke-hi);
  background: linear-gradient(145deg, var(--glass-hi), var(--glass-md) 55%, var(--glass));
  backdrop-filter: blur(30px) saturate(175%);
  -webkit-backdrop-filter: blur(30px) saturate(175%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 28px 70px rgba(0, 0, 0, .6);
  overflow: hidden;
}

@media(max-width:960px) {
  .svc-panel {
    position: static;
  }
}

.panel-in {
  padding: 30px;
  height: 100%;
  overflow-y: auto;
}

.panel-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.panel-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 14px;
}

.panel-copy {
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted-hi);
  margin-bottom: 18px;
}

.panel-subs {
  margin-bottom: 18px;
}

.panel-sub-group {
  margin-bottom: 12px;
}

.panel-sub-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.panel-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.panel-chip {
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--stroke-hi);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted-hi);
  background: var(--glass);
  font-family: 'DM Mono', monospace;
}

.panel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #080808;
  background: #fff;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
  transition: transform 0.22s var(--ease), box-shadow 0.22s;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.panel-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .5);
}

/* View Details ghost button */
.panel-view-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  background: var(--glass);
  border: 1px solid var(--stroke-hi);
  padding: 12px 0;
  border-radius: var(--radius-md);
  backdrop-filter: blur(14px);
  transition: transform 0.22s var(--ease), background 0.22s, border-color 0.22s, color 0.22s;
  white-space: nowrap;
  flex-shrink: 0;
  width: 138px;
}

.panel-view-details::after {
  content: '↗';
  font-size: 13px;
  opacity: 0.7;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}

.panel-view-details:hover {
  transform: translateY(-2px);
  background: var(--glass-md);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.panel-view-details:hover::after {
  transform: translate(2px, -2px);
  opacity: 1;
}

/* Footer layout: fixed View Details + stretchy CTA */
.panel-footer-fixed {
  padding: 16px 24px;
  border-top: 1px solid var(--stroke);
  background: linear-gradient(0deg, rgba(5,5,8,0.5), transparent);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============================================================
   BLUEPRINT
============================================================ */
#blueprint {
  padding: 110px 0;
}

.bp-intro {
  max-width: 660px;
  text-align: center;
  margin: 0 auto 60px;
}

.bp-intro .sec-sub {
  margin: 14px auto 0;
}

/* Phase timeline */
.bp-phases {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bp-phase {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 36px;
  position: relative;
  padding-bottom: 0;
}

@media(max-width:680px) {
  .bp-phase {
    grid-template-columns: 1fr;
  }
}

/* Vertical line */
.bp-phase:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 59px;
  top: 56px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--stroke-hi), transparent);
}

@media(max-width:680px) {
  .bp-phase::after {
    display: none;
  }
}

.bp-num-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
}

.bp-num-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  background: var(--glass-md);
  border: 1px solid var(--stroke-hi);
  box-shadow: 0 0 20px rgba(200, 255, 0, 0.12);
}

.bp-card {
  border-radius: var(--radius-lg);
  padding: 36px 38px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--glass-hi), var(--glass-md) 55%, var(--glass));
  border: 1px solid var(--stroke-hi);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 22px 55px rgba(0, 0, 0, .5);
  backdrop-filter: blur(22px);
  transition: transform 380ms var(--ease), box-shadow 380ms, border-color 380ms;
}

.bp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 72px rgba(0, 0, 0, .62);
  border-color: rgba(255, 255, 255, 0.26);
}

.bp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
}

.bp-phase-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bp-card h3 {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
}

.bp-card p {
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted-hi);
  margin-bottom: 18px;
}

.bp-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bp-step {
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--stroke-hi);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted-hi);
  background: var(--glass);
  font-family: 'DM Mono', monospace;
}

/* Commitment strip */
.bp-commit {
  margin-top: 56px;
  padding: 48px 44px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: left;
}

.bp-commit::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.06) 48%, transparent 70%);
  transform: translateX(-135%);
  animation: sheen 10s ease-in-out infinite;
  animation-delay: 2s;
}

.bp-commit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.bp-commit h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: #fff;
}

.bp-commit p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted-hi);
  max-width: 620px;
  margin: 0;
}

.bp-commit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}

.bp-commit-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 12px;
  text-align: center;
  transition: transform 0.35s var(--ease), border-color 0.35s, background-color 0.35s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.bp-commit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.bp-commit-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
}

.bp-commit-icon {
  font-size: 24px;
  margin-bottom: 12px;
  display: inline-block;
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.1));
}

.bp-commit-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.bp-commit-label {
  font-size: 11px;
  color: var(--muted-hi);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

@media (min-width: 992px) {
  .bp-commit {
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
  }
}

@media (max-width: 680px) {
  .bp-commit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bp-commit-item {
    padding: 20px 16px;
  }
}

/* ============================================================
   WHY US
============================================================ */
#whyus {
  padding: 110px 0;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header .sec-sub {
  margin: 14px auto 0;
}

/* Differentiator cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.why-card {
  padding: 38px 34px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--glass-hi), var(--glass-md) 55%, var(--glass));
  border: 1px solid var(--stroke-hi);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 20px 52px rgba(0, 0, 0, .5);
  backdrop-filter: blur(22px);
  transition: transform 360ms var(--ease), box-shadow 360ms, border-color 360ms;
}

.why-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 72px rgba(0, 0, 0, .62);
  border-color: rgba(255, 255, 255, 0.26);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.why-icon {
  margin-bottom: 22px;
  display: block;
  color: var(--accent);
}

.why-icon svg {
  display: block;
  transition: transform 0.3s var(--ease);
}

.why-card:hover .why-icon svg {
  transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
  transition: color 0.25s;
}

.why-card:hover h3 {
  color: var(--accent);
}

.why-card p {
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted-hi);
}

/* Vs table */
.vs-wrap {
  margin-top: 60px;
}

.vs-wrap .kicker {
  margin-bottom: 24px;
}




/* Trust bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--stroke);
  border: 1px solid var(--stroke-hi);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}

@media(max-width:720px) {
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-cell {
  background: var(--glass);
  backdrop-filter: blur(16px);
  padding: 36px 24px;
  text-align: center;
  transition: background 0.26s;
}

.trust-cell:hover {
  background: var(--glass-md);
}

.trust-val {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

.trust-val em {
  color: var(--accent);
  font-style: normal;
}

.trust-lbl {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'DM Mono', monospace;
}

/* ============================================================
   RESULTS
============================================================ */
#results {
  padding: 110px 0 60px;
}

.res-header {
  text-align: center;
  margin-bottom: 14px;
}

.res-sub {
  text-align: center;
  margin-bottom: 52px;
}

/* Testimonial carousel */
.car-wrap {
  position: relative;
  margin: 0 -28px;
}

.car-fade-l,
.car-fade-r {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  width: 80px;
  pointer-events: none;
}

.car-fade-l {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.car-fade-r {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

.car-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 80px;
}

.car-track::-webkit-scrollbar {
  display: none;
}

.t-card {
  min-width: 350px;
  max-width: 350px;
  height: 100%;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--glass-hi), var(--glass-md) 58%, var(--glass));
  border: 1px solid var(--stroke-hi);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 20px 50px rgba(0, 0, 0, .55);
  backdrop-filter: blur(22px);
  transition: transform 380ms var(--ease), box-shadow 380ms, border-color 380ms;
  position: relative;
  overflow: hidden;
}

.t-card>div:first-child {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.t-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.t-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, .65);
  border-color: rgba(255, 255, 255, 0.24);
}

.t-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.t-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--stroke-hi);
  flex-shrink: 0;
  background: var(--glass-md);
}

.t-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.t-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.t-quote {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.t-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted-hi);
  flex-grow: 1;
  margin-bottom: 18px;
}

.t-start {
  font-size: 11px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  margin-bottom: 18px;
}

.t-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--stroke);
}

.t-met {
  text-align: center;
}

.t-met-val {
  display: block;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.t-met-ico {
  font-size: 13px;
  margin-bottom: 4px;
  display: block;
}

.t-met-lbl {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'DM Mono', monospace;
}

.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--stroke-hi);
  background: var(--glass-hi);
  backdrop-filter: blur(18px);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, transform 0.22s;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .4);
}

.car-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-50%) scale(1.08);
}

.car-btn.l {
  left: 20px;
}

.car-btn.r {
  right: 20px;
}

.res-cta {
  text-align: center;
  margin-top: 52px;
}

/* ============================================================
   CONTACT
============================================================ */
#contact {
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}

.contact-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 800px 440px at 50% 50%, rgba(200, 255, 0, 0.065), transparent 62%);
  animation: aurShift 20s ease-in-out infinite alternate;
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.contact-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 60px;
}

.contact-header .sec-title {
  margin-bottom: 16px;
}

.contact-header p {
  font-size: 18px;
  color: var(--muted-hi);
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

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

.contact-card {
  padding: 38px 36px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--glass-hi), var(--glass-md) 55%, var(--glass));
  border: 1px solid var(--stroke-hi);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 22px 55px rgba(0, 0, 0, .52);
  backdrop-filter: blur(24px);
  transition: transform 350ms var(--ease), box-shadow 350ms, border-color 350ms;
  text-decoration: none;
  color: inherit;
  display: block;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 68px rgba(0, 0, 0, .62);
  border-color: rgba(255, 255, 255, 0.26);
}

.cc-icon {
  font-size: 38px;
  margin-bottom: 20px;
  display: block;
}

.cc-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cc-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 10px;
}

.cc-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-hi);
  margin-bottom: 22px;
}

.cc-action {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.contact-card:hover .cc-action {
  gap: 10px;
}

/* Info row */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 22px;
}

@media(max-width:800px) {
  .contact-info {
    grid-template-columns: 1fr;
  }
}

.ci-card {
  padding: 26px 28px;
  border-radius: var(--radius-md);
  background: var(--glass);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(16px);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: background 0.24s, border-color 0.24s, transform 0.24s;
}

.ci-card:hover {
  background: var(--glass-md);
  border-color: var(--stroke-hi);
  transform: translateY(-3px);
}

.ci-icon {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}

.ci-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.13em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ci-val {
  font-size: 14px;
  color: var(--muted-hi);
  font-weight: 500;
}

/* Final tagline */
.contact-tagline {
  text-align: center;
  margin-top: 60px;
}

.contact-tagline h3 {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 10px;
}

.contact-tagline p {
  font-size: 15px;
  color: var(--muted-hi);
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: rgba(4, 4, 7, 0.97);
  border-top: 1px solid var(--stroke);
  padding: 58px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 56px;
  margin-bottom: 44px;
}

@media(max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-logo {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 14px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 230px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--muted-hi);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact h4 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-contact ul {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 10px;
}

.footer-contact a {
  color: var(--muted-hi);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid var(--stroke);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

.footer-legal {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
  max-width: 500px;
  line-height: 1.5;
}

/* ============================================================
   SECTIONS SPACING & PADS
============================================================ */
section {
  position: relative;
  overflow: hidden;
}

/* ============================================================
   RESPONSIVE CATCH-ALL
============================================================ */
@media(max-width:640px) {
  .container {
    padding: 0 18px;
  }

  .t-card {
    min-width: 290px;
    max-width: 290px;
  }

  .car-track {
    padding: 20px 40px;
  }
}

@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   LUXURY BLACK & WHITE MONOCHROME OVERRIDES
============================================================ */
:root {
  --lux-bg: #050505;
  --lux-surface: rgba(255, 255, 255, 0.055);
  --lux-surface-strong: rgba(255, 255, 255, 0.1);
  --lux-stroke: rgba(255, 255, 255, 0.2);
  --lux-text-main: #ffffff;
  --lux-text-muted: rgba(255, 255, 255, 0.7);
}

body {
  background:
    radial-gradient(1100px 520px at 8% -10%, rgba(255, 255, 255, 0.09), transparent 45%),
    radial-gradient(1000px 480px at 100% 0%, rgba(255, 255, 255, 0.05), transparent 42%),
    linear-gradient(180deg, #060606 0%, #040404 100%);
  color: var(--lux-text-main);
  letter-spacing: 0.01em;
}

/* Dot grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

/* Ambient drift - white glows */
body::before {
  content: '';
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06), transparent 26%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05), transparent 30%);
  filter: blur(24px);
  animation: luxDrift 18s ease-in-out infinite alternate;
}

@keyframes luxDrift {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }

  to {
    transform: translate3d(2%, 1%, 0) scale(1.04);
  }
}

/* Nav overrides */
#nav {
  background: rgba(8, 8, 8, 0.58) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(26px) saturate(155%);
  -webkit-backdrop-filter: blur(26px) saturate(155%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.nav-links {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)) !important;
  border: 1px solid var(--lux-stroke) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 12px 28px rgba(0, 0, 0, 0.45) !important;
}

.nav-links a {
  color: var(--lux-text-muted) !important;
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

/* Hero aurora overrides â€” transparent */
.hero-aurora {
  background: transparent !important;
}

#home {
  background: transparent;
}

/* Section title gradient â€” white */
.sec-title {
  background: linear-gradient(180deg, #ffffff 0%, #d8d8d8 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Muted text */
.sec-sub,
.kicker,
.hero-sub,
.stat-l,
.t-role,
.t-start,
.t-met-lbl,
.bp-card p,
.why-card p,
.panel-copy,
.cc-desc,
.ci-label,
.footer-brand p,
.footer-col a,
.footer-contact a,
.footer-copy,
.footer-legal {
  color: rgb(255 255 255 / 52%) !important;
}

/* Buttons â€” white glass */
.btn-white,
.btn-accent,
.btn-ghost,
.panel-cta,
.nav-cta {
  background: linear-gradient(180deg, #ffffff 0%, #e7e7e7 100%) !important;
  color: #080808 !important;
  border: 1px solid rgba(255, 255, 255, 0.38) !important;
  border-radius: 999px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 16px 34px rgba(0, 0, 0, 0.5) !important;
  font-weight: 700 !important;
}

.btn-white:hover,
.btn-accent:hover,
.btn-ghost:hover,
.panel-cta:hover {
  transform: translateY(-3px) scale(1.01) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 20px 40px rgba(0, 0, 0, 0.6) !important;
  filter: brightness(1.02);
}

/* Scroll bar â€” white */
#scrollBar {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.45)) !important;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.45) !important;
}

/* Accent overrides to white */
.kicker::before {
  background: #fff !important;
}

.badge-dot {
  background: #fff !important;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5) !important;
}

.hero-h1 .aw {
  background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Chip pills â€” glass */
.chip,
.hero-badge {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

/* Stats â€” white numbers */
.stat-n span {
  color: rgba(255, 255, 255, 0.7) !important;
}

.stat {
  background: var(--lux-surface) !important;
}

.stat:hover {
  background: var(--lux-surface-strong) !important;
}

.stats-row {
  border-color: var(--lux-stroke) !important;
  background: var(--lux-stroke) !important;
}

/* Service list â€” glass overrides */
.svc-li .svc-row {
  background: linear-gradient(180deg, var(--lux-surface-strong), var(--lux-surface)) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
}

.svc-li .svc-row::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent) !important;
}

.svc-li.on .svc-row {
  border-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.45) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)) !important;
}

.svc-icon {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Service panel â€” glass */
.svc-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0.03)) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 20px 45px rgba(0, 0, 0, 0.5) !important;
}

.svc-panel::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent) !important;
}

.panel-tag {
  color: rgba(255, 255, 255, 0.7) !important;
}

.panel-chip,
.panel-tag-chip,
.panel-tag {
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

/* Blueprint cards â€” glass */
.bp-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04) 35%, rgba(255, 255, 255, 0.03) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 20px 45px rgba(0, 0, 0, 0.5) !important;
}

.bp-card::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent) !important;
}

.bp-card:hover {
  border-color: rgba(255, 255, 255, 0.28) !important;
}

.bp-phase-label {
  color: rgba(255, 255, 255, 0.7) !important;
}

.bp-num-circle {
  color: #fff !important;
  background: var(--lux-surface) !important;
  border: 1px solid var(--lux-stroke) !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.12) !important;
}

.bp-step {
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.bp-phase:not(:last-child)::after {
  background: linear-gradient(180deg, var(--lux-stroke), transparent) !important;
}

/* Why cards â€” glass */
.why-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04) 35%, rgba(255, 255, 255, 0.03) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 20px 45px rgba(0, 0, 0, 0.5) !important;
}

.why-card::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
}

.why-card:hover {
  border-color: rgba(255, 255, 255, 0.28) !important;
}

.why-card:hover h3 {
  color: #fff !important;
}




/* Trust bar â€” glass */
.trust-bar {
  background: var(--lux-stroke) !important;
  border: 1px solid var(--lux-stroke) !important;
}

.trust-cell {
  background: var(--lux-surface) !important;
}

.trust-cell:hover {
  background: var(--lux-surface-strong) !important;
}

.trust-val em {
  color: rgba(255, 255, 255, 0.6) !important;
  font-style: normal;
}

/* Testimonial cards â€” glass */
.t-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04) 35%, rgba(255, 255, 255, 0.03) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 20px 45px rgba(0, 0, 0, 0.5) !important;
  border-radius: 26px !important;
}

.t-card::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent) !important;
}

.t-card:hover {
  border-color: rgba(255, 255, 255, 0.28) !important;
}

.t-quote {
  color: #fff !important;
}

.t-met-val {
  color: #fff !important;
}

.t-metrics {
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.t-av {
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

/* Carousel buttons â€” white */
.car-btn {
  background: rgba(255, 255, 255, 0.9) !important;
  color: #0a0a0a !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.45) !important;
}

.car-btn:hover {
  background: #fff !important;
}

/* Reel â€” glass borders */
.reel {
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
}

.reel:hover {
  border-color: rgba(255, 255, 255, 0.28) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6) !important;
}

.reel-strip::before {
  background: linear-gradient(90deg, #050505, transparent) !important;
}

.reel-strip::after {
  background: linear-gradient(-90deg, #050505, transparent) !important;
}

/* Contact section â€” glass */
.contact-aurora {
  background: transparent !important;
}

.contact-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0.03)) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 22px 55px rgba(0, 0, 0, 0.52) !important;
}

.contact-card::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
}

.contact-card:hover {
  border-color: rgba(255, 255, 255, 0.28) !important;
}

.cc-label {
  color: rgba(255, 255, 255, 0.7) !important;
}

.cc-action {
  color: #fff !important;
}

.ci-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
}

.ci-card:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
}

/* Final CTA banner */
.final-cta-banner {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 28px;
  border-radius: 30px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 25px 50px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.final-cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.13) 48%, transparent 70%);
  transform: translateX(-135%);
  animation: sheen 8s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* Footer â€” dark glass */
footer {
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.95), rgba(5, 5, 5, 0.98)) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
}

/* Dividers */
.div {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent) !important;
}

/* ============================================================
   PREMIUM MOTION â€” SHEEN ANIMATION
============================================================ */
.why-card,
.bp-card,
.t-card,
.final-cta-banner {
  position: relative;
  overflow: hidden;
}

.why-card::after,
.bp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.13) 48%, transparent 70%);
  transform: translateX(-135%);
  animation: sheen 8s ease-in-out infinite;
}

.why-card:nth-child(1)::after {
  animation-delay: 0s;
}

.why-card:nth-child(2)::after {
  animation-delay: 1.2s;
}

.why-card:nth-child(3)::after {
  animation-delay: 2.4s;
}

.bp-card::after {
  animation-delay: 0.8s;
}

@keyframes sheen {

  0%,
  65% {
    transform: translateX(-135%);
  }

  100% {
    transform: translateX(135%);
  }
}

/* ============================================================
   PREMIUM HOVER REFINEMENT
============================================================ */
.why-card,
.bp-card,
.t-card,
.svc-panel,
.contact-card {
  transform-style: preserve-3d;
  transition:
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 450ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 450ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.why-card:hover,
.bp-card:hover,
.t-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45) !important;
}

/* ============================================================
   NEW DESIGN SYSTEM EXTENSIONS
============================================================ */

/* 1. Global Font Family Overrides */
body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
.display,
.sec-title,
.btn,
.logo,
.hero-h1,
.stat-n,
.svc-name-t,
.panel-title,
.panel-cta,
.bp-card h3,
.bp-commit h3,
.why-card h3,
.trust-val,
.t-quote,
.cc-title,
.cc-action,
.contact-tagline h3,
.footer-logo {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* 2. Services Grid Fixed Height & Layout Alignment */
@media(min-width: 961px) {
  .svc-grid {
    grid-template-rows: 520px !important;
    align-items: stretch !important;
  }

  .svc-list {
    height: 100% !important;
    overflow-y: auto !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .svc-li .svc-row {
    padding: 10px 14px !important;
    grid-template-columns: 38px 1fr 18px !important;
    gap: 10px !important;
    border-radius: 12px !important;
  }

  .svc-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 8px !important;
  }

  .svc-icon img {
    width: 20px !important;
    height: 20px !important;
  }

  .svc-name-t {
    font-size: 14px !important;
  }

  .svc-desc-t {
    font-size: 11px !important;
    margin-top: 2px !important;
  }

  .svc-panel {
    height: 100% !important;
    max-height: 100% !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .panel-body-scroll {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 24px 24px 10px 24px !important;
    box-sizing: border-box !important;
  }

  .panel-footer-fixed {
    padding: 10px 24px 24px 24px !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    background: transparent !important;
  }

  .panel-img {
    flex-shrink: 0 !important;
  }

  .svc-list::-webkit-scrollbar {
    display: none !important;
  }

  .panel-body-scroll::-webkit-scrollbar {
    width: 4px !important;
  }

  .panel-body-scroll::-webkit-scrollbar-track {
    background: transparent !important;
  }

  .panel-body-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 99px !important;
  }

  .panel-body-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3) !important;
  }
}

/* 4. Mobile Responsiveness Tuning */
@media(max-width: 768px) {
  .nav-inner {
    padding: 0 16px !important;
  }

  .logo img {
    height: 34px !important;
  }

  .nav-cta {
    font-size: 11px !important;
    padding: 8px 16px !important;
    margin-right: 8px;
  }

  .mob-btn {
    width: 38px !important;
    height: 38px !important;
    font-size: 16px !important;
    border-radius: 8px !important;
  }

  #home {
    padding: calc(var(--nav-h) + 60px) 0 60px !important;
  }

  .hero-h1 {
    font-size: clamp(34px, 10vw, 52px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 20px !important;
  }

  .hero-sub {
    font-size: 15px !important;
    margin-bottom: 30px !important;
    padding: 0 8px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 10px !important;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-trust {
    margin-top: 40px !important;
    gap: 8px !important;
  }

  .reel-strip {
    padding: 24px 0 !important;
  }

  .reel {
    width: 140px !important;
    height: 248px !important;
    border-radius: 12px !important;
  }

  @keyframes reelScrollMobile {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-156px * 7));
    }
  }

  .reel-track {
    animation: reelScrollMobile 28s linear infinite !important;
  }

  #services {
    padding: 60px 0 !important;
  }

  .svc-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin-top: 36px !important;
  }

  .svc-list {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    gap: 8px !important;
    padding: 4px 4px 12px !important;
    margin-bottom: 0 !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .svc-list::-webkit-scrollbar {
    display: none !important;
  }

  .svc-li {
    flex: 0 0 auto !important;
  }

  .svc-li .svc-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 16px !important;
    border-radius: 99px !important;
  }

  .svc-li .svc-row::before {
    display: none !important;
  }

  .svc-icon {
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .svc-icon img {
    width: 16px !important;
    height: 16px !important;
  }

  .svc-name-t {
    font-size: 13px !important;
  }

  .svc-desc-t,
  .svc-arr {
    display: none !important;
  }

  .svc-panel {
    margin-top: 8px !important;
    padding: 16px !important;
    height: auto !important;
    max-height: none !important;
  }

  .panel-body-scroll {
    padding: 0 !important;
    overflow-y: visible !important;
    height: auto !important;
  }

  .panel-footer-fixed {
    padding: 14px 0 0 0 !important;
    height: auto !important;
    background: transparent !important;
  }

  .panel-cta {
    display: inline-flex !important;
    width: 100% !important;
    justify-content: center !important;
  }

  .panel-title {
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }

  .panel-copy {
    font-size: 13px !important;
    line-height: 1.6 !important;
  }

  #blueprint {
    padding: 60px 0 !important;
  }

  .bp-phases {
    margin-top: 40px !important;
  }

  .bp-card {
    padding: 24px 22px !important;
    border-radius: 16px !important;
  }

  .bp-card h3 {
    font-size: 18px !important;
  }

  .bp-card p {
    font-size: 13px !important;
    line-height: 1.6 !important;
  }

  .bp-commit {
    padding: 24px !important;
    border-radius: 16px !important;
    margin-top: 36px !important;
  }

  .bp-commit h3 {
    font-size: 18px !important;
  }

  .bp-commit p {
    font-size: 13px !important;
  }

  .bp-commit-grid {
    gap: 14px !important;
    margin-top: 20px !important;
  }

  .bp-commit-val {
    font-size: 22px !important;
  }

  #whyus {
    padding: 60px 0 !important;
  }

  .why-header {
    margin-bottom: 36px !important;
  }

  .why-grid {
    gap: 16px !important;
  }

  .why-card {
    padding: 26px 22px !important;
    border-radius: 16px !important;
  }

  .why-card h3 {
    font-size: 18px !important;
  }

  .why-card p {
    font-size: 13px !important;
  }

  .vs-wrap {
    overflow-x: auto !important;
    width: 100% !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .vs-table {
    min-width: 600px !important;
  }

  .vs-table th,
  .vs-table td {
    padding: 10px 12px !important;
    font-size: 12px !important;
  }

  .vs-table th:nth-child(3),
  .vs-table td:nth-child(3),
  .vs-table th:nth-child(4),
  .vs-table td:nth-child(4) {
    font-size: 11px !important;
    padding: 8px !important;
  }

  #results {
    padding: 60px 0 30px !important;
  }

  .res-sub {
    margin-bottom: 32px !important;
  }

  .res-sub p {
    font-size: 15px !important;
  }

  .car-track {
    padding: 10px 20px !important;
  }

  .t-card {
    padding: 20px !important;
    border-radius: 16px !important;
  }

  .t-quote {
    font-size: 15px !important;
  }

  .t-text {
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  .car-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
  }

  .car-btn.l {
    left: 10px !important;
  }

  .car-btn.r {
    right: 10px !important;
  }

  #contact {
    padding: 60px 0 !important;
  }

  .final-cta-banner {
    padding: 36px 20px !important;
    border-radius: 20px !important;
  }

  .final-cta-banner h2 {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }

  .final-cta-banner p {
    font-size: 15px !important;
    margin-bottom: 20px !important;
  }

  .final-cta-banner .btn-accent {
    padding: 12px 28px !important;
    font-size: 14px !important;
  }

  .contact-header {
    margin-top: 48px !important;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .contact-card {
    padding: 26px 22px !important;
    border-radius: 16px !important;
  }

  .contact-card h3 {
    font-size: 18px !important;
  }

  .contact-card p {
    font-size: 13px !important;
  }

  .ci-card {
    padding: 18px 16px !important;
  }

  .contact-info {
    gap: 10px !important;
  }

  .contact-tagline {
    margin-top: 40px !important;
  }

  .contact-tagline h3 {
    font-size: 18px !important;
  }

  footer {
    padding: 40px 0 24px !important;
  }

  .footer-grid {
    gap: 24px !important;
    margin-bottom: 32px !important;
  }

  .footer-logo img {
    height: 38px !important;
  }

  .footer-brand p {
    font-size: 13px !important;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }

  .footer-col h4,
  .footer-contact h4 {
    margin-bottom: 10px !important;
  }

  .footer-col a,
  .footer-contact a {
    font-size: 13px !important;
  }

  .footer-bottom {
    padding-top: 20px !important;
    flex-direction: column;
    text-align: center;
    gap: 8px !important;
  }

  .footer-legal {
    font-size: 11px !important;
  }
}

/* ============================================================
   WHITE FOOTER THEME OVERRIDES
============================================================ */
footer {
  background: #ffffff !important;
  color: #333333 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

footer .footer-brand p,
footer .footer-col h4,
footer .footer-contact h4 {
  color: #666666 !important;
}

footer .footer-col a,
footer .footer-contact a {
  color: #333333 !important;
}

footer .footer-col a:hover,
footer .footer-contact a:hover {
  color: #000000 !important;
}

footer .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}


footer .footer-copy {
  color: #666666 !important;
}

footer .footer-legal {
  color: #999999 !important;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
}

.wa-float svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.wa-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 10, 14, 0.92);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateY(-50%) translateX(6px);
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
  .wa-float {
    bottom: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }

  .wa-tooltip {
    display: none;
  }
}

/* ============================================================
   STAT COUNT-UP — ANIMATION GUARD
   (Prevents layout shift during count animation)
============================================================ */
.stat-n[data-val] {
  min-width: 3ch;
  display: inline-block;
}

/* ============================================================
   PREMIUM HOVER-GLOW EFFECT
============================================================ */
.hover-glow-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.card-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s;
}

.hover-glow-card:hover .card-glow {
  opacity: 1;
}

.hover-glow-card>* {
  position: relative;
  z-index: 2;
}

/* ============================================================
   FOUNDER SECTION
============================================================ */
#founder {
  padding: 110px 0;
  position: relative;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.founder-avatar-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--stroke-hi);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
}

.founder-initials {
  font-size: 88px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.05em;
}

.founder-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(5, 5, 8, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--stroke-hi);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  white-space: nowrap;
}

.founder-story-title {
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(170deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.founder-story-text {
  font-size: 16px;
  color: var(--muted-hi);
  margin-bottom: 20px;
  line-height: 1.7;
}

.founder-quote-card {
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 16px 16px 0;
  margin-top: 28px;
  font-style: italic;
  color: #fff;
  font-size: 16px;
  line-height: 1.65;
}

.founder-sig {
  margin-top: 14px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   CLIENT LOGO MARQUEE
============================================================ */
.logo-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 22px 0;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  margin-top: 48px;
  pointer-events: none;
}

.logo-marquee-track {
  display: inline-flex;
  animation: marqueeScroll 24s linear infinite;
  gap: 64px;
  align-items: center;
}

.logo-item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.24);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.logo-item svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  opacity: 0.28;
}

.logo-marquee-fade-l,
.logo-marquee-fade-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee-fade-l {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.logo-marquee-fade-r {
  right: 0;
  background: linear-gradient(-90deg, var(--bg) 0%, transparent 100%);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   TESTIMONIAL DOTS
============================================================ */
.car-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.car-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--stroke);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.car-dot.active {
  background: var(--accent);
  transform: scale(1.25);
}

/* ============================================================
   UPGRADED CONTACT INLINE FORM
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: stretch;
  margin-top: 48px;
  text-align: left;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details {
  margin: 32px 0;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-md);
  border: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
}

.contact-detail-text h4 {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.contact-detail-text p {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}

.contact-detail-text a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail-text a:hover {
  color: var(--accent);
}

.contact-form-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--stroke-hi);
  padding: 40px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 5;
}

.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}

.contact-form-control:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.08);
}

textarea.contact-form-control {
  resize: none;
  height: 110px;
}

.contact-form-submit {
  width: 100%;
  padding: 14px;
  font-size: 14px;
  margin-top: 10px;
}

.contact-success-state {
  display: none;
  text-align: center;
  padding: 40px 0;
}

.contact-success-icon {
  font-size: 56px;
  margin-bottom: 16px;
  display: block;
  color: var(--accent);
}

.contact-success-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-success-desc {
  font-size: 14px;
  color: var(--muted-hi);
  line-height: 1.6;
}

/* ============================================================
   VS TABLE (SORNET MEDIA VS THE REST)
============================================================ */
.vs-wrap {
  margin-top: 80px;
  width: 100%;
}

.vs-table-container {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-top: 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--stroke) transparent;
}

.vs-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 760px;
}

/* Round the outer corners of the table cells to match the container's border-radius */
.vs-table th:first-child {
  border-top-left-radius: var(--radius-md);
}

.vs-table th:last-child {
  border-top-right-radius: var(--radius-md);
}

.vs-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: var(--radius-md);
}

.vs-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: var(--radius-md);
}

.vs-table th,
.vs-table td {
  padding: 20px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--stroke);
  color: rgba(240, 240, 240, 0.45);
  vertical-align: middle;
  transition: color 0.2s ease;
}

/* Header styling */
.vs-table th {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
}

/* Align columns 2, 3, 4 center */
.vs-table th:not(:first-child),
.vs-table td:not(:first-child) {
  text-align: center;
}

/* Label column */
.vs-table td:first-child {
  font-weight: 500;
  color: var(--text);
  width: 35%;
}

/* Hover effect on non-header rows */
.vs-table tbody tr {
  transition: background-color 200ms var(--ease);
}

.vs-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.015);
}

/* Highlighted Column: Sornet Media */
.vs-table th.hl,
.vs-table td.hl {
  background: rgba(200, 255, 0, 0.04);
  border-left: 1px solid rgba(200, 255, 0, 0.25);
  border-right: 1px solid rgba(200, 255, 0, 0.25);
  position: relative;
  box-shadow: 0 0 25px rgba(200, 255, 0, 0.02);
  color: var(--text);
}

.vs-table th.hl {
  border-top: 1px solid rgba(200, 255, 0, 0.25);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(200, 255, 0, 0.08);
}

.vs-table tbody tr:last-child td.hl {
  border-bottom: 1px solid rgba(200, 255, 0, 0.25);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

/* Check Circle (Sornet Media Checkmarks) */
.vs-check-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(200, 255, 0, 0.12);
  border: 1.5px solid rgba(200, 255, 0, 0.35);
  color: var(--accent);
  box-shadow: 0 0 12px rgba(200, 255, 0, 0.15);
}

/* Icon vectors styling */
.vs-ico {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
}

.vs-ico.cross {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.2);
  stroke-width: 2.2;
}

/* Warning labels (Varies, Extra cost, Limited, Sometimes) */
.vs-txt-warn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: #ffb700;
  background: rgba(255, 183, 0, 0.08);
  border: 1px solid rgba(255, 183, 0, 0.2);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.01em;
}

/* Clean up bottom borders for last row */
.vs-table tbody tr:last-child td:not(.hl) {
  border-bottom: none;
}

/* ============================================================
   RESPONSIVENESS FOR NEW ELEMENTS
============================================================ */
@media(max-width: 960px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .founder-avatar-wrap {
    width: 280px;
    height: 280px;
  }

  .founder-initials {
    font-size: 76px;
  }

  .founder-quote-card {
    border-left: none;
    border-top: 2px solid var(--accent);
    border-radius: 0 0 16px 16px;
    padding: 18px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-card {
    padding: 28px 22px;
  }

  .logo-marquee-track {
    gap: 48px;
  }
}