/* ===================================================
   UTTERCONNECTION — style.css  v2
   Dark-mode · Futuristic · Glassmorphism · Dribbble-grade
   =================================================== */

/* ───────── FONTS ───────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ───────── DESIGN TOKENS ───────── */
:root {
  /* Backgrounds */
  --bg: #06090F;
  --bg-surface: #0C1220;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);

  /* Accents */
  --emerald: #00E5A0;
  --emerald-dim: #00B87E;
  --emerald-glow: rgba(0, 229, 160, 0.18);
  --purple: #7A5CE8;
  --purple-glow: rgba(122, 92, 232, 0.2);
  --blue: #4A7FD4;
  --blue-glow: rgba(74, 127, 212, 0.18);

  /* Text */
  --white: #FFFFFF;
  --text-body: #A8BDD0;
  --text-muted: #546A80;

  /* Glass */
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(0, 229, 160, 0.3);
  --glass-blur: blur(20px);

  /* Shadows & glows */
  --glow-emerald: 0 0 40px rgba(0, 229, 160, 0.25);
  --glow-purple: 0 0 40px rgba(122, 92, 232, 0.25);
  --shadow-card: 0 4px 40px rgba(0, 0, 0, 0.5);

  /* Layout */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 100px;

  /* Fonts */
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;

  --transition: 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ───────── RESET ───────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.65;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  color: var(--white);
  line-height: 1.12;
  font-family: var(--font-display);
}

h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
}

a {
  color: var(--emerald);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

em {
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ───────── GLASS CARD ───────── */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.glass-card:hover,
.glass-card:focus-within {
  background: var(--bg-card-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--glow-emerald);
}

/* ───────── LABELS & HEADINGS ───────── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 16px;
  padding: 4px 12px;
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid rgba(0, 229, 160, 0.2);
  border-radius: var(--radius-pill);
}

.section-h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 620px;
  margin-bottom: 56px;
  line-height: 1.75;
}

/* ───────── ANIMATIONS ───────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.45;
  }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes floatBlob {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.97);
  }
}

@keyframes floatBlob2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  40% {
    transform: translate(-50px, 30px) scale(1.08);
  }

  70% {
    transform: translate(30px, -20px) scale(0.95);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes barGrow {
  from {
    width: 0;
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: var(--delay, 0s);
}

/* ───────── BUTTONS ───────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--emerald);
  color: #050C18 !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  box-shadow: 0 0 0 0 transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover {
  background: #14EFB0;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 229, 160, 0.45);
  color: #050C18 !important;
}

.btn-primary:hover::after {
  opacity: 1;
  animation: shimmer 0.8s ease;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ───────── NAVBAR ───────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(6, 9, 15, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--glass-border);
}

.nav-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white) !important;
  text-decoration: none;
}

.logo-svg {
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo-wordmark strong {
  font-weight: 700;
  color: var(--emerald);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links .nav-cta {
  background: var(--emerald);
  color: #050C18 !important;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  box-shadow: 0 0 20px rgba(0, 229, 160, 0.3);
  transition: all var(--transition);
}

.nav-links .nav-cta:hover {
  background: #14EFB0;
  box-shadow: 0 0 32px rgba(0, 229, 160, 0.5);
  color: #050C18 !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(6, 9, 15, 0.98);
  border-top: 1px solid var(--glass-border);
  padding: 16px 28px 28px;
  gap: 4px;
}

.mobile-menu a {
  font-size: 1rem;
  color: var(--text-body);
  padding: 13px 0;
  border-bottom: 1px solid var(--glass-border);
}

.mobile-menu .mobile-cta {
  margin-top: 16px;
  text-align: center;
  background: var(--emerald);
  color: #050C18 !important;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: none;
  box-shadow: 0 0 24px rgba(0, 229, 160, 0.3);
}

/* ───────── HERO ───────── */
#hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Restored to prevent horizontal scroll zoom on mobile */
  padding-top: 68px;
  background: var(--bg);
}

/* Vanta injects a <canvas> as first child of #hero */
#hero>canvas {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none;
}


/* Grid overlay sits on top of the Vanta canvas */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Dark gradient overlay to ensure text legibility against bright 3D waves */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 9, 15, 0.95) 0%, rgba(6, 9, 15, 0.8) 35%, rgba(6, 9, 15, 0.4) 65%, transparent 100%);
  z-index: 1;
}


.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 10%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(122, 92, 232, 0.12);
  border: 1px solid rgba(122, 92, 232, 0.35);
  border-radius: var(--radius-pill);
  padding: 6px 18px 6px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #A78BFA;
  margin-bottom: 32px;
  text-decoration: none;
}

.hero-badge:hover {
  background: rgba(122, 92, 232, 0.2);
  border-color: rgba(122, 92, 232, 0.5);
  transform: translateY(-1px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #A78BFA;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: 28px;
  max-width: 820px;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.85);
}

.hero-accent {
  background: linear-gradient(135deg, var(--emerald) 0%, #4AE8C8 50%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 12px;
  max-width: 560px;
  line-height: 1.65;
  font-weight: 400;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

.hero-sub strong {
  color: var(--emerald);
  font-weight: 700;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  /* Much brighter than text-muted for contrast against 3D bg */
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.8;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--emerald), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

/* ───────── STATS STRIP ───────── */
.stats-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(122, 92, 232, 0.06), rgba(0, 229, 160, 0.06), transparent);
}

.stats-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.stat-block {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-number.emerald {
  color: var(--emerald);
  text-shadow: 0 0 40px rgba(0, 229, 160, 0.4);
}

.stat-number.purple {
  color: #A78BFA;
  text-shadow: 0 0 40px rgba(167, 139, 250, 0.4);
}

.stat-number.blue {
  color: #60A5FA;
  text-shadow: 0 0 40px rgba(96, 165, 250, 0.4);
}

.stat-label {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 180px;
  margin: 0 auto;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--glass-border);
  flex-shrink: 0;
}

/* ───────── PROBLEM SECTION ───────── */
.section-gap {
  padding: 130px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.problem-card {
  padding: 36px 30px;
}

.problem-icon {
  margin-bottom: 22px;
}

.problem-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.problem-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.problem-quote {
  border-left: 2px solid var(--emerald);
  padding: 28px 36px;
  background: linear-gradient(90deg, rgba(0, 229, 160, 0.05), transparent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: inset 0 0 80px rgba(0, 229, 160, 0.03);
}

.problem-quote blockquote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.problem-quote blockquote footer {
  font-size: 0.8rem;
  color: var(--emerald);
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* ───────── OFFER ───────── */
.section-offer {
  padding: 130px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-surface) 100%);
  position: relative;
  overflow: hidden;
}

.section-offer::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122, 92, 232, 0.1) 0%, transparent 70%);
  top: -100px;
  right: -150px;
  pointer-events: none;
}

.offer-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 64px;
}

.offer-step {
  flex: 1;
  padding: 44px 36px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.offer-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.offer-step:hover::before {
  opacity: 1;
}

.offer-step:hover {
  border-color: rgba(0, 229, 160, 0.25);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card), 0 20px 60px rgba(0, 229, 160, 0.1);
}

.offer-step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(0, 229, 160, 0.2), rgba(122, 92, 232, 0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.offer-step h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.offer-step-time {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.offer-step p:last-child {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

.offer-connector {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 229, 160, 0.3), rgba(122, 92, 232, 0.3));
  margin-top: 90px;
  flex-shrink: 0;
  position: relative;
}

.offer-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(0, 229, 160, 0.4);
  border-right: 1px solid rgba(0, 229, 160, 0.4);
  transform: rotate(45deg);
}

.offer-cta-wrap {
  text-align: center;
}

.offer-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ───────── PROCESS ───────── */
.section-process {
  padding: 80px 0 130px;
}

.process-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.process-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0, 229, 160, 0.12);
  border: 1px solid rgba(0, 229, 160, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--emerald);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.process-feature strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.process-feature p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* REPORT MOCKUP */
.report-mockup {
  padding: 40px;
  min-height: 420px;
}

.report-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.report-logo-mock {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}

.report-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(0, 229, 160, 0.1);
  border: 1px solid rgba(0, 229, 160, 0.25);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.report-body {
  padding-top: 16px;
}

.report-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.report-finding {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.finding-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--blue));
  border-radius: 4px;
  min-width: 20px;
  animation: barGrow 1.4s ease-out both;
  box-shadow: 0 0 12px rgba(0, 229, 160, 0.5);
}

.report-finding span {
  color: var(--text-muted);
  flex: 1;
}

.report-finding strong {
  color: var(--white);
  font-size: 0.82rem;
  white-space: nowrap;
}

.report-separator {
  height: 1px;
  background: var(--glass-border);
  margin: 22px 0;
}

.report-roi {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 10px;
  text-shadow: 0 0 30px rgba(0, 229, 160, 0.4);
  letter-spacing: -0.02em;
}

.report-roi span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.report-compliance {
  font-size: 0.78rem;
  color: var(--emerald);
  font-weight: 600;
}

/* ───────── COMPLIANCE ───────── */
.section-compliance {
  padding: 130px 0;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.section-compliance::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 160, 0.08) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  pointer-events: none;
}

.compliance-inner {
  max-width: 960px;
}

.compliance-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pillar {
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(122, 92, 232, 0.05), transparent);
  pointer-events: none;
}

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.pillar h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pillar p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ───────── BOOK ───────── */
.section-book {
  padding: 130px 0;
}

.book-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.book-left p {
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 30px;
}

.book-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.book-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.book-checklist li span {
  color: var(--emerald);
  font-weight: 700;
  width: 16px;
  flex-shrink: 0;
}

/* CALENDLY MOCKUP */
.calendly-mock {
  padding: 36px;
}

.cal-header {
  margin-bottom: 22px;
}

.cal-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
}

.cal-event-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.cal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cal-divider {
  height: 1px;
  background: var(--glass-border);
  margin-bottom: 22px;
}

.cal-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.cal-fine-print {
  margin-top: 12px;
  font-size: 0.75rem;
  text-align: center;
  color: var(--text-muted);
}

/* ───────── FOOTER ───────── */
footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--glass-border);
  padding: 52px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(84, 106, 128, 0.55);
}

/* ───────── INNER PAGE HERO ───────── */
.page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-surface) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--emerald-glow) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.page-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: var(--emerald);
  font-weight: 500;
  margin-bottom: 24px;
}

.page-hero .badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: var(--white);
}

.page-hero h1 .accent {
  background: linear-gradient(135deg, var(--emerald) 0%, #4AE8C8 50%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* ───────── SERVICE CARDS ───────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 80px 0;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  backdrop-filter: var(--glass-blur);
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  background: var(--emerald-glow);
}

.service-card.purple-card .icon {
  background: var(--purple-glow);
}

.service-card.blue-card .icon {
  background: var(--blue-glow);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--emerald);
  font-weight: 600;
}

.service-card.purple-card ul li::before {
  color: var(--purple);
}

.service-card.blue-card ul li::before {
  color: var(--blue);
}

/* ───────── PAGE CTA SECTION ───────── */
.page-cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg) 100%);
}

.page-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.page-cta p {
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ───────── FAQ ACCORDION ───────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 0;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--emerald);
}

.faq-question .faq-icon {
  font-size: 1.4rem;
  transition: transform 0.3s;
  color: var(--emerald);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--text-body);
}

/* ───────── GLOSSARY ───────── */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  padding: 80px 0;
}

.glossary-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: border-color 0.3s;
}

.glossary-card:hover {
  border-color: var(--glass-border-hover);
}

.glossary-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 10px;
}

.glossary-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* ───────── CONTACT FORM ───────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 80px 0;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.92rem;
  color: var(--text-body);
}

.contact-detail .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--emerald-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 36px;
  backdrop-filter: var(--glass-blur);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--emerald);
}


.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23546A80' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: #0C1220;
  color: var(--white);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ───────── CONTENT SECTIONS (about, security, compliance) ───────── */
.content-section {
  padding: 80px 0;
}

.content-section:nth-child(even) {
  background: var(--bg-surface);
}

.content-block {
  max-width: 780px;
  margin: 0 auto;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.content-block p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 16px;
}

.content-block blockquote {
  border-left: 3px solid var(--emerald);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--bg-card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

.content-block .highlight-box {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  margin: 24px 0;
}

.content-block .highlight-box h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.content-block ul {
  list-style: none;
  padding: 0;
}

.content-block ul li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
}

.content-block ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--emerald);
}

/* ===== BLOG ARCHIVE ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 229, 160, 0.3);
}

.blog-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 229, 160, 0.05) 100%);
  border: 1px solid rgba(0, 229, 160, 0.2);
}

.blog-card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-category {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.blog-card h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-card.featured h2 {
  font-size: 2.2rem;
}

.blog-card h2 a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card h2 a:hover {
  color: var(--accent);
}

.blog-card p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.blog-card.featured p {
  font-size: 1.1rem;
  max-width: 800px;
}

.blog-meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== BLOG POST SINGLE ===== */
.article-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.article-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 1rem 0 2rem;
  color: #fff;
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.article-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.article-content h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: 3rem 0 1.5rem;
}

.article-content h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  margin: 0 0 2rem 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-size: 1.3rem;
  font-style: italic;
  color: #fff;
}

/* ───────── RESPONSIVE ───────── */
@media (max-width: 960px) {
  .nav-links {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .mobile-menu.open {
    display: flex;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .offer-grid {
    flex-direction: column;
    gap: 16px;
  }

  .offer-connector {
    display: none;
  }

  .process-two-col {
    grid-template-columns: 1fr;
  }

  .compliance-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .book-inner {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    flex-direction: column;
    gap: 36px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-content {
    text-align: center;
    padding-top: 60px;
  }

  .hero-h1 {
    font-size: 2.2rem;
  }

  .hero-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-ghost {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .compliance-pillars {
    grid-template-columns: 1fr;
  }

  .section-h2 {
    font-size: 1.8rem;
  }

  /* Force clip everything */
  * {
    max-width: 100%;
  }
}

/* ───────── ROI CALCULATOR ───────── */
.roi-section {
  padding: 100px 0;
  background: var(--bg-surface);
  position: relative;
}

.roi-container {
  max-width: 900px;
  margin: 0 auto;
}

.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.roi-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
}

.input-group input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.input-group input:focus {
  outline: none;
  border-color: var(--emerald);
}

.roi-results {
  background: rgba(0, 229, 160, 0.03);
  border: 1px solid rgba(0, 229, 160, 0.1);
  padding: 40px;
  border-radius: var(--radius-md);
  text-align: center;
}

.result-metric {
  margin-bottom: 32px;
}

.result-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.result-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--emerald);
  text-shadow: 0 0 30px rgba(0, 229, 160, 0.3);
}

.benchmark-badge {
  display: inline-block;
  font-size: 0.7rem;
  padding: 4px 12px;
  background: rgba(122, 92, 232, 0.15);
  border: 1px solid rgba(122, 92, 232, 0.3);
  border-radius: var(--radius-pill);
  color: #A78BFA;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .roi-grid {
    grid-template-columns: 1fr;
  }
}
/* ───────── COMPLIANCE PULSE & TRUST ───────── */
.compliance-pulse { padding: 100px 0; background: var(--bg); }
.pulse-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.pulse-card { padding: 30px; position: relative; }
.traffic-light { width: 12px; height: 12px; border-radius: 50%; display: inline-block; margin-right: 10px; }
.light-green { background: #00E5A0; box-shadow: 0 0 15px #00E5A0; }
.light-amber { background: #FFB800; box-shadow: 0 0 15px #FFB800; }
.light-red { background: #FF4B4B; box-shadow: 0 0 15px #FF4B4B; }
.status-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; }

.social-proof { padding: 100px 0; background: var(--bg-surface); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 40px; }
.testimonial-card { padding: 40px; }
.transcript-box { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--glass-border); font-size: 0.9rem; color: var(--text-muted); font-style: italic; }

/* Regulatory badges removed as per user request */
