/* ==========================================================
   Leads Venture LLC — modern design system
   ========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --brand: #20C0F0;
  --brand-2: #1ADFFF;
  --brand-dark: #0B8FBC;
  --brand-darker: #074F6B;
  --ink: #0A1120;
  --ink-2: #334155;
  --muted: #64748B;
  --surface: #F8FBFE;
  --surface-2: #EEF7FC;
  --border: #E2E8F0;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(15,23,42,0.05);
  --shadow: 0 4px 18px -3px rgba(15,23,42,0.08), 0 2px 6px -2px rgba(15,23,42,0.05);
  --shadow-lg: 0 24px 60px -12px rgba(15,23,42,0.12), 0 10px 24px -8px rgba(15,23,42,0.08);
  --shadow-brand: 0 12px 32px -8px rgba(32,192,240,0.35);
  --ease: cubic-bezier(.22,.61,.36,1);
  --container: 1200px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-weight: 800; letter-spacing: -0.03em; font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(28px, 3.6vw, 44px); }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

p { color: var(--ink-2); margin-bottom: 16px; }
a { color: var(--brand-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand); }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section.tint { background: var(--surface); }
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left { margin: 0 0 40px; text-align: left; }
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(32,192,240,0.12);
  color: var(--brand-dark);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 0;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -8px rgba(32,192,240,0.55);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-ghost-white {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover {
  background: #fff;
  color: var(--brand-darker);
  border-color: #fff;
}
.btn-arrow::after { content: "→"; margin-left: 4px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(15,23,42,0.06);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 10px 30px -10px rgba(15,23,42,0.12); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 32px;
}
.nav-brand { display: inline-flex; align-items: center; margin-left: calc((100% - 100vw) / 2 + 12px); }
.nav-brand img { height: 88px; width: auto; }
.nav-menu {
  display: flex;
  gap: 76px;
  list-style: none;
  align-items: center;
  margin: 0 auto;
}
.nav-menu a {
  color: var(--ink);
  font-weight: 500;
  font-size: 17px;
  padding: 8px 0;
  position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--brand-dark); }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  border-radius: 2px;
}
.nav-cta { display: inline-flex; align-items: center; gap: 12px; margin-right: calc((100% - 100vw) / 2 + 12px); }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 660px;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
/* Full-bleed photo background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}
.hero-bg .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s var(--ease);
  will-change: opacity;
}
.hero-bg .hero-photo.active {
  opacity: 1;
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}
/* Brand-tinted base behind the photo (fallback + color while it loads) */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(at 18% 22%, rgba(32,192,240,0.30) 0px, transparent 50%),
    radial-gradient(at 82% 12%, rgba(26,223,255,0.22) 0px, transparent 55%),
    linear-gradient(135deg, #0A1120 0%, #074F6B 50%, #0B8FBC 100%);
  z-index: -4;
}
/* Dark legibility scrim over the photo */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,17,32,0.90) 0%, rgba(10,17,32,0.62) 45%, rgba(10,17,32,0.30) 100%),
    linear-gradient(180deg, transparent 55%, rgba(10,17,32,0.55) 100%);
  z-index: -2;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  min-height: 660px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 112px 0;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: calc((100% - 100vw) / 2 + 32px);
}
.hero-eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(32,192,240,0.5);
  background: rgba(32,192,240,0.14);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp .7s var(--ease) forwards;
}
.hero h1 {
  color: #fff;
  font-size: clamp(40px, 6.2vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 720px;
  margin-bottom: 24px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp .8s var(--ease) .1s forwards;
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp .8s var(--ease) .2s forwards;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp .8s var(--ease) .3s forwards;
}
.hero-slide { display: none; }
.hero-slide.active { display: block; animation: fadeUp .6s var(--ease); }
/* Floating trust chips over the photo (desktop: lower-right cluster) */
.hero-chips {
  position: absolute;
  right: 0;
  bottom: 96px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  bottom: 44px;
  left: 24px;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 0;
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.hero-dot.active { background: var(--brand); transform: scale(1.3); }

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px 40px;
  margin-top: 48px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
}
.hero-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  margin-top: 4px;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ================================================================
   Advanced design patterns — gradient headings, glassmorphism,
   floating shapes, animated counters, button slide.
   ================================================================ */

/* Utility: gradient text for headlines */
.text-gradient {
  background: linear-gradient(120deg, var(--brand-dark) 0%, var(--brand) 45%, #8B5CF6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  display: inline-block;
}
h2 .text-gradient, h1 .text-gradient, h3 .text-gradient {
  animation: wordShimmer 8s ease-in-out infinite;
}

/* Section — purple gradient variant for visual variety */
.section.bg-purple {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(139,92,246,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 70%, rgba(32,192,240,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #F8FBFE 0%, #F0EBFE 100%);
  overflow: hidden;
}

/* Floating decorative shapes (non-3D, CSS-only echo of insureme's cube shapes) */
.deco-shape {
  position: absolute;
  pointer-events: none;
  border-radius: 32px;
  opacity: 0.9;
  z-index: 0;
}
.deco-shape-1 {
  width: 140px; height: 140px;
  top: 10%; right: -40px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  transform: rotate(15deg);
  box-shadow: 0 30px 80px -20px rgba(32,192,240,0.5);
  animation: shapeDrift 8s ease-in-out infinite alternate;
}
.deco-shape-2 {
  width: 100px; height: 100px;
  bottom: 12%; left: -30px;
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
  transform: rotate(-12deg);
  border-radius: 28px;
  box-shadow: 0 24px 60px -16px rgba(139,92,246,0.45);
  animation: shapeDrift 10s ease-in-out infinite alternate-reverse;
}
.deco-shape-3 {
  width: 60px; height: 60px;
  top: 55%; left: 8%;
  background: linear-gradient(135deg, #1ADFFF 0%, #20C0F0 100%);
  transform: rotate(25deg);
  border-radius: 16px;
  box-shadow: 0 16px 36px -10px rgba(26,223,255,0.5);
  animation: shapeDrift 7s ease-in-out infinite alternate;
}
@keyframes shapeDrift {
  from { transform: rotate(var(--r, 15deg)) translateY(0); }
  to   { transform: rotate(var(--r, 15deg)) translateY(-20px); }
}
.section > .container { position: relative; z-index: 2; }

/* Glassmorphism testimonial card */
.testimonial-glass {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 44px;
  border-radius: 28px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(32,192,240,0.25);
  box-shadow:
    0 30px 80px -24px rgba(32,192,240,0.25),
    0 10px 24px -8px rgba(15,23,42,0.08);
  text-align: center;
  overflow: hidden;
}
.testimonial-glass::before {
  content: "“";
  position: absolute;
  top: -30px; left: 30px;
  font-family: Georgia, serif;
  font-size: 180px;
  line-height: 1;
  color: var(--brand);
  opacity: 0.12;
  font-weight: 700;
}
.testimonial-glass .testimonial-quote {
  position: relative;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 28px;
}
.testimonial-glass .testimonial-meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px 12px 12px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 20px -4px rgba(15,23,42,0.1);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
}
.testimonial-glass .avatar-gradient {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-glass .testimonial-meta strong { color: var(--ink); font-size: 15px; }
.testimonial-rating {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 20px;
  color: #F59E0B;
  font-size: 18px;
}

/* Stats counter strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 55%, #8B5CF6 100%);
  border-radius: var(--r-xl);
  padding: 2px;
  margin-top: 48px;
  overflow: hidden;
  box-shadow: 0 24px 60px -16px rgba(32,192,240,0.35);
}
.stats-item {
  background: #fff;
  padding: 36px 24px;
  text-align: center;
}
.stats-item:first-child { border-top-left-radius: calc(var(--r-xl) - 2px); border-bottom-left-radius: calc(var(--r-xl) - 2px); }
.stats-item:last-child  { border-top-right-radius: calc(var(--r-xl) - 2px); border-bottom-right-radius: calc(var(--r-xl) - 2px); }
.stats-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--brand-dark), var(--brand), #8B5CF6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stats-label {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stats-item:first-child, .stats-item:last-child { border-radius: 0; }
  .stats-item:nth-child(1) { border-top-left-radius: calc(var(--r-xl) - 2px); }
  .stats-item:nth-child(2) { border-top-right-radius: calc(var(--r-xl) - 2px); }
  .stats-item:nth-child(3) { border-bottom-left-radius: calc(var(--r-xl) - 2px); }
  .stats-item:nth-child(4) { border-bottom-right-radius: calc(var(--r-xl) - 2px); }
}

/* Features (check-list) turned into icon-pill cards */
.feature-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.feature-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(32,192,240,0.4);
  box-shadow: var(--shadow);
}
.feature-pill .fp-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -4px rgba(32,192,240,0.4);
}
.feature-pill .fp-icon svg { width: 18px; height: 18px; }
.feature-pill span { font-weight: 600; color: var(--ink); font-size: 15px; }

/* Enhanced button with sliding background (like insureme's button-bg span) */
.btn-primary {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--brand-dark) 0%, #8B5CF6 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: -1;
}
.btn-primary:hover::before { opacity: 1; }

/* Section eyebrow with icon in front */
.eyebrow-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(32,192,240,0.10);
  color: var(--brand-dark);
  border: 1px solid rgba(32,192,240,0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow-icon svg { width: 14px; height: 14px; }

/* ---------- Hero: gradient word accent ---------- */
.hero h1 .word-accent {
  background: linear-gradient(120deg, var(--brand-2) 0%, var(--brand) 45%, #8B5CF6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  animation: wordShimmer 6s ease-in-out infinite;
}
@keyframes wordShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ---------- Floating glass chips over hero photo ---------- */
.hero-chips .glass-chip {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 16px;
  padding: 12px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.45);
  z-index: 3;
  animation: chipFloat 5s ease-in-out infinite alternate;
}
.hero-chips .glass-chip .chip-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 13px;
}
.hero-chips .chip-1 { animation-delay: 0s; }
.hero-chips .chip-2 { animation-delay: 1.3s; }
.hero-chips .chip-3 { animation-delay: 2.2s; }
@keyframes chipFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-14px); }
}

/* ---------- Brand marquee (continuous scroll strip) ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
  background: #0A1120;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.85);
}
.marquee-item .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 0 14px var(--brand);
  flex-shrink: 0;
}
.marquee-sep {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.25);
  font-size: 22px;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Trust bar under hero ---------- */
.trust-bar {
  margin-top: 56px;
  padding: 24px 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
}
.trust-item svg { width: 24px; height: 24px; color: var(--brand-2); flex-shrink: 0; }
.trust-item strong { display: block; color: #fff; font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.trust-item span.trust-label { display: block; color: rgba(255,255,255,0.7); font-size: 12px; margin-top: 2px; }
@media (max-width: 960px) {
  .trust-bar { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .trust-bar { grid-template-columns: 1fr; }
  .hero-chips { display: none; }
}

/* ---------- Section eyebrow with icon + refined heading gradient accent ---------- */
.heading-accent {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Page-title banner (non-home) ---------- */
.page-head {
  position: relative;
  padding: 48px 0 44px;
  color: #fff;
  text-align: center;
  background: #0A1120;
  overflow: hidden;
  isolation: isolate;
}
/* Clean deep navy → cyan gradient with a soft spotlight behind the bot */
.page-head::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 440px at 50% 52%, rgba(32,192,240,0.32) 0%, transparent 68%),
    linear-gradient(135deg, #0A1120 0%, #0B3A52 55%, #0B8FBC 130%);
  z-index: -2;
  animation: headMeshShift 16s ease-in-out infinite alternate;
}
/* Dotted grid pattern overlay for texture */
.page-head::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.14) 1px, transparent 1.2px);
  background-size: 22px 22px;
  background-position: 0 0;
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}
@keyframes headMeshShift {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.06) translateY(-6px); }
}

/* Floating decorative shapes */
.page-head .shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
}
.page-head .shape-1 {
  width: 220px; height: 220px;
  top: -80px; left: -80px;
  border: 2px solid rgba(32,192,240,0.35);
  background: radial-gradient(circle, rgba(32,192,240,0.18), transparent 70%);
  animation: shapeFloat 10s ease-in-out infinite alternate;
}
.page-head .shape-2 {
  width: 140px; height: 140px;
  bottom: -40px; right: 8%;
  background: radial-gradient(circle, rgba(26,223,255,0.32), transparent 70%);
  filter: blur(1px);
  animation: shapeFloat 7s ease-in-out infinite alternate-reverse;
}
.page-head .shape-3 {
  width: 60px; height: 60px;
  top: 20%; right: 10%;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  border-radius: 14px;
  transform: rotate(18deg);
  box-shadow: 0 8px 30px rgba(32,192,240,0.45);
  animation: shapeFloat 9s ease-in-out infinite alternate;
}
.page-head .shape-4 {
  width: 40px; height: 40px;
  bottom: 22%; left: 14%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  transform: rotate(-12deg);
  backdrop-filter: blur(6px);
  animation: shapeFloat 11s ease-in-out infinite alternate-reverse;
}
@keyframes shapeFloat {
  from { transform: translateY(0) rotate(var(--rot, 0deg)); }
  to   { transform: translateY(-22px) rotate(var(--rot, 0deg)); }
}
.page-head .shape-3 { --rot: 18deg; }
.page-head .shape-4 { --rot: -12deg; }

.page-head-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.page-head .ph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(32,192,240,0.15);
  border: 1px solid rgba(32,192,240,0.4);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.page-head .ph-eyebrow svg { width: 14px; height: 14px; color: var(--brand-2); }
.page-head h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-shadow: 0 6px 36px rgba(0,0,0,0.45);
}
.breadcrumb {
  display: inline-flex;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  list-style: none;
  margin: 0;
}
.breadcrumb a { color: var(--brand-2); font-weight: 600; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li + li::before { content: "/"; margin-right: 10px; opacity: 0.5; color: #fff; }

@media (max-width: 600px) {
  .page-head { padding: 80px 0 70px; }
  .page-head .shape-1 { width: 160px; height: 160px; top: -60px; left: -60px; }
  .page-head .shape-2 { width: 100px; height: 100px; }
  .page-head .shape-3 { width: 42px; height: 42px; }
  .page-head .shape-4 { display: none; }
}

/* ---------- Animated page mascot (different on every page) ---------- */
/* Title/eyebrow/breadcrumb removed from the banner — bot is the sole focus, centered */
.page-head.with-mascot { text-align: center; }
.page-head.with-mascot .page-head-inner { display: none; }
.page-head-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.mascot {
  position: relative;
  width: 100%;
  max-width: 230px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.mascot svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* Single calm orbit ring around mascot */
.mascot::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1.5px dashed rgba(32,192,240,0.18);
  animation: orbit 34s linear infinite;
  pointer-events: none;
}
@keyframes orbit { to { transform: rotate(360deg); } }

/* Mascot animations */
.mascot .m-core {
  animation: mascotBounce 3.6s ease-in-out infinite;
  transform-origin: 50% 60%;
}
.mascot .m-float-1 { animation: mFloat 4s ease-in-out infinite; }
.mascot .m-float-2 { animation: mFloat 5s ease-in-out infinite reverse; animation-delay: .5s; }
.mascot .m-float-3 { animation: mFloat 4.5s ease-in-out infinite; animation-delay: 1s; }
.mascot .m-spin   { transform-origin: 50% 50%; animation: mSpin 14s linear infinite; }
.mascot .m-pulse  { transform-origin: 50% 50%; animation: mPulse 2.4s ease-in-out infinite; }
.mascot .m-blink  { animation: mBlink 4s ease-in-out infinite; transform-origin: center; }
.mascot .m-wave   { animation: mWave 2.8s ease-in-out infinite; transform-origin: 50% 80%; }
.mascot .m-dash {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: mDraw 2.6s ease-in-out infinite alternate;
}
@keyframes mascotBounce {
  0%, 100% { transform: translateY(0)   rotate(-2deg); }
  50%      { transform: translateY(-12px) rotate(2deg); }
}
@keyframes mFloat {
  0%, 100% { transform: translate(0,0) rotate(-6deg); }
  50%      { transform: translate(4px,-10px) rotate(8deg); }
}
@keyframes mSpin  { to { transform: rotate(360deg); } }
@keyframes mPulse { 0%,100% { transform: scale(1); opacity: 1;} 50% { transform: scale(1.12); opacity: .85;} }
@keyframes mBlink { 0%,90%,100% { transform: scaleY(1);} 94% { transform: scaleY(0.1);} }
@keyframes mWave  { 0%,100% { transform: rotate(-10deg);} 50% { transform: rotate(20deg);} }
@keyframes mDraw  { to { stroke-dashoffset: 0; } }

.mascot .spark {
  animation: sparkPop 3s ease-in-out infinite;
  transform-origin: center;
}
.mascot .spark-2 { animation-delay: .6s; }
.mascot .spark-3 { animation-delay: 1.2s; }
@keyframes sparkPop {
  0%, 100% { transform: scale(.6); opacity: 0; }
  50%      { transform: scale(1);  opacity: 1; }
}

/* ============================================================
   Support-bot mascot (call-center character, shared across site)
   ============================================================ */
.support-bot {
  filter: drop-shadow(0 28px 48px rgba(10,17,32,0.35));
}
/* CRITICAL: SVG transform-origin needs view-box coords to resolve */
.support-bot .bot-bounce,
.support-bot .bot-head-tilt,
.support-bot .bot-arm-wave,
.support-bot .bot-wave-lines,
.support-bot .bot-blink,
.support-bot .bot-antenna-pulse,
.support-bot .bot-blink-1,
.support-bot .bot-blink-2,
.support-bot .bot-blink-3,
.support-bot .bot-mic-live,
.support-bot .bot-chat-1,
.support-bot .bot-chat-2,
.support-bot .bot-sparkle,
.support-bot .bot-sparkle-2,
.support-bot .bot-shadow {
  transform-box: view-box;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}
/* Specific origins */
.support-bot .bot-bounce      { transform-origin: 50% 88%; }
.support-bot .bot-head-tilt   { transform-origin: 50% 45%; }
.support-bot .bot-arm-wave    { transform-origin: 67.5% 61%; }
.support-bot .bot-blink       { transform-origin: 50% 36%; }
.support-bot .bot-antenna-pulse { transform-origin: 50% 12%; }
.support-bot .bot-shadow      { transform-origin: 50% 90%; }
.support-bot .bot-chat-1      { transform-origin: 80% 32%; }
.support-bot .bot-chat-2      { transform-origin: 86% 22%; }
.support-bot .bot-sparkle     { transform-origin: 17% 26%; }
.support-bot .bot-sparkle-2   { transform-origin: 15% 74%; }
.support-bot .bot-bounce {
  animation: botBounce 2.6s ease-in-out infinite;
}
@keyframes botBounce {
  0%, 100% { transform: translateY(0px)   rotate(-2deg); }
  50%      { transform: translateY(-22px) rotate(2deg); }
}
.support-bot .bot-shadow {
  transform-origin: center;
  animation: botShadow 3.8s ease-in-out infinite;
}
@keyframes botShadow {
  0%, 100% { transform: scale(1);   opacity: 0.35; }
  50%      { transform: scale(0.85); opacity: 0.22; }
}
.support-bot .bot-head-tilt {
  animation: botHeadTilt 5s ease-in-out infinite;
}
@keyframes botHeadTilt {
  0%, 100% { transform: rotate(-3deg); }
  50%      { transform: rotate(3deg); }
}
.support-bot .bot-blink {
  transform-origin: 200px 145px;
  animation: botBlink 4.2s ease-in-out infinite;
}
@keyframes botBlink {
  0%, 92%, 100% { transform: scaleY(1); }
  95%           { transform: scaleY(0.1); }
}
.support-bot .bot-antenna-pulse {
  transform-origin: 200px 48px;
  animation: botAntenna 1.8s ease-in-out infinite;
}
@keyframes botAntenna {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.35); opacity: 0.6; }
}
.support-bot .bot-arm-wave {
  animation: botWaveArm 2s ease-in-out infinite;
}
@keyframes botWaveArm {
  0%, 100% { transform: rotate(-6deg); }
  50%      { transform: rotate(14deg); }
}
.support-bot .bot-wave-lines {
  animation: botWaveLines 2s ease-in-out infinite;
}
@keyframes botWaveLines {
  0%, 100% { opacity: 0.3; transform: translateX(-2px); }
  50%      { opacity: 1;   transform: translateX(4px); }
}
.support-bot .bot-blink-1 { animation: botStatusBlink 1.4s ease-in-out infinite;               }
.support-bot .bot-blink-2 { animation: botStatusBlink 1.4s ease-in-out infinite .4s;           }
.support-bot .bot-blink-3 { animation: botStatusBlink 1.4s ease-in-out infinite .8s;           }
@keyframes botStatusBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.25; }
}
.support-bot .bot-mic-live {
  animation: botMicLive 1s ease-in-out infinite;
}
@keyframes botMicLive {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}
.support-bot .bot-chat-1 {
  transform-origin: 320px 130px;
  animation: botChatFloat 3s ease-in-out infinite;
}
.support-bot .bot-chat-2 {
  transform-origin: 345px 90px;
  animation: botChatFloat 3.4s ease-in-out infinite .6s;
}
@keyframes botChatFloat {
  0%      { transform: translateY(0)  scale(0.7); opacity: 0; }
  20%     { transform: translateY(-4px) scale(1); opacity: 1; }
  80%     { transform: translateY(-18px) scale(1); opacity: 1; }
  100%    { transform: translateY(-24px) scale(0.9); opacity: 0; }
}
.support-bot .bot-sparkle {
  transform-origin: 70px 105px;
  animation: botSpark 2.6s ease-in-out infinite;
}
.support-bot .bot-sparkle-2 {
  transform-origin: 60px 295px;
  animation: botSpark 2.6s ease-in-out infinite 1.3s;
}
@keyframes botSpark {
  0%, 100% { transform: scale(0.4) rotate(0deg); opacity: 0; }
  50%      { transform: scale(1) rotate(180deg); opacity: 1; }
}
/* Support bot keeps the calm single orbit ring */
.mascot:has(.support-bot)::before { border-color: rgba(32,192,240,0.18); }

/* ---------- Bot speech bubble (typewriter) ---------- */
.bot-speech {
  position: absolute;
  top: -4%;
  right: -6%;
  background: #fff;
  color: var(--ink);
  padding: 11px 16px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 32px -8px rgba(15,23,42,0.18), 0 6px 14px -4px rgba(15,23,42,0.1);
  min-width: 170px;
  max-width: 210px;
  z-index: 4;
  animation: bubblePop .5s var(--ease) both;
  border: 1.5px solid rgba(32,192,240,0.3);
}
/* speech-tail pointing toward bot's head */
.bot-speech::before {
  content: "";
  position: absolute;
  left: -8px; top: 24px;
  width: 16px; height: 16px;
  background: #fff;
  border-left: 1.5px solid rgba(32,192,240,0.3);
  border-bottom: 1.5px solid rgba(32,192,240,0.3);
  transform: rotate(45deg);
}
.bot-speech .bot-speech-label {
  display: block;
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.bot-speech .bot-speech-label::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #10B981;
  margin-right: 6px;
  vertical-align: 1px;
  animation: livePulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.7);
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}
.bot-typing {
  display: inline;
  min-height: 20px;
  line-height: 1.45;
}
.bot-cursor {
  display: inline-block;
  width: 2px;
  height: 16px;
  background: var(--brand);
  margin-left: 2px;
  vertical-align: -3px;
  animation: cursorBlink .8s steps(2) infinite;
}
@keyframes cursorBlink { 50% { opacity: 0; } }

/* "is typing…" three-dot indicator */
.bot-typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 0;
  min-height: 20px;
}
.bot-typing-dots i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.35;
  animation: dotWave 1.1s ease-in-out infinite;
}
.bot-typing-dots i:nth-child(2) { animation-delay: .18s; }
.bot-typing-dots i:nth-child(3) { animation-delay: .36s; }
@keyframes dotWave {
  0%, 100% { transform: translateY(0);   opacity: 0.35; }
  50%      { transform: translateY(-4px); opacity: 1; }
}

/* subtle pop when a new message begins typing */
.bot-speech.speaking { animation: bubbleNudge .5s var(--ease); }
@keyframes bubbleNudge {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* Keep the speech bubble compact but roomy enough for short sentences */
.bot-speech { min-width: 180px; max-width: 220px; }
@media (max-width: 900px) {
  .bot-speech { min-width: 190px; max-width: 240px; }
}
@keyframes bubblePop {
  from { opacity: 0; transform: translateY(-8px) scale(.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 900px) {
  .bot-speech { right: 6%; top: -6%; font-size: 14px; min-width: 160px; }
}

@media (max-width: 900px) {
  .page-head-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .page-head.with-mascot .page-head-inner { align-items: center; text-align: center; }
  .mascot { max-width: 200px; }
  .bot-speech { right: 0; }
}

/* ---------- Cards (services / features / info) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 0;
  box-shadow:
    0 4px 18px -3px rgba(15,23,42,0.08),
    0 2px 6px -2px rgba(15,23,42,0.05);
  transition:
    transform .35s var(--ease),
    box-shadow .35s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
/* Gradient border effect via pseudo-element */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: linear-gradient(135deg,
              rgba(32,192,240,0.15) 0%,
              rgba(226,232,240,0.6) 50%,
              rgba(139,92,246,0.15) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  transition: opacity .3s var(--ease), background .3s var(--ease);
}
.card:hover::before {
  background: linear-gradient(135deg,
              var(--brand) 0%,
              var(--brand-dark) 50%,
              #8B5CF6 100%);
}
.card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 40px 80px -20px rgba(32,192,240,0.25),
    0 20px 40px -10px rgba(15,23,42,0.15);
}

.card-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--surface);
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .35s var(--ease);
}
.card:hover .card-media img {
  transform: scale(1.1);
  filter: saturate(1.15) brightness(1.02);
}
/* Bottom gradient for icon legibility */
.card-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      transparent 40%,
      rgba(10,17,32,0.45) 100%);
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
/* Cyan tint wash that appears on hover */
.card-media::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(32,192,240,0.18) 0%,
    transparent 50%,
    rgba(139,92,246,0.18) 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: 1;
  pointer-events: none;
}
.card:hover .card-media::before { opacity: 1; }

/* Corner reveal-arrow badge */
.card-arrow {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateX(8px) translateY(-4px);
  transition: opacity .3s var(--ease), transform .35s var(--ease), background .2s var(--ease);
  z-index: 3;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.2);
}
.card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
.card-arrow svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.card:hover .card-arrow { background: #fff; }
.card:hover .card-arrow svg { transform: translateX(2px); }

.card-body {
  padding: 40px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
/* Icon tile — bigger, bolder, floating higher */
.card-media + .card-body .card-icon,
.card-icon-float {
  margin-top: -72px;
  margin-bottom: 10px;
  z-index: 3;
  position: relative;
  border: 5px solid #fff;
  width: 72px !important;
  height: 72px !important;
  border-radius: 20px;
}
.card-media + .card-body .card-icon svg { width: 30px; height: 30px; }
.card-body h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  transition: color .2s var(--ease);
}
.card:hover .card-body h3 { color: var(--brand-dark); }
.card-body p { font-size: 15px; line-height: 1.65; color: var(--ink-2); margin: 0; }
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(32,192,240,0.35);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 10px 24px -6px rgba(32,192,240,0.4);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.card-icon svg { width: 26px; height: 26px; stroke-width: 1.8; }
.card:hover .card-icon { transform: rotate(-5deg) scale(1.05); }

/* Per-service color variants for visual rhythm */
.card-icon.c-fe { background: linear-gradient(135deg, #20C0F0, #0B8FBC); box-shadow: 0 10px 24px -6px rgba(32,192,240,.4); }
.card-icon.c-au { background: linear-gradient(135deg, #7C3AED, #5B21B6); box-shadow: 0 10px 24px -6px rgba(124,58,237,.4); }
.card-icon.c-mc { background: linear-gradient(135deg, #10B981, #047857); box-shadow: 0 10px 24px -6px rgba(16,185,129,.4); }
.card-icon.c-ho { background: linear-gradient(135deg, #F59E0B, #D97706); box-shadow: 0 10px 24px -6px rgba(245,158,11,.4); }
.card-icon.c-ac { background: linear-gradient(135deg, #EC4899, #BE185D); box-shadow: 0 10px 24px -6px rgba(236,72,153,.4); }
.card-icon.c-mv { background: linear-gradient(135deg, #06B6D4, #0E7490); box-shadow: 0 10px 24px -6px rgba(6,182,212,.4); }
.card h3 { margin-bottom: 2px; }
.card p { margin: 0; font-size: 15px; color: var(--ink-2); }

/* ---------- Info cards (Contact page) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.info-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow);
}
.info-card .card-icon { flex-shrink: 0; width: 52px; height: 52px; }
.info-card .card-icon svg { width: 24px; height: 24px; }
.info-card h4 { font-size: 14px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.info-card p { margin: 0; color: var(--ink); font-weight: 500; font-size: 16px; line-height: 1.5; }
.info-card a { color: var(--ink); }
.info-card a:hover { color: var(--brand-dark); }

/* ---------- Team / Call-center gallery ---------- */
.team-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
  margin-top: 40px;
}
.team-gallery figure {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.team-gallery figure:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-gallery figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.team-gallery figure:hover img { transform: scale(1.05); }
.team-gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  background: linear-gradient(180deg, transparent 0%, rgba(10,17,32,0.85) 100%);
  line-height: 1.4;
}
.team-gallery figcaption strong {
  display: block;
  color: var(--brand-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.team-gallery .g-tall { grid-row: 1 / span 2; }
.team-gallery .g-1 {}
.team-gallery .g-2 {}
.team-gallery .g-wide { grid-column: 2 / span 2; }

/* Team stats under the gallery */
.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.team-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
  line-height: 1;
}
.team-stat-label { color: var(--ink-2); font-size: 13px; margin-top: 6px; }

@media (max-width: 768px) {
  .team-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .team-gallery .g-tall { grid-row: 1 / span 1; grid-column: 1 / span 2; }
  .team-gallery .g-wide { grid-column: 1 / span 2; }
}
@media (max-width: 480px) {
  .team-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .team-gallery .g-tall { grid-row: auto; grid-column: auto; }
  .team-gallery .g-wide { grid-column: auto; }
}

/* ---------- Split (about / testimonials) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  position: relative;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-body h2 { margin-bottom: 14px; }
.split-body .lead { font-size: 18px; color: var(--ink); font-weight: 500; margin-bottom: 18px; }

/* Check list */
.check-list { list-style: none; padding: 0; display: grid; gap: 10px; margin-top: 24px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 4px 10px -2px rgba(32,192,240,0.45);
}
.check-list li::after {
  content: "";
  width: 10px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  margin-left: -26px;
  margin-top: -3px;
}

/* ---------- Testimonial ---------- */
.testimonial {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 24px;
}
.testimonial-quote {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 24px;
}
.testimonial-quote::before, .testimonial-quote::after {
  color: var(--brand);
  font-weight: 800;
}
.testimonial-meta { color: var(--muted); font-size: 15px; }
.testimonial-meta strong { color: var(--ink); font-size: 16px; }
.testimonial-stat {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 500;
  color: var(--ink-2);
}
.testimonial-stat strong { color: var(--brand-dark); }

/* ---------- SVG wave / curve section dividers ---------- */
.wave-divider {
  display: block;
  width: 100%;
  height: 72px;
  margin-top: -1px;
  margin-bottom: -1px;
  pointer-events: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.wave-divider svg { width: 100%; height: 100%; display: block; }

/* Rounded section corners for organic section transitions */
.rounded-top {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.rounded-bottom {
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  margin-bottom: -40px;
  position: relative;
  z-index: 2;
}
@media (max-width: 600px) {
  .rounded-top, .rounded-bottom { border-radius: 24px; margin-top: -24px; }
}

/* ---------- Oversized hero headline (like insureme heading-5xl) ---------- */
.hero h1 { font-size: clamp(44px, 7vw, 88px); }

/* ---------- Benefit badges strip ---------- */
.badge-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  padding: 28px;
  background: linear-gradient(135deg, #fff 0%, var(--surface) 100%);
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: 48px;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.badge-item .badge-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px -4px rgba(32,192,240,0.4);
}
.badge-item .badge-icon svg { width: 22px; height: 22px; }
.badge-item strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.badge-item span.badge-sub {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

/* ---------- How it works — numbered process steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 36px; left: 10%; right: 10%; height: 2px;
  background: repeating-linear-gradient(90deg,
              var(--brand) 0 6px, transparent 6px 14px);
  opacity: 0.4;
  z-index: 0;
}
.step-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 12px 28px -6px rgba(32,192,240,0.45);
  margin: -60px auto 18px;
  border: 4px solid #fff;
}
.step-card h4 { margin-bottom: 8px; font-size: 18px; }
.step-card p { margin: 0; color: var(--ink-2); font-size: 14px; }
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
}
@media (max-width: 520px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ---------- Home FAQ preview ---------- */
.faq-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.faq-home .faq-home-head {
  position: sticky;
  top: 100px;
}
.faq-home .faq-home-head h2 { margin-bottom: 14px; }
.faq-home .faq-home-head p { color: var(--muted); margin-bottom: 24px; }
@media (max-width: 900px) {
  .faq-home { grid-template-columns: 1fr; gap: 32px; }
  .faq-home .faq-home-head { position: static; }
}

/* ---------- Floating "Call now" bubble ---------- */
.call-bubble {
  position: fixed;
  right: 22px;
  bottom: 86px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  box-shadow: 0 18px 42px -8px rgba(32,192,240,0.5);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), box-shadow .2s var(--ease);
  z-index: 998;
}
.call-bubble.show { opacity: 1; transform: translateY(0); }
.call-bubble:hover {
  color: #fff;
  box-shadow: 0 22px 50px -8px rgba(32,192,240,0.7);
  transform: translateY(-2px);
}
.call-bubble svg { width: 16px; height: 16px; }
.call-bubble .pulse {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.call-bubble .pulse::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  animation: ringPulse 1.8s ease-out infinite;
}
@keyframes ringPulse {
  0%   { transform: scale(0.9); opacity: 0.8; }
  80%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (max-width: 520px) {
  .call-bubble span:not(.pulse) { display: none; }
  .call-bubble { padding: 10px; }
}

/* ---------- Big emotional statement ---------- */
.big-statement {
  text-align: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.big-statement::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(32,192,240,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(139,92,246,0.08) 0%, transparent 60%);
}
.big-statement h2 {
  position: relative;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 960px;
  margin: 0 auto;
}

/* ---------- Big phone CTA banner ---------- */
.phone-cta {
  position: relative;
  padding: 64px 0;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.phone-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 15% 50%, rgba(32,192,240,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 85% 50%, rgba(139,92,246,0.35) 0%, transparent 60%),
    linear-gradient(135deg, #0A1120 0%, #1E1B4B 100%);
  z-index: -1;
}
.phone-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.phone-cta-text small {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}
.phone-cta-text .big-phone {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
  transition: transform .25s var(--ease);
}
.phone-cta-text .big-phone:hover { transform: scale(1.02); color: #fff; }
.phone-cta-text .phone-icon-big {
  width: 64px; height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 16px 40px -10px rgba(32,192,240,0.55);
  animation: phonePulse 2.4s ease-in-out infinite;
}
.phone-cta-text .phone-icon-big svg { width: 28px; height: 28px; color: #fff; }
@keyframes phonePulse {
  0%, 100% { transform: scale(1);   box-shadow: 0 16px 40px -10px rgba(32,192,240,0.55); }
  50%      { transform: scale(1.06); box-shadow: 0 20px 54px -10px rgba(32,192,240,0.8); }
}
.phone-cta-sub { color: rgba(255,255,255,0.85); margin-top: 12px; font-size: 15px; }

/* ---------- Ways-to-reach grid ---------- */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.reach-card {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1.5px solid var(--border);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
}
.reach-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.reach-card:hover::before { transform: scaleX(1); }
.reach-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(32,192,240,0.4);
  color: var(--ink);
}
.reach-card .reach-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(32,192,240,0.4);
  margin-bottom: 18px;
}
.reach-card .reach-icon svg { width: 24px; height: 24px; }
.reach-card h4 { font-size: 17px; margin-bottom: 6px; color: var(--ink); }
.reach-card p { font-size: 14px; color: var(--muted); margin: 0; }
.reach-card strong { color: var(--brand-dark); font-weight: 600; }

/* Variant: one-color-per-card for visual rhythm */
.reach-card.r-2 .reach-icon { background: linear-gradient(135deg, #8B5CF6, #6D28D9); box-shadow: 0 10px 24px -6px rgba(139,92,246,0.4); }
.reach-card.r-3 .reach-icon { background: linear-gradient(135deg, #10B981, #047857); box-shadow: 0 10px 24px -6px rgba(16,185,129,0.4); }
.reach-card.r-4 .reach-icon { background: linear-gradient(135deg, #F59E0B, #D97706); box-shadow: 0 10px 24px -6px rgba(245,158,11,0.4); }

/* ---------- Trust-rating strip ---------- */
.rating-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 28px;
  margin: 0 auto 40px;
  max-width: 640px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}
.rating-strip .stars {
  color: #F59E0B;
  font-size: 20px;
  letter-spacing: 2px;
}
.rating-strip .rating-num {
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.rating-strip .rating-label {
  color: var(--muted);
  font-size: 14px;
}
.rating-strip .divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* ---------- CTA strip ---------- */
.cta-strip {
  padding: 80px 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-strip::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(at 20% 50%, rgba(32,192,240,0.30) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(11,143,188,0.30) 0px, transparent 50%),
    linear-gradient(135deg, #0A1120 0%, #074F6B 100%);
  z-index: -1;
}
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h2 { color: #fff; max-width: 640px; }
.cta-strip p { color: rgba(255,255,255,0.82); font-size: 17px; margin-top: 10px; max-width: 640px; }

/* ---------- FAQ accordion ---------- */
.faq-list { display: grid; gap: 14px; max-width: 880px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item.open { border-color: rgba(32,192,240,0.4); box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: inherit;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  cursor: pointer;
  transition: color .2s var(--ease);
}
.faq-q:hover { color: var(--brand-dark); }
.faq-q .icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s var(--ease), transform .3s var(--ease);
}
.faq-item.open .faq-q .icon {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 16px;
  max-width: 680px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(32,192,240,0.15);
}
.form-field textarea { min-height: 140px; resize: vertical; }

/* ---------- Map ---------- */
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  aspect-ratio: 16/7;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Legal (privacy / terms) long-form ---------- */
.legal {
  max-width: 880px;
  margin: 0 auto;
}
.legal-meta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--ink-2);
}
.legal-meta em { color: var(--ink); font-style: normal; font-weight: 600; }
.legal h3 {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 22px;
}
.legal h3:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h4 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.legal p { margin-bottom: 14px; }
.legal ul { padding-left: 28px; margin-bottom: 18px; }
.legal ul li { margin-bottom: 8px; color: var(--ink-2); }
.legal ul ul { margin-top: 6px; margin-bottom: 10px; }

/* ---------- Blog placeholder ---------- */
.blog-empty {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 32px;
  background: var(--surface);
  border: 1.5px dashed var(--border);
  border-radius: var(--r-lg);
}
.blog-empty h3 { margin-bottom: 10px; }
.blog-empty p { color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%, rgba(32,192,240,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 0%, rgba(11,143,188,0.08) 0%, transparent 60%),
    #050A14;
  color: rgba(255,255,255,0.7);
  padding: 96px 0 0;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
              transparent 0%,
              var(--brand-dark) 15%,
              var(--brand) 50%,
              var(--brand-dark) 85%,
              transparent 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 56px;
}
.site-footer h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 14px;
}
.site-footer h5::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  border-radius: 2px;
}
.site-footer p {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 0;
}
.site-footer ul { list-style: none; display: grid; gap: 12px; padding: 0; margin: 0; }
.site-footer ul li a {
  color: rgba(255,255,255,0.66);
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  padding-left: 0;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
  display: inline-block;
}
.site-footer ul li a::before {
  content: "→";
  display: inline-block;
  margin-right: 0;
  width: 0;
  overflow: hidden;
  color: var(--brand);
  font-weight: 700;
  transition: width .25s var(--ease), margin-right .25s var(--ease);
  vertical-align: middle;
}
.site-footer ul li a:hover {
  color: #fff;
}
.site-footer ul li a:hover::before {
  width: 14px;
  margin-right: 6px;
}

.footer-brand { display: flex; align-items: center; margin-bottom: 22px; }
.footer-brand img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);   /* black wordmark -> white for dark footer */
  opacity: 0.95;
}

.footer-about-copy {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75) !important;
  transition:
    background .25s var(--ease),
    border-color .25s var(--ease),
    transform .2s var(--ease),
    color .2s var(--ease);
}
.footer-social a svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.footer-social a:hover {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-color: transparent;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px -6px rgba(32,192,240,0.4);
}
.footer-social a:hover svg { transform: scale(1.1); }

.newsletter-intro {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.newsletter-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 4px 4px 4px 8px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.newsletter-form:focus-within {
  border-color: var(--brand);
  background: rgba(32,192,240,0.08);
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { outline: 0; }
.newsletter-form button {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  flex-shrink: 0;
}
.newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -6px rgba(32,192,240,0.55);
}

.footer-contact {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer-contact > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.footer-contact > div:hover {
  border-color: rgba(32,192,240,0.25);
  background: rgba(32,192,240,0.04);
}
.footer-contact > div span:not(.dot) {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}
.footer-contact a {
  color: rgba(255,255,255,0.85) !important;
  transition: color .2s var(--ease);
}
.footer-contact a:hover { color: var(--brand) !important; }
.footer-contact .dot {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px -4px rgba(32,192,240,0.35);
}

.legal-bar {
  background: #02060F;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
.legal-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.legal-bar > .container > span { letter-spacing: 0.01em; }
.legal-bar a {
  color: rgba(255,255,255,0.7);
  margin-left: 22px;
  display: inline-flex;
  align-items: center;
  transition: color .2s var(--ease);
}
.legal-bar a:first-child { margin-left: 0; }
.legal-bar a:hover { color: var(--brand); }

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-contact { grid-template-columns: 1fr; }
  .legal-bar .container { flex-direction: column; text-align: center; }
  .legal-bar a { margin: 0 10px; }
}
@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .site-footer { padding-top: 72px; }
}

/* ---------- Back-to-top & cookie ---------- */
.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 28px -6px rgba(32,192,240,0.45);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), visibility .3s step-end, transform .3s var(--ease);
  z-index: 998;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s; }
.to-top:hover { color: #fff; }

.cookie {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 960px; margin: 0 auto;
  background: rgba(10,17,32,0.98);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  transform: translateY(140%);
  transition: transform .5s var(--ease);
  z-index: 997;
}
.cookie.show { transform: translateY(0); }
.cookie p { margin: 0; color: rgba(255,255,255,0.85); font-size: 14px; flex: 1 1 280px; }
.cookie a { color: var(--brand); text-decoration: underline; }
.cookie button {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border: 0;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

::selection { background: rgba(32,192,240,0.28); color: var(--ink); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  border-radius: 10px;
  border: 2px solid var(--surface);
}

/* ---------- Mobile ---------- */
@media (max-width: 960px) {
  .hero { min-height: 560px; }
  .hero-inner { min-height: 560px; padding: 88px 0; }
  .hero-chips { bottom: 80px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); padding: 20px; }
  .hero-stat-num { font-size: 22px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-contact { grid-template-columns: 1fr; }
  .nav-menu, .nav-cta .btn:not(.nav-cta-btn) { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #fff;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    align-items: flex-start;
    z-index: 999;
  }
  .section { padding: 64px 0; }
  .cta-strip .container { flex-direction: column; text-align: center; align-items: center; }
}
@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .legal-bar .container { flex-direction: column; align-items: center; }
}

/* ---------- Draft banner ---------- */
.draft-banner {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border: 1px solid #F59E0B;
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #78350F;
  font-size: 14px;
  line-height: 1.55;
}
.draft-banner strong { color: #78350F; }
.draft-banner svg { flex-shrink: 0; color: #B45309; }

/* ---------- SVG icon sizing helpers ---------- */
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 26px; height: 26px; }
svg { display: inline-block; vertical-align: middle; }

/* Footer social circles hold real SVGs */
.footer-social a { color: rgba(255,255,255,0.8); }
.footer-social a svg { width: 18px; height: 18px; stroke-width: 1.8; }
.footer-social a:hover svg { color: #fff; }

/* Footer contact row icons */
.footer-contact .dot svg { width: 16px; height: 16px; stroke-width: 2; }

/* Legal bar icons */
.legal-bar a svg {
  width: 14px; height: 14px;
  stroke-width: 2;
  margin-right: 6px;
  color: var(--brand);
  vertical-align: -2px;
}

/* FAQ accordion icon */
.faq-q .icon svg { width: 14px; height: 14px; color: var(--ink-2); stroke-width: 2.5; transition: color .2s var(--ease); }
.faq-item.open .faq-q .icon svg { color: #fff; }

/* Hero dots make room for two real slides */
.hero-slide .hero-eyebrow,
.hero-slide .hero-sub,
.hero-slide h1,
.hero-slide .hero-ctas { animation: none; opacity: 1; transform: none; }
.hero-slide.active .hero-eyebrow { animation: fadeUp .7s var(--ease); }
.hero-slide.active h1 { animation: fadeUp .8s var(--ease) .1s both; }
.hero-slide.active .hero-ctas { animation: fadeUp .8s var(--ease) .2s both; }

/* Hero stats: stack on mobile */
@media (max-width: 520px) {
  .hero-stats { grid-template-columns: 1fr; padding: 18px 20px; gap: 14px; }
  .hero-stat-num { font-size: 22px; }
}

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