﻿/* ============================================================
   BAYVIEW SECURITY â€” Hero Page Styles
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #081246;
  --brand-lime: #B9E51A;
  --brand-lime-rgb: 185, 229, 26;
  --book-btn: #96b9dc;
  --book-btn-rgb: 150, 185, 220;
  --book-btn-hover: #7aa8d0;
  --lime:       var(--brand-lime);
  --accent:     var(--brand-lime);
  --accent-rgb: var(--brand-lime-rgb);
  --accent-bright: #d9f82a;
  --accent-brighter: #e7ff72;
  --white:      #f6f6f7;
  --glass-bg:   rgba(224, 239, 255, 0.68);
  --stats-bg:   rgba(3, 18, 89, 0.88);
  --max-w:      1320px;
  --title-size: clamp(40px, 5vw, 68px);
  --card-parallax-x: 0px;
  --card-parallax-y: 0px;
  --card-hover-scale: 1;
}

body {
  --lime: var(--accent);
  margin: 0;
  padding: 0;
  padding-top: 75px;
  font-family: 'Poppins', sans-serif;
  background: #dce9fb;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-preloading {
  overflow: hidden;
}

.site-preloader[hidden] {
  display: none !important;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(var(--accent-rgb), 0.16), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(var(--book-btn-rgb), 0.18), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(135deg, #07103a 0%, #0a1c66 52%, #081246 100%);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.site-preloader::before,
.site-preloader::after {
  content: '';
  position: absolute;
  inset: 0;
}

.site-preloader::before {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 110px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 110px);
  opacity: 0.35;
}

.site-preloader::after {
  background: radial-gradient(circle at center, transparent 0 32%, rgba(8, 18, 70, 0.18) 72%, rgba(8, 18, 70, 0.56) 100%);
}

.site-preloader.is-hiding {
  opacity: 0;
  visibility: hidden;
}

.site-preloader-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: 38px 30px 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 30px 70px rgba(8, 18, 70, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  transform: translateY(0) scale(1);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.site-preloader-shell::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(var(--accent-rgb), 0.8) 22%, rgba(255, 255, 255, 0.92) 50%, rgba(var(--book-btn-rgb), 0.8) 78%, transparent 100%);
}

.site-preloader-shell::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.site-preloader.is-hiding .site-preloader-shell {
  transform: translateY(14px) scale(0.97);
  opacity: 0;
}

.site-preloader-core {
  position: relative;
  width: 132px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.site-preloader-ring,
.site-preloader-glow,
.site-preloader-scan {
  position: absolute;
  border-radius: 50%;
}

.site-preloader-ring {
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.site-preloader-ring--outer {
  border-top-color: rgba(var(--accent-rgb), 0.95);
  border-right-color: rgba(var(--accent-rgb), 0.46);
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.18);
  animation: preloader-spin 2.6s linear infinite;
}

.site-preloader-ring--inner {
  inset: 15px;
  border-color: rgba(var(--book-btn-rgb), 0.14);
  border-left-color: rgba(var(--book-btn-rgb), 0.9);
  border-bottom-color: rgba(var(--book-btn-rgb), 0.42);
  animation: preloader-spin-reverse 1.9s linear infinite;
}

.site-preloader-glow {
  inset: 26px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.33), rgba(255, 255, 255, 0.1) 46%, rgba(255, 255, 255, 0) 74%);
  animation: preloader-pulse 1.8s ease-in-out infinite;
}

.site-preloader-scan {
  inset: 14px;
  overflow: hidden;
}

.site-preloader-scan::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.04) 35%, rgba(var(--accent-rgb), 0.2) 50%, rgba(255, 255, 255, 0.04) 65%, transparent 100%);
  animation: preloader-scan 2s ease-in-out infinite;
}

.site-preloader-badge {
  position: relative;
  width: 74px;
  height: 84px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0%, 88% 14%, 88% 58%, 50% 100%, 12% 58%, 12% 14%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(var(--book-btn-rgb), 0.18));
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 14px 28px rgba(8, 18, 70, 0.24);
  overflow: hidden;
}

.site-preloader-badge::before {
  content: '';
  position: absolute;
  inset: 3px;
  clip-path: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(8, 18, 70, 0.08));
}

.site-preloader-badge::after {
  content: '';
  position: absolute;
  inset: 8px 14px 24px;
  border: 1px solid rgba(var(--accent-rgb), 0.36);
  clip-path: inherit;
  opacity: 0.9;
}

.site-preloader-badge span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 0.16em;
  transform: translateX(2px);
}

.site-preloader-copy {
  display: grid;
  gap: 7px;
  text-align: center;
}

.site-preloader-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.site-preloader-title {
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
}

.site-preloader-text {
  max-width: 280px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.site-preloader-track {
  position: relative;
  width: min(100%, 260px);
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.site-preloader-progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 38%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.82), rgba(255, 255, 255, 0.96), rgba(var(--book-btn-rgb), 0.92));
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.38);
  animation: preloader-progress 1.35s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloader-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes preloader-pulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes preloader-scan {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes preloader-progress {
  0% {
    transform: translateX(-130%);
  }

  100% {
    transform: translateX(330%);
  }
}

/* Keep Bayview brand lime in navigation and footer while the rest of the site themes. */
.site-header,
.site-footer {
  --lime: var(--brand-lime);
  --accent: var(--brand-lime);
  --accent-rgb: var(--brand-lime-rgb);
  --accent-bright: #d9f82a;
  --accent-brighter: #e7ff72;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

.hero-title,
.section-title,
.who-title,
.services-title,
.sectors-title,
.why-main-title,
.impact-title,
.proc-title,
.partners-title,
.fcta-title,
.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0;
}



/* Paragraphs stay in Poppins */
p { font-family: 'Poppins', sans-serif; }

img { display: block; max-width: 100%; }
a  { text-decoration: none; }
ul { list-style: none; }
html { scroll-behavior: smooth; margin: 0; padding: 0; overflow-x: hidden; }

@media (prefers-reduced-motion: reduce) {
  .site-preloader,
  .site-preloader-shell,
  .site-preloader-ring--outer,
  .site-preloader-ring--inner,
  .site-preloader-glow,
  .site-preloader-scan::before,
  .site-preloader-progress {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

.navbar,
.btn-book,
.mobile-menu,
.mobile-book {
  font-family: 'Poppins', sans-serif;
}

.cursor-orb {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  pointer-events: none;
  opacity: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.7);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.22s ease;
}

body.cursor-fx-visible .cursor-orb {
  opacity: 1;
}


/* ============================================================
   NAVBAR
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.86));
  border-bottom: 1px solid rgba(8, 18, 70, 0.12);
  box-shadow: 0 12px 36px rgba(8, 18, 70, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Lime accent stripe */
.lime-bar {
  height: 3px;
  background: var(--lime);
}

.navbar {
  background: transparent;
  height: 100px;
  padding: 0 32px;
  display: flex;
  align-items: center;
}

.navbar-inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(8, 18, 70, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 16px 36px rgba(8, 18, 70, 0.06);
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: transform 0.24s ease;
}

.logo:hover img {
  transform: translateY(-1px) scale(1.01);
}

/* Nav pill */
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-pill {
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 8px 10px;
  box-shadow: none;
  position: relative;
}

.nav-pill::before {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > li {
  position: relative;
}

.nav-links li a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 999px;
  position: relative;
  transition: color 0.2s, background 0.2s, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-links li a:hover,
.nav-links li a:focus-visible {
  color: var(--navy);
  opacity: 1;
  background: rgba(8, 18, 70, 0.055);
  transform: translateY(-1px);
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-caret {
  font-size: 14px;
  line-height: 1;
  transition: transform 0.22s ease;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 320px;
  padding: 14px 12px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(8, 18, 70, 0.98), rgba(11, 27, 94, 0.95));
  border: 1px solid rgba(var(--accent-rgb), 0.32);
  box-shadow: 0 24px 52px rgba(8, 18, 70, 0.26);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  z-index: 20;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-submenu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 26px;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  background: rgba(8, 18, 70, 0.98);
  border-left: 1px solid rgba(var(--accent-rgb), 0.25);
  border-top: 1px solid rgba(var(--accent-rgb), 0.25);
}

.nav-submenu li a {
  display: block;
  padding: 11px 14px;
  border-radius: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  line-height: 1.25;
  color: var(--white);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-submenu li a:hover,
.nav-submenu li a:focus-visible {
  color: var(--lime);
  background: rgba(var(--accent-rgb), 0.12);
  transform: translateX(3px);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret {
  transform: rotate(180deg);
}

.nav-links li a.active {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 22px rgba(8, 18, 70, 0.08);
}

.nav-links li a.active::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--lime);
  border-radius: 999px;
}

/* Book button */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--book-btn);
  color: var(--white);
  border: 2px solid var(--book-btn);
  border-radius: 999px;
  min-height: 50px;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: visible;
  isolation: isolate;
  box-shadow: 0 12px 28px rgba(var(--book-btn-rgb), 0.26);
}

.btn-book::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid rgba(var(--book-btn-rgb), 0.48);
  animation: btn-border-ripple 2.8s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}

.btn-book::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.24) 46%, transparent 70%);
  transform: translateX(-145%);
  pointer-events: none;
}

.btn-book:hover {
  background: var(--book-btn-hover);
  border-color: var(--book-btn-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(var(--book-btn-rgb), 0.34);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 46px;
  height: 46px;
  background: rgba(8, 18, 70, 0.04);
  border: 1px solid rgba(8, 18, 70, 0.08);
  border-radius: 16px;
  cursor: pointer;
  padding: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger:hover,
.hamburger:focus-visible {
  background: rgba(8, 18, 70, 0.07);
  border-color: rgba(8, 18, 70, 0.12);
  transform: translateY(-1px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 255, 0.82));
  padding: 18px 20px 22px;
  border-top: none;
  border-radius: 0 0 26px 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 44px rgba(8, 18, 70, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu ul li a {
  display: block;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 12px 16px;
  border-radius: 14px;
  transition: background 0.2s, color 0.2s, transform 0.2s ease;
}
.mobile-menu ul li a:hover,
.mobile-menu ul li a.active,
.mobile-menu ul li a:focus-visible {
  background: rgba(8, 18, 70, 0.055);
  color: var(--lime);
  transform: translateX(2px);
}
.mobile-book {
  margin-top: 6px;
  align-self: stretch;
}

.mobile-nav-group {
  display: grid;
  gap: 8px;
}

.mobile-nav-group > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-group > a::after {
  content: '›';
  font-size: 18px;
  line-height: 1;
  color: var(--navy);
  opacity: 0.55;
  transition: transform 0.22s ease;
  transform: rotate(90deg);
}

.mobile-nav-group.is-open > a::after {
  transform: rotate(270deg);
}

.mobile-submenu {
  margin-left: 10px;
  padding-left: 14px;
  padding-top: 4px;
  padding-bottom: 2px;
  border-left: 1px solid rgba(8, 18, 70, 0.14);
  display: none;
  gap: 4px;
}

.mobile-submenu.is-open {
  display: grid;
}

.mobile-submenu li a {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: rgba(8, 18, 70, 0.76);
  padding: 9px 12px;
}

.mobile-submenu li a:hover,
.mobile-submenu li a:focus-visible {
  color: var(--lime);
  background: rgba(var(--accent-rgb), 0.1);
}

/* Open state */
.mobile-menu.is-open { display: flex; }

.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 6.5px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -6.5px); }


/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  height: calc(100vh - 103px);
  min-height: 540px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: min(620px, 50vw);
  background: linear-gradient(90deg, rgba(8, 18, 70, 0.97) 0%, rgba(8, 18, 70, 0.97) 75%, rgba(8, 18, 70, 0) 100%);
  z-index: 1;
}

/* Background carousel slides */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 2.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-bg.active {
  opacity: 1;
}

/* Zoom animations on active slides */
.hero-bg.zoom-in .hero-bg-img {
  animation: heroBgZoomIn 12s ease-in-out forwards;
}

.hero-bg.zoom-out .hero-bg-img {
  animation: heroBgZoomOut 12s ease-in-out forwards;
}

.hero-bg.zoom-pan .hero-bg-img {
  animation: heroBgZoomPan 12s ease-in-out forwards;
}

@keyframes heroBgZoomIn {
  from { transform: scale(1);    }
  to   { transform: scale(1.10); }
}

@keyframes heroBgZoomOut {
  from { transform: scale(1.10); }
  to   { transform: scale(1);    }
}

@keyframes heroBgZoomPan {
  from { transform: scale(1)    translateX(0);     }
  to   { transform: scale(1.08) translateX(-2.5%); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 8% 18% 12% 42%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 28%, rgba(255, 255, 255, 0) 62%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* Centered content wrapper */
.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 64px, var(--max-w));
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
}


/* ============================================================
   GLASS CARD
   ============================================================ */

.glass-card {
  width: 510px;
  min-height: 490px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 31px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  position: relative;
  overflow: visible;
}

.glass-card::before,
.glass-card::after {
  display: none;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #96b9dc;
  border-radius: 14px;
  padding: 8px 14px;
  width: fit-content;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.badge span {
  font-size: 13px;
  color: var(--navy);
}

/* Hero title */
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.22;
  color: var(--white);
  font-weight: 700;
}
.hero-title .lime { color: var(--lime); }

/* Lime divider under title */
.hero-divider {
  width: 48px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Description */
.hero-desc {
  max-width: 390px;
  font-size: 13px;
  line-height: 1.42;
  color: rgba(246, 246, 247, 0.82);
}

/* Button group */
.hero-btns {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* Explore button */
.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #96b9dc;
  color: var(--navy);
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-explore:hover {
  background: #7aa8d0;
}

/* Watch Video button */
@keyframes btn-ripple {
  0%   { transform: scale(1);    opacity: 0.45; }
  100% { transform: scale(1.55); opacity: 0; }
}

@keyframes btn-border-ripple {
  0% {
    transform: scale(1);
    opacity: 0.52;
  }
  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(246, 246, 247, 0.50);
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
  position: relative;
  transition: border-color 0.2s;
}
.btn-video::before,
.btn-video::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  animation: btn-ripple 2s ease-out infinite;
  pointer-events: none;
}
.btn-video::after {
  animation-delay: 1s;
}
.btn-video:hover {
  border-color: var(--white);
}

/* Feature cards row */
.feature-row {
  display: flex;
  gap: 0;
  margin-top: auto;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 10px 4px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.feature-card {
  flex: 1;
  background: transparent;
  border-radius: 0;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.feature-card + .feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 55%;
  background: rgba(255, 255, 255, 0.30);
}

.feat-icon {
  width: 41px;
  height: 41px;
  border: 1.5px solid var(--lime);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-text {
  font-size: 12px;
  line-height: 1.1;
  color: var(--white);
}
.feat-text strong {
  display: block;
}


/* ============================================================
   SOCIAL ICONS PANEL
   ============================================================ */

.social-panel {
  position: absolute;
  top: 0;
  right: max(32px, calc((100vw - var(--max-w)) / 2 + 32px));
  z-index: 5;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 0;
  padding: 6px 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.13);
  overflow: hidden;
}

.social-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(var(--accent-rgb), 0.12) 50%, transparent 100%);
  transform: translateX(-140%);
  pointer-events: none;
}

.social-panel a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 3px;
  transition: opacity 0.2s, background 0.2s;
}
.social-panel a:hover { opacity: 0.65; }


/* ============================================================
   HERO CAROUSEL PROGRESS BAR
   ============================================================ */

.hero-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 10;
  overflow: hidden;
}

.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--lime);
  border-radius: 0 2px 2px 0;
}

.hero-progress-bar.running {
  animation: heroProgress 12s linear forwards;
}

@keyframes heroProgress {
  from { width: 0%; }
  to   { width: 100%; }
}


/* ============================================================
   HERO CAROUSEL DOTS
   ============================================================ */

.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.40);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}

.hero-dot.active {
  background: var(--lime);
  border-color: var(--lime);
  transform: scale(1.25);
}


/* ============================================================
   STATS CARD
   ============================================================ */

.stats-card {
  position: absolute;
  bottom: 72px;
  right: max(32px, calc((100vw - var(--max-w)) / 2 + 32px));
  width: 650px;
  height: 118px;
  background: var(--stats-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(6, 17, 84, 0.22);
  border-radius: 22px;
  box-shadow: 0 8px 28px rgba(3, 18, 89, 0.40);
  display: flex;
  align-items: center;
  padding: 0 24px;
  z-index: 4;
  overflow: hidden;
}

.stats-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 15%, rgba(255, 255, 255, 0.16) 45%, transparent 72%);
  transform: translateX(-135%);
  opacity: 0.8;
  pointer-events: none;
}

.stat-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 10px;
  text-align: center;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--lime);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
}

.stat-icon::after {
  content: '';
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 50%;
  opacity: 0;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  color: var(--lime);
  line-height: 1;
  display: block;
  font-weight: 700;
}

.stat-lbl {
  font-size: 14px;
  color: var(--white);
  white-space: nowrap;
  display: block;
  margin-top: 4px;
  font-weight: 600;
}

.stat-sub {
  font-size: 11px;
  color: rgba(246, 246, 247, 0.55);
  white-space: nowrap;
  display: block;
  margin-top: 2px;
}

.stat-div {
  width: 1px;
  height: 78px;
  background: var(--lime);
  opacity: 0.55;
  flex-shrink: 0;
}

.stat-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  align-items: center;
}


/* ============================================================
   MAIN SECTIONS
   ============================================================ */

main {
  position: relative;
  z-index: 2;
  background: transparent;
}

.section {
  padding: 92px 0;
  position: relative;
  z-index: 1;
  background: #eef4ff;
}

.section-shell {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(8, 18, 70, 0.08);
  color: var(--navy);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.section-title {
  margin-top: 18px;
  max-width: 760px;
  font-size: var(--title-size);
  line-height: 1.12;
  color: var(--navy);
  font-weight: 700;
}

.section-text {
  margin-top: 18px;
  max-width: 700px;
  font-size: 15px;
  line-height: 1.75;
  color: #334268;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 38px;
}

.section-head.narrow {
  max-width: 760px;
}

.image-placeholder {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 170px;
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(8, 18, 70, 0.9), rgba(38, 79, 171, 0.78)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.28), transparent 36%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.image-placeholder::before,
.image-placeholder::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.image-placeholder::before {
  inset: auto -14% -24% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.32), rgba(var(--accent-rgb), 0));
}

.image-placeholder::after {
  inset: 14px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.24);
}

.image-placeholder span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.image-placeholder.tall {
  min-height: 240px;
}

.image-placeholder.wide {
  min-height: 190px;
}

.image-placeholder.small {
  min-height: 120px;
  margin-bottom: 18px;
}

.image-placeholder.dark {
  background:
    linear-gradient(145deg, rgba(4, 15, 66, 0.96), rgba(10, 39, 122, 0.9)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.22), transparent 40%);
}

.intro-grid,
.sectors-grid,
.cta-shell,
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.intro-copy,
.intro-card,
.sector-panel,
.contact-card {
  border-radius: 28px;
}

.intro-copy {
  padding: 34px 36px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(225, 236, 255, 0.78));
  border: 1px solid rgba(8, 18, 70, 0.08);
  box-shadow: 0 18px 50px rgba(8, 18, 70, 0.08);
}

.intro-card {
  padding: 32px;
  background: linear-gradient(155deg, rgba(8, 18, 70, 0.96), rgba(9, 33, 122, 0.88));
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(8, 18, 70, 0.18);
}

.intro-card::before,
.sector-panel::before,
.cta-shell::before {
  content: '';
  position: absolute;
  inset: auto -20% -35% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.18), rgba(var(--accent-rgb), 0));
  pointer-events: none;
}

.intro-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  color: var(--lime);
  font-size: 13px;
}

.intro-points {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.intro-points li {
  position: relative;
  padding-left: 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.intro-points li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.5);
}

.who-section {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 118px;
  background:
    radial-gradient(circle at 0% 0%, rgba(var(--accent-rgb), 1) 0 82px, rgba(var(--accent-rgb), 0) 83px),
    radial-gradient(circle at 5% 5%, rgba(224, 233, 249, 0.98) 0 148px, rgba(224, 233, 249, 0) 149px),
    radial-gradient(circle at 100% 100%, rgba(220, 230, 247, 0.95) 0 200px, rgba(220, 230, 247, 0) 201px),
    linear-gradient(180deg, #f6f6f7 0%, #f8fbff 58%, #f4f8ff 100%);
}

.who-section::before,
.who-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.who-section::before {
  top: 18px;
  right: 38px;
  width: 170px;
  height: 110px;
  background-image: radial-gradient(circle, rgba(8, 18, 70, 0.08) 1.8px, transparent 2px);
  background-size: 26px 26px;
}

.who-section::after {
  right: 174px;
  bottom: 108px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(64, 114, 208, 0.9);
  box-shadow: 0 18px 34px rgba(64, 114, 208, 0.24);
}

.who-shell {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.82fr);
  gap: 78px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.who-media-wrap {
  position: relative;
  padding-bottom: 44px;
}

.who-media-wrap::before {
  content: '';
  position: absolute;
  top: -36px;
  left: -42px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.3), rgba(var(--accent-rgb), 0.06) 45%, rgba(var(--accent-rgb), 0) 72%);
  pointer-events: none;
  z-index: 0;
}

.who-media-wrap::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb), 0.4);
  box-shadow:
    0 0 0 18px rgba(var(--accent-rgb), 0.08),
    0 0 34px rgba(var(--accent-rgb), 0.18);
  pointer-events: none;
  z-index: 0;
}

.who-media {
  border-radius: 34px;
  overflow: hidden;
  background: #dfe9f8;
  box-shadow: 0 28px 70px rgba(8, 18, 70, 0.14);
}

.who-image {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.who-trust-card {
  position: absolute;
  left: 34px;
  right: 38px;
  bottom: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 22px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #081246 0%, #0d1e6e 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(8, 18, 70, 0.24);
}

.who-trust-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime) 0%, rgba(var(--accent-rgb), 0.14) 55%, rgba(var(--accent-rgb), 0) 100%);
}

.who-trust-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.18) 48%, transparent 72%);
  transform: translateX(-145%);
  pointer-events: none;
}

.who-trust-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f6f6f7;
  border: 4px solid var(--lime);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.who-trust-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.who-trust-copy h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
}

.who-trust-copy p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.55;
  width: fit-content;
}

.who-trust-divider {
  width: 1px;
  height: 108px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.48) 22%, rgba(255, 255, 255, 0.48) 78%, rgba(255, 255, 255, 0) 100%);
}

.who-trust-stat {
  min-width: 118px;
  display: grid;
  gap: 8px;
  justify-items: start;
}

.who-trust-stat strong {
  font-size: 36px;
  line-height: 1;
  color: var(--lime);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.who-trust-stat span {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}

.who-copy {
  position: relative;
}

.who-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px 14px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(44, 92, 187, 0.5);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(8, 18, 70, 0.08);
}

.who-kicker::before {
  content: '';
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.16);
}

.who-title {
  margin-top: 36px;
  max-width: 600px;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.06;
  color: #081246;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.who-accent {
  display: block;
  width: 72px;
  height: 7px;
  margin-top: 34px;
  border-radius: 999px;
  background: var(--lime);
  position: relative;
  overflow: hidden;
}

.who-accent::after {
  content: '';
  position: absolute;
  inset: -2px auto -2px -18px;
  width: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  filter: blur(3px);
}

.who-text {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.92;
  color: #2a3554;
}

.who-accent + .who-text {
  margin-top: 34px;
}

.who-text + .who-text {
  margin-top: 6px;
}

.who-media,
.who-trust-card,
.who-kicker {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.32s ease;
}

.who-media:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 76px rgba(8, 18, 70, 0.18);
}

.who-trust-card:hover {
  box-shadow: 0 28px 58px rgba(8, 18, 70, 0.28);
}

.vmv-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(var(--accent-rgb), 0.14), rgba(var(--accent-rgb), 0) 26%),
    radial-gradient(circle at 92% 82%, rgba(8, 18, 70, 0.06), rgba(8, 18, 70, 0) 28%),
    linear-gradient(180deg, #eff5ff 0%, #fbfcff 100%);
}

.vmv-section::before,
.vmv-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.vmv-section::before {
  top: 44px;
  right: 48px;
  width: 164px;
  height: 116px;
  background-image: radial-gradient(circle, rgba(8, 18, 70, 0.08) 1.8px, transparent 2px);
  background-size: 24px 24px;
}

.vmv-section::after {
  left: 52px;
  bottom: 70px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.26), rgba(var(--accent-rgb), 0));
}

.vmv-shell {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  padding: clamp(28px, 3.5vw, 46px);
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 1;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(241, 247, 255, 0.94)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0) 28%);
  border: 1px solid rgba(8, 18, 70, 0.08);
  box-shadow:
    0 30px 80px rgba(8, 18, 70, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.vmv-shell::before,
.vmv-shell::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.vmv-shell::before {
  inset: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.vmv-shell::after {
  top: 0;
  left: 44px;
  right: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(var(--accent-rgb), 0.56) 20%, rgba(255, 255, 255, 0.95) 50%, rgba(var(--accent-rgb), 0.56) 80%, transparent 100%);
}

.vmv-media {
  position: relative;
  z-index: 1;
}

.vmv-media::before {
  content: '';
  position: absolute;
  top: -22px;
  left: -22px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.28), rgba(var(--accent-rgb), 0) 68%);
  pointer-events: none;
}

.vmv-media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(160deg, #dce7fb 0%, #bcd0f4 100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 30px 70px rgba(8, 18, 70, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.vmv-media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 18, 70, 0.05), rgba(8, 18, 70, 0.18)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.16), rgba(var(--accent-rgb), 0) 34%);
  pointer-events: none;
}

.vmv-image {
  display: block;
  width: 100%;
  height: auto;
}

.vmv-media-badge {
  position: absolute;
  right: 22px;
  bottom: 24px;
  max-width: 320px;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(8, 18, 70, 0.92), rgba(12, 35, 111, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 48px rgba(8, 18, 70, 0.26);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.vmv-media-badge-label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.14);
  border: 1px solid rgba(var(--accent-rgb), 0.26);
  color: var(--lime);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vmv-media-badge strong {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
}

.vmv-content {
  display: grid;
  gap: 30px;
  align-content: center;
  position: relative;
  z-index: 1;
}

.vmv-head {
  max-width: none;
}

.vmv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px 14px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(44, 92, 187, 0.5);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 30px rgba(8, 18, 70, 0.08);
}

.vmv-kicker::before {
  content: '';
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.16);
}

.vmv-title {
  margin-top: 28px;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.06;
}

.vmv-accent {
  display: block;
  width: 72px;
  height: 7px;
  margin-top: 26px;
  border-radius: 999px;
  background: var(--lime);
}

.vmv-intro {
  margin-top: 26px;
  max-width: 680px;
  color: #2a3554;
  font-size: 16px;
  line-height: 1.9;
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.vmv-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 26px 26px;
  border-radius: 24px;
  border: 1px solid rgba(8, 18, 70, 0.08);
  box-shadow: 0 16px 36px rgba(8, 18, 70, 0.08);
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.vmv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vmv-card:hover {
  box-shadow: 0 20px 40px rgba(8, 18, 70, 0.1);
}

.vmv-card--vision {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96));
  color: var(--navy);
  border-color: rgba(8, 18, 70, 0.08);
}

.vmv-card--vision::before {
  background:
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.9), rgba(150, 185, 220, 0.45)) left 0 top 24px / 4px calc(100% - 48px) no-repeat,
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.12), rgba(var(--accent-rgb), 0) 34%);
}

.vmv-card--mission {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 255, 0.94));
}

.vmv-card--mission::before {
  background:
    linear-gradient(90deg, rgba(150, 185, 220, 0.92), rgba(var(--accent-rgb), 0.36)) left 0 top 24px / 4px calc(100% - 48px) no-repeat,
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.1), rgba(var(--accent-rgb), 0) 34%),
    linear-gradient(180deg, rgba(8, 18, 70, 0), rgba(8, 18, 70, 0.03));
}

.vmv-card--values {
  grid-column: 1 / -1;
  background: linear-gradient(160deg, rgba(7, 23, 85, 0.97), rgba(12, 40, 122, 0.94));
  border-color: rgba(var(--accent-rgb), 0.22);
  color: var(--white);
}

.vmv-card--values::before {
  background:
    radial-gradient(circle at 0% 0%, rgba(var(--accent-rgb), 0.18), rgba(var(--accent-rgb), 0) 24%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 42%);
}

.vmv-card-label,
.vmv-card-title,
.vmv-card-text,
.vmv-values {
  position: relative;
  z-index: 1;
}

.vmv-card-label {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.vmv-card--values .vmv-card-label {
  background: rgba(var(--accent-rgb), 0.14);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  color: var(--lime);
}

.vmv-card--vision .vmv-card-label,
.vmv-card--mission .vmv-card-label {
  background: rgba(8, 18, 70, 0.06);
  border: 1px solid rgba(8, 18, 70, 0.08);
  color: var(--navy);
}

.vmv-card-title {
  margin-top: 18px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 700;
  line-height: 1.28;
}

.vmv-card-text {
  margin-top: 18px;
  max-width: none;
  color: #33456f;
  font-size: 16px;
  line-height: 1.8;
}

.vmv-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.vmv-values li {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.96);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vmv-section--home {
  padding-top: 72px;
}

.services-bg-fixed {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 18, 76, 0.40), rgba(4, 18, 76, 0.72)),
    radial-gradient(circle at top left, rgba(var(--accent-rgb), 0.22), rgba(var(--accent-rgb), 0) 24%),
    url("assets/services bg .webp") center center / cover no-repeat;
}

.services-bg-fixed::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 22%, rgba(4, 18, 76, 0.24) 100%),
    radial-gradient(circle at 82% 16%, rgba(var(--accent-rgb), 0.16), rgba(var(--accent-rgb), 0) 14%);
  pointer-events: none;
}

.services-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: clamp(220px, 24vh, 340px);
  background: transparent;
}

.services-section::before,
.services-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.services-section::before {
  top: 28px;
  right: 52px;
  width: 150px;
  height: 108px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.34) 1.8px, transparent 2px);
  background-size: 24px 24px;
  z-index: 1;
}

.services-section::after {
  right: 140px;
  top: 218px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.94);
  box-shadow: 0 16px 34px rgba(var(--accent-rgb), 0.24);
  z-index: 1;
}

.services-stage {
  display: none;
}

.services-shell {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  padding-top: clamp(112px, 16vh, 152px);
  padding-bottom: clamp(140px, 18vh, 240px);
  position: relative;
  z-index: 1;
}

.services-head {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 0 18px;
}

.services-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px 14px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(44, 92, 187, 0.5);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(8, 18, 70, 0.14);
}

.services-kicker::before {
  content: '';
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.16);
}

.services-title {
  margin-top: 26px;
  max-width: 960px;
  color: #f6f6f7;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.05;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-shadow: 0 16px 42px rgba(2, 11, 46, 0.34);
}

.services-accent {
  display: block;
  width: 68px;
  height: 6px;
  margin-top: 22px;
  border-radius: 999px;
  background: var(--lime);
}

.services-subtitle {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.7;
  text-shadow: 0 8px 24px rgba(2, 11, 46, 0.2);
}

.services-grid,
.why-grid,
.impact-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  gap: 34px;
}

.service-card,
.why-card,
.impact-card,
.process-step,
.sector-item,
.contact-card,
.footer-links,
.footer-brand {
  position: relative;
  overflow: hidden;
}

.service-card {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 18, 70, 0.08);
  box-shadow: 0 22px 56px rgba(8, 18, 70, 0.1);
  isolation: isolate;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition:
    opacity 0.62s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background-color 0.32s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.18), rgba(var(--accent-rgb), 0) 36%),
    linear-gradient(180deg, rgba(11, 43, 135, 0), rgba(11, 43, 135, 0.08));
  opacity: 0;
  transition: opacity 0.38s ease;
  pointer-events: none;
  z-index: 0;
}

.service-media {
  position: relative;
  min-height: 350px;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  background: linear-gradient(160deg, #d7e6fb 0%, #b4cff8 100%);
}

.service-media-link {
  position: absolute;
  inset: 0;
  display: block;
}

.service-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.service-media::after {
  content: '';
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -60px;
  height: 120px;
  border-radius: 50%;
  background: #f6f6f7;
  box-shadow: 0 -1px 0 rgba(var(--accent-rgb), 0.95);
}

.service-media-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 18, 70, 0.08) 0%, rgba(5, 18, 70, 0.5) 100%),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.22), rgba(var(--accent-rgb), 0) 35%);
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.service-body {
  position: relative;
  padding: 34px 32px 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #f6f6f7 100%);
  z-index: 1;
}

.service-card h3,
.sector-item h3,
.why-card h3,
.process-step h3,
.footer-links h3 {
  color: var(--navy);
  font-size: 26px;
  line-height: 1.15;
}

.service-line {
  display: block;
  width: 38px;
  height: 5px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--lime);
  transform-origin: left center;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease;
}

.service-card h3,
.service-title-poppins {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.service-card p,
.sector-item p,
.why-card p,
.process-step p,
.footer-brand p,
.footer-links p,
.contact-line,
.intro-points li {
  font-family: 'Poppins', sans-serif;
}

.service-card p,
.sector-item p,
.why-card p,
.process-step p,
.footer-brand p,
.footer-links p {
  margin-top: 14px;
  color: #4a597d;
  font-size: 15px;
  line-height: 1.7;
}

.service-icon {
  display: none;
  position: absolute;
  left: 28px;
  bottom: 18px;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: #f6f6f7;
  border: 2px solid rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(var(--accent-rgb), 0.42),
    0 10px 26px rgba(8, 18, 70, 0.18);
}

.service-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), letter-spacing 0.3s ease, color 0.3s ease;
}

.service-link-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(var(--accent-rgb), 0.9);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
}

.services-section.is-visible .service-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: var(--service-reveal-delay, 0s);
}

.service-link-icon,
.service-icon {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.32s ease,
              border-color 0.32s ease,
              background-color 0.32s ease;
}

.service-card:hover {
  transform: translateY(-12px) rotateX(1.2deg) rotateY(-1deg);
  border-color: rgba(var(--accent-rgb), 0.44);
  box-shadow:
    0 30px 70px rgba(8, 18, 70, 0.16),
    0 0 0 1px rgba(var(--accent-rgb), 0.18);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-link-icon {
  transform: translateX(6px) scale(1.08);
  background: rgba(var(--accent-rgb), 0.22);
  border-color: rgba(var(--accent-rgb), 1);
  box-shadow: 0 10px 24px rgba(8, 18, 70, 0.16);
}

.service-card:hover .service-media-image {
  transform: scale(1.08);
}

.service-card:hover .service-media-link::after {
  opacity: 0.86;
  transform: scale(1.03);
}

.service-card:hover .service-icon {
  transform: translateY(-5px) scale(1.08) rotate(-6deg);
  box-shadow:
    inset 0 0 0 1px rgba(var(--accent-rgb), 0.48),
    0 18px 36px rgba(8, 18, 70, 0.24);
}

.service-card:hover .service-line {
  transform: scaleX(1.5);
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.45);
}

.service-card:hover h3 {
  transform: translateY(-2px);
}

.service-card:hover p {
  transform: translateY(-1px);
  color: #33456f;
}

.service-card:hover .service-link {
  transform: translateX(3px);
  letter-spacing: 0.01em;
}

.service-card h3,
.service-card p {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease;
}

.service-media-link:focus-visible,
.service-link:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), 0.95);
  outline-offset: 4px;
}

.sectors-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.sector-panel {
  position: relative;
  padding: 36px;
  background: linear-gradient(165deg, rgba(8, 18, 70, 0.97), rgba(10, 43, 136, 0.9));
  color: var(--white);
  overflow: hidden;
  box-shadow: 0 20px 52px rgba(8, 18, 70, 0.16);
}

.sector-panel .section-kicker {
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--lime);
}

.sector-panel .section-title,
.sector-panel .section-text {
  color: var(--white);
}

.sector-panel .section-text {
  color: rgba(255, 255, 255, 0.84);
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--lime);
  font-size: 15px;
  border-bottom: 2px solid rgba(var(--accent-rgb), 0.45);
  padding-bottom: 4px;
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sector-item {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 18, 70, 0.08);
  box-shadow: 0 14px 34px rgba(8, 18, 70, 0.07);
}


/* ============================================================
   SECTORS SECTION â€” Redesign (4-card layout)
   ============================================================ */

.sectors-section {
  position: relative;
  overflow: hidden;
  /* Deep navy with a subtle blue radial glow matching the screenshot */
  background:
    radial-gradient(ellipse 65% 75% at 24% 62%, rgba(20, 72, 210, 0.32) 0%, transparent 100%),
    radial-gradient(ellipse 50% 55% at 78% 22%, rgba(12, 44, 160, 0.18) 0%, transparent 100%),
    #010c28;
}

/* Dot grids â€” white/blue dots on dark background */
.sec-dots {
  position: absolute;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(180, 205, 255, 0.22) 1.6px, transparent 1.6px);
  background-size: 22px 22px;
  z-index: 0;
}
.sec-dots--tl {
  top: 28px;
  left: 28px;
  width: 170px;
  height: 170px;
}
.sec-dots--br {
  bottom: 70px;
  right: 80px;
  width: 140px;
  height: 130px;
  opacity: 0.7;
}

/* Blue glow sweep curves */
.sec-blue-curve {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(1.5px);
  opacity: 0.55;
}
.sec-blue-curve--bl {
  bottom: -20px;
  left: -30px;
  width: 620px;
  height: 420px;
}
.sec-blue-curve--tr {
  top: -10px;
  right: 100px;
  width: 500px;
  height: 300px;
}

/* Lime accent curve (right edge) */
.sec-curve {
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 520px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

/* â”€â”€ Header â”€â”€ */
.sectors-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

/* Dark pill kicker with shield icon */
.sectors-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #f6f6f7;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.sectors-kicker-icon {
  flex-shrink: 0;
}

.sectors-title {
  margin-top: 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.1;
  color: #f6f6f7;
}

.sectors-accent {
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 20px;
  border-radius: 999px;
  background: var(--lime);
}

.sectors-subtitle {
  margin-top: 22px;
  max-width: 680px;
  font-family: 'Poppins', sans-serif;
  font-size: 15.5px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.80);
  text-align: center;
}

/* â”€â”€ 4-column card grid â”€â”€ */
.sectors-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}

/* â”€â”€ Individual card â”€â”€ */
.sector-card {
  background: #f6f6f7;
  border-radius: 18px;
  border: 1px solid rgba(8, 18, 70, 0.07);
  box-shadow: 0 6px 28px rgba(8, 18, 70, 0.08);
  position: relative;
  overflow: visible;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.32s ease;
}

.sector-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 52px rgba(8, 18, 70, 0.14);
}

/* Photo area */
.sector-card-media {
  height: 218px;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  background: linear-gradient(155deg, #0f2367, #1a3a8c);
  position: relative;
}

.sector-card-media-link {
  display: block;
}

/* Per-card fallback tints when image is missing */
.sector-card:nth-child(2) .sector-card-media { background: linear-gradient(155deg, #0d1f5e, #14317c); }
.sector-card:nth-child(3) .sector-card-media { background: linear-gradient(155deg, #112270, #1c3e96); }
.sector-card:nth-child(4) .sector-card-media { background: linear-gradient(155deg, #081750, #10286e); }

.sector-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.sector-card:hover .sector-card-media img {
  transform: scale(1.05);
}

/* Circular icon badge straddling image/body boundary */
.sector-card-icon {
  position: absolute;
  left: 22px;
  top: calc(218px - 34px); /* places icon centre exactly on the boundary */
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid rgba(var(--accent-rgb), 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 22px rgba(8, 18, 70, 0.26);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease;
}

.sector-card:hover .sector-card-icon {
  transform: scale(1.08);
  border-color: rgba(var(--accent-rgb), 0.9);
}

/* Card body â€” top padding clears the icon overflow */
.sector-card-body {
  padding: 48px 22px 28px;
}

.sector-card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.22;
  color: var(--navy);
}

.sector-card-title-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sector-card-title-link:hover {
  color: #0d1e6e;
}

.sector-card-body p {
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  line-height: 1.72;
  color: #566080;
}

/* "Learn More â†’" link */
.sector-card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.sector-card-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.14);
  border: 1.5px solid rgba(var(--accent-rgb), 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: background 0.22s ease,
              border-color 0.22s ease,
              transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sector-card-link:hover .sector-card-arrow {
  background: var(--lime);
  border-color: var(--lime);
  transform: translateX(4px);
}

.sector-card-media-link:focus-visible,
.sector-card-title-link:focus-visible,
.sector-card-link:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), 0.92);
  outline-offset: 4px;
}

/* â”€â”€ Centred CTA button â”€â”€ */
.sectors-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.btn-sectors-explore {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #96b9dc;
  color: var(--navy);
  border-radius: 14px;
  padding: 18px 44px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 32px rgba(150, 185, 220, 0.45);
  transition: background 0.22s ease,
              transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.22s ease;
}

.btn-sectors-explore:hover {
  background: #7aa8d0;
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(150, 185, 220, 0.60);
}

.btn-sectors-explore svg:last-child {
  transition: transform 0.22s ease;
}

.btn-sectors-explore:hover svg:last-child {
  transform: translateX(4px);
}


/* ============================================================
   WHY SECTION â€” Redesign (6-card, 3Ã—2 grid)
   ============================================================ */

.why-section {
  background: #f6f6f7;
  position: relative;
  overflow: hidden;
}

/* Dot grids â€” same size/density as sectors for visual continuity */
.why-dots {
  position: absolute;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(8, 18, 70, 0.12) 1.6px, transparent 1.6px);
  background-size: 22px 22px;
  z-index: 0;
}
.why-dots--tl { top: 28px; left: 28px; width: 160px; height: 160px; }
.why-dots--br { bottom: 48px; right: 48px; width: 120px; height: 100px; opacity: 0.55; }

/* Lime curves â€” TL mirrors sectors' right-edge curve; BR closes the motif */
.why-curve {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.72;
}
.why-curve--tl { top: -10px; left: 50px;  width: 120px; height: 320px; }
.why-curve--br { bottom: -10px; right: 50px; width: 120px; height: 220px; }

/* â”€â”€ Centred header â”€â”€ */
.why-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

/* Kicker pill â€” same visual as sectors-kicker */
.why-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  border-radius: 999px;
  border: 1.5px solid rgba(8, 18, 70, 0.18);
  background: #f6f6f7;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(8, 18, 70, 0.07);
}

.why-kicker-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.22);
}

.why-main-title {
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.1;
  color: var(--navy);
}

.why-main-subtitle {
  margin-top: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 15.5px;
  line-height: 1.75;
  color: #4e5e82;
  max-width: 620px;
}

/* â”€â”€ 3-column, 2-row grid â”€â”€ */
.why-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}

/* â”€â”€ Individual card â”€â”€ */
.why-item {
  background: #f6f6f7;
  border-radius: 18px;
  border: 1px solid rgba(8, 18, 70, 0.07);
  box-shadow: 0 4px 22px rgba(8, 18, 70, 0.07);
  padding: 28px 26px 30px;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.32s ease;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(8, 18, 70, 0.12);
}

/* Icon + title row */
.why-item-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* Navy circle icon badge */
.why-item-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(145deg, #112680, var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(8, 18, 70, 0.24);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-item:hover .why-item-icon {
  transform: scale(1.07);
}

/* Title + lime dash stacked vertically */
.why-item-title-col {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
  flex: 1;
}

.why-item-title-col h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  color: var(--navy);
}

.why-item-dash {
  display: block;
  width: 28px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--lime);
}

/* Description */
.why-item-text {
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #566080;
}

.impact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
  padding: 38px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.14), transparent 24%),
    radial-gradient(circle at bottom left, rgba(38, 102, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #031037 0%, #041548 45%, #031133 100%);
  box-shadow: 0 30px 80px rgba(2, 10, 40, 0.28);
  overflow: hidden;
}

.impact-shell::before,
.impact-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.impact-shell::before {
  top: 34px;
  right: 120px;
  width: 148px;
  height: 96px;
  opacity: 0.28;
  background-image: radial-gradient(circle, rgba(32, 88, 237, 0.5) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

.impact-shell::after {
  top: -90px;
  right: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb), 0.26);
  box-shadow:
    0 0 0 48px rgba(22, 53, 150, 0.12),
    0 0 0 96px rgba(22, 53, 150, 0.07);
}

.impact-visual,
.impact-copy {
  position: relative;
  z-index: 1;
}

.impact-visual-frame {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 720px;
  border: 1px solid rgba(52, 113, 255, 0.7);
  box-shadow:
    0 0 0 2px rgba(26, 100, 255, 0.12),
    0 30px 70px rgba(1, 7, 32, 0.42);
}

.impact-visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 2px rgba(103, 167, 255, 0.42),
    inset 0 0 26px rgba(37, 111, 255, 0.28);
  pointer-events: none;
}

.impact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.impact-copy {
  display: grid;
  align-content: center;
}

.impact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(83, 140, 255, 0.72);
  background: rgba(6, 25, 84, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 18px 34px rgba(2, 9, 35, 0.18);
  color: var(--lime);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.impact-title {
  margin-top: 28px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.08;
  max-width: 920px;
  font-weight: 700;
}

.impact-accent {
  display: block;
  width: 66px;
  height: 6px;
  border-radius: 999px;
  background: var(--lime);
  margin-top: 24px;
}

.impact-text {
  margin-top: 28px;
  max-width: 760px;
  color: rgba(255,255,255,0.86);
  font-size: 18px;
  line-height: 1.65;
}

.impact-grid {
  margin-top: 34px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.impact-card {
  min-height: 290px;
  padding: 28px 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(7, 29, 95, 0.92) 0%, rgba(4, 20, 67, 0.96) 100%);
  border: 1px solid rgba(36, 116, 255, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(137, 189, 255, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.18);
  text-align: center;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.impact-card-icon {
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  margin-bottom: 24px;
  background: radial-gradient(circle at center, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0) 72%);
  filter: drop-shadow(0 0 16px rgba(var(--accent-rgb), 0.22));
}

.impact-card h3 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.impact-card-accent {
  display: block;
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: var(--lime);
  margin: 16px auto 18px;
}

.impact-card p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.55;
}

.impact-cta {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
  padding: 18px 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--accent-bright) 0%, var(--lime) 100%);
  color: #05112f;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  box-shadow:
    0 10px 26px rgba(var(--accent-rgb), 0.26),
    inset 0 1px 0 rgba(255,255,255,0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.impact-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px rgba(var(--accent-rgb), 0.34),
    inset 0 1px 0 rgba(255,255,255,0.42);
}

/* ============================================================
   SERVICE PROCESS SECTION
   ============================================================ */

.process-section {
  --process-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --process-enter: 0.72s;
  --process-float: 5.2s;
  --process-draw: 1.35s;
  background: #f4f7fd;
  position: relative;
  overflow: hidden;
}

.process-section.reveal {
  opacity: 1;
  transform: none;
}

/* Dot grid decorations */
.proc-dots {
  position: absolute;
  width: 190px;
  height: 190px;
  background-image: radial-gradient(circle, rgba(8, 18, 70,0.13) 1.4px, transparent 1.4px);
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 0;
}
.proc-dots--tl { top: 16px;  left: 16px; }
.proc-dots--br { bottom: 60px; right: 16px; }

/* Blue blob decoration */
.proc-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.proc-blob--br {
  bottom: -60px;
  right:  -80px;
  width: 340px; height: 340px;
  background: radial-gradient(ellipse, rgba(8, 18, 70,0.09) 0%, transparent 70%);
}
.proc-blob--tl {
  top: -80px;
  left: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(ellipse, rgba(8, 18, 70,0.06) 0%, transparent 70%);
}

/* Section head */
.proc-head {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
  opacity: 0;
}

.proc-kicker {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 26px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(-14px);
}

.proc-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 4.8vw, 56px);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(22px) scale(0.975);
  transform-origin: center top;
}

.proc-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: rgba(8, 18, 70,0.55);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(18px);
}

/* Layout container */
.proc-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* Row */
.proc-row {
  display: flex;
  align-items: flex-start;
}

.proc-row--2 {
  justify-content: center;
}

/* Individual step */
.proc-step {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(35px) scale(0.96);
}

/* Icon area */
.proc-icon-area {
  position: relative;
  z-index: 2;
  margin-bottom: -46px;
}

/* Number badge */
.proc-badge {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(8, 18, 70,0.30);
  opacity: 0;
  transform: scale(0.78);
}

/* Icon circle */
.proc-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(8, 18, 70,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(8, 18, 70,0.04);
  position: relative;
  opacity: 0;
  transform: scale(0.9);
}

.proc-circle::before,
.proc-circle::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

.proc-circle::before {
  inset: -10px;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
}

.proc-circle::after {
  inset: -18px;
  border: 1px solid rgba(8, 18, 70, 0.08);
}

.proc-circle svg {
  transition: transform 0.38s var(--process-ease);
  transform-origin: center;
}

/* Card */
.proc-card {
  width: 100%;
  background: #f6f6f7;
  border-radius: 18px;
  padding: 68px 22px 30px;
  text-align: center;
  box-shadow: 0 8px 36px rgba(8, 18, 70,0.09);
  border: 1px solid rgba(8, 18, 70,0.06);
  transition:
    transform 0.4s var(--process-ease),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.proc-step-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.proc-step-dash {
  display: block;
  width: 34px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
  margin: 0 auto 14px;
  transform: scaleX(0);
  transform-origin: center;
  box-shadow: 0 0 0 rgba(var(--accent-rgb), 0);
}

.proc-step-text {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  color: rgba(8, 18, 70,0.55);
  line-height: 1.7;
}

/* Horizontal connectors (between steps in same row) */
.proc-conn-h {
  flex: 1;
  min-width: 40px;
  max-width: 120px;
  height: 130px;
  display: flex;
  align-items: center;
}

.proc-conn-h svg {
  width: 100%;
  height: 60px;
}

.proc-conn-h path,
.proc-conn-wrap path {
  stroke-dasharray: 0 100;
  stroke-dashoffset: 0;
  opacity: 0.78;
  filter: drop-shadow(0 0 0 rgba(var(--accent-rgb), 0));
}

/* Wrap connector (row 1 â†’ row 2) */
.proc-conn-wrap {
  width: 100%;
  height: 72px;
  margin: 0;
}

.proc-conn-wrap svg {
  width: 100%;
  height: 72px;
}

.process-section.is-visible .proc-head {
  animation: processFadeIn var(--process-enter) var(--process-ease) both;
}

.process-section.is-visible .proc-kicker {
  animation: processPillIn 0.56s var(--process-ease) 0.02s both;
}

.process-section.is-visible .proc-title {
  animation: processTitleIn 0.78s var(--process-ease) 0.12s both;
}

.process-section.is-visible .proc-subtitle {
  animation: processTextIn 0.64s var(--process-ease) 0.26s both;
}

.proc-row--1 .proc-step:nth-of-type(1) { --proc-delay: 0.28s; --proc-float-delay: 0.25s; }
.proc-row--1 .proc-step:nth-of-type(2) { --proc-delay: 0.42s; --proc-float-delay: 1s; }
.proc-row--1 .proc-step:nth-of-type(3) { --proc-delay: 0.56s; --proc-float-delay: 1.8s; }
.proc-row--2 .proc-step:nth-of-type(1) { --proc-delay: 0.72s; --proc-float-delay: 0.7s; }
.proc-row--2 .proc-step:nth-of-type(2) { --proc-delay: 0.86s; --proc-float-delay: 1.45s; }

.process-section.is-visible .proc-step {
  animation: processCardIn 0.82s var(--process-ease) forwards;
  animation-delay: var(--proc-delay, 0s);
}

.process-section.is-visible .proc-step .proc-circle {
  animation:
    processCircleIn 0.62s var(--process-ease) forwards,
    processFloat var(--process-float) ease-in-out infinite;
  animation-delay: calc(var(--proc-delay, 0s) + 0.06s), var(--proc-float-delay, 0s);
}

.process-section.is-visible .proc-step .proc-circle::before {
  animation: processRadar 4.8s ease-in-out infinite;
  animation-delay: calc(var(--proc-delay, 0s) + 0.26s);
}

.process-section.is-visible .proc-step .proc-circle::after {
  animation: processRadar 4.8s ease-in-out infinite;
  animation-delay: calc(var(--proc-delay, 0s) + 0.6s);
}

.process-section.is-visible .proc-step .proc-badge {
  animation: processBadgeIn 0.44s var(--process-ease) forwards;
  animation-delay: calc(var(--proc-delay, 0s) + 0.22s);
}

.process-section.is-visible .proc-step .proc-step-dash {
  animation: processDashGrow 0.46s var(--process-ease) forwards;
  animation-delay: calc(var(--proc-delay, 0s) + 0.32s);
}

.process-section.is-visible .proc-conn-h path,
.process-section.is-visible .proc-conn-wrap path {
  animation:
    processPathDraw var(--process-draw) var(--process-ease) forwards,
    processPathFlow 3.6s linear infinite;
  animation-delay: 0.52s, 1.55s;
}

.proc-step:hover .proc-card {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(8, 18, 70,0.12);
  border-color: rgba(8, 18, 70,0.14);
}

.proc-step:hover .proc-circle svg {
  transform: rotate(3deg) scale(1.08);
}

.proc-step:hover .proc-step-dash {
  transform: scaleX(1.18);
  box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.38);
}

/* Responsive */
@media (max-width: 960px) {
  .proc-row { flex-direction: column; align-items: center; gap: 24px; }
  .proc-row--2 { flex-direction: column; align-items: center; }
  .proc-conn-h, .proc-conn-wrap { display: none; }
  .proc-step { flex: 0 0 auto; width: 100%; max-width: 360px; }
  .proc-icon-area { margin-bottom: -46px; }
  .proc-step { transform: translateY(24px) scale(0.985); }

  .proc-row--1 .proc-step:not(:last-of-type)::after,
  .proc-row--2 .proc-step:not(:last-of-type)::after,
  .proc-row--1 .proc-step:last-of-type::after {
    content: '';
    width: 2px;
    height: 42px;
    margin: 18px auto 0;
    border-radius: 999px;
    background:
      repeating-linear-gradient(
        to bottom,
        rgba(8, 18, 70,0.66) 0 8px,
        rgba(8, 18, 70,0) 8px 15px
      );
    opacity: 0;
  }

  .process-section.is-visible .proc-row--1 .proc-step:not(:last-of-type)::after,
  .process-section.is-visible .proc-row--2 .proc-step:not(:last-of-type)::after,
  .process-section.is-visible .proc-row--1 .proc-step:last-of-type::after {
    animation: processMobileLine 0.7s var(--process-ease) forwards;
    animation-delay: calc(var(--proc-delay, 0s) + 0.24s);
  }
}

@media (max-width: 640px) {
  .proc-step { max-width: 100%; }
  .proc-card { padding: 64px 18px 26px; }
  .proc-step-title { font-size: 16px; }
  .proc-step:hover .proc-card {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(8, 18, 70,0.1);
  }

  .proc-step:hover .proc-circle svg {
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .proc-head,
  .proc-kicker,
  .proc-title,
  .proc-subtitle,
  .proc-step,
  .proc-badge,
  .proc-circle,
  .proc-step-dash,
  .proc-conn-h path,
  .proc-conn-wrap path,
  .proc-circle::before,
  .proc-circle::after {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .proc-conn-h path,
  .proc-conn-wrap path {
    stroke-dasharray: 5 8 !important;
  }

  .proc-step:hover .proc-card,
  .proc-step:hover .proc-circle svg,
  .proc-step:hover .proc-step-dash {
    transform: none;
    box-shadow: none;
  }
}

.cta-shell {
  position: relative;
  padding: 40px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(227, 238, 255, 0.9));
  border: 1px solid rgba(8, 18, 70, 0.08);
  box-shadow: 0 18px 50px rgba(8, 18, 70, 0.08);
  overflow: hidden;
}

.contact-card {
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(8, 18, 70, 0.98), rgba(8, 31, 117, 0.92));
  box-shadow: 0 16px 42px rgba(8, 18, 70, 0.18);
}

.contact-card .image-placeholder {
  margin-bottom: 22px;
}

.contact-line {
  display: block;
  color: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

.contact-line + .contact-line {
  margin-top: 10px;
}

.contact-line.muted {
  color: rgba(255, 255, 255, 0.76);
}

.contact-cta {
  margin-top: 24px;
  width: fit-content;
}

.site-footer {
  padding: 34px 0 0;
  background: #06154d;
  color: var(--white);
}

.footer-grid {
  padding-bottom: 28px;
}

.footer-brand,
.footer-links {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 54px;
  width: auto;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Poppins', sans-serif;
}

.footer-bottom {
  padding: 18px 24px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}


/* ============================================================
   RESPONSIVE â€” Tablet 900â€“1100px
   ============================================================ */

@media (max-width: 1100px) {
  :root {
    --title-size: 42px;
  }

  .hero { height: calc(100vh - 103px); }

  .glass-card {
    width: 460px;
    min-height: 460px;
  }

  .hero-title { font-size: 34px; }

  .stats-card {
    width: 560px;
    right: 16px;
    bottom: 36px;
  }

  .nav-links li a { font-size: 14px; padding: 6px 12px; }
  .nav-pill { padding: 7px 14px; }

  .services-grid,
  .why-grid,
  .impact-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .sectors-grid,
  .cta-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Sectors redesign â€” 2 columns on tablet */
  .sectors-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Why redesign â€” 2 columns on tablet */
  .why-items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .who-shell {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .who-copy {
    max-width: 760px;
  }

  .services-grid {
    gap: 26px;
  }

  .services-shell {
    margin-top: 0;
    padding-top: clamp(108px, 14vh, 140px);
  }

  .service-media {
    min-height: 310px;
  }

  .service-body {
    padding: 30px 26px 28px;
  }
}

@media (max-width: 960px) {
  :root {
    --title-size: 40px;
  }

  .hero { height: calc(100vh - 103px); }

  .glass-card { width: 430px; }
  .hero-title { font-size: 30px; }

  .stats-card {
    width: calc(100% - 32px);
    right: 16px;
    left: 16px;
  }

  .section {
    padding: 76px 0;
  }

  .who-section {
    padding-top: 90px;
    padding-bottom: 102px;
  }

  .who-shell {
    width: min(100% - 36px, 1280px);
    gap: 44px;
  }

  .who-trust-card {
    left: 24px;
    right: 24px;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    padding: 20px 22px;
  }

  .who-trust-divider {
    display: none;
  }

  .who-trust-icon {
    width: 94px;
    height: 94px;
  }

  .who-title {
    max-width: 100%;
    font-size: var(--title-size);
  }

  .services-section {
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: clamp(180px, 20vh, 260px);
  }

  .services-shell {
    width: min(100% - 36px, 1280px);
    margin-top: 0;
    padding-top: clamp(100px, 13vh, 128px);
    padding-bottom: clamp(120px, 14vh, 180px);
  }

  .services-title {
    font-size: var(--title-size);
  }

  .services-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 860px) {
  /* Hide desktop nav, show hamburger */
  body {
    padding-top: 79px;
  }

  .navbar {
    height: 76px;
    padding: 0 16px;
  }

  .navbar-inner {
    gap: 14px;
  }

  .logo img {
    height: 42px;
  }

  .nav-center,
  .btn-book:not(.mobile-book) { display: none; }

  .nav-actions {
    margin-left: auto;
    gap: 8px;
  }

  .hamburger { display: flex; }

  .mobile-menu {
    padding: 14px 16px 18px;
    max-height: calc(100vh - 79px);
    overflow-y: auto;
  }

  .mobile-book {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================================
   RESPONSIVE â€” Mobile â‰¤ 640px
   ============================================================ */

@media (max-width: 640px) {
  :root {
    --title-size: 34px;
  }

  body {
    padding-top: 75px;
  }

  .navbar {
    height: 72px;
    padding: 0 14px;
  }

  .logo img {
    height: 38px;
  }

  .section-shell {
    width: min(100% - 28px, var(--max-w));
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: var(--title-size);
  }

  .section-text {
    font-size: 14px;
    line-height: 1.65;
  }

  /* ── Mobile Hero Redesign ─────────────────────────────── */
  .hero {
    height: 74svh;
    min-height: 440px;
    max-height: 640px;
    margin-top: -25px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  /* Strong bottom-up gradient for text legibility */
  .hero::before {
    display: block;
    inset: 0;
    width: 100%;
    background:
      linear-gradient(
        to top,
        rgba(8, 18, 70, 0.97) 0%,
        rgba(8, 18, 70, 0.80) 38%,
        rgba(8, 18, 70, 0.30) 65%,
        transparent 100%
      );
    z-index: 2;
  }

  .hero-bg::after { display: none; }

  .hero-bg-img {
    height: 100%;
    min-height: 74svh;
    object-position: center center;
  }

  /* Dots — top-right floating */
  .hero-dots {
    position: absolute;
    top: 20px;
    right: 18px;
    bottom: auto;
    left: auto;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
  }

  .hero-dot {
    width: 6px;
    height: 6px;
  }

  .hero-dot.active {
    height: 20px;
    width: 6px;
    border-radius: 3px;
  }

  /* Progress bar stays at top */
  .hero-progress { z-index: 10; }

  /* Content block — sits at the bottom */
  .hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 0 22px 36px;
    align-items: flex-start;
    justify-content: flex-end;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Glass card reset — just a transparent content wrapper */
  .glass-card {
    width: 100%;
    min-height: auto;
    padding: 0;
    gap: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .glass-card::before,
  .glass-card::after { display: none; }

  /* Trust badge */
  .badge {
    padding: 6px 12px;
    background: rgba(150, 185, 220, 0.18);
    border: 1px solid rgba(150, 185, 220, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .badge span {
    font-size: 11px;
    color: #fff;
  }

  .trust-dot svg { fill: #B9E51A; }

  /* Title */
  .hero-title {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.1;
    max-width: 100%;
    color: #fff;
    margin: 0;
  }

  .hero-line { display: block; }

  /* Divider */
  .hero-divider {
    width: 44px;
    height: 3px;
    border-radius: 2px;
    background: var(--lime);
    margin: 0;
  }

  /* Description */
  .hero-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* CTA buttons — side by side */
  .hero-btns {
    width: 100%;
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .btn-explore,
  .btn-video {
    flex: 1;
    justify-content: center;
    gap: 6px;
    padding: 13px 14px;
    font-size: 13px;
  }

  .btn-video {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  /* Feature chips — horizontal scroll strip */
  .feature-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -22px;
    padding: 0 22px;
    padding-bottom: 2px;
  }

  .feature-row::-webkit-scrollbar { display: none; }

  .feature-card {
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    min-width: 0;
    white-space: nowrap;
  }

  .feature-card + .feature-card::before { display: none; }
  .feature-card:last-child { grid-column: auto; }

  .feat-icon {
    width: 22px;
    height: 22px;
    background: transparent;
    flex-shrink: 0;
  }

  .feat-text {
    font-size: 12px;
    color: #fff;
    line-height: 1.3;
  }

  .feat-text br { display: none; }

  /* Hide desktop-only elements */
  .stats-card  { display: none; }
  .stat-div    { display: none; }
  .social-panel { display: none; }

  .services-grid,
  .why-grid,
  .impact-grid,
  .process-grid,
  .sector-list {
    grid-template-columns: 1fr;
  }

  /* Sectors redesign â€” single column on mobile */
  .sectors-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sec-dots--tl { width: 110px; height: 110px; }
  .sec-dots--br { display: none; }
  .sec-curve { display: none; }
  .sec-blue-curve { display: none; }

  /* Why redesign â€” single column on mobile */
  .why-items-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-dots--tl { width: 100px; height: 100px; top: 18px; left: 18px; }
  .why-dots--br { display: none; }
  .why-curve--tl { display: none; }
  .why-curve--br { display: none; }

  .why-head { margin-bottom: 36px; }
  .why-main-subtitle { font-size: 14px; }

  .why-item { padding: 22px 20px 24px; }

  .why-item-icon {
    width: 58px;
    height: 58px;
  }

  .why-item-title-col h3 { font-size: 17px; }

  .sectors-head {
    margin-bottom: 36px;
  }

  .sectors-title {
    font-size: var(--title-size);
    line-height: 1.15;
  }

  .sectors-subtitle {
    font-size: 14px;
    line-height: 1.7;
  }

  .sector-card-media {
    height: 200px;
  }

  .sector-card-icon {
    top: calc(200px - 34px);
    width: 62px;
    height: 62px;
  }

  .sector-card-body {
    padding: 42px 18px 24px;
  }

  .sectors-cta-wrap {
    margin-top: 38px;
  }

  .btn-sectors-explore {
    padding: 16px 32px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  .services-bg-fixed {
    display: none;
  }

  .services-section {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 96px;
    background:
      linear-gradient(180deg, rgba(4, 18, 76, 0.34), rgba(4, 18, 76, 0.72)),
      url("assets/services%20bg%20.webp") center center / cover no-repeat;
  }

  .services-section::before {
    top: 18px;
    right: 14px;
    width: 102px;
    height: 84px;
    background-size: 19px 19px;
  }

  .services-section::after {
    right: 30px;
    top: 172px;
    width: 18px;
    height: 18px;
  }

  .services-shell {
    width: min(100% - 28px, 1280px);
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .services-kicker {
    padding: 12px 18px 12px 16px;
    font-size: 16px;
  }

  .services-title {
    margin-top: 22px;
    font-size: var(--title-size);
  }

  .services-accent {
    width: 56px;
    margin-top: 18px;
  }

  .services-subtitle {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.65;
  }

  .services-grid {
    margin-top: 30px;
    gap: 22px;
  }

  .service-card,
  .service-body {
    min-width: 0;
  }

  .service-media {
    min-height: 250px;
  }

  .service-icon {
    left: 20px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }

  .service-body {
    padding: 28px 22px 24px;
  }

  .service-card h3 {
    font-size: 21px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .service-card p {
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .service-link {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .service-link-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }

  .who-section {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .who-section::before {
    top: 26px;
    right: 14px;
    width: 112px;
    height: 86px;
    background-size: 19px 19px;
  }

  .who-section::after {
    right: 28px;
    bottom: 80px;
    width: 22px;
    height: 22px;
  }

  .who-shell {
    width: min(100% - 28px, 1280px);
    gap: 34px;
  }

  .who-media-wrap {
    padding-bottom: 76px;
  }

  .who-media {
    border-radius: 24px;
  }

  .who-image {
    min-height: 360px;
  }

  .who-trust-card {
    left: 12px;
    right: 12px;
    bottom: 0;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .who-trust-divider {
    display: none;
  }

  .who-trust-icon {
    width: 52px;
    height: 52px;
    border-width: 2px;
    flex-shrink: 0;
  }

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

  .who-trust-copy h3 {
    font-size: 14px;
  }

  .who-trust-copy p {
    margin-top: 2px;
    font-size: 11px;
  }

  .who-trust-stat {
    min-width: 0;
    gap: 2px;
    text-align: right;
    flex-shrink: 0;
  }

  .who-trust-stat strong {
    font-size: 22px;
  }

  .who-kicker {
    padding: 12px 18px 12px 16px;
    font-size: 16px;
  }

  .who-title {
    margin-top: 24px;
    font-size: var(--title-size);
  }

  .who-accent {
    margin-top: 24px;
    width: 58px;
    height: 6px;
  }

  .who-accent + .who-text {
    margin-top: 24px;
  }

  .who-text {
    font-size: 15px;
    line-height: 1.75;
  }

  .intro-copy,
  .intro-card,
  .sector-panel,
  .contact-card,
  .cta-shell {
    padding: 24px 20px;
  }

  .why-card,
  .process-step,
  .sector-item,
  .footer-brand,
  .footer-links {
    padding: 22px 18px;
  }

  .impact-shell {
    padding: 24px 18px;
  }

  .impact-card strong {
    font-size: 34px;
  }

  .footer-grid {
    gap: 16px;
  }

  .footer-whatsapp {
    right: 12px;
    left: auto;
    bottom: 12px;
    width: 52px;
    height: 52px;
    padding: 0;
    gap: 0;
    justify-content: center;
    font-size: 0;
  }

  .footer-whatsapp svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 400px) {
  :root {
    --title-size: 29px;
  }

  .hero-title { font-size: 26px; }
  .glass-card { width: 100%; }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-card:last-child {
    grid-column: auto;
  }

  .who-trust-card {
    gap: 8px;
    padding: 12px 14px;
  }

  .who-trust-copy h3 { font-size: 12px; }
  .who-trust-copy p  { font-size: 10px; }
  .who-trust-stat strong { font-size: 18px; }

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .footer-whatsapp {
    width: 48px;
    height: 48px;
    right: 10px;
    bottom: 10px;
  }
}


/* ============================================================
   ANIMATIONS
   ============================================================ */

/* --- Keyframes --- */

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

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0);     }
}

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

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0);     }
}

@keyframes float {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-9px); }
}

@keyframes floatSlight {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-4px); }
}

@keyframes kenBurns {
  0%   { transform: scale(1)    translateX(0);   }
  50%  { transform: scale(1.04) translateX(-8px); }
  100% { transform: scale(1)    translateX(0);   }
}

@keyframes cardBreath {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48), 0 12px 42px rgba(8, 18, 70, 0.08); }
  50% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 16px 46px rgba(8, 18, 70, 0.12); }
}

@keyframes iconBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes glowDrift {
  0%, 100% { transform: translate3d(-8px, 0, 0) scale(1); opacity: 0.58; }
  50% { transform: translate3d(10px, -10px, 0) scale(1.08); opacity: 0.88; }
}

@keyframes sheenPass {
  0% { transform: translateX(-145%); }
  55%, 100% { transform: translateX(145%); }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes linkPulse {
  0%, 100% { text-shadow: 0 0 0 rgba(var(--accent-rgb), 0); }
  50% { text-shadow: 0 0 12px rgba(var(--accent-rgb), 0.22); }
}

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

@keyframes panelTilt {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes dividerGlow {
  0%, 100% { opacity: 0.45; box-shadow: 0 0 0 rgba(var(--accent-rgb), 0); }
  50% { opacity: 0.9; box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.24); }
}

@keyframes processFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes processPillIn {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes processTitleIn {
  from { opacity: 0; transform: translateY(22px) scale(0.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

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

@keyframes processCardIn {
  from { opacity: 0; transform: translateY(35px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes processCircleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes processBadgeIn {
  0% { opacity: 0; transform: scale(0.78); }
  65% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes processDashGrow {
  from {
    transform: scaleX(0);
    box-shadow: 0 0 0 rgba(var(--accent-rgb), 0);
  }
  to {
    transform: scaleX(1);
    box-shadow: 0 0 14px rgba(var(--accent-rgb), 0.24);
  }
}

@keyframes processFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes processRadar {
  0% {
    opacity: 0;
    transform: scale(0.86);
  }
  30% {
    opacity: 0.28;
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes processPathDraw {
  0% {
    stroke-dasharray: 0 100;
    stroke-dashoffset: 0;
    opacity: 0.38;
  }
  100% {
    stroke-dasharray: 100 0;
    stroke-dashoffset: 0;
    opacity: 0.88;
  }
}

@keyframes processPathFlow {
  0%, 100% {
    stroke-dasharray: 9 8;
    stroke-dashoffset: 0;
    filter: drop-shadow(0 0 0 rgba(var(--accent-rgb), 0));
  }
  50% {
    stroke-dasharray: 9 8;
    stroke-dashoffset: -17;
    filter: drop-shadow(0 0 5px rgba(var(--accent-rgb), 0.28));
  }
}

@keyframes processMobileLine {
  from {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  to {
    opacity: 0.9;
    transform: scaleY(1);
    transform-origin: top;
  }
}

@keyframes glassGlow {
  0%, 100% { transform: translate3d(-10px, 0, 0) scale(1); opacity: 0.45; }
  50% { transform: translate3d(14px, -12px, 0) scale(1.08); opacity: 0.82; }
}

@keyframes ringPulse {
  0% { transform: scale(0.9); opacity: 0; }
  35% { opacity: 0.55; }
  100% { transform: scale(1.18); opacity: 0; }
}

@keyframes softRise {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 0 rgba(var(--accent-rgb), 0); }
  50% { text-shadow: 0 0 14px rgba(var(--accent-rgb), 0.18); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1);    filter: drop-shadow(0 0 0px var(--lime)); }
  50%       { transform: scale(1.18); filter: drop-shadow(0 0 5px var(--lime)); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

@keyframes countFlip {
  from { opacity: 0; transform: translateY(10px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}


/* ============================================================
   All motion wrapped â€” respects prefers-reduced-motion
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {

  /* -- Entrance: navbar -- */
  .site-header {
    animation: slideDown 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .logo img {
    animation: logoFloat 4.6s ease-in-out infinite;
    transform-origin: center;
  }

  /* -- Entrance: glass card children, staggered -- */
  .badge {
    animation: fadeLeft 0.5s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .hero-title {
    animation: fadeLeft 0.55s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .hero-desc {
    animation: fadeLeft 0.5s 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .btn-explore {
    animation: fadeUp 0.45s 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .feature-row .feature-card:nth-child(1) {
    animation: fadeUp 0.45s 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .feature-row .feature-card:nth-child(2) {
    animation: fadeUp 0.45s 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .feature-row .feature-card:nth-child(3) {
    animation: fadeUp 0.45s 1.08s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  /* -- Entrance: social panel -- */
  .social-panel {
    animation:
      fadeRight 0.5s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both,
      panelTilt 4.4s 1.2s ease-in-out infinite;
  }

  /* -- Entrance + continuous: stats card -- */
  .stats-card {
    animation:
      fadeUp  0.6s 1.0s cubic-bezier(0.22, 1, 0.36, 1) both,
      float   5.8s 1.8s ease-in-out infinite;
  }

  /* -- Per-slide zoom animations (driven by JS class) -- */
  .hero-bg-img {
    transform-origin: center center;
  }

  .hero-bg::after {
    animation: glowDrift 8s ease-in-out infinite;
  }

  /* -- Continuous: lime bar shimmer -- */
  .lime-bar {
    background: linear-gradient(
      90deg,
      var(--lime)  0%,
      #e2ff55     35%,
      var(--lime)  55%,
      #cef000    100%
    );
    background-size: 250% auto;
    animation: shimmer 2.8s linear infinite;
  }

  /* -- Continuous: badge shield pulse -- */
  .badge svg {
    animation: pulseGlow 3.2s ease-in-out infinite;
    transform-origin: center;
  }

  /* -- Continuous: stat icons float with offsets -- */
  .stat-col:nth-child(1) .stat-icon { animation: floatSlight 3.2s 0.0s ease-in-out infinite; }
  .stat-col:nth-child(3) .stat-icon { animation: floatSlight 3.2s 0.5s ease-in-out infinite; }
  .stat-col:nth-child(5) .stat-icon { animation: floatSlight 3.2s 1.0s ease-in-out infinite; }

  /* -- Continuous: feat icons slow spin on idle -- */
  .feat-icon svg {
    animation: iconBob 3.6s ease-in-out infinite;
    transform-origin: center;
  }

  .glass-card {
    animation: cardBreath 6s ease-in-out infinite;
  }

  .glass-card::before {
    animation: glassGlow 8.6s ease-in-out infinite;
  }

  .glass-card::after {
    animation: sheenPass 10.5s 3.1s ease-in-out infinite;
  }

  .nav-pill::before {
    animation: sheenPass 7.6s 1.8s ease-in-out infinite;
  }

  .stats-card::before {
    animation: sheenPass 9.5s 2.8s ease-in-out infinite;
  }

  .social-panel::before {
    animation: sheenPass 8.8s 3.2s ease-in-out infinite;
  }

  .btn-book::after,
  .btn-explore::after {
    animation: sheenPass 6.8s 2.2s ease-in-out infinite;
  }

  .btn-explore svg,
  .btn-book svg {
    animation: arrowNudge 2.6s ease-in-out infinite;
  }

  .nav-links li a.active {
    animation: linkPulse 3.2s ease-in-out infinite;
  }

  .stat-div {
    animation: dividerGlow 3.8s ease-in-out infinite;
  }

  .feature-card::after {
    animation: sheenPass 11s ease-in-out infinite;
  }

  .feature-row .feature-card:nth-child(2) {
    animation:
      fadeUp 0.45s 0.95s cubic-bezier(0.22, 1, 0.36, 1) both,
      softRise 4.8s 1.8s ease-in-out infinite;
  }

  .feature-row .feature-card:nth-child(1),
  .feature-row .feature-card:nth-child(3) {
    animation:
      fadeUp 0.45s var(--card-delay, 0.82s) cubic-bezier(0.22, 1, 0.36, 1) both,
      softRise 5.4s 2.1s ease-in-out infinite;
  }

  .feature-row .feature-card:nth-child(1) { --card-delay: 0.82s; }
  .feature-row .feature-card:nth-child(3) { --card-delay: 1.08s; }

  .stat-icon::after {
    animation: ringPulse 3.4s ease-out infinite;
  }

  .hero-title .lime,
  .stat-num {
    animation: textGlow 3.6s ease-in-out infinite;
  }

  .who-section::before {
    animation: glowDrift 12s ease-in-out infinite;
  }

  .who-section::after {
    animation:
      floatSlight 4.4s ease-in-out infinite,
      pulseGlow 4.8s ease-in-out infinite;
  }

  .who-media-wrap::before {
    animation: glassGlow 9.6s ease-in-out infinite;
  }

  .who-media-wrap::after {
    animation:
      spinSlow 18s linear infinite,
      pulseGlow 6.2s ease-in-out infinite;
  }

  .who-media {
    animation: softRise 6.8s 0.6s ease-in-out infinite;
  }

  .who-image {
    animation: kenBurns 18s ease-in-out infinite;
    transform-origin: center center;
  }

  .who-trust-card {
    animation: softRise 5.8s 1s ease-in-out infinite;
  }

  .who-trust-card::before {
    animation: sheenPass 9.5s 2.1s ease-in-out infinite;
  }

  .who-trust-icon {
    animation: floatSlight 4.2s ease-in-out infinite;
  }

  .who-trust-icon svg {
    animation: pulseGlow 4s ease-in-out infinite;
    transform-origin: center;
  }

  .who-trust-copy h3 {
    animation: textGlow 4.2s ease-in-out infinite;
  }

  .who-trust-copy p {
    position: relative;
    overflow: hidden;
  }

  .who-trust-copy p::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 -28%;
    width: 20%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
    transform: skewX(-18deg);
    animation: sheenPass 8.8s 1.6s ease-in-out infinite;
  }

  .who-kicker {
    animation:
      fadeRight 0.55s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both,
      softRise 5.4s 1.4s ease-in-out infinite;
  }

  .who-kicker::before {
    animation: pulseGlow 3.2s ease-in-out infinite;
  }

  .who-title {
    animation: fadeRight 0.65s 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .who-accent {
    animation:
      fadeRight 0.55s 0.48s cubic-bezier(0.22, 1, 0.36, 1) both,
      shimmer 3.4s 1.2s linear infinite;
    background: linear-gradient(90deg, var(--lime) 0%, var(--accent-brighter) 45%, var(--lime) 100%);
    background-size: 220% auto;
  }

  .who-text:nth-of-type(1) {
    animation: fadeRight 0.55s 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .who-text:nth-of-type(2) {
    animation: fadeRight 0.6s 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .who-trust-stat strong {
    animation: textGlow 3.8s ease-in-out infinite;
  }

  .services-section::before {
    animation: glowDrift 11s ease-in-out infinite;
  }

  .services-section::after {
    animation:
      floatSlight 4.8s ease-in-out infinite,
      pulseGlow 5s ease-in-out infinite;
  }

  .services-kicker {
    animation:
      fadeUp 0.55s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both,
      softRise 5.6s 1.1s ease-in-out infinite;
  }

  .services-kicker::before {
    animation: pulseGlow 3.4s ease-in-out infinite;
  }

  .services-title {
    animation: fadeUp 0.62s 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .services-accent {
    animation:
      fadeUp 0.55s 0.36s cubic-bezier(0.22, 1, 0.36, 1) both,
      shimmer 3.2s 1.2s linear infinite;
    background: linear-gradient(90deg, var(--lime) 0%, var(--accent-brighter) 45%, var(--lime) 100%);
    background-size: 220% auto;
  }

  .services-subtitle {
    animation: fadeUp 0.55s 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .services-grid .service-card:nth-child(1) {
    animation: none;
  }

  .services-grid .service-card:nth-child(2) {
    animation: none;
  }

  .services-grid .service-card:nth-child(3) {
    animation: none;
  }

  .service-media-link::after {
    animation: glassGlow 10s ease-in-out infinite;
  }

  .service-media::after {
    animation: panelTilt 7.2s ease-in-out infinite;
  }

  .service-icon {
    animation: floatSlight 4.2s ease-in-out infinite;
  }

  .service-icon svg {
    animation: pulseGlow 4s ease-in-out infinite;
    transform-origin: center;
  }

  .service-link-icon svg {
    animation: arrowNudge 2.8s ease-in-out infinite;
  }

}


/* ============================================================
   Enhanced hover effects (always on â€” no motion concern)
   ============================================================ */

/* Feature cards lift */
.feature-card {
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.28s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(8, 18, 70, 0.18);
}

/* Stop idle bob on card hover, swap to a more playful tilt */
@media (prefers-reduced-motion: no-preference) {
  .feature-card:hover .feat-icon svg {
    animation: none;
    transform: rotate(20deg) scale(1.15);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
}

/* Social links pop */
.social-panel a {
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.2s;
}
.social-panel a:hover {
  transform: scale(1.3);
  opacity: 1 !important;
}

/* Stat columns nudge up */
.stat-col {
  transition: transform 0.22s ease;
  cursor: default;
}
.stat-col:hover { transform: translateY(-4px) scale(1.04); }

/* Buttons: scale + glow */
.btn-explore,
.btn-book {
  transition: background 0.2s, color 0.2s,
              transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.2s ease;
}
.btn-explore:hover,
.btn-book:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px rgba(var(--book-btn-rgb), 0.42);
}

/* Nav links smooth underline grow */
.nav-links li a::after {
  transition: left 0.25s ease, right 0.25s ease;
}

/* ============================================================
   GLOBAL HEADING TYPE
   ============================================================ */

h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.who-title,
.services-title,
.sectors-title,
.why-main-title,
.impact-title,
.proc-title,
.partners-title,
.fcta-title,
.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

/* Glass card breathe on hover */
.glass-card {
  transform: translate3d(var(--card-parallax-x), var(--card-parallax-y), 0) scale(var(--card-hover-scale));
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease;
}
.glass-card:hover {
  --card-hover-scale: 1.01;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    0 20px 56px rgba(8, 18, 70, 0.14);
}

.hero-bg-img,
.stats-card,
.social-panel,
.feature-card,
.badge svg,
.feat-icon svg,
.stat-icon {
  will-change: transform;
}

/* Stat nums flash when counter finishes */
.stat-num.counted {
  animation: countFlip 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* ============================================================
   PARTNERS
   ============================================================ */

.partners-section {
  position: relative;
  padding: 42px 24px 26px;
  background: #fff;
  overflow: hidden;
}

.partners-section::before,
.partners-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.partners-section::before {
  top: 36px;
  left: -18px;
  width: 122px;
  height: 86px;
  opacity: 0.32;
  background-image: radial-gradient(circle, rgba(15, 79, 214, 0.22) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
}

.partners-section::after {
  top: 8px;
  right: -34px;
  width: 168px;
  height: 168px;
  border: 1px solid rgba(15, 79, 214, 0.14);
  box-shadow:
    0 0 0 20px rgba(15, 79, 214, 0.03),
    0 0 0 42px rgba(15, 79, 214, 0.02);
}

.partners-shell {
  position: relative;
  width: min(100%, 1160px);
  margin: 0 auto;
  z-index: 1;
  text-align: center;
}

.partners-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #17389f 0%, #0a2a84 100%);
  box-shadow: 0 12px 24px rgba(8, 18, 70, 0.12);
  color: #fff;
  font: 700 13px/1 'Poppins', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.partners-title {
  margin: 0 0 24px;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(34px, 4.4vw, 52px);
  text-align: center;
  line-height: 1.05;
  font-weight: 700;
}

.partners-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(8, 18, 70, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(8, 18, 70, 0.08);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.partner-card {
  min-height: 140px;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 6px;
  position: relative;
}

.partner-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  width: 1px;
  height: calc(100% - 32px);
  background: linear-gradient(180deg, transparent 0%, rgba(8, 18, 70, 0.12) 12%, rgba(8, 18, 70, 0.12) 88%, transparent 100%);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.partner-caption,
.partner-wordmark {
  font-family: 'Poppins', sans-serif;
}

.partner-caption {
  color: rgba(8, 18, 70, 0.72);
  font-size: 12px;
  line-height: 1.35;
  max-width: 180px;
}

.partner-wordmark {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.partner-logo--iak {
  position: relative;
  padding-left: 10px;
}

.iak-dot {
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef3c31;
}

.iak-word {
  color: #66696f;
  font: 400 52px/0.85 'Poppins', sans-serif;
  letter-spacing: -0.08em;
}

.partner-card--iak .partner-caption {
  max-width: 150px;
}

.partner-card--kencid {
  gap: 2px;
}

.partner-wordmark--kencid {
  color: #19a7ae;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.partner-caption--accent {
  color: #f1a33f;
  letter-spacing: 0.28em;
  font-size: 11px;
}

.partner-logo--kcid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
}

.kcid-mark {
  width: 66px;
  padding: 10px 8px;
  background: #ffd21f;
  color: #101010;
  font: 800 20px/0.92 'Poppins', sans-serif;
  text-align: left;
  box-shadow: 0 8px 18px rgba(255, 210, 31, 0.28);
}

.kcid-copy {
  width: 118px;
  color: #111;
  font: 700 15px/1.2 'Poppins', sans-serif;
  text-align: left;
}

.partner-logo--bayview {
  margin-bottom: 4px;
}

.partner-shield {
  position: relative;
  width: 78px;
  height: 68px;
  background: linear-gradient(180deg, #2a7fe7 0%, #1247b7 100%);
  clip-path: polygon(50% 0%, 92% 18%, 92% 48%, 78% 76%, 50% 100%, 22% 76%, 8% 48%, 8% 18%);
  border: 4px solid var(--lime);
  box-shadow: 0 10px 22px rgba(18, 71, 183, 0.18);
}

.partner-shield::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 3px solid rgba(255,255,255,0.88);
  clip-path: inherit;
}

.partner-shield-b,
.partner-shield-s {
  position: absolute;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.partner-shield-b {
  top: 15px;
  left: 18px;
}

.partner-shield-s {
  top: 15px;
  right: 16px;
  color: var(--lime);
}

.partner-wordmark--bayview {
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* ── Partners carousel ── */
.pcar-viewport {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.pcar-track {
  display: flex;
  width: max-content;
  animation: partnerScroll 28s linear infinite;
}

.pcar-viewport:hover .pcar-track {
  animation-play-state: paused;
}

/* Override grid-based card sizing for carousel context */
.pcar-track .partner-card {
  width: 280px;
  flex-shrink: 0;
  margin-right: 20px;
  border-radius: 16px;
  border: 1px solid rgba(8, 18, 70, 0.09);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 18px rgba(8, 18, 70, 0.07);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pcar-track .partner-card:hover {
  box-shadow: 0 8px 28px rgba(8, 18, 70, 0.13);
  transform: translateY(-3px);
}

/* Remove the ::after divider lines (not needed in carousel) */
.pcar-track .partner-card::after {
  display: none;
}

@keyframes partnerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .pcar-track { animation: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background:
    radial-gradient(ellipse 60% 70% at 20% 60%, rgba(20,72,210,0.28) 0%, transparent 100%),
    radial-gradient(ellipse 45% 50% at 80% 20%, rgba(12,44,160,0.16) 0%, transparent 100%),
    #010c28;
  color: rgba(255,255,255,0.82);
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* ---- CTA Banner ---- */
.footer-cta-wrap {
  padding: 60px 24px 0;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-cta-inner {
  position: relative;
  background: #96b9dc;
  border-radius: 18px;
  padding: 44px 48px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.fcta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(180,205,255,0.18) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}

.fcta-diag-lines {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

.fcta-shield-watermark {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.fcta-corner-bracket {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 1;
  pointer-events: none;
}

.fcta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
}

.fcta-left {
  flex: 1;
}

.fcta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 3.8vw, 46px);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
  font-weight: 700;
}

.fcta-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  border-left: 3px solid var(--lime);
  padding-left: 14px;
  max-width: 540px;
}

.fcta-right {
  flex-shrink: 0;
}

.fcta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lime);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(var(--accent-rgb), 0.40);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fcta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 36px rgba(var(--accent-rgb), 0.55);
}

/* ---- Main columns ---- */
.footer-main {
  padding: 52px 24px 44px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 48px 40px;
}

/* Column head */
.footer-col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.footer-col-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(var(--accent-rgb), 0.10);
  flex-shrink: 0;
}

.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.01em;
}

.footer-col-dash {
  width: 32px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
  margin: 0 0 22px 44px;
}

/* Contact list */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}

.footer-contact-list li a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-list li a:hover { color: var(--lime); }

.fci {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(255,255,255,0.60);
}

/* Divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 26px 0;
}

/* Newsletter */
.footer-nl-text {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  line-height: 1.6;
}

.footer-nl-form {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}

.footer-nl-input-wrap {
  flex: 1;
  position: relative;
}

.footer-nl-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.35);
  pointer-events: none;
}

.footer-nl-input-wrap input {
  width: 100%;
  height: 44px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  padding: 0 14px 0 38px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.footer-nl-input-wrap input::placeholder { color: rgba(255,255,255,0.38); }
.footer-nl-input-wrap input:focus {
  border-color: rgba(var(--accent-rgb), 0.50);
  background: rgba(255,255,255,0.10);
}

.footer-nl-btn {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #96b9dc;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0 8px 8px 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-nl-btn:hover { background: #7aa8d0; }

/* Socials */
.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social-btn:hover {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
}

/* Quick Links nav */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s, padding-left 0.2s;
  position: relative;
}
.footer-nav a:last-child { border-bottom: none; }
.footer-nav a:hover { color: var(--lime); padding-left: 4px; }

.fnav-chev {
  font-size: 18px;
  color: var(--lime);
  line-height: 1;
  margin-top: -1px;
  flex-shrink: 0;
}

.fnav-arr {
  margin-left: auto;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s, transform 0.2s;
}
.footer-nav a:hover .fnav-arr {
  color: var(--lime);
  transform: translateX(3px);
}

/* Callback form */
.footer-callback-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-callback-form { display: flex; flex-direction: column; gap: 12px; }

.footer-callback-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer-input-wrap {
  position: relative;
}

.footer-input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.35);
  pointer-events: none;
}

.footer-input-wrap input {
  width: 100%;
  height: 44px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  padding: 0 14px 0 36px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.footer-input-wrap input::placeholder { color: rgba(255,255,255,0.38); }
.footer-input-wrap input:focus {
  border-color: rgba(var(--accent-rgb), 0.50);
  background: rgba(255,255,255,0.10);
}

.footer-submit {
  width: 100%;
  height: 46px;
  background: #96b9dc;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s, transform 0.2s;
}
.footer-submit:hover {
  background: #7aa8d0;
  transform: translateY(-1px);
}

/* ---- Bottom bar ---- */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: wrap;
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,0.55), 0 6px 20px rgba(0,0,0,0.22); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0),   0 6px 20px rgba(0,0,0,0.22); }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,0),   0 6px 20px rgba(0,0,0,0.22); }
}

.footer-whatsapp {
  position: fixed;
  bottom: 28px;
  left: max(32px, calc((100vw - var(--max-w)) / 2 + 32px));
  right: auto;
  z-index: 9000;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  animation: wa-pulse 2.2s ease-out infinite;
  transition: transform 0.2s, background 0.2s;
}
.footer-whatsapp svg {
  fill: #fff;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
}
.footer-whatsapp:hover {
  transform: scale(1.05);
  background: #1ebe5a;
}

@media (max-width: 640px) {
  .footer-whatsapp {
    left: auto;
    right: 12px;
    bottom: 12px;
    width: 52px;
    height: 52px;
    padding: 0;
    gap: 0;
    justify-content: center;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
  }

  .footer-whatsapp svg {
    width: 22px;
    height: 22px;
  }
}

.footer-brand-center {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.footer-logo-mark {
  flex-shrink: 0;
}

.footer-logo-mark img {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  text-align: center;
  line-height: 1.5;
}

.footer-scroll-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-scroll-top:hover {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
  transform: translateY(-2px);
}

/* ---- Footer responsive ---- */
@media (max-width: 1100px) {
  .partners-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-card:nth-child(2)::after {
    display: none;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 40px 36px;
  }
  .footer-col--callback {
    grid-column: 1 / -1;
  }
  .footer-callback-inputs {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .partners-section {
    padding: 36px 16px 22px;
  }

  .partners-board {
    grid-template-columns: 1fr;
  }

  .partner-card {
    min-height: 124px;
    padding: 24px 20px;
  }

  .partner-card::after {
    display: none;
  }

  .partner-card:not(:last-child) {
    border-bottom: 1px solid rgba(8, 18, 70, 0.08);
  }

  .partner-logo--kcid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .kcid-copy {
    width: auto;
    text-align: center;
  }

  .footer-cta-inner {
    padding: 32px 24px;
  }
  .fcta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .fcta-btn { width: 100%; justify-content: center; }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-col--callback { grid-column: auto; }
  .footer-callback-inputs { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
  }
  .footer-brand-center { justify-content: center; }
  .footer-scroll-top { order: -1; align-self: flex-end; }
}

@media (max-width: 400px) {
  .footer-cta-wrap { padding: 40px 16px 0; }
  .footer-main { padding: 40px 16px 36px; }
  .footer-bottom { padding: 18px 16px; }
  .footer-whatsapp {
    bottom: 10px;
    right: 10px;
    left: auto;
    width: 48px;
    height: 48px;
    padding: 0;
    font-size: 0;
  }
}

@media (max-width: 1180px) {
  .impact-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .impact-visual-frame {
    min-height: 520px;
  }

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

@media (max-width: 760px) {
  .impact-shell {
    padding: 22px;
    border-radius: 24px;
  }

  .impact-shell::before,
  .impact-shell::after {
    display: none;
  }

  .impact-visual-frame {
    min-height: 340px;
    border-radius: 24px;
  }

  .impact-kicker {
    font-size: 14px;
    padding: 12px 18px;
  }

  .impact-title {
    margin-top: 22px;
    font-size: 34px;
  }

  .impact-accent {
    margin-top: 18px;
  }

  .impact-text {
    margin-top: 22px;
    font-size: 16px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .impact-card {
    min-height: 0;
    padding: 24px 18px 18px;
  }

  .impact-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
  }

  .impact-cta {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
  }
}

@media (max-width: 960px) {
  .vmv-shell {
    width: min(100% - 36px, 1280px);
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 26px;
    border-radius: 32px;
  }

  .vmv-section::before {
    right: 20px;
    width: 118px;
    height: 88px;
    background-size: 20px 20px;
  }

  .vmv-section::after {
    left: 20px;
    bottom: 46px;
    width: 96px;
    height: 96px;
  }

  .vmv-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vmv-media {
    max-width: 700px;
    margin: 0 auto;
  }

  .vmv-media-badge {
    right: 20px;
    bottom: 20px;
  }

  .vmv-card--vision,
  .vmv-card--mission,
  .vmv-card--values {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .vmv-section::before {
    top: 24px;
    right: 14px;
    width: 96px;
    height: 72px;
    background-size: 18px 18px;
  }

  .vmv-section::after {
    left: 12px;
    bottom: 30px;
    width: 72px;
    height: 72px;
  }

  .vmv-shell {
    width: min(100% - 28px, 1280px);
    padding: 22px;
    border-radius: 26px;
  }

  .vmv-content {
    gap: 26px;
  }

  .vmv-media-frame {
    border-radius: 26px;
  }

  .vmv-media-badge {
    position: static;
    max-width: none;
    margin-top: 16px;
    padding: 18px 18px;
    border-radius: 22px;
  }

  .vmv-media-badge strong {
    font-size: 18px;
  }

  .vmv-kicker {
    font-size: 16px;
    padding: 13px 22px 13px 18px;
  }

  .vmv-title {
    font-size: 32px;
  }

  .vmv-accent {
    width: 62px;
    height: 6px;
    margin-top: 22px;
  }

  .vmv-intro {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.8;
  }

  .vmv-grid {
    gap: 18px;
  }

  .vmv-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .vmv-card-title {
    margin-top: 20px;
    max-width: none;
    font-size: 24px;
  }

  .vmv-card-text {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.8;
  }

  .vmv-values {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .vmv-values li {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
