/* ============================================================
   POURPOINT DISTRIBUTION — style.css
   Author: Antigravity / Senior Web Dev
   Fonts: Syne (display) + DM Sans (body) via Google Fonts
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --primary: #1B3A6B;
  --primary-light: #2251A3;
  --accent: #2E6BE6;
  --accent-hover: #1A55CC;
  --silver: #A8B4C8;
  --bg-1: #0A1628;
  --bg-2: #0F1F3D;
  --bg-card: #162444;
  --bg-light: #F2F5F9;
  --bg-lighter: #FFFFFF;
  --text-1: #FFFFFF;
  --text-2: #E8EDF5;
  --text-3: #A8B4C8;
  --bdr: rgba(168, 180, 200, 0.15);
  --bdr-light: rgba(27, 58, 107, 0.12);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --max-w: 1240px;
  --gutter: 1.5rem;
  --radius: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-1);
  background: var(--bg-1);
  -webkit-font-smoothing: antialiased
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

input,
textarea,
select {
  font-family: inherit
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700
}

h1 {
  letter-spacing: -0.05em
}

/* ─── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter)
}

.section {
  padding-block: 5rem
}

.section-light {
  background: var(--bg-light);
  color: var(--primary)
}

.section-dark {
  background: var(--bg-2)
}

.coverage-checker-section {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.section-header {
  margin-bottom: 3rem
}

.text-center {
  text-align: center
}

.text-muted {
  color: var(--text-3)
}

.mt-3 {
  margin-top: 1rem
}

.mt-6 {
  margin-top: 2rem
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem
}

/* ─── TYPOGRAPHY SCALE ───────────────────────────────────────── */
.display-xl {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.05em
}

.display-lg {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.05em
}

.display-md {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.05em
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.7
}

.label-caps {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem
}

em {
  font-style: italic;
  color: var(--accent)
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease)
}

.btn:hover svg {
  transform: translateX(3px)
}

.btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: 1rem
}

.btn-white {
  background: var(--text-1);
  color: var(--primary);
  border-color: var(--text-1)
}

.btn-white:hover {
  background: var(--bg-light);
  color: var(--primary-light)
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent)
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover)
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary)
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5)
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff
}

.btn-loading {
  opacity: 0.7;
  pointer-events: none
}

/* ─── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1.1rem 0;
  transition: all 0.4s var(--ease)
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--bdr);
  padding: 0.7rem 0
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter)
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 15px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto
}

.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s ease;
  position: relative
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s var(--ease)
}

.nav-links a:hover {
  color: #fff
}

.nav-links a:hover::after {
  width: 100%
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto
}

.nav-cta {
  padding: 0.55rem 1.4rem;
  font-size: 0.88rem
}

.nav-parent {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--silver);
  white-space: nowrap;
  opacity: 0.8
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 36px
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all 0.3s var(--ease)
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* ─── MOBILE MENU ────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-1);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  pointer-events: none
}

.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-1);
  transition: color 0.2s
}

.mobile-menu a:hover {
  color: var(--accent)
}

.mobile-cta {
  font-size: 1rem !important;
  margin-top: 1rem;
  color: var(--primary) !important
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 6rem
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #1B3A6B 0%, transparent 70%), linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%)
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--bdr) 1px, transparent 1px), linear-gradient(90deg, var(--bdr) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 100%)
}

.hero-dots {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(circle, rgba(168, 180, 200, 0.25) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.6
}

.hero-dots-2 {
  position: absolute;
  bottom: 15%;
  left: 3%;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, rgba(46, 107, 230, 0.2) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.5
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 3rem
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse-dot 2s infinite
}

.hero-eyebrow span:last-child {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver)
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-3);
  max-width: 520px;
  margin-top: 1.5rem
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bdr)
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1
}

.hero-stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--silver);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em
}

/* Hero 3D Card */
.hero-card-wrap {
  perspective: 1000px
}

.hero-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(27, 58, 107, 0.6) 100%);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
  will-change: transform
}

.hero-card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(46, 107, 230, 0.15);
  border: 1px solid rgba(46, 107, 230, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem
}

.hero-card h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.5rem
}

.hero-card p {
  font-size: 0.9rem;
  color: var(--text-3);
  margin-bottom: 1.5rem
}

.hero-card-divider {
  height: 1px;
  background: var(--bdr);
  margin-bottom: 1.5rem
}

.hero-card-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem
}

.hero-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(46, 107, 230, 0.15);
  border: 1px solid rgba(46, 107, 230, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.hero-card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent)
}

.hero-card-item-text {
  font-size: 0.88rem;
  color: var(--text-3);
  line-height: 1.4
}

.hero-card-item-text strong {
  display: block;
  color: var(--text-2);
  font-weight: 600;
  margin-bottom: 0.2rem
}

.hero-card-cta {
  display: block;
  margin-top: 1.5rem;
  padding: 0.75rem;
  text-align: center;
  border: 1px solid var(--bdr);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: all 0.2s;
  background: rgba(46, 107, 230, 0.08)
}

.hero-card-cta:hover {
  background: rgba(46, 107, 230, 0.18);
  border-color: var(--accent)
}

/* ─── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: rgba(27, 58, 107, 0.4);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  padding: 1rem 0
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: space-around;
  align-items: center
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-3)
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0
}

/* ─── MARQUEE ────────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--accent);
  overflow: hidden;
  padding: 0.75rem 0;
  position: relative
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite
}

.marquee-item {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3rem
}

.marquee-item::after {
  content: '✦';
  opacity: 0.6
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused
}

/* ─── SERVICE CARDS ──────────────────────────────────────────── */
.service-card {
  background: var(--bg-lighter);
  border: 1px solid var(--bdr-light);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease)
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27, 58, 107, 0.15)
}

.service-card:hover::before {
  transform: scaleX(1)
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(46, 107, 230, 0.1);
  border: 1px solid rgba(46, 107, 230, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent)
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.75rem
}

.service-card p {
  font-size: 0.9rem;
  color: #4A5568;
  line-height: 1.7
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s
}

.service-card-link:hover {
  gap: 0.7rem
}

.service-card-link svg {
  width: 16px;
  height: 16px
}

/* ─── WHY CARDS ──────────────────────────────────────────────── */
.why-card {
  background: #fff;
  border: 1px solid var(--bdr-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.3s var(--ease);
  position: relative
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: var(--radius) var(--radius) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease)
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(27, 58, 107, 0.12)
}

.why-card:hover::after {
  transform: scaleX(1)
}

.why-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem
}

.why-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
  font-weight: 700
}

.why-card p {
  font-size: 0.88rem;
  color: #4A5568;
  line-height: 1.65
}

/* ─── SUPPLY TIERS ───────────────────────────────────────────── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s var(--ease)
}

.tier-card:hover {
  transform: translateY(-3px)
}

.tier-card.featured {
  background: var(--primary);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 60px rgba(46, 107, 230, 0.25)
}

.tier-featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px
}

.tier-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  display: block;
  margin-bottom: 0.5rem
}

.tier-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.75rem
}

.tier-desc {
  font-size: 0.88rem;
  color: var(--text-3);
  margin-bottom: 1.5rem;
  line-height: 1.6
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem
}

.tier-feature {
  font-size: 0.88rem;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem
}

.tier-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px
}

/* ─── PROCESS STEPS ──────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  z-index: 0
}

.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1
}

.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--bg-light);
  box-shadow: 0 0 0 3px var(--accent)
}

.process-step h3 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 0.5rem
}

.process-step p {
  font-size: 0.85rem;
  color: #4A5568;
  line-height: 1.6
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.3s var(--ease)
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 107, 230, 0.3)
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--silver);
  margin-top: 0.15rem
}

/* ─── PULL QUOTE ─────────────────────────────────────────────── */
.pull-quote-section {
  background: var(--primary);
  padding: 4rem 0;
  position: relative;
  overflow: hidden
}

.pull-quote-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(46, 107, 230, 0.2), transparent 70%)
}

.pull-quote-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin-inline: auto
}

.pull-quote-mark {
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 0.5;
  color: rgba(255, 255, 255, 0.1);
  display: block;
  margin-bottom: 1rem;
  user-select: none
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -0.01em
}

.quote-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem
}

.quote-line {
  height: 1px;
  width: 60px;
  background: rgba(255, 255, 255, 0.3)
}

.quote-source {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver)
}

/* ─── METRICS ────────────────────────────────────────────────── */
.metric-card {
  text-align: center;
  padding: 2rem 1rem
}

.metric-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem
}

.metric-label {
  font-size: 0.82rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.06em
}

/* ─── SECONDARY CTA BAND ─────────────────────────────────────── */
.secondary-cta-band {
  background: var(--bg-card);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  padding: 2.5rem 0
}

.secondary-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap
}

.secondary-cta-inner h3 {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700
}

.secondary-cta-inner p {
  font-size: 0.9rem;
  color: var(--text-3);
  margin-top: 0.3rem
}

/* ─── BOTTLES & GLASSES VERTICAL ────────────────────────────── */
.vertical-section {
  background: var(--bg-2);
  padding: 5rem 0
}

.vertical-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center
}

.vertical-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(46, 107, 230, 0.12);
  border: 1px solid rgba(46, 107, 230, 0.25);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem
}

.vertical-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent)
}

.vertical-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent)
}

.vertical-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 1rem
}

.vertical-inner p {
  font-size: 1rem;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 1.5rem
}

.vertical-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  border-bottom: 1px solid rgba(46, 107, 230, 0.3);
  padding-bottom: 2px;
  transition: all 0.2s
}

.vertical-link:hover {
  border-color: var(--accent);
  gap: 0.8rem
}

.vertical-visual {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem
}

.vertical-stat {
  display: flex;
  align-items: center;
  gap: 1rem
}

.vertical-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(46, 107, 230, 0.12);
  border: 1px solid rgba(46, 107, 230, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.vertical-stat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent)
}

.vertical-stat-text strong {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 1rem
}

.vertical-stat-text span {
  font-size: 0.82rem;
  color: var(--silver)
}

/* ─── FINAL CTA BANNER ───────────────────────────────────────── */
.cta-banner {
  background: var(--bg-1);
  padding: 5rem 0;
  position: relative;
  overflow: hidden
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 107, 230, 0.15) 0%, transparent 70%);
  pointer-events: none
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center
}

.cta-banner-inner h2 {
  margin-bottom: 1rem;
  color: #fff
}

.cta-banner-inner p {
  font-size: 1.1rem;
  color: var(--text-3);
  margin-bottom: 2.5rem
}

.cta-banner-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

/* ─── COVERAGE MAP ───────────────────────────────────────────── */
.coverage-hero {
  background: var(--bg-1);
  padding: 8rem 0 4rem;
  border-bottom: 1px solid var(--bdr)
}

.coverage-map-section {
  padding: 4rem 0;
  background: var(--bg-2)
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start
}

/* ─── SVG Lagos Map ─────────────────────────────────────────── */
.lagos-svg-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(46, 107, 230, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4)
}

.lagos-svg {
  display: block;
  width: 100%;
  height: auto
}

.map-zone-poly {
  cursor: pointer;
  transition: fill 0.2s ease, filter 0.2s ease
}

.map-zone-poly:hover {
  fill: rgba(46, 107, 230, 0.45) !important;
  filter: drop-shadow(0 0 6px rgba(46, 107, 230, 0.6))
}

.map-zone-poly.active {
  fill: rgba(46, 107, 230, 0.65) !important;
  filter: drop-shadow(0 0 10px rgba(46, 107, 230, 0.8))
}

.map-zone-text {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  fill: rgba(255, 255, 255, 0.75);
  pointer-events: none;
  letter-spacing: 0.02em
}


.map-container {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  min-height: 480px
}


.map-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.25rem
}

.map-area {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  background: linear-gradient(145deg, #0F2040 0%, #1B3A6B 100%);
  border-radius: 12px;
  overflow: hidden
}

.map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.map-zone {
  cursor: pointer;
  transition: all 0.2s;
  fill: rgba(46, 107, 230, 0.25);
  stroke: rgba(46, 107, 230, 0.6);
  stroke-width: 1.5
}

.map-zone:hover,
.map-zone.active {
  fill: rgba(46, 107, 230, 0.5);
  stroke: var(--accent);
  stroke-width: 2
}

.map-pin {
  cursor: pointer;
  transition: transform 0.2s
}

.map-pin:hover {
  transform: scale(1.3)
}

.map-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.78rem
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--silver)
}

.map-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.map-legend-dot.active {
  background: var(--accent)
}

.map-legend-dot.coming {
  background: var(--silver);
  opacity: 0.4
}

.coverage-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.checker-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 1.75rem
}

.checker-card h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem
}

.checker-card p {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-bottom: 1.25rem
}

.checker-input-wrap {
  display: flex;
  gap: 0.5rem
}

.checker-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--bdr);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  color: #fff;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none
}

.checker-input:focus {
  border-color: var(--accent)
}

.checker-input::placeholder {
  color: var(--text-3)
}

.checker-btn {
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  padding: 0.7rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer
}

.checker-btn:hover {
  background: var(--accent-hover)
}

.checker-result {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  display: none
}

.checker-result.found {
  background: rgba(46, 107, 230, 0.15);
  border: 1px solid rgba(46, 107, 230, 0.3);
  color: var(--accent);
  display: block
}

.checker-result.not-found {
  background: rgba(255, 100, 100, 0.1);
  border: 1px solid rgba(255, 100, 100, 0.2);
  color: #FC8181;
  display: block
}

.zones-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 1.75rem
}

.zones-card h3 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700
}

.zones-group {
  margin-bottom: 1.25rem
}

.zones-group-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: block
}

.zones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem
}

.zone-tag {
  font-size: 0.76rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--bdr);
  border-radius: 50px;
  padding: 0.25rem 0.7rem;
  color: var(--text-3);
  cursor: pointer;
  transition: all 0.2s
}

.zone-tag:hover,
.zone-tag.highlighted {
  background: rgba(46, 107, 230, 0.15);
  border-color: rgba(46, 107, 230, 0.4);
  color: var(--accent)
}

/* ─── CONTACT FORM ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start
}

.form-group {
  margin-bottom: 1.25rem
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 0.5rem
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--bdr);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  color: #fff;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  resize: vertical
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: rgba(46, 107, 230, 0.08)
}

.form-group select option {
  background: var(--bg-2);
  color: #fff
}

.form-group textarea {
  min-height: 130px
}

.form-honeypot {
  display: none
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-3);
  line-height: 1.5
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent)
}

#contact-msg {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  display: none
}

#contact-msg.success {
  background: rgba(46, 107, 230, 0.12);
  border: 1px solid rgba(46, 107, 230, 0.3);
  color: var(--accent);
  display: block
}

#contact-msg.error {
  background: rgba(255, 100, 100, 0.1);
  border: 1px solid rgba(255, 100, 100, 0.2);
  color: #FC8181;
  display: block
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 2rem
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem
}

.contact-detail:last-child {
  margin-bottom: 0
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(46, 107, 230, 0.12);
  border: 1px solid rgba(46, 107, 230, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent)
}

.contact-detail-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.9rem;
  color: var(--text-3)
}

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

/* ─── FAQ ────────────────────────────────────────────────────── */
/* FAQ on dark sections (default) */
.faq-item {
  border-bottom: 1px solid var(--bdr);
  padding: 1.25rem 0
}

.faq-question {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg)
}

.faq-answer {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s
}

.faq-item.open .faq-answer {
  max-height: 220px;
  padding-top: 0.5rem
}

/* FAQ on light sections */
.section-light .faq-item {
  border-bottom-color: rgba(27, 58, 107, 0.18)
}

.section-light .faq-question {
  color: var(--primary)
}

.section-light .faq-question::after {
  color: var(--accent)
}

.section-light .faq-answer {
  color: #4A5568
}

/* ─── WHATSAPP WIDGET ────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem
}

.wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  animation: waPulse 3s infinite;
  position: relative;
  border: none;
  cursor: pointer
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5)
}

.wa-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-2);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3)
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--bg-2)
}

.wa-btn:hover .wa-tooltip {
  opacity: 1
}

.wa-chat-panel {
  width: 320px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: waFadeIn 0.25s var(--ease)
}

.wa-chat-panel.open {
  display: flex
}

.wa-panel-header {
  background: #075E54;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem
}

.wa-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.3)
}

.wa-panel-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff
}

.wa-panel-status {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1px
}

.wa-panel-close {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  line-height: 1;
  transition: color 0.2s;
  background: transparent;
  border: none;
  cursor: pointer
}

.wa-panel-close:hover {
  color: #fff
}

.wa-panel-body {
  background: #ECE5DD;
  padding: 1.25rem;
  flex: 1
}

.wa-message-bubble {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 0.85rem 1rem;
  max-width: 90%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative
}

.wa-message-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent
}

.wa-message-bubble p {
  font-size: 0.88rem;
  color: #303030;
  line-height: 1.5
}

.wa-message-time {
  font-size: 0.7rem;
  color: #999;
  text-align: right;
  margin-top: 0.4rem
}

.wa-panel-footer {
  background: #F0F0F0;
  padding: 0.75rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-end
}

.wa-textarea {
  flex: 1;
  background: #fff;
  border: none;
  border-radius: 24px;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  color: #333;
  resize: none;
  outline: none;
  max-height: 120px;
  line-height: 1.5;
  font-family: var(--font-body)
}

.wa-send-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s
}

.wa-send-btn:hover {
  background: #1DA851
}

.wa-send-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff
}

.wa-privacy {
  font-size: 0.7rem;
  color: #888;
  text-align: center;
  padding: 0.5rem 0.75rem;
  background: #F0F0F0;
  border-top: 1px solid #e0e0e0
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--bdr);
  padding-top: 4rem;
  padding-bottom: 2rem
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem
}

.footer-brand img {
  height: 48px;
  width: auto;
  border-radius: 15px;
  margin-bottom: 1.25rem
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 280px
}

.footer-tagline {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem
}

.footer-socials {
  display: flex;
  gap: 0.75rem
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--silver)
}

.footer-social:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff
}

.footer-social svg {
  width: 18px;
  height: 18px
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.25rem
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-3);
  transition: color 0.2s
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.85rem
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.85rem;
  color: var(--text-3)
}

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

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

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-3)
}

.footer-parent {
  font-size: 0.78rem;
  color: var(--silver)
}

.footer-parent a {
  color: var(--accent);
  transition: color 0.2s
}

.footer-parent a:hover {
  color: #fff
}

.footer-legal {
  display: flex;
  gap: 1.5rem
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-3);
  transition: color 0.2s
}

.footer-legal a:hover {
  color: #fff
}

/* ─── PAGE HEROES (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
  padding: 9rem 0 5rem;
  border-bottom: 1px solid var(--bdr);
  position: relative;
  overflow: hidden
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--bdr) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black, transparent)
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px
}

.page-hero .label-caps {
  margin-bottom: 1rem
}

.page-hero h1 {
  margin-bottom: 1rem
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-3);
  max-width: 580px;
  line-height: 1.7
}

/* ─── ABOUT PAGE ─────────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem
}

.value-icon svg {
  width: 24px;
  height: 24px;
  color: #fff
}

.value-card h3 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.5rem
}

.value-card p {
  font-size: 0.83rem;
  color: var(--text-3);
  line-height: 1.6
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease)
}

.team-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 107, 230, 0.3)
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--bg-2), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2)
}

.team-info {
  padding: 1.25rem
}

.team-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem
}

.team-role {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem
}

.team-bio {
  font-size: 0.83rem;
  color: var(--text-3);
  line-height: 1.6
}

/* ─── SERVICES PAGE ──────────────────────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding-block: 3rem
}

.service-detail+.service-detail {
  border-top: 1px solid var(--bdr)
}

.service-detail.reverse {
  direction: rtl
}

.service-detail.reverse>* {
  direction: ltr
}

.service-detail-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(46, 107, 230, 0.12);
  border: 1px solid rgba(46, 107, 230, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem
}

.service-detail-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent)
}

.service-detail h2 {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 1rem
}

.service-detail p {
  font-size: 0.95rem;
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: 1.5rem
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem
}

.service-list li {
  font-size: 0.9rem;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem
}

.service-list li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 700
}

.service-visual {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.service-feature-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 10px;
  transition: background 0.2s
}

.service-feature-row:hover {
  background: rgba(46, 107, 230, 0.08)
}

.service-feature-row-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(46, 107, 230, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.service-feature-row-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent)
}

.service-feature-row h4 {
  font-size: 0.88rem;
  color: #fff;
  font-weight: 600
}

.service-feature-row p {
  font-size: 0.8rem;
  color: var(--text-3)
}

/* ─── SCROLL REVEAL ANIMATION ────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease)
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0)
}

/* ─── ENTRY ANIMATIONS ───────────────────────────────────────── */
.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) forwards
}

.delay-1 {
  animation-delay: 0.12s
}

.delay-2 {
  animation-delay: 0.24s
}

.delay-3 {
  animation-delay: 0.36s
}

.delay-4 {
  animation-delay: 0.5s
}

/* ─── @KEYFRAMES ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

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

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4)
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.12)
  }
}

@keyframes waFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97)
  }

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

@keyframes pulse-dot {

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

  50% {
    opacity: 0.6;
    transform: scale(1.3)
  }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media(max-width:1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .hero-card-wrap {
    max-width: 480px
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .tier-grid {
    grid-template-columns: 1fr 1fr
  }

  .tier-card:last-child {
    grid-column: span 2
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .story-grid {
    grid-template-columns: 1fr
  }

  .vertical-inner {
    grid-template-columns: 1fr
  }

  .coverage-layout {
    grid-template-columns: 1fr
  }

  .service-detail {
    grid-template-columns: 1fr
  }

  .service-detail.reverse {
    direction: ltr
  }

  .nav-parent {
    display: none
  }
}

@media(max-width:768px) {
  .section {
    padding-block: 3.5rem
  }

  .grid-3 {
    grid-template-columns: 1fr
  }

  .grid-2 {
    grid-template-columns: 1fr
  }

  .tier-grid {
    grid-template-columns: 1fr
  }

  .tier-card:last-child {
    grid-column: auto
  }

  /* Why-card grid override — inline style uses repeat(3,1fr), this forces stacking */
  .why-grid-mobile {
    grid-template-columns: 1fr !important
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }

  .process-steps::before {
    display: none
  }

  .hero-stats {
    gap: 1.5rem
  }

  .secondary-cta-inner {
    flex-direction: column;
    text-align: center
  }

  .cta-banner-btns {
    flex-direction: column;
    align-items: center
  }

  .nav-links {
    display: none
  }

  .hamburger {
    display: flex;
    margin-left: auto
  }

  .nav-links+.nav-right {
    gap: 0.5rem
  }

  .nav-cta {
    display: none
  }

  .nav-right {
    margin-left: auto
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .values-grid {
    grid-template-columns: 1fr 1fr
  }

  .coverage-layout {
    grid-template-columns: 1fr
  }
}

@media(max-width:480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem
  }

  .process-steps {
    grid-template-columns: 1fr
  }

  .values-grid {
    grid-template-columns: 1fr
  }

  .map-area {
    padding-bottom: 90%
  }

  .checker-input-wrap {
    flex-direction: column
  }

  .wa-chat-panel {
    width: calc(100vw - 2rem)
  }

  .trust-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem
  }
}