/* ══════════════════════════════════════════════════
   Trusted Designs — main.css
   ══════════════════════════════════════════════════ */

/* ── Custom Properties ───────────────────────────── */
:root {
  --blue:        #1E2A78;
  --blue-dark:   #141c58;
  --blue-light:  #2E3D9E;
  --red:         #E63946;
  --red-dark:    #c8303c;
  --surface:     #F7F8FC;
  --white:       #FFFFFF;
  --text:        #1A1A2E;
  --text-muted:  #64748B;
  --text-light:  #F4F4F4;

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-section: clamp(5rem, 10vw, 7.5rem);

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --shadow-sm: 0 1px 4px rgba(30,42,120,.07);
  --shadow-md: 0 4px 20px rgba(30,42,120,.10);
  --shadow-lg: 0 16px 48px rgba(30,42,120,.14);
  --shadow-xl: 0 32px 80px rgba(30,42,120,.18);

  --ease:        cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --nav-h:       80px;
}

/* ── Reset ───────────────────────────────────────── */
*, *::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.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ──────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-3);
}

/* ── Utilities ───────────────────────────────────── */
.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}
.section { padding-block: var(--space-section); }
.text-center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.85em 2em;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.3s var(--ease),
              color 0.3s var(--ease),
              transform 0.2s var(--ease),
              box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
  z-index: -1;
  border-radius: inherit;
}
.btn:hover::after { transform: translateX(0); }
.btn:hover { color: var(--white); box-shadow: var(--shadow-md); }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--blue);
  color: var(--white);
}
.btn--hero {
  background: var(--white);
  color: var(--blue);
  font-size: 1rem;
  padding: 1em 2.2em;
}
.btn--hero:hover { color: var(--white); }
.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn--outline::after { background: var(--blue); }
.btn--outline:hover { color: var(--white); border-color: var(--blue); }
.btn--nav {
  background: var(--blue);
  color: var(--white);
  padding: 0.6em 1.6em;
  font-size: 0.85rem;
}
.btn__arrow { transition: transform 0.3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ── Progress Bar ────────────────────────────────── */
#progressBar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 9999;
  transition: transform 0.1s linear;
}

/* ══════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease),
              box-shadow 0.4s var(--ease),
              backdrop-filter 0.4s var(--ease);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(30,42,120,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.4s var(--ease);
}
.site-nav.scrolled .nav-logo img { filter: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link.active::after,
.nav-link:hover::after { transform: scaleX(1); }

.site-nav.scrolled .nav-link { color: var(--text-muted); }
.site-nav.scrolled .nav-link::after { background: var(--blue); }
.site-nav.scrolled .nav-link:hover,
.site-nav.scrolled .nav-link.active { color: var(--blue); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.site-nav.scrolled .nav-hamburger span { background: var(--text); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--blue-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }
.nav-overlay__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--white);
  font-size: 1.5rem;
  padding: 0.5rem;
  line-height: 1;
}
.nav-overlay__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
}
.nav-overlay__link {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.nav-overlay__link:hover { color: var(--red); }
.nav-overlay__cta { margin-top: var(--space-4); }

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-dark);
}

/* ── Background layers ───────────────────────────── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,18,65,.97) 0%,
    rgba(24,34,96,.90) 45%,
    rgba(8,14,50,.96) 100%
  );
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 10%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 10%, transparent 100%);
}

/* ── Blobs ───────────────────────────────────────── */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: blobFloat 14s ease-in-out infinite;
}
.hero__blob--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(30,42,120,.55) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation-delay: 0s;
}
.hero__blob--2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(230,57,70,.20) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  animation-delay: -7s;
}

/* ── Location pill ───────────────────────────────── */
.hero__location {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.45em;
  padding: 0.4em 1.05em;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-full);
  color: rgba(255,255,255,.55);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
  margin-bottom: var(--space-6);
}
.hero__location svg { color: var(--red); flex-shrink: 0; }

/* ── Carousel wrapper ────────────────────────────── */
.hero__carousel {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__slides {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

/* ── Two-column slide layout ─────────────────────── */
.hero__slide-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: var(--space-20);
}
.hero__slide-content { max-width: 680px; }

/* Eyebrow */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.50);
  margin-bottom: var(--space-5);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease) 0.1s, transform 0.5s var(--ease) 0.1s;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px rgba(230,57,70,.7);
  flex-shrink: 0;
  animation: pulse-ring 2.5s ease-out infinite;
}
.hero__slide.active .hero__eyebrow { opacity: 1; transform: none; }

/* Headline */
.hero__headline {
  font-family: 'Montserrat', var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: var(--space-6);
  min-height: 2em;
}

/* Subhead */
.hero__subhead {
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.72;
  color: rgba(255,255,255,.60);
  max-width: 500px;
  margin-bottom: var(--space-8);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease) 0.5s, transform 0.6s var(--ease) 0.5s;
}
.hero__slide.active .hero__subhead { opacity: 1; transform: none; }

/* Actions */
.hero__slide-actions {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease) 0.7s, transform 0.6s var(--ease) 0.7s;
}
.hero__slide.active .hero__slide-actions { opacity: 1; transform: none; }
.hero__trust {
  font-family: var(--font-display);
  font-size: 0.73rem;
  color: rgba(255,255,255,.35);
  letter-spacing: 0.04em;
}
.hero__phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.hero__phone-link svg { color: var(--red); flex-shrink: 0; }
.hero__phone-link:hover { color: var(--white); }

/* Phone CTA for PHP page sections */
.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.cta-phone-link svg { color: var(--red); flex-shrink: 0; }
.cta-phone-link:hover { color: var(--red); }
.cta-phone-link--light { color: rgba(255,255,255,.80); }
.cta-phone-link--light:hover { color: var(--white); }

/* CTA */
.btn--hero {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.9em 2em;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--r-full);
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(230,57,70,.40);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.25s var(--ease);
  isolation: isolate;
}
.btn--hero:hover {
  background: var(--red-dark, #c0303c);
  box-shadow: 0 14px 38px rgba(230,57,70,.58);
  transform: translateY(-2px);
  color: var(--white);
}

/* ── Stat panel card ─────────────────────────────── */
.hero__slide-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(20px) scale(0.96);
  transition: opacity 0.9s var(--ease) 0.35s, transform 0.9s var(--ease) 0.35s;
}
.hero__slide.active .hero__slide-panel { opacity: 1; transform: none; }

.hero__panel-card {
  position: relative;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  text-align: center;
  padding: var(--space-8);
  box-shadow: 0 0 70px rgba(230,57,70,.10),
              inset 0 0 50px rgba(255,255,255,.02);
}
.hero__panel-ring {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.07);
}
.hero__panel-ring::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.03);
}
.hero__panel-stat {
  font-family: 'Montserrat', var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero__panel-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,.60);
  line-height: 1.45;
  max-width: 140px;
}
.hero__panel-note {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: var(--space-1);
}

/* ── Footer bar (counter + tracks + scroll) ──────── */
.hero__foot {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-5) 0 var(--space-7);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-8);
  z-index: 4;
  padding-inline: max(calc((100vw - 1280px) / 2), clamp(1.25rem, 4vw, 3rem));
}

/* Counter */
.hero__counter {
  display: flex;
  align-items: baseline;
  gap: 0.35em;
  font-family: var(--font-display);
}
.hero__counter-cur {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  transition: opacity 0.3s var(--ease);
}
.hero__counter-sep {
  font-size: 0.7rem;
  color: rgba(255,255,255,.30);
  letter-spacing: 0.1em;
}

/* Progress tracks */
.hero__tracks {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}
.hero__track {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,.16);
  border-radius: var(--r-full);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  position: relative;
  transition: height 0.2s var(--ease);
}
.hero__track:hover { height: 4px; }
.hero__track-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--red) 0%, #ff6565 100%);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: var(--r-full);
}
.hero__track.active .hero__track-fill {
  animation: trackFill 6s linear forwards;
}
@keyframes trackFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Scroll indicator */
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.hero__scroll span {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.40);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: rgba(255,255,255,.18);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--red);
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ── Hero responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero__slide-inner { grid-template-columns: 1fr; gap: 0; }
  .hero__slide-panel { display: none; }
  .hero__foot { gap: var(--space-4); }
}
@media (max-width: 768px) {
  .hero__slide-inner { padding-top: calc(var(--nav-h) + var(--space-10)); }
  .hero__headline { font-size: clamp(2.2rem, 9vw, 3.2rem); min-height: 2.8em; }
  .hero__scroll { display: none; }
  .hero__foot { grid-template-columns: auto 1fr; }
}

/* ══════════════════════════════════════════════════
   TICKER STRIP
   ══════════════════════════════════════════════════ */
.ticker-strip {
  background: var(--blue);
  padding-block: var(--space-3);
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}
.ticker-track {
  display: inline-flex;
  gap: var(--space-6);
  animation: ticker 28s linear infinite;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.ticker-dot {
  color: var(--red);
  font-size: 1rem;
  line-height: 1;
}

/* ══════════════════════════════════════════════════
   SERVICES PREVIEW
   ══════════════════════════════════════════════════ */
.services-preview {
  background: var(--white);
}
.section-header {
  margin-bottom: var(--space-12);
}
.section-header h2 { color: var(--blue); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}
.service-card {
  background: var(--white);
  border: 1.5px solid #E8ECF8;
  border-radius: var(--r-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform 0.35s var(--ease-spring),
              box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--blue);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.service-card:hover .service-card__icon {
  background: var(--red);
  color: var(--white);
}
.service-card h3 {
  font-size: 1.1rem;
  color: var(--text);
}
.service-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.service-card__link {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.3em;
  margin-top: var(--space-2);
  transition: color 0.2s, gap 0.2s;
}
.service-card:hover .service-card__link { color: var(--red); gap: 0.5em; }

/* Underline accent on card bottom */
.service-card::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: var(--r-full);
  margin-top: var(--space-2);
  transition: width 0.4s var(--ease);
}
.service-card:hover::after { width: 100%; }

/* ══════════════════════════════════════════════════
   PITCH SECTION — A to Z
   ══════════════════════════════════════════════════ */
.pitch {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.pitch::before {
  content: '';
  position: absolute;
  top: -40px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.04;
  pointer-events: none;
}
.pitch__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.pitch__heading {
  color: var(--blue);
  margin-bottom: var(--space-6);
  line-height: 1.15;
}
.pitch__heading em {
  font-style: normal;
  color: var(--red);
  position: relative;
}
.pitch__body {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
}
.pitch__images {
  position: relative;
  height: 520px;
}
.pitch__img {
  position: absolute;
  width: 75%;
  border-radius: var(--r-xl);
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}
.pitch__img--top {
  top: 0; right: 0;
  height: 60%;
}
.pitch__img--bottom {
  bottom: 0; left: 0;
  height: 55%;
  border: 5px solid var(--white);
}

/* ══════════════════════════════════════════════════
   WHO WE ARE TEASER  (redesigned)
   ══════════════════════════════════════════════════ */
.about-teaser {
  position: relative;
  background: var(--blue-dark);
  padding-block: var(--space-section);
  overflow: hidden;
}

/* Ambient orbs */
.about-teaser__bg { position: absolute; inset: 0; pointer-events: none; }
.about-teaser__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
}
.about-teaser__orb--1 {
  width: 500px; height: 500px;
  background: var(--blue-light);
  top: -120px; left: -80px;
  animation: blobFloat 14s ease-in-out infinite;
}
.about-teaser__orb--2 {
  width: 360px; height: 360px;
  background: var(--red);
  bottom: -80px; right: 5%;
  animation: blobFloat 11s ease-in-out infinite reverse;
}

/* Two-column grid */
.about-teaser__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

/* Left — content */
.about-teaser__content .eyebrow { color: var(--red); }
.about-teaser__content h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-block: var(--space-3) var(--space-6);
  line-height: 1.15;
}
.about-teaser__content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.78;
  margin-bottom: var(--space-8);
  max-width: 460px;
}
.about-teaser__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Red solid button variant */
.btn--red {
  background: var(--red);
  color: var(--white);
}
.btn--red::after { background: var(--red-dark); }
.btn--red:hover  { color: var(--white); }

/* Right — feature grid */
.about-teaser__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.about-feature {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  backdrop-filter: blur(8px);
  transition: background 0.3s var(--ease),
              border-color 0.3s var(--ease),
              transform 0.35s var(--ease-spring);
}
.about-feature:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-5px);
}
.about-feature__icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: rgba(230,57,70,0.18);
  display: grid;
  place-items: center;
  color: var(--red);
  transition: background 0.3s, color 0.3s;
}
.about-feature:hover .about-feature__icon {
  background: var(--red);
  color: var(--white);
}
.about-feature h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.about-feature p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .about-teaser__container {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .about-teaser__content p { max-width: 100%; }
}
@media (max-width: 480px) {
  .about-teaser__features { grid-template-columns: 1fr; }
  .about-teaser__actions  { flex-direction: column; }
  .about-teaser__actions .btn { justify-content: center; }
}

/* ══════════════════════════════════════════════════
   MISSION STRIP
   ══════════════════════════════════════════════════ */
.mission-strip {
  background: var(--blue);
  padding-block: var(--space-section);
  position: relative;
  overflow: hidden;
}
.mission-strip::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse at 60% 50%,
    rgba(230,57,70,.18) 0%,
    transparent 65%);
  pointer-events: none;
}
.mission-strip__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.mission-strip__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-4);
}
.mission-strip__statement {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 820px;
  margin-inline: auto;
}
.mission-strip__statement span { color: var(--red); }
.mission-strip__cta {
  margin-top: var(--space-10);
  background: var(--white);
  color: var(--blue);
}
.mission-strip__cta::after { background: var(--red); }

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.site-footer {
  background: var(--blue);
  color: var(--text-light);
  padding-top: var(--space-16);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo img {
  display: block;
  max-width: 155px;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  margin-bottom: var(--space-4);
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-4);
}
.footer-mission {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: var(--space-6);
}
.footer-socials { display: flex; gap: var(--space-3); }
.footer-social {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  transition: background 0.25s, color 0.25s;
}
.footer-social:hover { background: var(--red); color: var(--white); }

.footer-col__heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-6);
}
.footer-nav { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-nav a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: var(--space-4); }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.footer-contact-icon { flex-shrink: 0; margin-top: 2px; color: var(--red); }
.footer-contact-list a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--white); }

.footer-bar {
  padding-block: var(--space-4);
  background: rgba(0,0,0,0.15);
}
.footer-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-bar__inner a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-bar__inner a:hover { color: var(--white); }

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pitch__grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .pitch__images { height: 380px; }
}

@media (max-width: 768px) {
  .nav-links, .btn--nav { display: none; }
  .nav-hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .pitch__images { height: 300px; }
  .pitch__img--top  { width: 70%; height: 55%; }
  .pitch__img--bottom { width: 65%; height: 50%; }

  .footer-inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bar__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .pitch__images { height: 240px; }
}

/* ══════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════ */

/* ── About Hero ──────────────────────────────────── */
.about-hero {
  position: relative;
  height: clamp(500px, 68vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
}
.about-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14,20,60,.92) 0%,
    rgba(20,28,88,.78) 45%,
    rgba(30,42,120,.40) 100%
  );
}
.about-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 5rem;
}
.about-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: rgba(230,57,70,.18);
  border: 1px solid rgba(230,57,70,.35);
  color: #ff8a92;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4em 0.9em;
  border-radius: var(--r-full);
  margin-bottom: var(--space-5);
}
.about-hero__tag svg { fill: #ff8a92; }
.about-hero__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--space-6);
}
.about-hero__headline em {
  font-style: normal;
  color: var(--red);
  position: relative;
}
.about-hero__meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.about-hero__brand {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}
.about-hero__sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.about-hero__address {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* Wave bottom */
.about-hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3;
  line-height: 0;
}
.about-hero__wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ── Cards ───────────────────────────────────────── */
.about-cards {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding-block: var(--space-section);
  background: var(--white);
}
.about-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}
.about-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid #E8ECF8;
  border-radius: var(--r-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring),
              box-shadow 0.35s var(--ease),
              border-color 0.3s;
}
.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
/* Large muted number in background */
.about-card__num {
  position: absolute;
  top: -10px; right: 12px;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 900;
  color: #E8ECF8;
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
  z-index: 0;
}
.about-card:hover .about-card__num { color: #dce3f7; }
.about-card--featured .about-card__num { color: rgba(255,255,255,0.08); }

.about-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  position: relative;
  z-index: 1;
}
.about-card__icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}
.about-card:not(.about-card--featured):hover .about-card__icon {
  background: var(--red);
  color: var(--white);
}
.about-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.01em;
}
.about-card p {
  font-size: 0.91rem;
  line-height: 1.72;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}
/* Top accent bar */
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.about-card:hover::before { transform: scaleX(1); }

/* Featured card */
.about-card--featured {
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-light) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.about-card--featured::before {
  background: linear-gradient(90deg, var(--red), #ff6b6b);
  transform: scaleX(1);
}
.about-card--featured .about-card__title { color: var(--white); }
.about-card--featured p { color: rgba(255,255,255,0.78); }
.about-card--featured .about-card__icon {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.about-card--featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(30,42,120,.30);
}
.about-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  margin-top: var(--space-2);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  transition: color 0.2s, gap 0.2s;
  position: relative;
  z-index: 1;
}
.about-card__cta:hover { color: var(--white); gap: 0.5em; }

/* ── Values Strip ─────────────────────────────────── */
.values-strip { background: var(--surface); }
.values-strip__header { margin-bottom: var(--space-12); }
.values-strip__header h2 { color: var(--blue); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.value-item {
  padding: var(--space-6) var(--space-4);
  border-top: 3px solid #E8ECF8;
  transition: border-color 0.3s;
}
.value-item:hover { border-color: var(--red); }
.value-item__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: #E8ECF8;
  line-height: 1;
  margin-bottom: var(--space-4);
  transition: color 0.3s;
}
.value-item:hover .value-item__number { color: var(--red); opacity: 0.25; }
.value-item h3 {
  font-size: 1.05rem;
  color: var(--blue);
  margin-bottom: var(--space-3);
}
.value-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── About CTA Band ──────────────────────────────── */
.about-cta-band {
  background: var(--blue);
  padding-block: var(--space-section);
  position: relative;
  overflow: hidden;
}
.about-cta-band::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse at 30% 50%,
    rgba(230,57,70,.15) 0%, transparent 60%);
  pointer-events: none;
}
.about-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-10);
  position: relative;
  z-index: 1;
}
.about-cta-band__text h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-top: var(--space-2);
}
.about-cta-band__actions {
  display: flex;
  gap: var(--space-4);
  flex-shrink: 0;
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn--outline-white::after { background: var(--red); }
.btn--outline-white:hover {
  color: var(--white);
  border-color: var(--red);
}

/* ── About responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .about-cards__grid { grid-template-columns: 1fr 1fr; }
  .about-card__num  { font-size: 5rem; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .about-cta-band__inner { flex-direction: column; text-align: center; }
  .about-cta-band__text h2 br { display: none; }
}
@media (max-width: 768px) {
  .about-hero__headline { font-size: clamp(2.8rem, 10vw, 4.5rem); }
  .about-hero__wave svg { height: 48px; }
  .about-cards__grid { grid-template-columns: 1fr; }
  .about-cta-band__actions { flex-direction: column; width: 100%; }
  .about-cta-band__actions .btn { justify-content: center; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────── */
.svc-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: var(--blue-dark);
  overflow: hidden;
  padding-top: var(--nav-h);
}
.svc-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.svc-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.svc-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blobFloat 12s ease-in-out infinite;
}
.svc-hero__orb--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(30,42,120,.55) 0%, transparent 70%);
  top: -160px; left: -120px;
  animation-delay: 0s;
}
.svc-hero__orb--2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(230,57,70,.30) 0%, transparent 70%);
  bottom: -100px; right: -60px;
  animation-delay: -5s;
}
.svc-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-12);
  padding-block: var(--space-section);
}
.svc-hero__content .eyebrow { color: rgba(255,255,255,.55); }
.svc-hero__content h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.08;
  margin-block: var(--space-4) var(--space-6);
}
.svc-hero__content h1 em {
  font-style: normal;
  color: var(--red);
}
.svc-hero__content p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.68);
  max-width: 560px;
  line-height: 1.65;
}
/* Quick-nav pills */
.svc-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.svc-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.55em 1.25em;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-full);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
  backdrop-filter: blur(8px);
}
.svc-pill:hover {
  background: rgba(230,57,70,.22);
  border-color: var(--red);
  transform: translateY(-2px);
}
.svc-pill__num {
  font-size: 0.72em;
  opacity: 0.55;
  font-weight: 700;
}

/* ── Service Section ─────────────────────────────── */
.svc-section {
  padding-block: var(--space-section);
  background: var(--white);
}
.svc-section--dark {
  background: var(--blue-dark);
}
.svc-section--light {
  background: var(--surface);
}
.svc-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.svc-section__grid--rev .svc-visual { order: 2; }
.svc-section__grid--rev .svc-content { order: 1; }

/* ── Image Frame ─────────────────────────────────── */
.svc-visual { position: relative; }
.svc-img-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 6 / 5;
}
.svc-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.svc-img-frame:hover img { transform: scale(1.04); }
.svc-img-frame--blue::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--r-xl) + 4px);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  opacity: 0.12;
  z-index: -1;
}
.svc-img-frame--red::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--r-xl) + 4px);
  background: linear-gradient(135deg, var(--red) 0%, #ff6b6b 100%);
  opacity: 0.10;
  z-index: -1;
}
.svc-img-frame__tag {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: rgba(255,255,255,.92);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.45em 1em;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(6px);
}

/* ── Service Content ─────────────────────────────── */
.svc-content { position: relative; }
.svc-content__num {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(30,42,120,.06);
  position: absolute;
  top: -1.2rem;
  left: -0.5rem;
  pointer-events: none;
  user-select: none;
}
.svc-section--dark .svc-content__num { color: rgba(255,255,255,.05); }
.svc-content h2 {
  color: var(--blue);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-block: var(--space-3) var(--space-5);
  line-height: 1.15;
}
.svc-section--dark .svc-content h2 { color: var(--white); }
.svc-content__lead {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  font-weight: 600;
  color: var(--blue);
  line-height: 1.55;
  margin-bottom: var(--space-4);
}
.svc-section--dark .svc-content__lead { color: rgba(255,255,255,.85); }
.svc-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-6);
  max-width: 500px;
}
.svc-section--dark .svc-content p { color: rgba(255,255,255,.62); }

/* ── Service CTA row ─────────────────────────────── */
.svc-cta-row {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

/* ── Service Tags ────────────────────────────────── */
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}
.svc-tag {
  display: inline-block;
  background: rgba(30,42,120,.06);
  border: 1px solid rgba(30,42,120,.12);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.35em 0.9em;
  border-radius: var(--r-full);
}
.svc-tags--light .svc-tag {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
}

/* ── Stats Strip ─────────────────────────────────── */
.svc-stats {
  background: var(--blue);
  padding-block: var(--space-12);
}
.svc-stats__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--space-6);
  align-items: center;
}
.svc-stats__divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,.18);
  align-self: center;
}
.svc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  padding-inline: var(--space-4);
}
.svc-stat__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  display: grid;
  place-items: center;
  color: var(--white);
  margin-bottom: var(--space-2);
}
.svc-stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.svc-stat__num span {
  font-size: 0.55em;
  color: var(--red);
  vertical-align: super;
  font-weight: 700;
}
.svc-stat__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  max-width: 180px;
}

/* ── Process ─────────────────────────────────────── */
.svc-process {
  padding-block: var(--space-section);
  background: var(--white);
}
.svc-process__header {
  margin-bottom: var(--space-16);
}
.svc-process__header h2 { color: var(--blue); }
.svc-process__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.svc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  padding: var(--space-8) var(--space-4);
  border-radius: var(--r-xl);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.svc-step:hover {
  background: rgba(30,42,120,.03);
  transform: translateY(-4px);
}
.svc-step__num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--red);
  opacity: 0.7;
}
.svc-step__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30,42,120,.08), rgba(30,42,120,.04));
  border: 1.5px solid rgba(30,42,120,.12);
  display: grid;
  place-items: center;
  color: var(--blue);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.svc-step:hover .svc-step__icon {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.svc-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0;
}
.svc-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.svc-step__connector {
  align-self: center;
  margin-top: -1rem;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(30,42,120,.2), rgba(230,57,70,.3));
  border-radius: 2px;
  position: relative;
}
.svc-step__connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid rgba(230,57,70,.4);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* ── Guarantee ───────────────────────────────────── */
.svc-guarantee {
  position: relative;
  background: var(--blue-dark);
  padding-block: var(--space-section);
  overflow: hidden;
}
.svc-guarantee__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.svc-guarantee__orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,.18) 0%, transparent 65%);
  filter: blur(60px);
  top: -200px; left: -100px;
  animation: blobFloat 14s ease-in-out infinite;
}
.svc-guarantee__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--space-10);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-2xl);
  padding: var(--space-12) var(--space-12);
  backdrop-filter: blur(12px);
}
.svc-guarantee__badge {
  flex-shrink: 0;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  border: 2px solid rgba(255,255,255,.20);
  display: grid;
  place-items: center;
  color: var(--white);
}
.svc-guarantee__text { flex: 1; }
.svc-guarantee__text h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}
.svc-guarantee__text h2 span {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.svc-guarantee__text p {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  line-height: 1.65;
}
.svc-guarantee__actions { flex-shrink: 0; }

/* ── Services responsive ─────────────────────────── */
@media (max-width: 1100px) {
  .svc-section__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .svc-section__grid--rev .svc-visual { order: 0; }
  .svc-section__grid--rev .svc-content { order: 0; }
  .svc-process__steps {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
  .svc-step__connector { display: none; }
  .svc-guarantee__inner { flex-direction: column; text-align: center; }
  .svc-guarantee__text p { margin-inline: auto; }
}
@media (max-width: 768px) {
  .svc-hero { min-height: 60vh; }
  .svc-stats__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .svc-stats__divider {
    width: 80px;
    height: 1px;
    margin-inline: auto;
  }
  .svc-process__steps { grid-template-columns: 1fr; }
  .svc-guarantee__inner { padding: var(--space-8); }
}
@media (max-width: 480px) {
  .svc-hero__pills { gap: var(--space-2); }
  .svc-pill { font-size: 0.78rem; padding: 0.45em 0.9em; }
  .svc-content__num { font-size: 4rem; }
}

/* ══════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════ */

/* ── Status Banners ──────────────────────────────── */
.form-banner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  position: sticky;
  top: var(--nav-h);
  z-index: 900;
}
.form-banner span { flex: 1; }
.form-banner--success { background: #d1fae5; color: #065f46; }
.form-banner--error   { background: #fee2e2; color: #991b1b; }
.form-banner__close {
  cursor: pointer;
  font-size: 1rem;
  padding: 0 var(--space-2);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.form-banner__close:hover { opacity: 1; }

/* ── Contact Hero / Guarantee ────────────────────── */
.contact-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: var(--blue-dark);
  overflow: hidden;
  padding-top: var(--nav-h);
}
.contact-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 60px 60px;
}
.contact-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blobFloat 12s ease-in-out infinite;
}
.contact-hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,42,120,.6) 0%, transparent 70%);
  top: -160px; right: -80px;
  animation-delay: 0s;
}
.contact-hero__orb--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(230,57,70,.28) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  animation-delay: -6s;
}
.contact-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-6);
  padding-block: var(--space-section);
}
.contact-hero__badge {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  color: var(--white);
  position: relative;
  margin-bottom: var(--space-2);
}
.contact-hero__badge::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.10);
  animation: pulse-ring 3s ease-out infinite;
}
.contact-hero__badge::after {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
  animation: pulse-ring 3s ease-out infinite 0.6s;
}
.contact-hero__inner .eyebrow {
  color: rgba(255,255,255,.5);
  margin: 0;
}
.contact-hero__heading {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 800px;
}
.contact-hero__heading em {
  font-style: normal;
  color: var(--red);
}
.contact-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255,255,255,.65);
  max-width: 580px;
  line-height: 1.7;
  margin: 0;
}
.contact-hero__sub strong {
  color: var(--white);
  font-weight: 700;
}
.contact-hero__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-2);
}
.contact-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.5em 1.1em;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-full);
  color: rgba(255,255,255,.88);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.contact-hero__pill svg { color: var(--red); flex-shrink: 0; }

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  80%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ── Contact Hero Image Band ─────────────────────── */
.contact-hero-img {
  position: relative;
  height: clamp(280px, 36vw, 500px);
  overflow: hidden;
}
.contact-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.contact-hero-img__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,42,120,.35) 0%,
    rgba(30,42,120,.18) 60%,
    rgba(255,255,255,.6) 100%
  );
}

/* ── Contact Block ───────────────────────────────── */
.contact-block { background: var(--white); }
.contact-block__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

/* Left — Info */
.contact-info h2 {
  color: var(--blue);
  margin-block: var(--space-3) var(--space-6);
  line-height: 1.15;
}
.contact-info > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  max-width: 400px;
}
.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.contact-info__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}
.contact-info__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}
.contact-info__list li:hover .contact-info__icon {
  background: var(--red);
  color: var(--white);
}
.contact-info__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2em;
}
.contact-info__value {
  font-size: 0.95rem;
  font-style: normal;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}
a.contact-info__value:hover { color: var(--red); }

/* ── Call CTA card (replaces form) ──────────────── */
.contact-call-cta {
  display: flex;
  align-items: stretch;
}
.contact-call-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-6);
  width: 100%;
  padding: var(--space-10) var(--space-8);
  background: linear-gradient(145deg, rgba(30,42,120,.06) 0%, rgba(230,57,70,.04) 100%);
  border: 1.5px solid rgba(30,42,120,.14);
  border-radius: var(--r-xl);
  box-shadow: 0 8px 40px rgba(30,42,120,.08);
}
.contact-call-cta__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, #2d3ea8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(30,42,120,.35);
  flex-shrink: 0;
}
.contact-call-cta__availability {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 999px;
  padding: 0.4em 1em;
}
.contact-call-cta__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: ctaDotPulse 2s ease-in-out infinite;
}
@keyframes ctaDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
.contact-call-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin: 0;
}
.contact-call-cta__sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 36ch;
  margin: 0;
}
.contact-call-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: 1.05rem;
  padding: 1em 2.2em;
}
.contact-call-cta__note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Contact responsive ──────────────────────────── */
@media (max-width: 900px) {
  .contact-block__grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .contact-info > p    { max-width: 100%; }
}
@media (max-width: 600px) {
  .contact-call-cta__inner { padding: var(--space-8) var(--space-6); }
  .contact-hero { min-height: 60vh; }
  .contact-hero__heading { font-size: clamp(2.4rem, 8vw, 3.6rem); }
  .contact-hero__pills { gap: var(--space-2); }
}
