/* ============================================================
   AM MAINTENANCE — FUTURISTIC THEME
   Shared stylesheet for all pages.
   ============================================================ */

:root {
  --bg-0: #050810;
  --bg-1: #0a0f1a;
  --bg-2: #0f1727;
  --ink: #e8edf5;
  --ink-soft: #9aa6b8;
  --ink-faint: #5a6478;
  --line: rgba(232, 237, 245, 0.08);
  --line-strong: rgba(232, 237, 245, 0.16);
  --accent: #5cc8ff;
  --accent-2: #b794ff;
  --accent-3: #4ade80;
  --volt: #fde047;
  --volt-soft: #fbbf24;
  --warn: #fbbf24;
  --danger: #ff5470;
  --grad: linear-gradient(135deg, #5cc8ff 0%, #fde047 60%, #fbbf24 100%);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: rgba(92, 200, 255, 0.3); color: #fff; }
html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
  background: var(--bg-0);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

/* ============ AURORA BACKGROUND ============ */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background: var(--bg-0);
}
.aurora::before,
.aurora::after {
  content: "";
  position: absolute;
  width: 70vmax;
  height: 70vmax;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: drift 24s var(--ease) infinite;
}
.aurora::before {
  top: -30vmax; left: -20vmax;
  background: radial-gradient(circle, #1d4fa3 0%, transparent 60%);
}
.aurora::after {
  bottom: -30vmax; right: -20vmax;
  background: radial-gradient(circle, #6b3aa8 0%, transparent 60%);
  animation-delay: -12s;
}
.aurora-core {
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60vmax; height: 60vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 200, 255, 0.15) 0%, transparent 55%);
  filter: blur(90px);
  animation: pulse 8s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15vmax, 8vmax) scale(1.1); }
  66% { transform: translate(-8vmax, 12vmax) scale(0.9); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.15); }
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(232, 237, 245, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 237, 245, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center top, black 30%, transparent 75%);
}
.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

.container { width: min(1240px, calc(100% - 3rem)); margin: 0 auto; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(5, 8, 16, 0.6);
  border-bottom: 1px solid var(--line);
  /* needed so the mobile dropdown positions correctly */
  isolation: isolate;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.brand-text span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: rgba(232, 237, 245, 0.05); }
.nav-links a.is-active { color: var(--ink); background: rgba(232, 237, 245, 0.05); }
.nav-cta {
  padding: 0.55rem 1.1rem !important;
  background: var(--ink) !important;
  color: var(--bg-0) !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease) !important;
}
.nav-cta:hover { transform: translateY(-1px); background: #fff !important; }

/* Hamburger toggle button — hidden on desktop */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(232, 237, 245, 0.06);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle .icon-open,
.nav-toggle .icon-close { width: 20px; height: 20px; display: block; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ============ STATUS / LIVE PILLS ============ */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-soft);
  background: rgba(232, 237, 245, 0.02);
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(253, 224, 71, 0.3);
  background: rgba(253, 224, 71, 0.06);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--volt);
  letter-spacing: 0.08em;
}
.live-bolt {
  width: 10px;
  height: 10px;
  animation: spark 1.4s ease-in-out infinite;
}
@keyframes spark {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ============ ELECTRIC DECORATION ============ */
.bolt-deco {
  position: absolute;
  pointer-events: none;
  color: var(--volt);
  opacity: 0.08;
  filter: drop-shadow(0 0 30px var(--volt));
}
.bolt-hero {
  top: -2rem;
  right: -3rem;
  width: 380px;
  height: 380px;
  animation: boltPulse 4s ease-in-out infinite;
}
@keyframes boltPulse {
  0%, 100% { opacity: 0.08; filter: drop-shadow(0 0 30px var(--volt)); }
  50% { opacity: 0.16; filter: drop-shadow(0 0 60px var(--volt)); }
}
.circuit-trace {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}
.circuit-trace path {
  stroke-dasharray: 4 6;
  animation: dash 3s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -100; } }

/* ============ HERO / PAGE-HERO ============ */
.hero { position: relative; padding: 5rem 0 6rem; overflow: hidden; }
.page-hero { position: relative; padding: 4rem 0 3rem; overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
  background: rgba(92, 200, 255, 0.04);
}

h1.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 1.6rem;
}
h1.page-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1.2rem;
  max-width: 22ch;
}
.hero-title .grad,
.page-title .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero-title .italic,
.page-title .italic { font-style: italic; font-weight: 400; color: var(--ink-soft); }

.hero-sub, .page-sub {
  max-width: 56ch;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 2.2rem;
  line-height: 1.6;
}

/* ============ BUTTONS ============ */
.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border: none;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  will-change: transform;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg-0);
  box-shadow: 0 0 0 1px rgba(232, 237, 245, 0.1), 0 20px 40px -12px rgba(92, 200, 255, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(232, 237, 245, 0.15), 0 24px 48px -12px rgba(92, 200, 255, 0.55); }
.btn-ghost {
  background: rgba(232, 237, 245, 0.04);
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: rgba(232, 237, 245, 0.08); transform: translateY(-2px); }
.btn-whatsapp { background: #25d366; color: #052e1a; }
.btn-whatsapp:hover { transform: translateY(-2px); background: #2ee574; }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============ HERO META STRIP ============ */
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.meta-cell { padding: 0 1.4rem; border-right: 1px solid var(--line); }
.meta-cell:first-child { padding-left: 0; }
.meta-cell:last-child { border-right: none; padding-right: 0; }
.meta-cell .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.meta-cell .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============ HERO PHOTO ============ */
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 80px -20px rgba(5, 8, 16, 0.6), 0 0 0 1px rgba(92, 200, 255, 0.05);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) saturate(1.1) contrast(1.05);
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(5, 8, 16, 0.85) 100%),
    radial-gradient(ellipse at top right, rgba(92, 200, 255, 0.18), transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.hero-photo-meta {
  position: absolute;
  inset: auto 1.5rem 1.5rem 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.photo-tag {
  align-self: flex-start;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0.4rem 0.7rem;
  background: rgba(5, 8, 16, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink);
  letter-spacing: 0.06em;
}
.photo-caption {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.hero-photo-corner {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  background: rgba(5, 8, 16, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink);
}

/* ============ SECTION HEADINGS ============ */
.section { padding: 5rem 0; position: relative; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
h2.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 24ch;
  margin-bottom: 1rem;
}
h3.subhead {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.section-sub { color: var(--ink-soft); max-width: 56ch; font-size: 1.05rem; }

/* ============ SERVICE GRID ============ */
.services {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(232, 237, 245, 0.04), rgba(232, 237, 245, 0.01));
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(92, 200, 255, 0.12), transparent 40%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.service-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }

.service-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-2);
}
.service-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: brightness(0.75) saturate(1.05);
}
.service-card:hover .service-thumb img { transform: scale(1.06); }
.service-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 8, 16, 0.8) 100%);
  pointer-events: none;
}
.service-thumb .num {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink);
  letter-spacing: 0.08em;
  padding: 0.3rem 0.6rem;
  background: rgba(5, 8, 16, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.service-body {
  padding: 1.6rem 1.6rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.service-card p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; margin-bottom: 1.2rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.25s var(--ease);
}
.service-link:hover { gap: 0.75rem; }
.service-link::after {
  content: "→";
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
}

/* ============ SPLIT LAYOUT ============ */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split.reverse { grid-template-columns: 1fr 1.05fr; }
.image-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 80px -20px rgba(5, 8, 16, 0.6);
}
.image-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85) saturate(1.05); }
.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 8, 16, 0.7) 100%);
  pointer-events: none;
}
.image-card .photo-tag { position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2; }

/* ============ BEFORE / AFTER ============ */
.ba-wrap {
  margin-top: 3rem;
  display: block;
}
.ba-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 2rem;
}
.ba-header .ba-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}
.ba-slider {
  position: relative;
  width: 100%;
  max-height: 78vh;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  cursor: ew-resize;
  user-select: none;
  background: var(--bg-1);
  box-shadow: 0 40px 80px -20px rgba(5, 8, 16, 0.6);
}
.ba-slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.ba-after { clip-path: polygon(var(--split, 50%) 0, 100% 0, 100% 100%, var(--split, 50%) 100%); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--split, 50%);
  width: 2px;
  background: var(--ink);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 20px rgba(92, 200, 255, 0.6);
}
.ba-knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg-0);
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.ba-tag {
  position: absolute;
  top: 1rem;
  padding: 0.35rem 0.7rem;
  background: rgba(5, 8, 16, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink);
  letter-spacing: 0.08em;
  pointer-events: none;
  z-index: 3;
}
.ba-tag.left { left: 1rem; }
.ba-tag.right { right: 1rem; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.testi-carousel-wrap {
  position: relative;
  margin-top: 3rem;
}
.testi-header-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.testi-rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(232, 237, 245, 0.03);
}
.testi-rating-stars { color: var(--warn); font-size: 14px; letter-spacing: 1px; }
.testi-rating-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.testi-rating-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}
.testi-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.testi-carousel::-webkit-scrollbar { height: 4px; }
.testi-carousel::-webkit-scrollbar-track { background: transparent; }
.testi-carousel::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 2px; }
.testi-carousel .testi {
  flex: 0 0 calc(33.333% - 0.75rem);
  scroll-snap-align: start;
  min-width: 0;
}
.testi-nav {
  display: flex;
  gap: 0.5rem;
}
.testi-nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(232, 237, 245, 0.04);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: all 0.2s var(--ease);
}
.testi-nav-btn:hover { background: rgba(232, 237, 245, 0.1); border-color: var(--accent); }
.testi-nav-btn:disabled { opacity: 0.3; cursor: default; }
.testi {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(232, 237, 245, 0.04), rgba(232, 237, 245, 0.01));
  display: flex;
  flex-direction: column;
}
.testi-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
  color: var(--warn);
  font-size: 14px;
}
.testi-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--volt));
  display: grid;
  place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--bg-0);
}
.testi-meta { display: flex; flex-direction: column; line-height: 1.2; }
.testi-name { font-size: 14px; font-weight: 500; color: var(--ink); display: flex; align-items: center; gap: 0.4rem; }
.testi-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.testi-google {
  width: 14px; height: 14px;
  border-radius: 3px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  font-size: 9px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

/* ============ PROCESS ============ */
.process {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.step {
  position: relative;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(232, 237, 245, 0.02);
}
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.step h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}
.step p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }
.step-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(92, 200, 255, 0.18), rgba(253, 224, 71, 0.05));
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--accent);
}

/* ============ FEATURE LIST ============ */
.feature-list { display: grid; gap: 0.5rem; margin-top: 2rem; }
.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.feature-item:last-child { border-bottom: none; }
.feature-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-faint);
  padding-top: 4px;
}
.feature-item h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.3rem;
  letter-spacing: -0.015em;
}
.feature-item p { color: var(--ink-soft); font-size: 0.95rem; }

/* ============ FORM ============ */
.form-card {
  padding: 2.4rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(232, 237, 245, 0.04), rgba(232, 237, 245, 0.01));
}
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.85rem 1rem;
  background: rgba(5, 8, 16, 0.5);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(5, 8, 16, 0.7);
}
.form-field textarea { min-height: 140px; resize: vertical; }

/* ============ MINI GAME ============ */
.game-section { padding: 5rem 0; }
.game-card {
  position: relative;
  padding: 3rem;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #0a1224 0%, #14213d 100%);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(92, 200, 255, 0.18), transparent 55%);
  pointer-events: none;
}
.game-card > * { position: relative; z-index: 1; }
.game-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.game-info p { color: var(--ink-soft); margin-bottom: 1.5rem; }
.game-progress { display: flex; gap: 0.4rem; margin-bottom: 1.5rem; }
.game-pip {
  width: 24px; height: 4px;
  border-radius: 2px;
  background: var(--line-strong);
  transition: background 0.3s var(--ease);
}
.game-pip.done { background: var(--accent); }
.game-pip.current { background: var(--ink); box-shadow: 0 0 8px var(--accent); }
.game-quiz {
  padding: 1.8rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  background: rgba(5, 8, 16, 0.4);
  backdrop-filter: blur(8px);
}
.game-q-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
}
.game-q {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}
.game-options { display: grid; gap: 0.5rem; }
.game-opt {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(232, 237, 245, 0.02);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  transition: all 0.2s var(--ease);
}
.game-opt:hover { background: rgba(92, 200, 255, 0.08); border-color: var(--accent); }
.game-opt.correct { background: rgba(74, 222, 128, 0.15); border-color: var(--accent-3); }
.game-opt.wrong { background: rgba(255, 84, 112, 0.12); border-color: var(--danger); }
.game-opt[disabled] { cursor: default; }
.game-feedback {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  background: rgba(232, 237, 245, 0.04);
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.game-feedback.show { opacity: 1; }

/* ============ CALCULATOR ============ */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2rem;
  margin-top: 3rem;
}
.calc-form {
  padding: 2.4rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(232, 237, 245, 0.04), rgba(232, 237, 245, 0.01));
}
.calc-group { margin-bottom: 2rem; }
.calc-group:last-child { margin-bottom: 0; }
.calc-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.calc-radios { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.calc-radio {
  position: relative;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(5, 8, 16, 0.4);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.calc-radio:hover { border-color: var(--accent); }
.calc-radio input { position: absolute; opacity: 0; pointer-events: none; }
.calc-radio input:checked ~ .calc-radio-content { color: var(--ink); }
.calc-radio:has(input:checked) { background: rgba(92, 200, 255, 0.1); border-color: var(--accent); }
.calc-radio-content { display: flex; flex-direction: column; gap: 0.2rem; }
.calc-radio strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.calc-radio span { color: var(--ink-soft); font-size: 13px; }
.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--line-strong);
  border-radius: 2px;
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  cursor: grab;
  box-shadow: 0 0 0 4px rgba(92, 200, 255, 0.2);
}
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  cursor: grab;
  border: none;
  box-shadow: 0 0 0 4px rgba(92, 200, 255, 0.2);
}
.calc-slider-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 0.6rem;
}
.calc-extras { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.calc-check {
  position: relative;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(5, 8, 16, 0.4);
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
  transition: all 0.2s var(--ease);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.calc-check:has(input:checked) { background: rgba(92, 200, 255, 0.1); border-color: var(--accent); }
.calc-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.calc-check::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 5px;
  border: 1.5px solid var(--line-strong);
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  transition: all 0.2s var(--ease);
}
.calc-check:has(input:checked)::before {
  background: var(--accent);
  border-color: var(--accent);
  content: "✓";
  color: var(--bg-0);
  font-size: 12px;
  font-weight: 700;
}
.calc-result {
  position: sticky;
  top: 5rem;
  align-self: start;
  padding: 2.4rem;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #0a1224 0%, #14213d 100%);
  border: 1px solid var(--line-strong);
  overflow: hidden;
}
.calc-result::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(253, 224, 71, 0.18), transparent 55%);
  pointer-events: none;
}
.calc-result-inner { position: relative; z-index: 1; }
.calc-total {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin: 0.4rem 0 0.6rem;
}
.calc-disclaimer {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.calc-breakdown {
  margin: 1.5rem 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.calc-line {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.calc-line span:last-child { color: var(--ink); font-family: 'JetBrains Mono', monospace; }

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: scroll 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}
.marquee-item::after {
  content: "/";
  color: var(--volt);
  font-size: 1rem;
  font-weight: 300;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ CTA ============ */
.cta-section { padding: 5rem 0; position: relative; }
.cta-card {
  position: relative;
  padding: 4rem 3rem;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #0a1224 0%, #14213d 100%);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  text-align: center;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(92, 200, 255, 0.25), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(253, 224, 71, 0.15), transparent 50%);
  pointer-events: none;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 22ch;
  margin: 0 auto 1.2rem;
}
.cta-card p {
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto 2.2rem;
  font-size: 1rem;
}

/* ============ FOOTER ============ */
footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
  margin-top: 3rem;
}
.foot {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.foot h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}
.foot a {
  display: block;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  padding: 0.35rem 0;
  transition: color 0.2s var(--ease);
}
.foot a:hover { color: var(--ink); }
.foot p { color: var(--ink-soft); font-size: 14px; max-width: 36ch; margin-top: 1rem; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ MOBILE ============ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-photo { max-width: 480px; }
  .services { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .testi-carousel .testi { flex: 0 0 calc(100% - 0.5rem); }
  .process { grid-template-columns: 1fr 1fr; }
  .ba-header { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
  .ba-slider { aspect-ratio: 3 / 4; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 2rem; }
  .foot { grid-template-columns: 1fr 1fr; }
  .cta-card { padding: 3rem 2rem; }
  .form-row.two { grid-template-columns: 1fr; }
  .game-card { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
  .calc-wrap { grid-template-columns: 1fr; }
  .calc-result { position: static; }
  .calc-radios, .calc-extras { grid-template-columns: 1fr; }
  /* Mobile nav: hide all links by default, show toggle button */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: rgba(5, 8, 16, 0.97);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--line-strong);
    padding: 1rem 1.5rem 1.5rem;
    z-index: 99;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { border-radius: 10px; padding: 0.75rem 1rem; }
  .nav-links .nav-cta { text-align: center; justify-content: center; margin-top: 0.5rem; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .meta-cell { padding: 0.8rem 1rem; border-bottom: 1px solid var(--line); }
  .meta-cell:nth-child(2) { border-right: none; }
  .meta-cell:nth-child(3), .meta-cell:nth-child(4) { border-bottom: none; padding-top: 1.2rem; }
  .meta-cell:first-child, .meta-cell:nth-child(3) { padding-left: 0; }
  .hero { padding: 3rem 0 4rem; }
  .page-hero { padding: 2.5rem 0 2rem; }
  .bolt-hero { width: 220px; height: 220px; right: -2rem; }
}

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