:root {
  --navy: #0a192f;
  --navy-mid: #0d2137;
  --navy-light: #112240;
  --red: #e61e2a;
  --red-dark: #c41924;
  --white: #ffffff;
  --ink: #0a192f;
  --text: #4a5568;
  --muted: #718096;
  --grey-bg: #f4f4f4;
  --line: #e2e8f0;
  --shadow: 0 4px 20px rgba(10, 25, 47, 0.1);
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1140px, 90%);
  margin: 0 auto;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 18px;
  background: transparent;
}

.header-shell {
  position: relative;
  background: var(--white);
  border-radius: 0 0 26px 26px;
  box-shadow: 0 10px 36px rgba(10, 25, 47, 0.09);
  overflow: hidden;
}

.header-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: min(140px, 14%);
  height: 3px;
  background: var(--red);
  z-index: 2;
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}

.brand-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(240px, 34vw);
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 24px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--ink);
  white-space: nowrap;
  padding-bottom: 8px;
  transition: color 0.2s;
}

.nav-chevron {
  width: 11px;
  height: 11px;
  opacity: 0.55;
  flex-shrink: 0;
}

.nav-links a:hover { color: var(--red); }

.nav-links a.active { color: var(--red); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 22px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-left: 18px;
  border-left: 1px solid #e2e8f0;
  z-index: 2;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(230, 30, 42, 0.28);
  transition: background 0.2s, transform 0.2s;
}

.header-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.header-cta-arrow {
  font-size: 14px;
  line-height: 1;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: var(--navy-light);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

/* ── Shared ── */
.eyebrow {
  text-transform: uppercase;
  color: var(--red);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

section { padding: 80px 0; }

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}

.btn:hover { transform: translateY(-1px); }

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover { background: var(--red-dark); }

.btn-arrow {
  margin-left: 6px;
  font-size: 14px;
  transition: transform 0.2s;
}

.btn:hover .btn-arrow { transform: translateX(3px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
  margin-top: 10px;
}

.btn-navy:hover { background: var(--navy-light); }

/* ── Hero ── */
.hero {
  position: relative;
  padding: 0;
  background: #0b0e14;
  color: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-skyline {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 14, 20, 0.55) 0%, rgba(11, 14, 20, 0.92) 70%, #0b0e14 100%),
    url('https://images.unsplash.com/photo-1517935706615-2717063c2225?w=1600&q=80') center / cover no-repeat;
  opacity: 0.45;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(230, 30, 42, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 15% 60%, rgba(56, 189, 248, 0.06) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(160px, 200px) 1fr;
  gap: 28px;
  align-items: center;
  padding: 48px 0 32px;
  min-height: 480px;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat-card {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 8px;
  padding: 14px 14px 12px;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.12), inset 0 0 20px rgba(56, 189, 248, 0.04);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateX(-20px);
}

.stat-card.is-visible {
  animation: statSlideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.15s; }
.stat-card:nth-child(2) { animation-delay: 0.3s; }
.stat-card:nth-child(3) { animation-delay: 0.45s; }

@keyframes statSlideIn {
  to { opacity: 1; transform: translateX(0); }
}

.stat-card-icon {
  width: 28px;
  height: 28px;
  color: var(--red);
  margin-bottom: 8px;
}

.stat-card-icon svg { width: 100%; height: 100%; }

.stat-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.stat-card .stat-value {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-content h1 span {
  color: var(--red);
  display: block;
}

.lead {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 460px;
  min-height: 3.5em;
}

.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 2px;
  background: rgba(255, 255, 255, 0.85);
  vertical-align: text-bottom;
  animation: typewriterBlink 0.75s step-end infinite;
}

.typewriter-cursor.is-done {
  animation: none;
  opacity: 0;
}

@keyframes typewriterBlink {
  50% { opacity: 0; }
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.na-map-wrap {
  position: relative;
  width: min(100%, 440px);
  border-radius: 12px;
  overflow: visible;
}

.na-map {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.na-map-glow {
  position: absolute;
  inset: -8px;
  border-radius: 14px;
  border: 2px solid rgba(230, 30, 42, 0.55);
  box-shadow:
    0 0 30px rgba(230, 30, 42, 0.45),
    0 0 70px rgba(230, 30, 42, 0.15),
    inset 0 0 40px rgba(230, 30, 42, 0.08);
  pointer-events: none;
  z-index: 2;
  animation: mapGlow 3s ease-in-out infinite;
}

@keyframes mapGlow {
  0%, 100% {
    border-color: rgba(230, 30, 42, 0.45);
    box-shadow: 0 0 30px rgba(230, 30, 42, 0.45), 0 0 70px rgba(230, 30, 42, 0.15);
  }
  50% {
    border-color: rgba(230, 30, 42, 0.75);
    box-shadow: 0 0 40px rgba(230, 30, 42, 0.6), 0 0 90px rgba(230, 30, 42, 0.25);
  }
}

.hero .btn-red,
.hero .btn-outline {
  border-radius: 999px;
  padding: 14px 24px;
}

/* Trust Bar */
.trust-bar {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(10, 25, 47, 0.92) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px 0 40px;
}

.trust-inner {
  text-align: center;
}

.trust-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}

.trust-label::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--red);
  margin: 14px auto 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px 8px;
  max-width: 960px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
  transition: transform 0.25s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
}

.trust-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--red);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-item:hover .trust-icon {
  background: rgba(230, 30, 42, 0.12);
  border-color: rgba(230, 30, 42, 0.45);
  box-shadow: 0 0 20px rgba(230, 30, 42, 0.2);
}

.trust-item span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* Feature Bar */
.feature-bar {
  position: relative;
  z-index: 2;
  background: rgba(10, 25, 47, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.feature-grid article {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  cursor: default;
  opacity: 0;
  transform: translateY(24px);
  transition: background 0.3s ease, transform 0.3s ease;
}

.feature-item.is-visible {
  animation: featureSlideIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.25s; }
.feature-item:nth-child(3) { animation-delay: 0.4s; }
.feature-item:nth-child(4) { animation-delay: 0.55s; }

@keyframes featureSlideIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
}

.feature-item.is-visible:hover {
  transform: translateY(-3px);
}

.feature-grid article:last-child { border-right: none; }

.feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--red);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(230, 30, 42, 0.5));
}

.feature-icon svg { width: 100%; height: 100%; }

.feature-icon--trophy.is-visible svg {
  animation: trophyBounce 2.5s ease-in-out infinite;
}

.feature-icon--target.is-visible svg {
  animation: targetPulse 2.2s ease-in-out infinite;
}

.feature-icon--people.is-visible svg {
  animation: peopleFloat 2.8s ease-in-out infinite;
}

.feature-icon--shield.is-visible svg {
  animation: shieldGlow 2.4s ease-in-out infinite;
}

@keyframes trophyBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(-3deg); }
}

@keyframes targetPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

@keyframes peopleFloat {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

@keyframes shieldGlow {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); }
  50% { filter: drop-shadow(0 0 6px rgba(230, 30, 42, 0.6)); }
}

.feature-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
  transition: color 0.3s ease;
}

.feature-item:hover .feature-text strong {
  color: var(--red);
}

.feature-text small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
  font-weight: 400;
  transition: color 0.3s ease;
}

.feature-item:hover .feature-text small {
  color: rgba(255, 255, 255, 0.85);
}

@media (prefers-reduced-motion: reduce) {
  .feature-item,
  .feature-item.is-visible,
  .stat-card,
  .stat-card.is-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .feature-icon--trophy.is-visible svg,
  .feature-icon--target.is-visible svg,
  .feature-icon--people.is-visible svg,
  .feature-icon--shield.is-visible svg {
    animation: none;
  }

  .canada-flag {
    animation: none;
  }

  .na-map-glow {
    animation: none;
  }

  .feature-item:hover {
    transform: none;
  }
}

/* ── About ── */
.about {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.about-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, #d1d5db 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  opacity: 0.55;
}

.about-deco--dots-tl {
  top: 48px;
  left: max(24px, calc((100vw - 1140px) / 2 + 24px));
  width: 110px;
  height: 110px;
}

.about-deco--dots-br {
  bottom: 40px;
  right: max(24px, calc((100vw - 1140px) / 2 + 24px));
  width: 90px;
  height: 90px;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.about-eyebrow-line {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.about-eyebrow span:last-child {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.about-copy h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--navy);
}

.about-copy h2 span { color: var(--red); }

.about-copy > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.8;
  max-width: 520px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 26px;
}

.about-features article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #e8ecf0;
  display: grid;
  place-items: center;
  color: var(--red);
  background: var(--white);
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 20px;
  height: 20px;
}

.about-features strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.about-features small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.about-btn {
  padding: 14px 26px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(230, 30, 42, 0.28);
}

.about-visual {
  position: relative;
}

.about-image-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(10, 25, 47, 0.12);
}

.about-image-wrap img,
.about-image-wrap video,
.about-image-wrap .about-video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 72px;
  pointer-events: none;
  z-index: 2;
}

.about-wave-navy {
  fill: var(--navy);
}

.about-wave-red {
  stroke: var(--red);
}

.about-float-card {
  position: absolute;
  bottom: 28px;
  right: -12px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--navy);
  padding: 16px 20px;
  border-radius: 12px;
  max-width: 260px;
  box-shadow: 0 10px 32px rgba(10, 25, 47, 0.14);
  border: 1px solid #eef2f6;
  z-index: 3;
}

.float-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--red);
}

.float-icon svg {
  width: 100%;
  height: 100%;
}

.about-float-card strong {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--navy);
}

/* ── Services ── */
.services {
  position: relative;
  background: #f5f6f8;
  overflow: hidden;
  padding: 72px 0 64px;
}

.services-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.services-bg-flag {
  position: absolute;
  width: min(420px, 36vw);
  height: auto;
  opacity: 0.14;
  object-fit: contain;
}

.services-bg-flag--ca {
  top: 8%;
  left: -2%;
}

.services-bg-flag--us {
  top: 6%;
  right: -2%;
}

.services-bg-skyline {
  position: absolute;
  bottom: 0;
  width: min(480px, 42vw);
  height: auto;
  opacity: 0.1;
  object-fit: contain;
}

.services-bg-skyline--toronto {
  left: 0;
}

.services-bg-skyline--nyc {
  right: 0;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-head {
  text-align: center;
  margin-bottom: 48px;
}

.services-eyebrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.services-head-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.services-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.services-eyebrow span:not(.eyebrow-line) {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.eyebrow-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--red);
}

.services-head h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.services-head h2 span {
  color: var(--red);
}

.services-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

.text-ca { color: var(--red); font-weight: 700; }
.text-us { color: #1e3a8a; font-weight: 700; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 14px;
  padding: 26px 24px 34px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(10, 25, 47, 0.05);
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
  min-height: 210px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(10, 25, 47, 0.1);
}

.service-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  color: rgba(148, 163, 184, 0.35);
  pointer-events: none;
}

.service-card .card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 0 14px;
}

.card-icon--red {
  background: rgba(230, 30, 42, 0.1);
  color: var(--red);
}

.card-icon--blue {
  background: rgba(30, 58, 138, 0.1);
  color: #1e3a8a;
}

.service-card .card-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
  padding-right: 40px;
}

.service-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  max-width: 92%;
}

.service-flag-corner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 88px;
  height: 88px;
  pointer-events: none;
  z-index: 2;
}

.flag-flourish {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72px;
  height: 72px;
  border-radius: 0 0 0 14px;
  display: block;
}

.service-flag-corner--ca .flag-flourish {
  background: radial-gradient(circle at 0% 100%, rgba(230, 30, 42, 0.28) 0%, rgba(230, 30, 42, 0.12) 48%, transparent 68%);
  box-shadow: inset -2px -2px 0 rgba(230, 30, 42, 0.15);
}

.service-flag-corner--ca .flag-flourish::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(230, 30, 42, 0.22);
}

.service-flag-corner--us .flag-flourish {
  background: radial-gradient(circle at 0% 100%, rgba(30, 58, 138, 0.28) 0%, rgba(30, 58, 138, 0.12) 48%, transparent 68%);
  box-shadow: inset -2px -2px 0 rgba(30, 58, 138, 0.15);
}

.service-flag-corner--us .flag-flourish::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(30, 58, 138, 0.22);
}

.flag-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 10px rgba(10, 25, 47, 0.18);
  z-index: 3;
  display: block;
  object-fit: cover;
  object-position: center;
}

.service-dots {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 52px;
  height: 52px;
  opacity: 0.3;
  background-image: radial-gradient(circle, #cbd5e1 1.5px, transparent 1.5px);
  background-size: 9px 9px;
  pointer-events: none;
}

.services-value-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 25, 47, 0.05);
}

.services-value-bar article {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px;
  border-right: 1px solid #e8ecf0;
}

.services-value-bar article:last-child {
  border-right: none;
}

.value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.value-icon svg {
  width: 20px;
  height: 20px;
}

.value-icon--ca {
  background: rgba(230, 30, 42, 0.1);
  color: var(--red);
}

.value-icon--navy {
  background: rgba(10, 25, 47, 0.08);
  color: var(--navy);
}

.value-icon--red {
  background: rgba(230, 30, 42, 0.1);
  color: var(--red);
}

.value-icon--blue {
  background: rgba(30, 58, 138, 0.1);
  color: #1e3a8a;
}

.services-value-bar strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.services-value-bar small {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.45;
}

/* ── Process ── */
.process {
  position: relative;
  background: #050a18;
  color: var(--white);
  padding: 80px 0;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.process-bg-flag {
  position: absolute;
  width: min(480px, 42vw);
  height: auto;
  opacity: 0.07;
  object-fit: contain;
  filter: saturate(0.85);
}

.process-bg-flag--us {
  left: -4%;
  top: 28%;
  transform: rotate(-6deg);
}

.process-bg-flag--ca {
  right: -4%;
  top: 24%;
  transform: rotate(6deg);
}

.process .container {
  position: relative;
  z-index: 1;
}

.process-head {
  text-align: center;
  margin-bottom: 56px;
}

.process-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.process-eyebrow span:not(.process-eyebrow-line) {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.process-eyebrow-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--red);
}

.process-head h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.process-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.75;
}

.process-flow {
  position: relative;
  margin-bottom: 40px;
  padding-top: 4px;
}

.process-connector {
  position: absolute;
  top: 30px;
  left: 5%;
  width: 90%;
  height: 48px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
  filter: drop-shadow(0 0 6px rgba(230, 30, 42, 0.25));
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.process-step {
  --step-color: #e61e2a;
  --step-glow: rgba(230, 30, 42, 0.35);
  --step-border: rgba(230, 30, 42, 0.35);
  text-align: center;
}

.process-step--red { --step-color: #e61e2a; --step-glow: rgba(230, 30, 42, 0.4); --step-border: rgba(230, 30, 42, 0.4); }
.process-step--purple { --step-color: #c026d3; --step-glow: rgba(192, 38, 211, 0.4); --step-border: rgba(192, 38, 211, 0.4); }
.process-step--indigo { --step-color: #818cf8; --step-glow: rgba(129, 140, 248, 0.4); --step-border: rgba(129, 140, 248, 0.4); }
.process-step--blue { --step-color: #3b82f6; --step-glow: rgba(59, 130, 246, 0.4); --step-border: rgba(59, 130, 246, 0.4); }

.process-step-head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  z-index: 2;
  height: 62px;
}

.process-step-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--step-color);
  color: var(--step-color);
  display: grid;
  place-items: center;
  background: #050a18;
  box-shadow:
    0 0 0 4px rgba(5, 10, 24, 0.9),
    0 0 20px var(--step-glow),
    0 0 40px var(--step-glow);
}

.process-step-ring svg {
  width: 26px;
  height: 26px;
}

.process-step-num {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  height: 20px;
  padding: 0 8px;
  background: var(--red);
  color: var(--white);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  border: 2px solid #050a18;
  z-index: 4;
  box-shadow: 0 0 10px rgba(230, 30, 42, 0.5);
}

.process-step-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid var(--step-border);
  border-radius: 16px;
  padding: 26px 16px 20px;
  min-height: 228px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  box-shadow:
    0 0 24px var(--step-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}

.process-step-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 36px var(--step-glow),
    0 12px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.process-step-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.process-step-mid-icon {
  width: 48px;
  height: 48px;
  color: var(--step-color);
  margin-bottom: 14px;
  filter: drop-shadow(0 0 8px var(--step-glow));
}

.process-step-mid-icon svg {
  width: 100%;
  height: 100%;
}

.process-step-card p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
  max-width: 168px;
}

.process-step-go {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 16px rgba(230, 30, 42, 0.55);
  margin-top: auto;
}

.process-step-go svg {
  width: 15px;
  height: 15px;
}

.process-value-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.process-value-bar article {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.process-value-bar article:last-child {
  border-right: none;
}

.process-value-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.process-value-icon svg {
  width: 20px;
  height: 20px;
}

.process-value-icon--red {
  background: rgba(230, 30, 42, 0.12);
  color: #f87171;
  box-shadow: 0 0 20px rgba(230, 30, 42, 0.25);
}

.process-value-icon--purple {
  background: rgba(192, 38, 211, 0.12);
  color: #e879f9;
  box-shadow: 0 0 20px rgba(192, 38, 211, 0.25);
}

.process-value-icon--indigo {
  background: rgba(129, 140, 248, 0.12);
  color: #a5b4fc;
  box-shadow: 0 0 20px rgba(129, 140, 248, 0.25);
}

.process-value-icon--blue {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
}

.process-value-bar strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.process-value-bar small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.5;
}

/* ── Experience ── */
.experience {
  background: var(--white);
  padding: 80px 0;
}

.experience-head {
  text-align: center;
  margin-bottom: 48px;
}

.experience-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.experience-eyebrow span:not(.experience-eyebrow-line) {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.experience-eyebrow-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--red);
}

.experience-head h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.experience-head h2 span {
  color: var(--red);
}

.experience-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 20px;
  line-height: 1.75;
}

.experience-divider {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 0 auto;
}

.exp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}

.exp-stat-card {
  position: relative;
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 16px;
  padding: 32px 20px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(10, 25, 47, 0.06);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.exp-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 0 0 16px 16px;
}

.exp-stat-card--red::after {
  background: linear-gradient(90deg, var(--red), #ff4d57);
}

.exp-stat-card--navy::after {
  background: linear-gradient(90deg, #1e3a8a, #3b5bdb);
}

.exp-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(10, 25, 47, 0.1);
}

.exp-stat-dots {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 48px;
  height: 48px;
  opacity: 0.35;
  background-image: radial-gradient(circle, #cbd5e1 1.5px, transparent 1.5px);
  background-size: 9px 9px;
  pointer-events: none;
}

.exp-stat-card--red .exp-stat-dots {
  opacity: 0.28;
  background-image: radial-gradient(circle, rgba(230, 30, 42, 0.35) 1.5px, transparent 1.5px);
}

.exp-stat-card--navy .exp-stat-dots {
  opacity: 0.28;
  background-image: radial-gradient(circle, rgba(30, 58, 138, 0.35) 1.5px, transparent 1.5px);
}

.exp-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}

.exp-stat-icon svg {
  width: 26px;
  height: 26px;
}

.exp-stat-card--red .exp-stat-icon {
  color: var(--red);
  background: rgba(230, 30, 42, 0.1);
  box-shadow: 0 0 24px rgba(230, 30, 42, 0.2);
}

.exp-stat-card--navy .exp-stat-icon {
  color: #1e3a8a;
  background: rgba(30, 58, 138, 0.1);
  box-shadow: 0 0 24px rgba(30, 58, 138, 0.2);
}

.exp-stat-value {
  display: block;
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.exp-stat-card--red .exp-stat-value {
  color: var(--red);
}

.exp-stat-card--navy .exp-stat-value {
  color: #1e3a8a;
}

.exp-stat-card p {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.45;
  max-width: 180px;
  margin: 0 auto;
}

.experience-value-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #f8f9fb;
  border: 1px solid #e8ecf0;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 25, 47, 0.05);
}

.experience-value-bar article {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px;
  border-right: 1px solid #e8ecf0;
}

.experience-value-bar article:last-child {
  border-right: none;
}

.exp-value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.exp-value-icon svg {
  width: 20px;
  height: 20px;
}

.exp-value-icon--red {
  background: rgba(230, 30, 42, 0.1);
  color: var(--red);
}

.exp-value-icon--navy {
  background: rgba(30, 58, 138, 0.1);
  color: #1e3a8a;
}

.experience-value-bar strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.experience-value-bar small {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.45;
}

/* ── Engagement Models ── */
.models {
  background: var(--white);
  padding: 0;
  overflow: hidden;
}

.models-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 40%);
  align-items: stretch;
  min-height: 680px;
}

.models-left {
  display: flex;
  flex-direction: column;
  padding: 56px 28px 44px max(24px, calc((100vw - 1140px) / 2 + 24px));
  z-index: 3;
  position: relative;
  background: var(--white);
}

.models-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.models-head {
  margin-bottom: 28px;
}

.models-head-line {
  display: block;
  width: 52px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 12px;
}

.models-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.models-head h2 {
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.models-head h2 span {
  color: var(--red);
}

.models-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.model-card {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  padding: 18px 14px 16px;
  box-shadow: 0 4px 20px rgba(10, 25, 47, 0.06);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  border-left: 4px solid var(--card-accent, var(--red));
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.model-card--red { --card-accent: var(--red); --check-color: var(--red); --icon-bg: rgba(230, 30, 42, 0.1); --icon-color: var(--red); }
.model-card--navy { --card-accent: #1e3a8a; --check-color: #1e3a8a; --icon-bg: rgba(30, 58, 138, 0.1); --icon-color: #1e3a8a; }

.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(10, 25, 47, 0.11);
}

.model-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  background: var(--icon-bg);
  color: var(--icon-color);
}

.model-card-icon svg {
  width: 24px;
  height: 24px;
}

.model-card h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.model-card > p {
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.model-card-rule {
  border: none;
  border-top: 1px solid #e8ecf0;
  margin: 12px 0 10px;
  width: 100%;
}

.model-card ul {
  list-style: none;
  text-align: left;
  margin-top: auto;
}

.model-card li {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink);
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.model-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--check-color);
  font-weight: 800;
  font-size: 9px;
}

.models-value-bar {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(10, 25, 47, 0.06);
  margin-top: auto;
}

.models-value-bar article {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 12px;
  min-width: 0;
}

.models-value-bar article:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 58%;
  background: #e2e8f0;
}

.models-value-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.models-value-icon svg {
  width: 18px;
  height: 18px;
}

.models-value-icon--red {
  background: #fdeef0;
  color: #e61e2a;
}

.models-value-icon--navy {
  background: #eef2fa;
  color: #1e3a8a;
}

.models-value-text {
  min-width: 0;
  flex: 1;
}

.models-value-bar strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
  line-height: 1.25;
}

.models-value-bar small {
  display: block;
  font-size: 9.5px;
  color: #64748b;
  line-height: 1.4;
}

.models-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #e8ecf0;
}

.models-visual-img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: left center;
  display: block;
}

/* ── Deliverables ── */
.deliverables {
  position: relative;
  background: var(--white);
  color: var(--ink);
  padding: 80px 0;
  overflow: hidden;
}

.deliverables .container {
  position: relative;
  z-index: 1;
}

.deliverables-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.deliverables-deco--dots {
  top: 48px;
  left: max(24px, calc((100vw - 1140px) / 2 + 24px));
  width: 110px;
  height: 110px;
  background-image: radial-gradient(circle, #cbd5e1 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  opacity: 0.55;
}

.deliverables-deco--target {
  top: 36px;
  right: max(24px, calc((100vw - 1140px) / 2 + 24px));
  width: 96px;
  height: 96px;
  opacity: 0.85;
}

.deliverables-deco--target svg {
  width: 100%;
  height: 100%;
}

.deliverables-head {
  text-align: center;
  margin-bottom: 52px;
}

.deliverables-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.deliverables-eyebrow span:not(.deliverables-eyebrow-line) {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.deliverables-eyebrow-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--red);
}

.deliverables-head h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.deliverables-head h2 span {
  color: var(--red);
  position: relative;
}

.deliverables-head h2 span::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.deliverables-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.75;
}

.deliverables-flow {
  position: relative;
  margin-bottom: 36px;
  padding-top: 4px;
}

.deliverables-connector {
  position: absolute;
  top: 28px;
  left: 6%;
  width: 88%;
  height: 24px;
  z-index: 0;
  pointer-events: none;
}

.deliverables-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

.deliv-card {
  --card-accent: #1e3a8a;
  text-align: center;
}

.deliv-card--red { --card-accent: var(--red); }
.deliv-card--navy { --card-accent: #1e3a8a; }

.deliv-card-head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 68px;
  margin-bottom: 6px;
  z-index: 2;
}

.deliv-card-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px dashed #cbd5e1;
  display: grid;
  place-items: center;
  background: var(--white);
}

.deliv-card--red .deliv-card-ring { border-color: rgba(230, 30, 42, 0.35); }
.deliv-card--navy .deliv-card-ring { border-color: rgba(30, 58, 138, 0.35); }

.deliv-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--card-accent);
  color: var(--card-accent);
  display: grid;
  place-items: center;
  background: var(--white);
}

.deliv-card-icon svg {
  width: 20px;
  height: 20px;
}

.deliv-card-num {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(10, 25, 47, 0.12);
  z-index: 3;
}

.deliv-card-body {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 14px;
  padding: 18px 12px 0;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 28px rgba(10, 25, 47, 0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}

.deliv-card-body:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(10, 25, 47, 0.11);
}

.deliv-card-body h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.deliv-card-body p {
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 12px;
}

.deliv-card-foot {
  position: relative;
  height: 44px;
  margin-top: auto;
}

.deliv-card-curve {
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 26px;
  background: var(--card-accent);
  border-radius: 0 0 13px 13px;
  clip-path: ellipse(52% 100% at 50% 100%);
}

.deliv-card-badge {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--card-accent);
  color: var(--card-accent);
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(10, 25, 47, 0.1);
}

.deliv-card-badge svg {
  width: 16px;
  height: 16px;
}

.deliverables-value-bar {
  display: flex;
  align-items: stretch;
  background: #f8f9fb;
  border: 1px solid #e8ecf0;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(10, 25, 47, 0.06);
  overflow: hidden;
}

.deliverables-value-bar article {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 22px;
  min-width: 0;
}

.deliverables-value-bar article:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 58%;
  background: #e2e8f0;
}

.deliv-value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.deliv-value-icon svg {
  width: 20px;
  height: 20px;
}

.deliv-value-icon--red {
  background: rgba(230, 30, 42, 0.1);
  color: var(--red);
}

.deliv-value-icon--navy {
  background: rgba(30, 58, 138, 0.1);
  color: #1e3a8a;
}

.deliverables-value-bar strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.deliverables-value-bar small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.45;
}

/* ── Contact ── */
.contact {
  position: relative;
  background: #f8f9fb;
  padding: 80px 0 0;
  overflow: hidden;
}

.contact-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.contact-deco--dots {
  top: 40px;
  left: max(24px, calc((100vw - 1140px) / 2 + 24px));
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, rgba(230, 30, 42, 0.22) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.7;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.95fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 64px;
}

.contact-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-eyebrow-line {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.contact-eyebrow span:last-child {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.contact-cta h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}

.contact-cta h2 span { color: var(--red); }

.contact-head-line {
  display: block;
  width: 52px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 16px;
}

.contact-cta p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 420px;
}

.contact-btn {
  padding: 14px 28px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(230, 30, 42, 0.28);
  margin-bottom: 20px;
}

.contact-trust {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 380px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(10, 25, 47, 0.04);
}

.contact-trust-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--red);
}

.contact-trust-icon svg {
  width: 100%;
  height: 100%;
}

.contact-trust p {
  font-size: 11px;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 0 8px 32px;
  border-left: 1px solid #e2e8f0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #e8ecf0;
}

.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-item:first-child {
  padding-top: 0;
}

.info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--red);
  background: var(--white);
  border: 1.5px solid rgba(230, 30, 42, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(10, 25, 47, 0.08);
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-item small {
  display: block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}

.info-item a,
.info-item span {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.info-item a:hover { color: var(--red); }

.contact-brand {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(10, 25, 47, 0.14);
  background: var(--navy);
}

.contact-brand-photo {
  height: 210px;
  overflow: hidden;
}

.contact-brand-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.contact-brand-wave {
  display: block;
  width: 100%;
  height: 52px;
  margin-top: -1px;
}

.contact-brand-wave-fill {
  fill: var(--navy);
}

.contact-brand-wave-accent {
  stroke: var(--red);
}

.contact-brand-panel {
  background: var(--navy);
  padding: 8px 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
}

.contact-brand-logo {
  width: min(100%, 200px);
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.site-footer {
  background: var(--navy);
  border-top: 3px solid var(--red);
  padding: 16px 0;
  text-align: center;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.site-footer-shield {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
}

.site-footer p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.site-footer strong {
  color: var(--white);
  font-weight: 700;
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .nav-links { gap: 10px; font-size: 11px; }
  .brand-logo { height: 40px; max-width: 200px; }
  .header-cta { padding: 10px 16px; font-size: 11px; }
}

@media (max-width: 960px) {
  .site-header { padding: 0 12px; }

  .header-inner {
    min-height: 68px;
    gap: 12px;
  }

  .brand-logo { height: 36px; max-width: 170px; }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 12px;
    right: 12px;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 20px;
    gap: 4px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 12px 36px rgba(10, 25, 47, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 99;
    flex: none;
  }

  .nav-links a {
    padding: 12px 4px 12px;
    border-bottom: 1px solid #eef2f6;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a.active::after {
    left: 4px;
    transform: none;
    bottom: 8px;
    width: 3px;
    height: calc(100% - 16px);
    border-radius: 2px;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .header-actions {
    margin-left: auto;
    padding-left: 0;
    border-left: none;
    gap: 10px;
  }

  .header-cta { display: none; }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 0 28px;
  }

  .hero-stats {
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
  }

  .stat-card {
    min-width: 160px;
    flex-shrink: 0;
  }

  .hero-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-visual { order: -1; }

  .na-map-wrap {
    max-width: 360px;
    margin: 0 auto;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 12px;
  }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid article:nth-child(2) { border-right: none; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-features { grid-template-columns: 1fr; max-width: 360px; }
  .about-features article { flex-direction: row; align-items: center; }
  .about-float-card { right: 8px; bottom: 16px; max-width: 240px; }
  .about-deco--dots-br { display: none; }

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

  .services-value-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-value-bar article:nth-child(2) {
    border-right: none;
  }

  .services-value-bar article {
    border-bottom: 1px solid #e8ecf0;
  }

  .services-value-bar article:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-connector { display: none; }
  .process-value-bar { grid-template-columns: repeat(2, 1fr); }
  .process-value-bar article:nth-child(2) { border-right: none; }
  .process-value-bar article { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .process-value-bar article:nth-last-child(-n+2) { border-bottom: none; }

  .exp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-value-bar { grid-template-columns: repeat(2, 1fr); border-radius: 16px; }
  .experience-value-bar article:nth-child(2) { border-right: none; }
  .experience-value-bar article { border-bottom: 1px solid #e8ecf0; }
  .experience-value-bar article:nth-last-child(-n+2) { border-bottom: none; }
  .models-wrap { grid-template-columns: 1fr; min-height: auto; }
  .models-left { padding: 56px 24px 40px; }
  .models-grid { grid-template-columns: 1fr; max-width: 380px; }
  .model-card { min-height: auto; }
  .models-value-bar { flex-wrap: wrap; }
  .models-value-bar article { flex: 1 1 45%; padding: 20px 18px; }
  .models-value-bar article::after { display: none; }
  .models-value-bar article:nth-child(odd) { border-right: 1px solid #e8ecf0; }
  .models-value-bar article:nth-child(1),
  .models-value-bar article:nth-child(2) { border-bottom: 1px solid #e8ecf0; }
  .models-visual { min-height: 360px; order: -1; }
  .models-visual-img { min-height: 360px; object-position: center center; }

  .deliverables-cards { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .deliverables-connector { display: none; }
  .deliverables-value-bar { flex-wrap: wrap; }
  .deliverables-value-bar article { flex: 1 1 45%; }
  .deliverables-value-bar article::after { display: none; }
  .deliverables-value-bar article:nth-child(odd) { border-right: 1px solid #e8ecf0; }
  .deliverables-value-bar article:nth-child(1),
  .deliverables-value-bar article:nth-child(2) { border-bottom: 1px solid #e8ecf0; }

  .contact-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 48px; }
  .contact-info { padding-left: 0; border-left: none; }
  .contact-brand { max-width: 380px; margin: 0 auto; }
  .contact-deco--dots { display: none; }
}

@media (max-width: 600px) {
  section { padding: 56px 0; }

  .hero-content h1 { font-size: 30px; }

  .feature-grid,
  .services-grid,
  .services-value-bar,
  .process-steps,
  .process-value-bar,
  .exp-stats-grid,
  .experience-value-bar,
  .deliverables-cards,
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .feature-grid article {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about-float-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -24px 16px 0 auto;
  }

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

  .services-value-bar article {
    border-right: none;
    border-bottom: 1px solid #e8ecf0;
  }

  .services-value-bar article:last-child {
    border-bottom: none;
  }

  .process-steps {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .process-value-bar {
    grid-template-columns: 1fr;
  }

  .process-value-bar article {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .models-left { padding: 40px 20px 32px; }
  .models-value-bar { flex-direction: column; border-radius: 12px; }
  .models-value-bar article {
    flex: none;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e8ecf0;
    padding: 18px 20px;
  }
  .models-value-bar article::after { display: none; }
  .models-value-bar article:last-child { border-bottom: none; }

  .process-value-bar article:last-child {
    border-bottom: none;
  }

  .exp-stats-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .experience-value-bar {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .experience-value-bar article {
    border-right: none;
    border-bottom: 1px solid #e8ecf0;
  }

  .experience-value-bar article:last-child {
    border-bottom: none;
  }

  .deliverables-cards { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .deliverables-deco--dots,
  .deliverables-deco--target { display: none; }
  .deliverables-value-bar { flex-direction: column; border-radius: 14px; }
  .deliverables-value-bar article {
    flex: none;
    width: 100%;
    border-right: none !important;
    border-bottom: 1px solid #e8ecf0;
    padding: 20px 22px;
  }
  .deliverables-value-bar article::after { display: none; }
  .deliverables-value-bar article:last-child { border-bottom: none; }
}

/* ── Chat Widget ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.chat-panel {
  width: min(360px, calc(100vw - 32px));
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(10, 25, 47, 0.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  pointer-events: none;
}

.chat-widget.is-open .chat-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
  color: var(--white);
}

.chat-header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.chat-header-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  padding: 3px;
  flex-shrink: 0;
}

.chat-header-brand span {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.chat-icon-btn {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.chat-icon-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.chat-icon-btn svg {
  width: 18px;
  height: 18px;
}

.chat-body {
  padding: 20px 18px 16px;
}

.chat-welcome {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.chat-welcome strong {
  font-weight: 800;
}

.chat-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

.chat-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.chat-quick-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
  line-height: 1.3;
}

.chat-quick-btn--wide {
  grid-column: 1 / -1;
  justify-content: center;
  max-width: 58%;
  margin: 0 auto;
  width: 100%;
}

.chat-quick-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #64748b;
}

.chat-quick-btn:hover {
  border-color: #cbd5e1;
  box-shadow: 0 2px 8px rgba(10, 25, 47, 0.06);
  color: var(--navy);
}

.chat-compose {
  padding: 0 16px 16px;
}

.chat-input-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 6px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.chat-input-wrap:focus-within {
  border-color: #cbd5e1;
  box-shadow: 0 0 0 3px rgba(10, 25, 47, 0.06);
}

.chat-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 13px;
  color: var(--ink);
  background: transparent;
  min-width: 0;
}

.chat-input::placeholder {
  color: #94a3b8;
}

.chat-input-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #64748b;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.2s, background 0.2s;
}

.chat-input-icon:hover {
  color: var(--navy);
  background: #f1f5f9;
}

.chat-input-icon svg {
  width: 18px;
  height: 18px;
}

.chat-send:hover {
  color: var(--red);
}

.chat-fab {
  position: relative;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(145deg, #0d2137 0%, #0a192f 55%, #112240 100%);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(10, 25, 47, 0.35);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.chat-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10, 25, 47, 0.4);
}

.chat-fab-icon {
  width: 26px;
  height: 26px;
}

.chat-fab-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
  line-height: 1;
  transition: opacity 0.2s, transform 0.2s;
}

.chat-widget.is-open .chat-fab-badge {
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
}

@media (max-width: 480px) {
  .chat-widget {
    right: 12px;
    bottom: 12px;
  }

  .chat-quick-btn--wide {
    max-width: 100%;
  }
}
