/* ============================================================
   ALPRO HEALTH SDN BHD — DESIGN SYSTEM
   "Easy Healthy @ Work"
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  /* Brand Colors */
  --blue-900: #01162d;
  --blue-800: #023F88;
  --blue-700: #054a9e;
  --blue-600: #0a5cb9;
  --blue-400: #3a82d4;
  --blue-100: #eef2f7;
  --blue-50:  #f4f7fa;

  --orange-600: #d65b0c;
  --orange-500: #F37021;
  --orange-400: #f78c4a;
  --orange-100: #fef0e6;
  --orange-50:  #fffaf5;

  --neutral-950: #050a11;
  --neutral-900: #0a111a;
  --neutral-800: #1a2433;
  --neutral-700: #334155;
  --neutral-600: #475569;
  --neutral-500: #64748b;
  --neutral-400: #94a3b8;
  --neutral-300: #cbd5e1;
  --neutral-200: #e2e8f0;
  --neutral-100: #f1f5f9;
  --neutral-50:  #f8fafc;
  --white:       #ffffff;

  --success-500: #10b981;
  --success-100: #ecfdf5;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 40px;
  --radius-full: 9999px;

  /* Shadows - Layered for more realism */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 16px -4px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 32px 50px -12px rgba(0, 0, 0, 0.15);
  
  /* Brand Shadows */
  --shadow-blue: 0 20px 48px -12px rgba(2, 63, 136, 0.3);
  --shadow-orange: 0 20px 48px -12px rgba(243, 112, 33, 0.35);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-xl: 1280px;
  --container-lg: 1024px;
  --container-md: 768px;

  /* Nav height */
  --nav-height: 80px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible,
/* Honeypot — hidden from users, not from bots */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-input:focus-visible,
.form-select:focus-visible,
.nav-link:focus-visible,
.footer-link:focus-visible,
.solution-card-link:focus-visible {
  outline: 2px solid var(--blue-800);
  outline-offset: 3px;
}
.btn-primary:focus-visible {
  outline-color: var(--white);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 3000;
  padding: var(--space-3) var(--space-5);
  background: var(--blue-800);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.skip-link:focus {
  left: var(--space-4);
  top: var(--space-4);
  outline: none;
}
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.section {
  padding: var(--space-16) 0;
}
.section-sm {
  padding: var(--space-10) 0;
}
.section-lg {
  padding: var(--space-24) 0;
}

/* ── SECTION VARIATIONS ── */
.section-alt {
  background-color: var(--neutral-50);
}

.section-blue-light {
  background: linear-gradient(180deg, #f0f7ff 0%, var(--white) 100%);
}

.section-orange-light {
  background: linear-gradient(180deg, #fffaf5 0%, var(--white) 100%);
}

.section-mesh {
  position: relative;
  background-color: var(--neutral-50);
  background-image: 
    radial-gradient(at 100% 0%, rgba(2, 63, 136, 0.03) 0, transparent 50%), 
    radial-gradient(at 0% 100%, rgba(243, 112, 33, 0.03) 0, transparent 50%);
}

.section-dark {
  background-color: var(--blue-900);
  background-image: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
  color: var(--white);
}
.section-dark .heading-lg, 
.section-dark .heading-md, 
.section-dark .heading-sm {
  color: var(--white);
}

.section-mesh-dark {
  position: relative;
  background-color: var(--blue-900);
  background-image: 
    radial-gradient(at 100% 0%, rgba(243, 112, 33, 0.08) 0, transparent 50%), 
    radial-gradient(at 0% 100%, rgba(2, 63, 136, 0.2) 0, transparent 50%);
  color: var(--white);
}
.section-mesh-dark .heading-lg, 
.section-mesh-dark .heading-md, 
.section-mesh-dark .heading-sm {
  color: var(--white);
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--orange-500);
  z-index: 2000;
  transition: width 0.1s ease-out;
}

/* ── GLASSMORPHISM ── */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.glass-dark {
  background: rgba(1, 22, 45, 0.7);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.015;
  pointer-events: none;
  z-index: 9999;
}

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: var(--space-4);
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
}

/* ── HEADINGS ── */
.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--neutral-900);
}
.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--neutral-900);
}
.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--neutral-900);
}
.heading-sm {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--neutral-900);
  letter-spacing: -0.01em;
}

/* ── PAGE HEADER (Internal Pages) ── */
.page-header {
  background: var(--blue-900);
  background-image: 
    radial-gradient(circle at 0% 0%, rgba(2, 63, 136, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(243, 112, 33, 0.15) 0%, transparent 50%);
  color: var(--white);
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M0 38.59V40h1.41L40 1.41V0h-1.41L0 38.59z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: var(--space-4);
}
.page-header-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 44rem;
  margin-top: var(--space-6);
  line-height: 1.6;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb a {
  color: var(--orange-400);
  transition: color var(--transition-fast);
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { font-weight: 400; opacity: 0.3; }
.text-blue { color: var(--blue-800); }
.text-orange { color: var(--orange-500); }
.text-white { color: var(--white); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: var(--shadow-orange);
  border-color: var(--orange-400);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.1) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg);
  transition: all 0.7s;
  opacity: 0;
}
.btn-primary:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 15px 45px rgba(243,112,33,0.45);
}
.btn-primary:hover::after {
  left: 100%;
  top: 100%;
  opacity: 1;
}
.btn-secondary {
  background: var(--white);
  color: var(--blue-800);
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--blue-50);
  border-color: var(--blue-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}
.btn-wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 10px 35px rgba(37,211,102,0.3);
  border-color: rgba(255,255,255,0.1);
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 45px rgba(37,211,102,0.45);
}
.btn-success {
  background: var(--success-500) !important;
  color: white !important;
  border-color: var(--success-500) !important;
  pointer-events: none;
}
.btn:disabled:not(.btn-success) {
  opacity: 0.6;
  cursor: not-allowed;
  filter: grayscale(0.5);
}
.btn-lg {
  font-size: 1.0625rem;
  padding: 1.125rem 2.25rem;
}
.btn-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: btn-spin 0.8s linear infinite;
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}
.btn-sm {
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}

/* ── NAVIGATION ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  height: calc(var(--nav-height) - 10px);
}
.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  overflow: visible;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-800);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text .brand { font-family: var(--font-display); font-weight: 800; font-size: 1.0625rem; color: var(--blue-800); }
.nav-logo-text .tagline { font-size: 0.6875rem; font-weight: 500; color: var(--neutral-500); letter-spacing: 0.04em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex: 1;
  justify-content: center;
  overflow: visible;
}
.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--neutral-600);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
  color: var(--blue-800);
  background: var(--blue-50);
}
/* Wrapper required: <a> cannot legally wrap other <a> tags (program links), or browsers break the DOM and the menu never shows */
.nav-item.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item.has-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
}
/* Hover bridge between label and panel */
.nav-item.has-dropdown::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  width: max(100%, 220px);
  height: 12px;
  z-index: 101;
}
.nav-item.has-dropdown > .nav-link::after {
  content: '';
  display: block;
  width: 8px;
  height: 5px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%23596d82'/%3E%3C/svg%3E") no-repeat center;
}
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--neutral-100);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base);
  z-index: 102;
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.dropdown a:hover {
  color: var(--blue-800);
  background: var(--blue-50);
  padding-left: calc(var(--space-4) + 4px);
}
.dropdown a[href*="carepass"] {
  font-weight: 700;
  color: var(--blue-800);
  background: linear-gradient(90deg, rgba(243, 112, 33, 0.14), rgba(243, 112, 33, 0.05));
}
.dropdown a[href*="carepass"]:hover {
  background: linear-gradient(90deg, rgba(243, 112, 33, 0.22), var(--blue-50));
}

/* ── CAREPASS FLAGSHIP (program page + home card) ── */
.page-carepass .floating-cta .floating-cta-btn,
.page-carepass .floating-cta .btn {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  border: none;
}
.page-carepass .floating-cta .btn:hover {
  filter: brightness(1.05);
}
.carepass-hero {
  position: relative;
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(2.5rem, 7vw, 4.5rem);
  background: linear-gradient(155deg, var(--blue-900) 0%, var(--blue-800) 45%, #054a9e 100%);
  color: var(--white);
  overflow: hidden;
}
.carepass-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 100% -30%, rgba(243, 112, 33, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at -10% 110%, rgba(255, 255, 255, 0.07), transparent 45%);
  pointer-events: none;
}
.carepass-hero .container {
  position: relative;
  z-index: 1;
}
.carepass-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}
.carepass-breadcrumb a:hover {
  color: var(--white);
  text-decoration: underline;
}
.carepass-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.45);
}
.carepass-breadcrumb span:not(.sep):not([class]) {
  color: rgba(255, 255, 255, 0.65);
}
.carepass-flagship-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  padding: 0.45rem 1rem 0.45rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.98);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.carepass-flagship-pill svg {
  width: 15px;
  height: 15px;
  color: #fbbf24;
  flex-shrink: 0;
}
.carepass-hero-title {
  margin: 0;
  line-height: 1;
}
.carepass-hero-logo {
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.35));
  max-height: clamp(3.5rem, 10vw, 5rem);
}
.carepass-hero-lead {
  font-size: clamp(1.0625rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.65;
  max-width: 38rem;
  margin-top: 1.25rem;
}
.carepass-hero-lead strong {
  color: var(--white);
  font-weight: 700;
}
.carepass-hero-sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}
.carepass-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.carepass-hero .btn-primary {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}
.carepass-pride {
  background: linear-gradient(180deg, var(--neutral-50) 0%, var(--white) 55%);
  border-bottom: 1px solid var(--neutral-100);
}
.carepass-pride-inner {
  max-width: 44rem;
  margin: 0 auto;
  padding: var(--space-12) var(--space-4);
  text-align: center;
}
.carepass-eyebrow {
  color: var(--orange-600);
  font-weight: 800;
  letter-spacing: 0.06em;
}
.carepass-pride-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.45rem);
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1.45;
  margin: 0.75rem 0 1rem;
  padding: 0;
  border: none;
}
.carepass-pride-em {
  color: var(--blue-800);
}
.carepass-pride-copy {
  font-size: 1.0625rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin: 0;
}
.carepass-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.carepass-stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(243, 112, 33, 0.22);
  box-shadow: var(--shadow-sm);
}
.carepass-cta-wrap .cta-box {
  border: 1px solid rgba(243, 112, 33, 0.25);
  box-shadow: 0 24px 48px -20px rgba(2, 63, 136, 0.2);
}

.solution-card--flagship {
  border-color: rgba(243, 112, 33, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 8px 32px -8px rgba(243, 112, 33, 0.2),
    0 24px 56px -20px rgba(2, 63, 136, 0.12);
}
.solution-card--flagship::after {
  content: 'Signature';
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  z-index: 2;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-600);
  background: linear-gradient(135deg, #fff7f0, var(--orange-50));
  border: 1px solid rgba(243, 112, 33, 0.35);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}
@media (max-width: 900px) {
  .carepass-stat-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .solution-card--flagship::after {
    top: var(--space-3);
    right: var(--space-3);
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}
.nav-wa {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: #25D366;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  border: 2px solid #25D366;
  transition: all var(--transition-base);
}
.nav-wa:hover {
  background: #25D366;
  color: var(--white);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-700);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ── FLOATING ELEMENTS ── */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  transition: all var(--transition-base);
  animation: pulse-wa 2.5s infinite;
}
.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 44px rgba(37,211,102,0.55);
  animation: none;
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 44px rgba(37,211,102,0.65), 0 0 0 12px rgba(37,211,102,0.08); }
}
.floating-cta {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: auto;
  transform: none;
  z-index: 998;
  display: none;
  animation: slide-up-fab-left 0.4s ease;
}
@keyframes slide-up-fab-left {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.floating-cta.visible { display: flex; }
/* Round floating “Book consultation” (left); mirrors .floating-wa on the right */
.floating-cta-btn {
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(243, 112, 33, 0.45);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.floating-cta-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 36px rgba(243, 112, 33, 0.55);
}
.floating-cta-btn:focus-visible {
  outline: 2px solid var(--orange-400);
  outline-offset: 3px;
}
.floating-cta-btn svg { flex-shrink: 0; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  overflow: hidden;
  display: flex;
  align-items: center;
}
/* Full-width background image */
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
/* Gradient overlay for legibility */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(1,29,62,0.88) 0%,
    rgba(2,63,136,0.75) 45%,
    rgba(1,29,62,0.45) 100%
  );
  z-index: 1;
}
.hero-orb-1 {
  position: absolute;
  top: -15%;
  right: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(243,112,33,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  animation: float-orb 20s infinite alternate ease-in-out;
}
.hero-orb-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(3,101,210,0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  animation: float-orb 15s infinite alternate-reverse ease-in-out;
}
@keyframes float-orb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -40px) scale(1.1); }
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
  position: relative;
  z-index: 3;
}
/* Hide the old right-side visual (image card) */
.hero-visual {
  display: none;
}
.hero-content {
  width: 100%;
  max-width: 660px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(243,112,33,0.18);
  border: 1px solid rgba(243,112,33,0.35);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--orange-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--orange-400);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: var(--space-6);
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-headline .accent {
  color: var(--orange-500);
  position: relative;
  display: inline-block;
}
.hero-subheadline {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: var(--space-10);
  max-width: 600px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}
.hero-stats {
  display: flex;
  gap: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stat .number {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat .number span { color: var(--orange-500); }
.hero-stat .label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}
/* Float cards hidden in full-width mode */
.hero-float-card {
  display: none;
}
.hero-float-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-card .metric { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--neutral-900); line-height: 1; }
.hero-float-card .meta { font-size: 0.75rem; color: var(--neutral-500); margin-top: 2px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--neutral-50);
  border-bottom: 1px solid var(--neutral-100);
  padding: var(--space-5) 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  justify-content: center;
  flex-wrap: wrap;
  row-gap: var(--space-4);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-600);
}
.trust-item svg { color: var(--blue-800); }
.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--neutral-200);
}

/* ── PROBLEM SECTION ── */
.problem-section {
  background: var(--white);
  padding: var(--space-20) 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--neutral-100);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  position: relative;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-100);
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue-800), var(--orange-500));
}
.problem-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--blue-800);
}
.problem-stat {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--orange-500);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.problem-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-3);
}
.problem-desc {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

/* ── SOLUTION SECTION ── */
.solution-section {
  background-color: var(--blue-900);
  background-image: 
    radial-gradient(circle at 0% 0%, rgba(2, 63, 136, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(243, 112, 33, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(1, 22, 45, 1) 0%, transparent 100%);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.solution-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.solution-section .section-label { color: var(--orange-400); }
.solution-section .section-label::before { background: var(--orange-400); }
.solution-header {
  max-width: 680px;
  margin-bottom: var(--space-16);
}
.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.solution-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.pillar-item {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}
.pillar-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(243,112,33,0.4);
  transform: translateX(8px);
  box-shadow: 20px 0 40px -20px rgba(243,112,33,0.3);
}
.pillar-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(243,112,33,0.3);
}
.pillar-title { 
  font-family: var(--font-display); 
  font-weight: 800; 
  font-size: 1.125rem; 
  color: var(--white); 
  margin-bottom: var(--space-1); 
  letter-spacing: -0.01em;
}
.pillar-desc { 
  font-size: 0.9375rem; 
  color: rgba(255,255,255,0.8); 
  line-height: 1.6; 
}

/* ── ECOSYSTEM FLOW ── */
.ecosystem-section {
  padding: var(--space-24) 0;
  background: var(--white);
}
.ecosystem-flow {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: var(--space-12);
  overflow-x: auto;
  padding-bottom: var(--space-4);
}
.flow-step {
  flex: 1;
  min-width: 140px;
  text-align: center;
  position: relative;
}
.flow-step-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  cursor: default;
}
.flow-icon {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all var(--transition-base);
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.flow-icon.step-1 { color: var(--blue-800); border-color: var(--blue-100); }
.flow-icon.step-2 { color: #d97706; border-color: #fde68a; }
.flow-icon.step-3 { color: var(--orange-500); border-color: var(--orange-100); }
.flow-icon.step-4 { color: #16a34a; border-color: #bbf7d0; }
.flow-icon.step-5 { color: #7c3aed; border-color: #ddd6fe; }

.flow-step-inner:hover .flow-icon {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
}
.flow-icon.step-1:hover { box-shadow: 0 20px 40px -10px rgba(2, 63, 136, 0.2); }
.flow-icon.step-2:hover { box-shadow: 0 20px 40px -10px rgba(217, 119, 6, 0.2); }
.flow-icon.step-3:hover { box-shadow: 0 20px 40px -10px rgba(243, 112, 33, 0.2); }
.flow-icon.step-4:hover { box-shadow: 0 20px 40px -10px rgba(22, 163, 74, 0.2); }
.flow-icon.step-5:hover { box-shadow: 0 20px 40px -10px rgba(124, 58, 237, 0.2); }
.flow-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--neutral-900);
  margin-top: var(--space-2);
}
.flow-sublabel {
  font-size: 0.875rem;
  color: var(--neutral-500);
  line-height: 1.5;
  max-width: 140px;
  text-align: center;
}
.flow-arrow {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-300);
  padding-top: 36px; /* align with icon center */
}
.flow-connector-bar {
  margin-top: var(--space-8);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--neutral-50);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--neutral-100);
}
.connector-item {
  padding: var(--space-4) var(--space-5);
  border-right: 1px solid var(--neutral-100);
  text-align: center;
}
.connector-item:last-child { border-right: none; }
.connector-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-1);
}
.connector-text { font-size: 0.8rem; color: var(--neutral-600); }

/* ── SOLUTIONS / PROGRAMMES — premium editorial ── */
.solutions-section {
  position: relative;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(2, 63, 136, 0.07), transparent 55%),
    linear-gradient(180deg, #eef2f7 0%, #f6f8fb 38%, #fafbfc 100%);
  padding: clamp(4rem, 10vw, 6.5rem) 0 calc(var(--space-24) + 9rem);
}
.solutions-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 50% 40% at 15% 20%, rgba(2, 63, 136, 0.06), transparent 55%),
    radial-gradient(ellipse 45% 35% at 85% 80%, rgba(243, 112, 33, 0.04), transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72'%3E%3Cpath d='M0 72h72M72 0v72' fill='none' stroke='%23a0b0c0' stroke-opacity='0.12' stroke-width='0.5'/%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
}
.solutions-section .container {
  position: relative;
  z-index: 1;
}

/* Section header */
.solutions-head {
  margin-bottom: var(--space-12);
  max-width: 72rem;
}
.solutions-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neutral-500);
  margin-bottom: var(--space-5);
}
.solutions-eyebrow-mark {
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-500), rgba(243, 112, 33, 0.2));
  border-radius: 2px;
}
.solutions-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-10);
  flex-wrap: wrap;
}
.solutions-head-copy {
  flex: 1;
  min-width: min(100%, 36rem);
}
.solutions-head-title {
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--neutral-950);
}
.solutions-head-title-sub {
  display: block;
  margin-top: 0.2em;
  font-weight: 700;
  color: var(--blue-800);
}
.solutions-head-lede {
  margin-top: var(--space-5);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--neutral-500);
  max-width: 38rem;
}
.solutions-head-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid rgba(1, 29, 62, 0.12);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 12px rgba(1, 29, 62, 0.06);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), color var(--transition-fast), transform var(--transition-fast);
}
.solutions-head-cta:hover {
  color: var(--blue-800);
  border-color: rgba(2, 63, 136, 0.25);
  box-shadow: 0 8px 28px rgba(2, 63, 136, 0.1);
  transform: translateY(-2px);
}
.solutions-head-cta svg {
  transition: transform var(--transition-fast);
}
.solutions-head-cta:hover svg {
  transform: translateX(4px);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: 0;
  align-items: stretch;
  overflow: visible;
}

.solution-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: visible;
  position: relative;
  isolation: isolate;
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
}
.solution-card:hover {
  transform: translateY(-12px);
  border-color: var(--blue-200);
  box-shadow: 
    0 20px 40px -15px rgba(2, 63, 136, 0.1),
    0 40px 80px -20px rgba(1, 22, 45, 0.1);
}
.solution-card--flagship:hover {
  border-color: var(--orange-200);
  box-shadow: 
    0 20px 40px -15px rgba(243, 112, 33, 0.15),
    0 40px 80px -20px rgba(243, 112, 33, 0.1);
}

.solution-card-head {
  position: relative;
  padding: var(--space-8) var(--space-8) 0;
}
.solution-card-head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--space-8);
  right: var(--space-8);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1, 29, 62, 0.08), transparent);
}

.solution-card-icon {
  width: 100%;
  height: 10rem;
  min-width: 0;
  padding: var(--space-4) var(--space-5);
  margin: 0;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 0;
  background: radial-gradient(circle at 50% 50%, #f1f5f9 0%, #e2e8f0 100%);
  border: 1px solid var(--neutral-100);
  overflow: hidden;
}
.solution-card-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.8), transparent);
  pointer-events: none;
}
.solution-card-icon img {
  display: block;
  width: auto;
  max-width: min(100%, 15.5rem);
  height: auto;
  /* Fill the tray: most marks were ~56px; target ~88–96px visual weight */
  max-height: clamp(4.5rem, 12vw, 5.75rem);
  min-height: 2.5rem;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 4px 12px rgba(1, 29, 62, 0.08));
}

.solution-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-8) var(--space-4);
  min-width: 0;
}

.solution-card-tag {
  align-self: flex-start;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neutral-400);
  padding: 0;
  background: none;
  border: none;
}

.solution-card-title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--neutral-950);
  line-height: 1.3;
  margin: 0;
}

.solution-card-desc {
  margin: 0;
  font-size: 0.875rem;
  color: var(--neutral-500);
  line-height: 1.7;
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.solution-card-foot {
  padding: var(--space-5) var(--space-8) var(--space-8);
  margin-top: auto;
  border-top: 1px solid rgba(1, 29, 62, 0.06);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.solution-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-800);
  transition: gap var(--transition-fast), color var(--transition-fast);
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.solution-card-link:hover {
  color: var(--orange-500);
}
.solution-card:hover .solution-card-link {
  gap: var(--space-3);
}
.solution-card-link svg {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.solution-card:hover .solution-card-link svg {
  transform: translateX(5px);
}

/* ── WHO WE SERVE ── */
.serve-section {
  padding: var(--space-24) 0;
  background: var(--white);
}
.serve-tabs {
  display: inline-flex;
  gap: var(--space-1);
  margin-top: var(--space-10);
  margin-bottom: var(--space-8);
  background: var(--neutral-100);
  padding: var(--space-1);
  border-radius: var(--radius-full);
  border: 1px solid var(--neutral-200);
}
.serve-tab {
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  color: var(--neutral-600);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}
.serve-tab.active {
  background: var(--white);
  color: var(--blue-800);
  box-shadow: var(--shadow-md);
}
.serve-tab:hover:not(.active) {
  color: var(--blue-800);
}
.serve-panel { display: none; }
.serve-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
.serve-panel-content {}
.serve-pains { display: flex; flex-direction: column; gap: var(--space-3); margin: var(--space-6) 0; }
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: #fff5f5;
  border-radius: var(--radius-md);
  border-left: 3px solid #ef4444;
}
.pain-dot { width: 8px; height: 8px; background: #ef4444; border-radius: 50%; margin-top: 0.4em; flex-shrink: 0; }
.pain-text { font-size: 0.9375rem; color: var(--neutral-700); line-height: 1.55; }
.serve-solutions { display: flex; flex-direction: column; gap: var(--space-3); }
.serve-sol-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--blue-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--blue-800);
}
.sol-check { color: var(--blue-800); flex-shrink: 0; margin-top: 1px; }
.sol-text { font-size: 0.9375rem; color: var(--neutral-700); line-height: 1.55; }
.serve-panel-visual {
  background: var(--blue-900);
  background-image: radial-gradient(circle at 100% 0%, rgba(2, 63, 136, 0.5) 0%, transparent 70%);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.serve-panel-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='3' cy='3' r='1'/%3E%3C/g%3E%3C/svg%3E");
}
.serve-visual-metric {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  transition: all var(--transition-base);
}
.serve-visual-metric:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
  border-color: rgba(255, 255, 255, 0.2);
}
.svm-icon { 
  width: 52px; 
  height: 52px; 
  border-radius: var(--radius-md); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
}
.svm-num { 
  font-family: var(--font-display); 
  font-size: 1.75rem; 
  font-weight: 900; 
  color: var(--white); 
  line-height: 1; 
  letter-spacing: -0.02em;
}
.svm-label { 
  font-size: 0.875rem; 
  color: rgba(255, 255, 255, 0.6); 
  margin-top: 4px; 
}

/* ── PROOF SECTION ── */
.proof-section {
  background: linear-gradient(135deg, #011d3e 0%, var(--blue-800) 100%);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}
.proof-section-intro {
  max-width: 40rem;
}
.proof-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(243,112,33,0.1) 0%, transparent 65%);
  border-radius: 50%;
}
.proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-1);
  margin-top: var(--space-12);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.proof-metric {
  padding: var(--space-12) var(--space-8);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.proof-metric:last-child { border-right: none; }
.proof-metric:hover { background: rgba(255, 255, 255, 0.05); }
.proof-metric::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.proof-metric:hover::after { opacity: 1; }
.proof-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-3);
  letter-spacing: -0.04em;
}
.proof-num span { color: var(--orange-500); }
.proof-metric-label { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.proof-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.proof-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  padding: var(--space-8);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}
.proof-feature:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}
.proof-feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(243,112,33,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-400);
}
.proof-feature-title { font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; color: var(--white); }
.proof-feature-desc { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: var(--space-24) 0;
  background: var(--neutral-50);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  border: 1px solid var(--neutral-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transition: all var(--transition-base);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-100);
}
.testimonial-card.featured {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  color: var(--white);
  border-color: var(--blue-700);
}
.testimonial-card.featured .testimonial-quote { color: var(--orange-500); }
.testimonial-card.featured .testimonial-text { color: rgba(255, 255, 255, 0.9); }
.testimonial-card.featured .author-name { color: var(--white); }
.testimonial-card.featured .author-role { color: rgba(255, 255, 255, 0.6); }

.testimonial-quote {
  color: var(--blue-50);
  margin-bottom: var(--space-2);
}
.testimonial-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--neutral-700);
  font-style: italic;
  font-weight: 400;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--neutral-100);
}
.testimonial-card.featured .testimonial-author { border-top-color: rgba(255, 255, 255, 0.1); }

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--blue-800);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.testimonial-card.featured .author-avatar { background: rgba(255, 255, 255, 0.15); color: var(--white); }
.author-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--neutral-900); }
.author-role { font-size: 0.8125rem; color: var(--neutral-500); }

/* ── FAQ (AEO / on-page) ── */
.faq-list {
  margin-top: var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-base);
}
.faq-item:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}
.faq-item[open] {
  border-color: var(--blue-800);
  box-shadow: var(--shadow-lg);
  transform: translateX(0);
}
.faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  width: 100%;
  padding: var(--space-6);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--neutral-900);
  cursor: pointer;
}
.faq-q::marker,
.faq-q::-webkit-details-marker {
  display: none;
}
.faq-q::after {
  content: '+';
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--neutral-100);
  color: var(--blue-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}
.faq-item[open] .faq-q::after {
  content: '−';
  background: var(--blue-800);
  color: var(--white);
}
.faq-a {
  margin: 0;
  padding: 0 var(--space-6) var(--space-6);
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.7;
  border-top: 1px solid var(--neutral-100);
}
.faq-a strong { color: var(--neutral-800); font-weight: 600; }
.faq-a a {
  color: var(--blue-800);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-a a:hover { color: var(--blue-700); }

/* ── CTA SECTION ── */
.cta-section {
  padding: var(--space-20) 0;
  background: var(--white);
}
.cta-box {
  background: var(--blue-900);
  background-image: 
    radial-gradient(circle at 0% 0%, rgba(2, 63, 136, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(243, 112, 33, 0.15) 0%, transparent 50%);
  border-radius: var(--radius-2xl);
  padding: var(--space-16);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-blue);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: 200px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-box-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: var(--white); margin-bottom: var(--space-3); }
.cta-box-desc { font-size: 1rem; color: rgba(255,255,255,0.75); max-width: 520px; line-height: 1.65; }
.cta-box-actions { display: flex; flex-direction: column; gap: var(--space-3); flex-shrink: 0; }

/* ── CONTACT FORM ── */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-100);
}
.contact-form-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--neutral-900);
  margin-bottom: var(--space-2);
}
.contact-form-desc { font-size: 0.875rem; color: var(--neutral-500); margin-bottom: var(--space-6); }
.form-group { margin-bottom: var(--space-4); }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: var(--space-2);
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md);
  color: var(--neutral-900);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-input:focus {
  border-color: var(--blue-800);
  box-shadow: 0 0 0 3px rgba(2,63,136,0.1);
}
.form-input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #dc2626;
}
.form-input::placeholder { color: var(--neutral-400); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23596d82' d='M8 10.5L2 4.5h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 12px; }
.form-textarea { min-height: 100px; resize: vertical; }
.form-submit { width: 100%; }

/* ── FOOTER ── */
.footer {
  background: var(--neutral-950);
  color: var(--white);
  padding: var(--space-20) 0 var(--space-10);
  position: relative;
  border-top: 5px solid var(--orange-500);
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 100% 100%, rgba(2, 63, 136, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Shared contact block (simple footers + strip under multi-column layouts) */
.footer-contact-strip {
  padding-bottom: var(--space-8);
  margin-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-contact-strip-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 var(--space-4);
  text-align: center;
}
.footer-contact-strip-body {
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  text-align: left;
}
.footer-contact-line {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: var(--space-3);
  align-items: start;
}
.footer-contact-label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8125rem;
}
.footer-contact-line a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-contact-line a:hover {
  color: var(--orange-400);
}
.footer-contact-note {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8125rem;
}
@media (max-width: 520px) {
  .footer-contact-line {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
.footer-brand { }
.footer-brand-logo { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-4); }
.footer-brand-icon {
  width: 42px; height: 42px;
  background: var(--blue-800);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.footer-brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.125rem; }
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: var(--space-6); max-width: 22rem; }
.footer-contacts { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-contact-item { display: flex; align-items: flex-start; gap: var(--space-3); font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer-contact-item svg { color: var(--orange-500); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item .footer-wa-icon { opacity: 0.95; }
.footer-contact-item a { color: rgba(255,255,255,0.88); text-decoration: none; transition: color var(--transition-fast); }
.footer-contact-item a:hover { color: var(--orange-400); }
.footer-col-title { font-family: var(--font-display); font-weight: 700; font-size: 0.9375rem; margin-bottom: var(--space-5); }
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-link { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--transition-fast); }
.footer-link:hover { color: var(--orange-400); }
/* Sub-footer: © left | legal right (Book CTA is floating round, left) */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-6);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0;
}
.footer-bottom-text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
  max-width: min(100%, 26rem);
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  align-items: center;
  justify-content: flex-end;
}
.footer-bottom-links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-fast);
}
.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}
.footer-bottom-links a[aria-current="page"] {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* Legal pages (Privacy, Terms, PDPA) */
.legal-doc {
  max-width: 42rem;
  margin: 0 auto;
  padding-bottom: var(--space-12);
}
.legal-doc .legal-meta {
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin-bottom: var(--space-8);
}
.legal-doc h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--neutral-900);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}
.legal-doc h2:first-of-type {
  margin-top: var(--space-2);
}
.legal-doc p,
.legal-doc li {
  font-size: 0.9375rem;
  color: var(--neutral-700);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}
.legal-doc ul {
  padding-left: 1.25rem;
  margin-bottom: var(--space-4);
}
.legal-doc a {
  color: var(--blue-800);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-doc a:hover {
  color: var(--orange-500);
}

/* Long-form insight / industry articles */
.insight-article {
  max-width: 46rem;
  margin: 0 auto;
  padding-bottom: var(--space-12);
}
.insight-article .article-lead {
  font-size: 1.0625rem;
  color: var(--neutral-700);
  line-height: 1.75;
  margin-bottom: var(--space-8);
}
.insight-article .article-meta {
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--neutral-100);
}
.insight-article h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--neutral-900);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}
.insight-article h2:first-of-type {
  margin-top: var(--space-2);
}
.insight-article h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}
.insight-article p,
.insight-article li {
  font-size: 0.9375rem;
  color: var(--neutral-700);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}
.insight-article ul {
  padding-left: 1.25rem;
  margin-bottom: var(--space-4);
}
.insight-article a {
  color: var(--blue-800);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.insight-article a:hover {
  color: var(--orange-500);
}
.insight-callout {
  margin: var(--space-6) 0;
  padding: var(--space-5) var(--space-6);
  background: var(--blue-50);
  border-left: 4px solid var(--orange-500);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-size: 0.9375rem;
  color: var(--neutral-800);
  line-height: 1.65;
}
.insight-table-wrap {
  overflow-x: auto;
  margin: var(--space-6) 0;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
}
.insight-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.insight-table-wrap th,
.insight-table-wrap td {
  padding: var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--neutral-100);
}
.insight-table-wrap th {
  background: var(--neutral-50);
  font-weight: 700;
  color: var(--neutral-800);
}
.insight-table-wrap tr:last-child td {
  border-bottom: none;
}
.insight-sources {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--neutral-200);
}
.insight-sources h2 {
  margin-top: 0;
}
.insight-sources ol {
  padding-left: 1.25rem;
  margin: 0;
}
.insight-sources li {
  font-size: 0.8125rem;
  color: var(--neutral-600);
  margin-bottom: var(--space-3);
  line-height: 1.55;
  word-break: break-word;
}

/* ── NEWS ARTICLE PAGE (editorial layout) ── */
.news-page {
  background: var(--neutral-50);
}
.news-masthead {
  background: var(--neutral-900);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem var(--space-4);
  text-align: center;
  border-bottom: 3px solid var(--orange-500);
}
.news-article-head {
  background: var(--white);
  border-bottom: 1px solid var(--neutral-200);
  padding: var(--space-8) 0 var(--space-8);
}
.news-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: var(--neutral-500);
  margin-bottom: var(--space-4);
}
.news-crumb a {
  color: var(--blue-800);
  text-decoration: none;
  font-weight: 600;
}
.news-crumb a:hover {
  color: var(--orange-500);
  text-decoration: underline;
}
.news-crumb__sep {
  color: var(--neutral-300);
  user-select: none;
}
.news-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue-800);
  text-decoration: none;
  margin-bottom: var(--space-6);
}
.news-back:hover {
  color: var(--orange-500);
}
.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-5);
}
.news-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--orange-50);
  color: var(--orange-600);
  border: 1px solid rgba(243, 112, 33, 0.25);
}
.news-tag--muted {
  background: var(--neutral-50);
  color: var(--neutral-600);
  border-color: var(--neutral-200);
}
.news-headline {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.85rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--neutral-900);
  letter-spacing: -0.03em;
  margin: 0 0 var(--space-5);
}
.news-standfirst {
  font-size: 1.125rem;
  line-height: 1.68;
  color: var(--neutral-600);
  margin: 0 0 var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--neutral-100);
}
.news-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  font-size: 0.875rem;
  color: var(--neutral-500);
}
.news-byline__author {
  font-weight: 700;
  color: var(--neutral-800);
}
.news-byline time {
  font-variant-numeric: tabular-nums;
}
.news-byline__dot {
  color: var(--neutral-300);
  user-select: none;
}
.news-main {
  padding: var(--space-6) 0 var(--space-16);
}
.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 260px);
  gap: var(--space-6);
  align-items: start;
}
.news-page .news-article-body.insight-article {
  max-width: none;
  margin: 0;
  padding: var(--space-8) var(--space-5);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-100);
  box-shadow: var(--shadow-sm);
}
/* Only top-level section headings — not h2 inside .insight-sources */
.news-page .news-article-body.insight-article > h2 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--neutral-900);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--neutral-100);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}
.news-page .news-article-body.insight-article > h2:first-of-type {
  margin-top: 0;
}
.news-page .news-article-body .insight-sources h2 {
  font-size: 1.125rem;
  font-weight: 800;
  padding-bottom: 0;
  border-bottom: none;
  margin-top: 0;
  margin-bottom: var(--space-4);
}
.news-page .news-article-body .article-lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--neutral-700);
  border-left: 4px solid var(--orange-500);
  padding-left: var(--space-4);
  margin-bottom: var(--space-8);
}
.news-page .news-article-body.insight-article h3 {
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
  font-size: 0.9375rem;
}
.news-sidebar {
  position: sticky;
  top: calc(var(--space-3) + var(--nav-height));
}
.news-sidebar-card {
  background: var(--white);
  border: 1px solid var(--neutral-100);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.news-sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--neutral-900);
  margin: 0 0 var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 3px solid var(--orange-500);
}
.news-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-sidebar-list li {
  border-bottom: 1px solid var(--neutral-100);
}
.news-sidebar-list li:last-child {
  border-bottom: none;
}
.news-sidebar-list a {
  display: block;
  padding: var(--space-3) 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-800);
  text-decoration: none;
  line-height: 1.4;
}
.news-sidebar-list a:hover {
  color: var(--orange-500);
}
.news-share-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}
.news-share-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}
.news-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.65rem;
  border-radius: var(--radius-full);
  background: var(--neutral-100);
  color: var(--neutral-800);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--neutral-200);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.news-share-btn:hover {
  background: var(--blue-800);
  color: var(--white);
  border-color: var(--blue-800);
}
.news-share-btn--icon {
  min-width: 2.75rem;
  padding: 0;
}
.news-share-btn--icon svg {
  display: block;
}
.news-end-mark {
  margin-top: var(--space-10);
  padding-top: var(--space-5);
  border-top: 1px dashed var(--neutral-200);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-400);
  text-align: center;
}

@media (max-width: 960px) {
  .news-layout {
    grid-template-columns: 1fr;
  }
  .news-sidebar {
    position: static;
  }
  .news-page .news-article-body.insight-article {
    padding: var(--space-6) var(--space-5);
  }
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .footer-bottom-links {
    justify-content: flex-start;
  }
}

/* ── QUICK CONTACT FORM MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,15,26,0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: var(--radius-2xl);
  width: 100%;
  max-width: 520px;
  max-height: min(90vh, 720px);
  overflow-y: auto;
  padding: var(--space-10);
  box-shadow: var(--shadow-xl);
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition-base);
  position: relative;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-600);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.modal-close:hover { background: var(--neutral-200); color: var(--neutral-900); }
.modal-title { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--neutral-900); margin-bottom: var(--space-2); }
.modal-desc { font-size: 0.9rem; color: var(--neutral-500); margin-bottom: var(--space-6); }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
  padding: var(--space-20) 0 var(--space-16);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.page-header .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-6);
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.page-header-title { font-family: var(--font-display); font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 900; color: var(--white); margin-bottom: var(--space-4); letter-spacing: -0.02em; }
.page-header-desc { font-size: 1.0625rem; color: rgba(255,255,255,0.75); max-width: 600px; line-height: 1.7; }

/* ── CARD GRID UTILS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }

/* ── FEATURE LIST ── */
.feature-list { display: flex; flex-direction: column; gap: var(--space-3); }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.9375rem;
  color: var(--neutral-700);
}
.feature-item svg { color: var(--blue-800); flex-shrink: 0; margin-top: 2px; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.highlight-box.orange {
  background: var(--orange-50);
  border-color: var(--orange-100);
}

/* ── TAGS ── */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.tag-blue { background: var(--blue-50); color: var(--blue-800); }
.tag-orange { background: var(--orange-50); color: var(--orange-600); }
.tag-green { background: var(--success-100); color: #15803d; }

/* ── DIVIDER ── */
.divider { width: 4px; height: 4px; background: var(--neutral-300); border-radius: 50%; }

/* ── SCROLL ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
/* Cards: hover lift must win over .fade-up.visible (otherwise transform resets and hover looks broken) */
.solution-card.fade-up.visible:hover {
  transform: translateY(-6px);
}
.fade-in { opacity: 0; transition: opacity 0.6s ease; }
.fade-in.visible { opacity: 1; }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .stagger-1, .stagger-2, .stagger-3, .stagger-4, .stagger-5 { transition-delay: 0s !important; }
  .floating-wa { animation: none; }
  .hero-badge .dot { animation: none; }
}

/* ── INSIGHT / BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-100);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: var(--space-6); flex: 1; display: flex; flex-direction: column; gap: var(--space-3); }
.blog-card-category { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--orange-500); }
.blog-card-title { font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; color: var(--neutral-900); line-height: 1.4; flex: 1; }
.blog-card-excerpt { font-size: 0.875rem; color: var(--neutral-600); line-height: 1.65; }
.blog-card-meta { display: flex; align-items: center; gap: var(--space-2); font-size: 0.8rem; color: var(--neutral-400); }
.blog-card-footer { padding: 0 var(--space-6) var(--space-6); }

/* ── ABOUT PAGE ── */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.value-card {
  background: var(--white);
  border: 1px solid var(--neutral-100);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-base);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-5); }
.value-title { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; color: var(--neutral-900); margin-bottom: var(--space-3); }
.value-desc { font-size: 0.9125rem; color: var(--neutral-600); line-height: 1.65; }

/* ── PROGRAM PAGE ── */
.program-hero { padding: var(--space-16) 0; }
.program-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.program-feature-card {
  background: var(--white);
  border: 1px solid var(--neutral-100);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  gap: var(--space-4);
}
.process-step {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  padding: var(--space-6);
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
}
.process-num {
  width: 40px;
  height: 40px;
  background: var(--blue-800);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  flex-shrink: 0;
}
.process-content {}
.process-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--neutral-900); margin-bottom: var(--space-1); }
.process-desc { font-size: 0.875rem; color: var(--neutral-600); line-height: 1.6; }

/* ── PARTNERS ── */
.partners-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  align-items: center;
}
.partner-logo-box {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-100);
  border-radius: var(--radius-lg);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--neutral-500);
  transition: all var(--transition-base);
}
.partner-logo-box:hover { border-color: var(--blue-200); background: var(--blue-50); color: var(--blue-800); }
.partner-logo-box img {
  display: block;
  max-width: 100%;
  max-height: 2.75rem;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.partners-logo-grid--all {
  margin-top: 0;
}
.partners-logo-grid--all .partner-logo-box {
  padding: var(--space-3) var(--space-4);
  background: var(--white);
  min-height: 5.25rem;
  height: auto;
}
.partners-case-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
.partners-case-card {
  background: var(--neutral-50);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  border: 1px solid var(--neutral-100);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
.partners-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.partners-case-panel {
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.partners-case-panel--blue {
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border: 1px solid var(--blue-100);
}
.partners-case-panel--orange {
  background: linear-gradient(135deg, var(--orange-50), #fde8d5);
  border: 1px solid var(--orange-100);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero .container { padding-top: var(--space-16); padding-bottom: var(--space-16); }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-metrics { grid-template-columns: repeat(2, 1fr); }
  .proof-features { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .solution-content { grid-template-columns: 1fr; }
  .serve-panel.active { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { grid-template-columns: 1fr; text-align: center; }
  .cta-box-actions { flex-direction: row; justify-content: center; }
  .partners-case-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .container { padding: 0 var(--space-4); }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--white); padding: var(--space-4); border-bottom: 1px solid var(--neutral-100); box-shadow: var(--shadow-md); z-index: 999; }
  .hamburger { display: flex; }
  .nav-wa { display: none; }
  .section { padding: var(--space-12) 0; }
  .section-lg { padding: var(--space-16) 0; }
  .solutions-grid { grid-template-columns: 1fr; }
  .solutions-section { padding-bottom: calc(var(--space-20) + 7rem); }
  .solutions-head-row {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-6);
  }
  .solutions-head-cta {
    justify-content: center;
    width: 100%;
  }
  .solution-card-head {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }
  .solution-card-head::after {
    left: var(--space-6);
    right: var(--space-6);
  }
  .solution-card-body {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }
  .solution-card-foot {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
    padding-bottom: var(--space-6);
  }
  .solution-card-icon {
    height: 7.5rem;
    padding: var(--space-3) var(--space-4);
  }
  .solution-card-icon img {
    max-width: min(100%, 14rem);
    max-height: clamp(4rem, 11vw, 5rem);
  }
  .proof-metrics { grid-template-columns: repeat(2, 1fr); }
  .proof-features { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: var(--space-5); }
  .serve-tabs { flex-wrap: wrap; border-radius: var(--radius-xl); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .partners-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values-grid { grid-template-columns: 1fr; }
  .program-features-grid { grid-template-columns: 1fr; }
  .ecosystem-flow { flex-direction: column; align-items: flex-start; }
  .flow-arrow { transform: rotate(90deg); padding-top: 0; padding-left: 36px; }
  .flow-connector-bar { grid-template-columns: 1fr 1fr; }
  .partners-case-card { padding: var(--space-6); border-radius: var(--radius-xl); }
  .partners-case-panel { padding: var(--space-5); }
  .btn-lg { font-size: 1rem; padding: 0.95rem 1.25rem; }
  .hero-actions .btn,
  .cta-box-actions .btn { width: 100%; justify-content: center; }
  .modal { padding: var(--space-6); }
  .faq-q { font-size: 1rem; padding: var(--space-5); }
  .faq-a { padding: 0 var(--space-5) var(--space-5); }
  .floating-wa { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
  .floating-cta.visible {
    bottom: 1.25rem;
    left: 1.25rem;
  }
  .floating-cta-btn {
    width: 52px;
    height: 52px;
  }
  .floating-cta-btn svg {
    width: 22px;
    height: 22px;
  }
  .nav-item.has-dropdown::before {
    display: none;
  }
  .nav-item.has-dropdown {
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
  }
  .nav-item.has-dropdown > .nav-link {
    width: 100%;
    justify-content: space-between;
  }
  .nav-item.has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: var(--space-2) 0 var(--space-2) var(--space-4);
    margin-top: var(--space-2);
    width: 100%;
    min-width: 0;
    display: none;
    background: transparent;
  }
  .nav-item.has-dropdown.dropdown-open .dropdown {
    display: block;
  }
  .nav-item.has-dropdown > .nav-link::after {
    margin-left: auto;
    transition: transform var(--transition-base);
  }
  .nav-item.has-dropdown.dropdown-open > .nav-link::after {
    transform: rotate(180deg);
  }
  .trust-bar .container {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: var(--space-2);
  }
  .trust-bar .container::-webkit-scrollbar { height: 4px; }
  .trust-bar .container::-webkit-scrollbar-thumb {
    background: var(--neutral-300);
    border-radius: 2px;
  }
}
@media (max-width: 640px) {
  .partners-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .partners-kpi-grid > div:last-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 420px) {
  .partners-logo-grid { grid-template-columns: 1fr; }
}


/* ── LOGO IMAGES ── */
.logo-image {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ── PROGRAM PAGE ICONS ── */
.program-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.program-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--space-4);
  display: block;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
