/* ==========================================================================
   GeekHub Enterprise Technologies — components.css
   All components. Accent: #1D236D (--accent). Text accent: #6e8efb (--accent-bright).
   No yellow anywhere.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  font-family: var(--font-primary);
  font-size: 0.855rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: all var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  line-height: 1;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: #252dc0;
  border-color: #252dc0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.50);
  transform: translateY(-2px);
}

.btn--outline-accent {
  background: transparent;
  color: var(--accent-bright);
  border-color: var(--accent-border);
}
.btn--outline-accent:hover {
  background: var(--accent-light);
  border-color: rgba(110, 142, 251, 0.45);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: rgba(255,255,255,0.90);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}

.btn--lg { padding: 13px 26px; font-size: 0.82rem; }
.btn--sm { padding: 13px 24px; font-size: 0.875rem; }

.btn svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  transition: transform var(--ease);
}
.btn:hover svg { transform: translateX(3px); }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* --------------------------------------------------------------------------
   2. NAVIGATION — always solid (correction #1 + #2)
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  /* Always solid navy — no transparent state */
  background: rgba(1, 6, 35, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.40);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-x);
}


.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 34px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin-left: auto;
}

.nav__links > li { position: relative; }

.nav__links > li > a {
  display: block;
  padding: 7px 13px;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav__links > li > a:hover,
.nav__links > li > a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.065);
}

.nav__links > li.has-dropdown > a {
  padding-right: 26px;
  position: relative;
}

.nav__links > li.has-dropdown > a::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='rgba(255,255,255,0.5)' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--ease);
}

.nav__links > li.has-dropdown:hover > a::after,
.nav__links > li.has-dropdown.open > a::after {
  transform: translateY(-50%) rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 228px;
  background: rgba(6, 10, 28, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all var(--ease-out);
  list-style: none;
}

.nav__links > li.has-dropdown:hover .nav__dropdown,
.nav__links > li.has-dropdown.open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown li a {
  display: block;
  padding: 11px 15px;
  font-size: 0.855rem;
  font-weight: var(--fw-regular);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--ease);
  line-height: 1.5;
}

.nav__dropdown li a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav__dropdown li a .drop-label {
  display: block;
  font-size: 0.70rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--accent-bright);
  margin-bottom: 2px;
}

.nav__cta { flex-shrink: 0; margin-left: 12px; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 8px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.24s ease;
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu — panel appears instantly, no fade */
.nav__mobile {
  display: none; /* JS sets display:flex then adds .open on next frame */
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(1, 4, 22, 0.99);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  overflow-y: auto;
  padding: 24px var(--container-x) 48px;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
}

.nav__mobile.open {
  pointer-events: all;
}

/* Items hidden off-screen left, ready to slide in */
.nav__mobile > * {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.15s ease, transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Slide in top → bottom: 60ms apart */
.nav__mobile.open > *:nth-child(1) { transition-delay: 0.00s; opacity: 1; transform: none; }
.nav__mobile.open > *:nth-child(2) { transition-delay: 0.06s; opacity: 1; transform: none; }
.nav__mobile.open > *:nth-child(3) { transition-delay: 0.12s; opacity: 1; transform: none; }
.nav__mobile.open > *:nth-child(4) { transition-delay: 0.18s; opacity: 1; transform: none; }
.nav__mobile.open > *:nth-child(5) { transition-delay: 0.24s; opacity: 1; transform: none; }
.nav__mobile.open > *:nth-child(6) { transition-delay: 0.30s; opacity: 1; transform: none; }
.nav__mobile.open > *:nth-child(7) { transition-delay: 0.36s; opacity: 1; transform: none; }

/* Slide out bottom → top: reverse order */
.nav__mobile.closing > *:nth-child(1) { transition-delay: 0.22s; }
.nav__mobile.closing > *:nth-child(2) { transition-delay: 0.18s; }
.nav__mobile.closing > *:nth-child(3) { transition-delay: 0.14s; }
.nav__mobile.closing > *:nth-child(4) { transition-delay: 0.10s; }
.nav__mobile.closing > *:nth-child(5) { transition-delay: 0.06s; }
.nav__mobile.closing > *:nth-child(6) { transition-delay: 0.02s; }
.nav__mobile.closing > *:nth-child(7) { transition-delay: 0.00s; }

.nav__mobile a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.055);
  transition: color var(--ease), opacity 0.15s ease, transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav__mobile a:hover { color: var(--white); }

.nav__mobile .mobile-section-label {
  font-size: 0.67rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 18px 0 5px;
}

.nav__mobile .mobile-cta { margin-top: 24px; }

/* Direct links (Home, How We Work, Contact Us) */
.nav__mobile .mob-direct-link {
  display: block;
  padding: 14px 0;
  font-size: 0.80rem;
  font-weight: var(--fw-light);
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.055);
  transition: color var(--ease), opacity 0.15s ease, transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__mobile .mob-direct-link:hover { color: var(--white); }

/* Collapsible groups */
.mob-group {
  border-bottom: 1px solid rgba(255,255,255,0.055);
}
.mob-group__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-size: 0.80rem;
  font-weight: var(--fw-light);
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--ease);
}
.mob-group__toggle:hover { color: var(--white); }
.mob-group__toggle[aria-expanded="true"] { color: var(--white); }
.mob-group__toggle .mob-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  opacity: 0.5;
}
.mob-group__toggle[aria-expanded="true"] .mob-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.mob-group__items {
  padding: 4px 0 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mob-group__items[hidden] { display: none; }
.mob-group__items a {
  display: block;
  padding: 10px 0;
  font-size: 0.70rem;
  font-weight: 200;
  color: var(--text-muted);
  border-bottom: none !important;
  transition: color var(--ease);
}
.mob-group__items a:hover { color: var(--accent-bright); }

/* Services sub-items — blue accent + slightly heavier, matching desktop treatment */
#mobServices a { color: var(--accent-bright); font-weight: 300; }
#mobServices a:hover { color: var(--white); }

/* CTA button fix — text + arrow always on one line */
.nav__mobile .mobile-cta .btn {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
  flex-wrap: nowrap !important;
  font-size: 0.855rem !important;
  font-weight: var(--fw-regular) !important;
}

@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* --------------------------------------------------------------------------
   3. HERO SLIDER — 75vh, 3 slides, auto-play (corrections #3–#7)
   -------------------------------------------------------------------------- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 500px;
  overflow: hidden;
  margin-top: var(--nav-h);
}

/* Individual slide */
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.90s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: all;
}

/* Background image layer */
.hero-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 2, 18, 0.91) 0%,
    rgba(1, 6, 35, 0.78) 55%,
    rgba(1, 8, 42, 0.62) 100%
  );
  z-index: 1;
}

.hero-slide__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 2;
}

/* Slide content */
.hero-slide__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-x);
}

.hero-slide__content {
  max-width: 680px;
}

.hero-slide__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 22px;
}

.hero-slide__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.hero-slide__headline {
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  font-weight: var(--fw-semibold);
  line-height: 1.10;
  letter-spacing: -0.030em;
  color: var(--white);
  margin-bottom: 52px;
}

.hero-slide__headline--sm {
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
}

.hero-slide__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Slider Controls */
.hero-slider__controls {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--container-x);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

/* Line-style slide indicators (correction #6 — straight line with colour highlight) */
.hero-slider__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  display: block;
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.30s ease, width 0.30s ease;
  border: none;
  padding: 0;
}

.slider-dot.is-active {
  background: var(--white);
  width: 64px;
}

/* Prev / Next arrows */
.hero-slider__arrows {
  display: flex;
  gap: 10px;
  align-items: center;
}

.slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  cursor: pointer;
  transition: all var(--ease);
  flex-shrink: 0;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  transform: scale(1.06);
}

.slider-arrow svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 640px) {
  .hero-slider { height: 80vh; }
  .hero-slide__headline { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero-slider__controls { bottom: 22px; }
  .slider-dot { width: 28px; }
  .slider-dot.is-active { width: 44px; }
}

/* --------------------------------------------------------------------------
   4. WHO WE ARE — section below hero (correction #3)
   -------------------------------------------------------------------------- */
.who-we-are {
  background: var(--navy);
  padding: 72px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.who-we-are__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.who-we-are__subhead {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  font-weight: 350;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 0;
}

.who-we-are__para {
  font-size: clamp(0.875rem, 1.05vw, 0.975rem);
  font-weight: var(--fw-light);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.90;
}

@media (max-width: 768px) {
  .who-we-are__inner { grid-template-columns: 1fr; gap: 22px; }
}

/* --------------------------------------------------------------------------
   5. STATS BAR
   -------------------------------------------------------------------------- */
.stats-bar {
  background: var(--black-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  padding: 56px 0;
}

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

.stats-bar__item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.stats-bar__item + .stats-bar__item::before {
  content: '';
  position: absolute;
  left: 0; top: 8%; height: 84%;
  width: 1px;
  background: rgba(255, 255, 255, 0.065);
}

.stats-bar__number {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: var(--fw-semibold);
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}

.stats-bar__label {
  font-size: 0.82rem;
  font-weight: var(--fw-regular);
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stats-bar__item + .stats-bar__item::before { display: none; }
  .stats-bar { padding: 44px 0; }
}

/* --------------------------------------------------------------------------
   6. SERVICE CARDS — compact with image on top (correction #10)
   -------------------------------------------------------------------------- */
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease-out);
}

.service-card:hover {
  background: var(--card-hover);
  border-color: rgba(110, 142, 251, 0.18);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

/* Card image — 180px tall, rounded top corners only (correction #10) */
.service-card__image-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--ease-slow);
  display: block;
}

.service-card:hover .service-card__image {
  transform: scale(1.05);
}

/* Card body */
.service-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-bright);
  flex-shrink: 0;
}

.service-card__title {
  font-size: 0.975rem;
  font-weight: var(--fw-semibold);
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 0.845rem;
  font-weight: var(--fw-light);
  color: var(--text-muted);
  line-height: 1.75;
  flex-grow: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  color: var(--accent-bright);
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: gap var(--ease);
}

.service-card__link svg {
  width: 12px; height: 12px;
  transition: transform var(--ease);
}

.service-card:hover .service-card__link svg {
  transform: translateX(3px);
}

/* Services grid: 3-col desktop, 2-col tablet, 1-col mobile (correction #10) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   7. SECTORS SECTION — 2-col split (correction #11)
   -------------------------------------------------------------------------- */
.sectors-section {
  background: var(--navy-mid);
  padding: var(--section-y) 0;
}

.sectors-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: flex-start;
}

.sectors-checklist {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sectors-checklist__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.sectors-checklist__item:last-child {
  border-bottom: none;
}

.sectors-checklist__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.sectors-checklist__icon svg {
  width: 10px; height: 10px;
  color: var(--accent-bright);
}

.sectors-checklist__name {
  font-size: 0.925rem;
  font-weight: var(--fw-semibold);
  color: var(--white);
  display: block;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.sectors-checklist__desc {
  font-size: 0.825rem;
  font-weight: var(--fw-light);
  color: var(--text-muted);
  line-height: 1.65;
}

.sectors-closing {
  font-size: 0.875rem;
  font-weight: var(--fw-light);
  color: rgba(255,255,255,0.45);
  font-style: italic;
  line-height: 1.75;
  margin-top: 18px;
}

/* Right column: image with global treatment (correction #14) */
.sectors-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 130px;
}

.sectors-image-wrap {
  /* Global image treatment: 16px radius, 20-24px from container edges */
  border-radius: var(--radius-img);
  overflow: hidden;
  width: 100%;
  margin: 0 24px 0 0;
  box-shadow: var(--shadow-lg);
}

.sectors-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--ease-slow);
}

.sectors-image-wrap:hover img {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .sectors-layout { grid-template-columns: 1fr; gap: 40px; }
  .sectors-image-wrap { margin: 0; aspect-ratio: auto; }
  .sectors-image-wrap img { aspect-ratio: 16/9; }
}

/* What We Do — 2-col intro header with responsive collapse */
.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .services-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .services-intro-grid .sectors-image-col {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   8. WHY GEEKHUB — 2-col, checklist left, stats card right (correction #12)
   -------------------------------------------------------------------------- */
.why-section {
  background: var(--black-soft);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.why-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

/* Left: intro + checklist pillars */
.why-intro {
  font-size: 0.925rem;
  font-weight: var(--fw-light);
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 32px;
}

.why-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-checklist__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.why-checklist__item:last-child {
  border-bottom: none;
}

.why-checklist__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.why-checklist__icon svg {
  width: 11px; height: 11px;
  color: var(--accent-bright);
}

.why-checklist__title {
  font-size: 0.945rem;
  font-weight: var(--fw-semibold);
  color: var(--white);
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.why-checklist__desc {
  font-size: 0.845rem;
  font-weight: var(--fw-light);
  color: var(--text-muted);
  line-height: 1.72;
}

/* Right: stats dashboard card */
.why-stats-card {
  background: var(--navy-mid);
  border: 1px solid rgba(110, 142, 251, 0.14);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.why-stats-card__title {
  font-size: 0.68rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}

.why-stats-card__metrics-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.why-stats-card__metric {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.why-stats-card__metric:last-child {
  border-right: none;
  padding-right: 0;
}

.why-stats-card__metric:first-child {
  padding-left: 0;
}

.why-stats-card__number {
  font-family: var(--font-primary);
  font-size: 1.45rem;
  font-weight: var(--fw-bold);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 5px;
}

.why-stats-card__label {
  font-size: 0.68rem;
  font-weight: var(--fw-regular);
  color: rgba(255,255,255,0.42);
  line-height: 1.3;
  text-align: right;
  max-width: 80px;
}

@media (max-width: 900px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .why-layout {
    gap: 32px;
  }

  /* Remove the top padding offset that pushes the card down on desktop */
  .why-layout > div[style*="padding-top"] {
    padding-top: 0 !important;
  }

  .why-intro {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .why-checklist__item {
    padding: 14px 0;
    gap: 12px;
  }

  .why-checklist__desc {
    font-size: 0.82rem;
    line-height: 1.75;
  }

  /* Stats card — prevent overflow and constrain to screen width */
  .why-stats-card {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 16px;
    overflow: hidden;
  }

  /* Metrics row — allow wrapping on small screens */
  .why-stats-card__metrics-row {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
  }

  .why-stats-card__metric {
    flex: 1 1 45%;
    align-items: flex-start;
    padding: 8px 10px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .why-stats-card__metric:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .why-stats-card__metric:last-child,
  .why-stats-card__metric:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

  .why-stats-card__number {
    font-size: 1.25rem;
  }

  .why-stats-card__label {
    font-size: 0.65rem;
    text-align: left;
  }
}

/* --------------------------------------------------------------------------
   9. IMAGE SPLIT SECTIONS — global image treatment applied (correction #14)
   -------------------------------------------------------------------------- */
.image-split {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  min-height: 480px;
  overflow: hidden;
}

.image-split--reverse { direction: rtl; }
.image-split--reverse > * { direction: ltr; }

.image-split__image-col {
  position: relative;
  min-height: 460px;
  /* Space for contained image treatment */
  background: var(--navy-dark);
  padding: 24px;
}

/* Global image treatment: 16px radius, inset 24px from column edges */
.image-split__image {
  position: absolute;
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-img);
  transition: transform var(--ease-slow);
  box-shadow: var(--shadow-lg);
}

.image-split__image-overlay {
  position: absolute;
  inset: 24px;
  border-radius: var(--radius-img);
  background: linear-gradient(
    to right,
    rgba(1, 6, 35, 0.15) 0%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.image-split--reverse .image-split__image-overlay {
  background: linear-gradient(
    to left,
    rgba(1, 6, 35, 0.15) 0%,
    transparent 100%
  );
}

.image-split:hover .image-split__image {
  transform: scale(1.03);
}

.image-split__content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 60px;
}

/* Buttons inside flex-column containers must not stretch */
.image-split__content-col .btn,
.svc-split__text .btn,
.cta-section__inner .btn {
  align-self: flex-start;
}

/* ── Schematic diagram dot pulse animation ───────────────────── */
@keyframes schematic-pulse-green {
  0%, 100% { r: 5; opacity: 0.85; }
  50%       { r: 7; opacity: 0.45; }
}
@keyframes schematic-pulse-white {
  0%, 100% { r: 4; opacity: 0.9; }
  50%       { r: 6; opacity: 0.35; }
}
.schematic-dot--green {
  animation: schematic-pulse-green 2.4s ease-in-out infinite;
}
.schematic-dot--white {
  animation: schematic-pulse-white 2.8s ease-in-out infinite;
}
/* Stagger each dot slightly */
.schematic-dot:nth-of-type(2)  { animation-delay: 0.4s; }
.schematic-dot:nth-of-type(3)  { animation-delay: 0.8s; }
.schematic-dot:nth-of-type(4)  { animation-delay: 1.2s; }
.schematic-dot:nth-of-type(5)  { animation-delay: 1.6s; }
.schematic-dot:nth-of-type(6)  { animation-delay: 2.0s; }

@media (max-width: 900px) {
  .image-split { grid-template-columns: 1fr; direction: ltr; }
  .image-split--reverse { direction: ltr; }
  .image-split__image-col { min-height: 340px; padding: 20px; }
  .image-split__image { inset: 20px; width: calc(100% - 40px); height: calc(100% - 40px); }
  .image-split__image-overlay { inset: 20px; }
  .image-split__content-col { padding: 48px var(--container-x); }
}

/* --------------------------------------------------------------------------
   10a. SERVICE SPLIT ROWS — alternating image/text layout
   -------------------------------------------------------------------------- */
.svc-split-section {
  background: var(--navy);
  overflow: hidden;
}

.svc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;         /* row height driven by text; image centres within it */
  border-top: 1px solid rgba(255,255,255,0.05);
}

.svc-split:first-child {
  border-top: none;
}

/* Reversed: image left, text right — uses rtl trick */
.svc-split--reverse {
  direction: rtl;
}
.svc-split--reverse > * {
  direction: ltr;
}

/* Image column */
.svc-split__image-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 32px;
}

/* Image: contained, framed, floats on page background */
.svc-split__img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.svc-split:hover .svc-split__img {
  transform: scale(1.03);
}

/* Text column */
.svc-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px;          /* equal 60px top/bottom to match image column */
  background: var(--navy);
}

/* Icon badge */
.svc-split__icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.svc-split__title {
  font-family: var(--font-primary);
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
}

.svc-split__desc {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.05vw, 0.98rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 520px;
}

/* Mobile: stack vertically, image always on top */
@media (max-width: 900px) {
  .svc-split,
  .svc-split--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .svc-split--reverse > * {
    direction: ltr;
  }
  .svc-split__image-col {
    order: 1;
    padding: 20px;
  }
  .svc-split__img {
    height: 220px;
    max-width: 100%;
  }
  .svc-split__text {
    order: 2;
    padding: 40px var(--container-x);
  }
  .svc-split__desc {
    max-width: 100%;
  }
}

/* --------------------------------------------------------------------------
   10. TRACK RECORD — compact cards + side image (correction #13)
   -------------------------------------------------------------------------- */
.track-record {
  background: var(--navy-mid);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}

.track-record-layout {
  display: grid;
  grid-template-columns: 1fr 0.38fr;
  gap: 48px;
  align-items: start;
}

/* Right: smaller accent image */
.track-record__image-col {
  position: relative;
  min-height: unset;
}

.track-record__image-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  border-radius: var(--radius-img);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 2 / 3;
  margin: 0;
}

.track-record__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Right: client logo grid column */
.track-record__logos {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.track-record__logos-label {
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  margin: 0;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.client-logo-cell {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  min-height: 140px;
  position: relative;
  overflow: hidden;
}

.client-logo-cell img {
  max-width: 100%;
  max-height: 120px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  position: absolute;
  left: 18px;
  right: 18px;
  width: calc(100% - 36px);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
  will-change: transform;
}

/* Mobile logo grid — hidden on desktop */
.logo-mobile-grid { display: none; }

@media (max-width: 768px) {
  /* Hide desktop carousel, show mobile grid */
  .client-logo-grid { display: none; }
  .logo-mobile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .logo-mobile-cell {
    background: #ffffff;
    /* Cell never moves — ever */
  }
  /* Slot is the clipping container — overflow:hidden hides off-screen images */
  .logo-mobile-slot {
    position: relative;
    width: 100%;
    height: 76px;
    overflow: hidden;
    /* Centre child images with flex; absolute imgs respect this via left/right */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* Each logo image is absolutely positioned so two can coexist during a slide */
  .logo-mobile-slot img {
    position: absolute;
    top: 50%;
    /* translateX(0) = image centred; JS slides with translateX(±slotWidth) */
    transform: translateX(0) translateY(-50%);
    max-width: 70px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    will-change: transform;
  }
}

@media (max-width: 900px) {
  .track-record__logos { position: static; }
}

/* Left: cards grid */
.track-record__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Compact credential card (correction #13) */
.cred-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cred-card:hover {
  border-color: rgba(110, 142, 251, 0.22);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.cred-card__tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-bright);
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--accent-border);
  width: fit-content;
}

.cred-card__title {
  font-size: 0.975rem;
  font-weight: var(--fw-semibold);
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.cred-card__oneliner {
  font-size: 0.825rem;
  font-weight: var(--fw-light);
  color: var(--text-muted);
  line-height: 1.55;
}

.cred-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  color: var(--accent-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: auto;
  padding-top: 4px;
  transition: gap var(--ease);
}

.cred-card__link svg {
  width: 11px; height: 11px;
  transition: transform var(--ease);
}

.cred-card:hover .cred-card__link svg { transform: translateX(3px); }

/* Stat callout */
.stat-callout {
  background: rgba(110, 142, 251, 0.07);
  border: 1px solid rgba(110, 142, 251, 0.16);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  text-align: center;
  margin-top: 24px;
  grid-column: 1 / -1;
}

.stat-callout p {
  font-size: 0.9rem;
  font-weight: var(--fw-light);
  color: var(--white);
  line-height: 1.80;
}

.stat-callout p .dot {
  color: var(--accent-bright);
  margin: 0 5px;
  font-weight: var(--fw-light);
}

@media (max-width: 1024px) {
  .track-record-layout { grid-template-columns: 1fr; gap: 40px; }
  .track-record__image-wrap { position: static; aspect-ratio: 16/9; }
}

@media (max-width: 640px) {
  .track-record__cards { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   11. PROCESS STEPS
   -------------------------------------------------------------------------- */
.process-section {
  background: var(--navy-dark);
  padding: var(--section-y) 0;
  position: relative;
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left: sticky contained image (global image treatment) */
.process-image-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  border-radius: var(--radius-img);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  /* ~24px from column container edges */
  margin: 0 24px 0 0;
}

.process-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.process-image-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom, transparent 55%, rgba(1, 6, 35, 0.52) 100%
  );
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.048);
}

.process-step:last-child { border-bottom: none; }

.process-step__number {
  font-size: 2.2rem;
  font-weight: var(--fw-light);
  color: rgba(255,255,255,0.08);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  letter-spacing: -0.04em;
  padding-top: 2px;
  transition: color var(--ease);
}

.process-step:hover .process-step__number {
  color: rgba(110, 142, 251, 0.28);
}

.process-step__content { flex: 1; }

.process-step__title {
  font-size: 0.955rem;
  font-weight: var(--fw-semibold);
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.process-step__desc {
  font-size: 0.845rem;
  font-weight: var(--fw-regular);
  color: var(--text-muted);
  line-height: 1.78;
}

@media (max-width: 900px) {
  .process-layout { grid-template-columns: 1fr; gap: 36px; }
  .process-image-wrap { position: static; aspect-ratio: 16/9; margin: 0; }
}

/* --------------------------------------------------------------------------
   Phases Grid Matrix — 2-col structured grid layout (how-we-work)
   -------------------------------------------------------------------------- */
.phases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

/* Full-height centre line drawn from the container */
.phases-grid::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #1D236D;
  pointer-events: none;
  z-index: 0;
}

/* Each cell */
.phases-grid__cell {
  position: relative;
  padding: 40px;
  border-bottom: 1px solid #1D236D;
}

/* Vertical centre line — right border on left-column cells */
.phases-grid__cell:nth-child(odd):not(.phases-grid__cell--full) {
  border-right: 1px solid #1D236D;
}

/* Last row: no bottom border */
.phases-grid__cell:nth-last-child(1),
.phases-grid__cell:nth-last-child(2):not(.phases-grid__cell--full) {
  border-bottom: none;
}

/* Full-width spanning cell (5th phase) */
.phases-grid__cell--full {
  grid-column: 1 / -1;
  border-bottom: none;
  max-width: 560px;
}

/* Large faded phase number behind title */
.phases-grid__num {
  font-family: var(--font-primary);
  font-size: 5rem;
  font-weight: 700;
  color: #1D236D;
  line-height: 1;
  margin-bottom: -16px;
  letter-spacing: -0.04em;
  user-select: none;
}

.phases-grid__title {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.phases-grid__desc {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
}

/* Mobile: single column, horizontal dividers only */
@media (max-width: 768px) {
  .phases-grid {
    grid-template-columns: 1fr;
  }
  .phases-grid::before {
    display: none;
  }
  .phases-grid__cell:nth-child(odd):not(.phases-grid__cell--full) {
    border-right: none;
  }
  .phases-grid__cell {
    border-bottom: 1px solid #1D236D;
    padding: 32px 24px;
  }
  .phases-grid__cell:last-child {
    border-bottom: none;
  }
  .phases-grid__cell--full {
    grid-column: 1;
    max-width: 100%;
  }
  .phases-grid__num {
    font-size: 3.5rem;
  }
}

/* --------------------------------------------------------------------------
   Process flow diagram — graphic vertical timeline
   -------------------------------------------------------------------------- */
@keyframes pf-halo-pulse {
  0%, 100% { opacity: 0.18; transform: scale(1); }
  50%       { opacity: 0.38; transform: scale(1.12); }
}

@keyframes pf-node-pop {
  0%   { opacity: 0; transform: scale(0.4); }
  70%  { transform: scale(1.12); }
  100% { opacity: 1; transform: scale(1); }
}

.process-diagram {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  display: flex;
  flex-direction: column;
  padding: 0;
  /* spine centres on the 52px node-graphic */
  --nd: 52px;
  --nd-half: 26px;
}

/* Spine wrapper — clips only the spine, not the halos */
.process-diagram__spine-wrap {
  position: absolute;
  left: calc(var(--nd-half) - 1px);
  top: calc(var(--nd-half) + 4px);
  bottom: calc(var(--nd-half) + 4px);
  width: 2px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

/* Spine: grows downward from top when .is-visible added */
.process-diagram__spine {
  position: absolute;
  inset: 0;
  transform-origin: top center;
  background: linear-gradient(
    to bottom,
    rgba(110, 142, 251, 0.8)  0%,
    rgba(29,  35,  109, 0.55) 50%,
    rgba(29,  35,  109, 0.15) 100%
  );
  /* Override default .reveal behaviour for spine */
  opacity: 1 !important;
  transform: scaleY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.process-diagram__spine.is-visible {
  transform: scaleY(1) !important;
}

/* Each node row */
.process-diagram__node {
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 1;
  padding: 14px 0;
}

/* Node graphic column: halo + ring + core stacked */
.process-diagram__node-graphic {
  width: var(--nd);
  height: var(--nd);
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer pulsing halo */
.process-diagram__halo {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(110, 142, 251, 0.22);
  animation: pf-halo-pulse 3.2s ease-in-out infinite;
  animation-play-state: paused;
}

/* Middle ring */
.process-diagram__ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(110, 142, 251, 0.45);
}

/* Core filled circle */
.process-diagram__core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #1D236D 0%, #2a3490 100%);
  box-shadow:
    0 0 0 1px rgba(110, 142, 251, 0.3),
    0 0 22px rgba(29, 35, 109, 0.9),
    0 0 44px rgba(29, 35, 109, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-diagram__core span {
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: var(--fw-semibold);
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* Horizontal dashed connector from circle to label */
.process-diagram__connector {
  position: absolute;
  right: -22px;
  top: 50%;
  width: 22px;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(110,142,251,0.45) 0px,
    rgba(110,142,251,0.45) 4px,
    transparent 4px,
    transparent 8px
  );
  transform: translateY(-50%);
}

/* Text content */
.process-diagram__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.process-diagram__phase-tag {
  font-family: var(--font-primary);
  font-size: 0.62rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
  opacity: 0.75;
}

.process-diagram__title {
  font-family: var(--font-primary);
  font-size: 0.97rem;
  font-weight: var(--fw-semibold);
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* Sequential pop-in animation per node */
.pf-node {
  opacity: 0;
}

.pf-node.is-visible {
  animation: pf-node-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: var(--node-delay, 0ms);
}

/* Start halo pulse once node is visible */
.pf-node.is-visible .process-diagram__halo {
  animation-play-state: running;
}

@media (max-width: 900px) {
  /* Hide diagram column entirely on mobile — steps carry the layout */
  .process-diagram {
    display: none;
  }
  /* Steps column goes full width */
  .process-layout {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   12. NEWS SECTION — full width, no excessive padding (correction #16)
   -------------------------------------------------------------------------- */
.news-section {
  background: var(--navy);
  padding: var(--section-y) 0;
}

/* Full content width — no narrow container (correction #16) */
.news-section .container {
  max-width: var(--max-width);
}

.news-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

@media (max-width: 640px) {
  .news-header-row { flex-direction: column; align-items: flex-start; }
}

/* Larger, more prominent news cards (correction #16) */
.news-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--ease-out);
}

.news-card:hover {
  border-color: rgba(110, 142, 251, 0.18);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.news-card__image-wrap { overflow: hidden; flex-shrink: 0; }

.news-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform var(--ease-slow);
}

.news-card:hover .news-card__image { transform: scale(1.05); }

.news-card__body {
  padding: 26px 28px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-card__tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-bright);
  font-size: 0.67rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--accent-border);
  width: fit-content;
}

.news-card__date {
  font-size: 0.78rem;
  font-weight: var(--fw-regular);
  color: var(--text-faint);
}

.news-card__title {
  font-size: 1.05rem;
  font-weight: var(--fw-medium);
  color: var(--white);
  line-height: 1.48;
  flex-grow: 1;
  letter-spacing: -0.01em;
  transition: color var(--ease);
}

.news-card:hover .news-card__title { color: rgba(255,255,255,0.85); }

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.775rem;
  font-weight: var(--fw-semibold);
  color: var(--accent-bright);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 6px;
  transition: gap var(--ease);
}

.news-card__link svg {
  width: 12px; height: 12px;
  transition: transform var(--ease);
}

.news-card:hover .news-card__link svg { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   13. MID-BANNER (full-bleed pull-quote)
   -------------------------------------------------------------------------- */
.mid-banner {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.mid-banner__img {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 140%;
  top: -20%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.mid-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 2, 18, 0.92) 0%,
    rgba(1, 6, 35, 0.76) 55%,
    rgba(1, 8, 44, 0.58) 100%
  );
  z-index: 1;
}

.mid-banner__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.mid-banner__quote {
  max-width: 660px;
  font-size: clamp(1.3rem, 2.4vw, 2.1rem);
  font-weight: var(--fw-light);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.48;
  letter-spacing: -0.015em;
}

.mid-banner__quote strong {
  font-weight: var(--fw-semibold);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   14. CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--black-soft);
}

.cta-section__bg {
  position: absolute;
  inset: 0;
}

.cta-section__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-section__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 2, 18, 0.94) 0%,
    rgba(1, 6, 35, 0.88) 60%,
    rgba(1, 8, 44, 0.80) 100%
  );
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  padding: 96px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 72px;
}

.cta-section__heading {
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  font-weight: var(--fw-semibold);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.cta-section__sub {
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  font-weight: var(--fw-light);
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 500px;
}

.cta-section__tag {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.40);
  font-style: italic;
  font-weight: var(--fw-light);
  margin-top: 10px;
}

@media (max-width: 900px) {
  .cta-section__inner { grid-template-columns: 1fr; gap: 36px; padding: 72px 0; }
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.048);
}

.footer__main { padding: 80px 0 60px; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: 18px;
}

.footer__tagline {
  font-size: 0.855rem;
  font-weight: var(--fw-light);
  color: var(--text-muted);
  line-height: 1.80;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 9px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--ease);
}

.footer__social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__social svg { width: 14px; height: 14px; }

.footer__col-title {
  font-size: 0.67rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin-bottom: 18px;
}

.footer__nav { display: flex; flex-direction: column; gap: 10px; list-style: none; }

.footer__nav li a {
  font-size: 0.855rem;
  font-weight: var(--fw-regular);
  color: var(--text-muted);
  transition: color var(--ease);
}

.footer__nav li a:hover { color: var(--white); }

.footer__contact-list { display: flex; flex-direction: column; gap: 14px; list-style: none; }

.footer__contact-list li { display: flex; gap: 10px; align-items: flex-start; }

.footer__contact-list li svg {
  width: 13px; height: 13px;
  flex-shrink: 0;
  color: var(--accent-bright);
  margin-top: 3px;
}

.footer__contact-list li a,
.footer__contact-list li span {
  font-size: 0.845rem;
  font-weight: var(--fw-regular);
  color: var(--text-muted);
  line-height: 1.58;
  transition: color var(--ease);
}

.footer__contact-list li a:hover { color: var(--white); }

.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.048);
  padding: 20px 0;
}

.footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.78rem;
  font-weight: var(--fw-light);
  color: var(--text-faint);
}

.footer__bar-links { display: flex; gap: 20px; list-style: none; }

.footer__bar-links li a {
  font-size: 0.78rem;
  font-weight: var(--fw-regular);
  color: var(--text-faint);
  transition: color var(--ease);
}

.footer__bar-links li a:hover { color: var(--text-muted); }

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__main { padding: 60px 0 48px; }
  .footer__bar-inner { flex-direction: column; align-items: flex-start; }
}


@media (max-width: 768px) {
  .opening-split {
    grid-template-columns: 1fr !important;
  }
}

/* --------------------------------------------------------------------------
   16. PAGE HERO (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  max-height: 600px;
  height: 62vh;
  display: flex;
  align-items: flex-end;
  margin-top: var(--nav-h);
}

.page-hero__bg { position: absolute; inset: 0; }

.page-hero__bg-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom, rgba(1, 6, 35, 0.70) 0%, rgba(0, 2, 18, 0.90) 100%
  );
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding: 60px 0 60px;
  max-width: 760px;
}

.page-hero__heading {
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  font-weight: var(--fw-semibold);
  line-height: 1.10;
  letter-spacing: -0.028em;
  margin-bottom: 20px;
}

.page-hero__intro {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  font-weight: var(--fw-regular);
  color: var(--text-muted);
  line-height: 1.88;
  max-width: 580px;
}

/* --------------------------------------------------------------------------
   17. FEATURE CARDS (reused on inner pages)
   -------------------------------------------------------------------------- */
.feature-card {
  padding: 30px 28px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.052);
  border-radius: var(--radius-md);
  transition: all var(--ease-out);
  display: flex;
  flex-direction: column;
}

.feature-card .btn {
  margin-top: auto;
}

.feature-card:hover {
  border-color: rgba(110, 142, 251, 0.22);
  background: rgba(110, 142, 251, 0.04);
  transform: translateY(-3px);
}

.feature-card__step {
  font-size: 0.67rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.feature-card__step::before {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: var(--accent-bright);
}

.feature-card__title {
  font-size: 1.0rem;
  font-weight: var(--fw-medium);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.feature-card__desc {
  font-size: 0.855rem;
  font-weight: var(--fw-regular);
  color: var(--text-muted);
  line-height: 1.78;
}

/* --------------------------------------------------------------------------
   18. BACK TO TOP
   -------------------------------------------------------------------------- */
#backToTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.26s ease, transform 0.26s ease, background 0.22s ease;
  pointer-events: none;
  box-shadow: var(--shadow-accent);
}

#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

#backToTop:hover {
  background: #252dc0;
  transform: translateY(-3px);
}

#backToTop svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------------------
   19. SCROLL REVEAL for contained images (correction #15)
   Images inside content sections animate: fade + slide up
   Uses existing .reveal system — applied as .reveal--scale on img wraps
   -------------------------------------------------------------------------- */
.img-reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition:
    opacity 0.70s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.70s cubic-bezier(0.22, 1, 0.36, 1);
}

.img-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   20. INTRO FLOATING CARD — SME Services opening statement
   Dark navy theme matching the rest of the site.
   Left: inline SVG illustration panel. Right: heading + body text.
   -------------------------------------------------------------------------- */
.intro-card-section {
  background: var(--navy);
  padding: 44px 0 52px;
  position: relative;
}

.intro-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 0 1px rgba(110, 142, 251, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.30),
    0 24px 64px rgba(0, 0, 0, 0.20);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.intro-card__visual {
  background: linear-gradient(145deg, rgba(29, 35, 109, 0.35) 0%, rgba(0, 200, 150, 0.07) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  min-height: 240px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.intro-card__svg {
  width: 100%;
  max-width: 175px;
  height: auto;
  display: block;
}

.intro-card__content {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-card__heading {
  font-family: var(--font-primary);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.28;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}

.intro-card__body {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.05vw, 0.975rem);
  color: var(--text-muted);
  line-height: 1.88;
  margin-bottom: 14px;
}

.intro-card__body:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .intro-card-section {
    padding: 28px 0 36px;
  }
  .intro-card {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .intro-card__visual {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 32px;
    min-height: 160px;
  }
  .intro-card__svg {
    max-width: 120px;
  }
  .intro-card__content {
    padding: 28px 24px;
  }
  .intro-card__heading {
    text-align: left;
  }
  .intro-card__body {
    text-align: left;
  }
}

/* =============================================================
   REQUEST A SERVICE MODAL
   ============================================================= */
.rs-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 28, 0.82);
  backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.rs-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.rs-modal {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  overflow: hidden;
  position: relative;
  display: flex;
  transform: translateY(24px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}
.rs-modal-backdrop.is-open .rs-modal {
  transform: translateY(0);
}
.rs-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border: none;
  cursor: pointer;
  color: #ffffff;
  padding: 7px;
  line-height: 1;
  border-radius: 8px;
  transition: background 0.2s;
}
.rs-modal__close:hover { background: rgba(255, 255, 255, 0.30); }
.rs-modal__image {
  flex: 0 0 42%;
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.rs-modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rs-modal__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(10, 15, 60, 0.40) 0%, rgba(29, 35, 109, 0.80) 100%);
}
.rs-modal__image-caption {
  position: absolute;
  bottom: 32px;
  left: 28px;
  right: 28px;
  z-index: 1;
  color: #fff;
}
.rs-modal__image-caption strong {
  display: block;
  font-family: 'Lexend Deca', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}
.rs-modal__image-caption span {
  font-size: 0.8rem;
  opacity: 0.72;
  line-height: 1.5;
}
.rs-modal__content {
  flex: 1;
  padding: 28px 36px 24px;
  overflow: hidden;
}
.rs-modal__logo {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.rs-modal__title {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0a0f3c;
  margin: 0 0 5px;
}
.rs-modal__sub {
  font-size: 0.84rem;
  color: #6b7280;
  margin: 0 0 16px;
  line-height: 1.55;
}
.rs-form-group { margin-bottom: 11px; }
.rs-form-group label {
  display: block;
  font-family: 'Lexend Deca', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.rs-form-group input,
.rs-form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-family: 'Lexend Deca', sans-serif;
  font-size: 0.86rem;
  color: #111827;
  background: #f9fafb;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.rs-form-group input::placeholder { color: #9ca3af; }
.rs-form-group input:focus,
.rs-form-group select:focus {
  border-color: #1d236d;
  box-shadow: 0 0 0 3px rgba(29, 35, 109, 0.10);
  background: #fff;
}
.rs-form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}
.rs-form-group select option[value=""][disabled] { color: #9ca3af; }
.rs-form-submit {
  width: 100%;
  padding: 13px;
  background: #1d236d;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Lexend Deca', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.rs-form-submit:hover {
  background: #252dc0;
  transform: translateY(-1px);
}
@media (max-width: 680px) {
  .rs-modal { border-radius: 16px; }
  .rs-modal__image { display: none; }
  .rs-modal__content { padding: 14px 22px 28px; overflow-y: auto; }
  .rs-modal__close { color: #374151; background: rgba(0,0,0,0.06); }
  .rs-modal__close:hover { background: rgba(0,0,0,0.10); }
}

/* Phone number — call + WhatsApp links */
.phone-links { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.wa-badge {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.65) !important;
  text-decoration: none;
  vertical-align: middle;
  margin-left: 2px;
  transition: color 0.2s;
}
.wa-badge:hover { color: #ffffff !important; }
.wa-badge svg { display: block; }

/* Modal form — inline feedback */
.rs-form__feedback {
  font-size: 0.82rem;
  margin-bottom: 8px;
  display: none;
}
.rs-form__feedback--error { color: #e53935; }

/* Modal form — success state */
.rs-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  min-height: 320px;
}
.rs-form-success__check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1D236D;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 56px;
  text-align: center;
  margin-bottom: 20px;
}
.rs-form-success__title {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a0f3c;
  margin-bottom: 10px;
}
.rs-form-success__body {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
  max-width: 280px;
}
