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

:root {
  --dark:       #050B18;
  --dark2:      #0A1628;
  --blue:       #0069C2;
  --blue-hover: #0058A8;
  --blue-light: #38BDF8;
  --blue-pale:  #EFF6FF;
  --white:      #FFFFFF;
  --surface:    #F7F9FB;
  --text:       #0F172A;
  --muted:      #64748B;
  --border:     #E2E8F0;
  --green:      #10B981;
  --red:        #F43F5E;
  --radius:     14px;
  --radius-pill: 100px;
  --shadow:     0 2px 16px rgba(15,23,42,0.08);
  --shadow-md:  0 8px 32px rgba(15,23,42,0.12);
  --trans:      0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════ TYPOGRAPHY ═══════════════════════════ */
h1, h2, h3 {
  font-family: 'Syne', sans-serif;
  color: var(--text);
  line-height: 1.1;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { color: var(--muted); line-height: 1.7; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1.05rem;
  max-width: 580px;
  margin: 14px auto 48px;
  text-align: center;
}
.text-center { text-align: center; }

/* ═══════════════════════════ SCROLL REVEAL ═══════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════ BUTTONS ═══════════════════════════ */
.btn-pill-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  white-space: nowrap;
}
.btn-pill-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,105,194,0.35);
}
.btn-pill-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  transition: border-color var(--trans), background var(--trans);
  white-space: nowrap;
}
.btn-pill-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}
.btn-pill-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: border-color var(--trans), background var(--trans);
  white-space: nowrap;
}
.btn-pill-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-pill-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
  white-space: nowrap;
}
.btn-pill-white:hover { background: #E0F2FE; transform: translateY(-1px); }
.btn-pill-ghost-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.45);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  transition: border-color var(--trans), background var(--trans);
  white-space: nowrap;
}
.btn-pill-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-text-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--trans);
}
.btn-text-arrow:hover { color: var(--blue-hover); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ═══════════════════════════ NAV ═══════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  transition: color var(--trans);
}
.nav.scrolled .logo-text { color: var(--text); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--trans);
}
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: var(--muted); }
.nav.scrolled .nav-links a:hover { color: var(--text); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: color var(--trans);
}
.nav-phone:hover { color: #fff; }
.nav.scrolled .nav-phone { color: var(--muted); }
.nav.scrolled .nav-phone:hover { color: var(--text); }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background var(--trans), transform 0.3s, opacity 0.3s;
}
.nav.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 8px 0 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 24px;
  font-weight: 500;
  color: var(--text);
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 24px 0;
}

/* ═══════════════════════════ HERO ═══════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  overflow: visible;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5,11,24,0.82) 0%,
    rgba(5,11,24,0.6) 50%,
    rgba(5,11,24,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue-light);
}
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-phone {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-top: 8px;
}
.hero-phone a {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Stats HUD */
.stats-hud {
  position: relative;
  z-index: 10;
  background: rgba(8,14,30,0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  margin-top: -10px;
  margin-bottom: -56px;
}
.hud-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.09);
  align-self: center;
  margin: 0 8px;
}
.hud-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 20px;
}
.hud-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hud-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.sparkline {
  width: 100%;
  height: 36px;
  overflow: visible;
}
.spark-path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.spark-green { stroke: var(--green); }
.spark-blue  { stroke: var(--blue-light); }
.stats-hud.animated .spark-path { stroke-dashoffset: 0; }
.spark-dot {
  opacity: 0;
  transition: opacity 0.4s ease 1.4s;
}
.stats-hud.animated .spark-dot { opacity: 1; }
.hud-sub {
  font-size: 0.72rem;
  font-weight: 600;
}
.hud-green { color: var(--green); }
.hud-blue  { color: var(--blue-light); }

/* ═══════════════════════════ BEFORE / AFTER ═══════════════════════════ */
.before-after-section {
  padding: 140px 0 100px;
  background: var(--white);
  text-align: center;
}
.before-after-section h2 { margin-bottom: 0; }
.ba-wrapper { margin-top: 40px; }
.ba-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  box-shadow: var(--shadow-md);
}
.ba-img { width: 100%; height: 460px; object-fit: cover; display: block; }
.ba-before { position: relative; }
.ba-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
}
.ba-slider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  cursor: col-resize;
  z-index: 2;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-handle::before, .ba-handle::after {
  content: '';
  border: 6px solid transparent;
  display: block;
}
.ba-handle::before { border-right-color: var(--blue); margin-right: -2px; }
.ba-handle::after  { border-left-color: var(--blue);  margin-left: -2px; }
.ba-label {
  position: absolute;
  top: 16px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.ba-label-before { left: 16px; }
.ba-label-after  { right: 16px; }
.ba-hint {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

/* ═══════════════════════════ WHY DRONES ═══════════════════════════ */
.why-section {
  padding: 100px 0;
  background: var(--surface);
  text-align: center;
}
.why-section h2 { margin-bottom: 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--trans), box-shadow var(--trans);
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-icon-wrap {
  width: 48px; height: 48px;
  background: var(--blue-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--blue);
}
.why-icon-wrap svg { width: 22px; height: 22px; }
.why-stat {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}
.why-card h3 { color: var(--text); margin-bottom: 8px; }
.why-card p  { font-size: 0.9rem; }

/* ═══════════════════════════ SERVICES BENTO ═══════════════════════════ */
.services-section {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}
.services-section h2 { margin-bottom: 0; }
.services-bento {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}
.bento-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
}
.bento-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bento-img-wrap {
  position: relative;
  overflow: hidden;
}
.bento-main .bento-img-wrap { height: 280px; }
.bento-sm .bento-img-wrap  { height: 160px; }
.bento-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bento-card:hover .bento-img-wrap img { transform: scale(1.04); }
.bento-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.95);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.bento-badge-green { background: #ECFDF5; color: #065F46; }
.bento-badge-blue  { background: var(--blue-pale); color: #1E40AF; }
.bento-body { padding: 24px; }
.bento-body h3 { color: var(--text); margin-bottom: 8px; }
.bento-body p  { font-size: 0.92rem; margin-bottom: 16px; }
.bento-list {
  margin-bottom: 20px;
}
.bento-list li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 3px 0 3px 20px;
  position: relative;
}
.bento-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  position: absolute;
  left: 0;
}
.bento-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ═══════════════════════════ VIDEO ═══════════════════════════ */
.video-section {
  padding: 100px 0;
  background: var(--surface);
  text-align: center;
}
.video-section h2 { margin-bottom: 0; }
.video-wrapper {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.video-thumb {
  position: relative;
  cursor: pointer;
}
.video-thumb img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.video-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(5,11,24,0.45);
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform var(--trans);
}
.play-btn:hover { transform: translate(-50%, -52%); }
.play-icon {
  width: 72px; height: 72px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.play-icon svg { width: 28px; height: 28px; color: var(--blue); margin-left: 4px; }
.play-btn span { color: #fff; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.04em; }
.video-duration {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}
.video-frame { display: none; }
.video-frame.active { display: block; }
.video-frame iframe { width: 100%; height: 480px; display: block; }
.video-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.vstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  border-right: 1px solid var(--border);
}
.vstat:last-child { border-right: none; }
.vstat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
}
.vstat-label { font-size: 0.82rem; color: var(--muted); text-align: center; }

/* ═══════════════════════════ COMPARISON TABLE ═══════════════════════════ */
.comparison-section {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}
.comparison-section h2 { margin-bottom: 0; }
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: 40px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th {
  background: var(--surface);
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.82rem;
  text-align: left;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: #FAFBFC; }
.criteria-col { color: var(--text) !important; font-weight: 600 !important; }
.pantheon-col { background: rgba(0,105,194,0.04); }
.comparison-table th.pantheon-col { background: var(--blue-pale); }
.table-badge {
  background: var(--blue);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.check  { color: #047857; font-weight: 500; }
.cross  { color: var(--red); }
.neutral { color: var(--muted); }

/* ═══════════════════════════ TECHNOLOGY ═══════════════════════════ */
.tech-section {
  padding: 100px 0;
  background: var(--dark2);
}
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.tech-text .eyebrow { color: var(--blue-light); }
.tech-text h2 { color: #fff; margin-bottom: 16px; }
.tech-text > p { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.tech-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.spec {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px;
}
.spec-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-light);
  display: block;
}
.spec-unit {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-left: 2px;
}
.spec-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.tech-features { list-style: none; }
.tech-features li {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.tech-features li:last-child { border-bottom: none; }
.tech-features li::before {
  content: '→';
  color: var(--blue-light);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.tech-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.tech-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.tech-drone-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(8,14,30,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 8px;
  text-transform: uppercase;
}

/* ═══════════════════════════ PROCESS ═══════════════════════════ */
.process-section {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}
.process-section h2 { margin-bottom: 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: var(--border);
}
.process-step { text-align: center; position: relative; }
.step-num {
  width: 54px; height: 54px;
  background: var(--blue);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0,105,194,0.3);
}
.process-step h3 { color: var(--text); margin-bottom: 8px; }
.process-step p  { font-size: 0.88rem; }

/* ═══════════════════════════ TESTIMONIALS ═══════════════════════════ */
.testimonials-section {
  padding: 100px 0;
  background: var(--surface);
  text-align: center;
}
.testimonials-section h2 { margin-bottom: 48px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stars { color: #F59E0B; font-size: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  background: var(--blue-pale);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { color: var(--text); font-size: 0.9rem; display: block; }
.testimonial-author span  { color: var(--muted); font-size: 0.78rem; }
.testimonial-note {
  margin-top: 32px;
  font-size: 0.8rem;
  text-align: center;
}

/* ═══════════════════════════ GOOGLE REVIEWS ═══════════════════════════ */
.google-section {
  padding: 60px 0;
  background: var(--white);
}
.google-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  flex-wrap: wrap;
}
.google-brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.google-logo { width: 32px; height: 32px; }
.google-info { display: flex; flex-direction: column; gap: 1px; }
.google-rating-num { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--text); line-height: 1; }
.google-stars { color: #F59E0B; font-size: 0.85rem; }
.google-label { font-size: 0.72rem; color: var(--muted); }
.google-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }
.google-quote { color: var(--muted); font-size: 0.9rem; flex: 1; font-style: italic; }
.google-cta { flex-shrink: 0; }

/* ═══════════════════════════ CREDENTIALS ═══════════════════════════ */
.credentials-section {
  padding: 100px 0;
  background: var(--surface);
  text-align: center;
}
.credentials-section h2 { margin-bottom: 0; }
.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}
.cred-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.cred-card-wide { grid-column: span 4; }
.cred-icon {
  width: 40px; height: 40px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 1rem;
  font-weight: 800;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.cred-card h3 { color: var(--text); margin-bottom: 8px; }
.cred-card p  { font-size: 0.88rem; }
.cred-card-wide { display: flex; gap: 24px; align-items: center; }
.cred-card-wide .cred-icon { flex-shrink: 0; }
.cred-card-wide p { margin-bottom: 0; }

/* ═══════════════════════════ ABOUT ═══════════════════════════ */
.about-section {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
.about-text .eyebrow { color: var(--blue); }
.about-text h2 { margin-bottom: 16px; }
.about-text p {
  margin-bottom: 16px;
}
.about-text p:first-of-type {
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
  border-left: 3px solid var(--blue);
  padding-left: 16px;
  margin-bottom: 20px;
}
.about-image { border-radius: var(--radius); overflow: hidden; }
.about-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.team-card {
  display: flex;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.team-avatar {
  width: 52px; height: 52px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.team-info { flex: 1; }
.team-info h3 { color: var(--text); margin-bottom: 2px; }
.team-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 8px;
}
.team-info p { font-size: 0.85rem; margin-bottom: 12px; }
.team-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* ═══════════════════════════ FAQ ═══════════════════════════ */
.faq-section {
  padding: 100px 0;
  background: var(--surface);
  text-align: center;
}
.faq-section h2 { margin-bottom: 0; }
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: left;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--trans);
}
.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform var(--trans);
}
.faq-item.open .faq-q { background: var(--blue-pale); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-cta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.faq-cta p { font-size: 1rem; }

/* ═══════════════════════════ CONTACT ═══════════════════════════ */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-text .eyebrow { color: var(--blue); }
.contact-text h2 { margin-bottom: 16px; }
.contact-text > p { margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}
.contact-detail svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
.contact-detail a { color: var(--text); font-weight: 500; }
.contact-detail a:hover { color: var(--blue); }
.contact-creds {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
}
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-form h3 { color: var(--text); margin-bottom: 4px; }
.form-sub { font-size: 0.85rem; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,105,194,0.1);
}
.form-group textarea { resize: vertical; }
.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}
.form-check label {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}
.form-check label a { color: var(--blue); text-decoration: underline; }
.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  margin-top: 10px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.form-success.visible { display: block; }
.success-icon {
  width: 64px; height: 64px;
  background: var(--blue);
  color: #fff;
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 { color: var(--text); margin-bottom: 8px; }

/* ═══════════════════════════ FINAL CTA ═══════════════════════════ */
.final-cta {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
}
.final-cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.35) blur(2px);
  transform: scale(1.06);
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,11,24,0.55);
}
.final-cta-content { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; margin-bottom: 14px; }
.final-cta p  { color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 36px; }
.final-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.final-bullets {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

/* ═══════════════════════════ FOOTER ═══════════════════════════ */
.footer {
  background: var(--dark2);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text,
.logo-light .logo-text { color: #fff; }
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-top: 12px;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background var(--trans), color var(--trans);
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--blue); color: #fff; }
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 0.88rem; color: rgba(255,255,255,0.45); }
.footer-col a { color: rgba(255,255,255,0.45); transition: color var(--trans); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-legal { display: flex; gap: 16px; align-items: center; }
.footer-legal a { color: rgba(255,255,255,0.3); transition: color var(--trans); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════ STICKY CTA (mobile) ═══════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  gap: 10px;
  z-index: 100;
}

/* ═══════════════════════════ RESPONSIVE ═══════════════════════════ */
@media (max-width: 1024px) {
  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .tech-grid         { grid-template-columns: 1fr; }
  .tech-image        { max-width: 500px; margin: 0 auto; }
  .creds-grid        { grid-template-columns: repeat(2, 1fr); }
  .cred-card-wide    { grid-column: span 2; }
  .about-grid        { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr 1fr; }
  .services-bento    { grid-template-columns: 1fr; }
  .bento-main .bento-img-wrap { height: 260px; }
  .bento-stack       { display: grid; grid-template-columns: 1fr 1fr; }
  .process-steps     { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .hamburger  { display: flex; margin-left: auto; }

  .hero-content { padding-top: 40px; padding-bottom: 80px; }

  .stats-hud {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 0;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: -40px;
  }
  .hud-divider { display: none; }
  .hud-stat {
    padding: 20px 16px;
    background: rgba(8,14,30,0.96);
  }
  .hud-num { font-size: 1.5rem; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid         { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr 1fr; }
  .footer-brand      { grid-column: span 2; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .sticky-cta { display: flex; }
  body { padding-bottom: 68px; }

  .video-stats { grid-template-columns: 1fr 1fr; }
  .vstat:nth-child(2) { border-right: none; }

  .cred-card-wide { flex-direction: column; }
  .cred-card-wide .cred-icon { margin-bottom: 0; }
}

@media (max-width: 640px) {
  .before-after-section { padding-top: 100px; }
  .bento-stack { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .final-cta-actions { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .spark-path { transition: none; stroke-dashoffset: 0; }
  .spark-dot { opacity: 1; }
  .badge-dot { animation: none; }
}
