/* ═══════════════════════════════════════════════════════════════
   VSM GLOBAL TECHNOLOGIES — about.css
   Font: Jost (Google Fonts) — Full Page Override
   Theme: Premium Blue & White | Professional Animations
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-50:  #EBF5FF;
  --blue-100: #DBEEFE;
  --blue-200: #BAE0FD;
  --blue-400: #60B8FA;
  --blue-500: #2E9BF0;
  --blue-600: #1A7DD8;
  --blue-800: #0C3F73;
  --blue-900: #061D3A;

  --white:    #FFFFFF;
  --off-white:#F7FBFF;
  --light:    #EEF6FF;

  --text-dark:   #0A1628;
  --text-mid:    #2D4670;
  --text-muted:  #6B8CAE;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.3s cubic-bezier(0.22, 1, 0.36, 1);

  /* Jost everywhere */
  --font: 'Jost', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Every element inherits Jost */
h1, h2, h3, h4, h5, h6,
p, a, span, li, label,
input, textarea, select,
button, blockquote, cite,
th, td, caption,
.section-eyebrow,
.section-heading,
.section-sub,
.hero-eyebrow,
.hero-title,
.hero-desc,
.hero-meta-item .num,
.hero-meta-item .label,
.scroll-hint,
.marquee-text,
.vision-label,
.vision-heading,
.vision-text,
.purpose-eyebrow,
.purpose-heading,
.purpose-text,
.value-title,
.value-desc,
.card-num,
.journey-content p,
.milestone-year,
.milestone-text,
.years-right h3,
.years-right p,
.years-pill,
.testi-text,
.testi-author-name,
.cta-eyebrow,
.cta-heading,
.cta-btn,
.promise-title,
.promise-desc,
.promise-num {
  font-family: var(--font);
}

img {
  display: block;
  max-width: 100%;
}

.hero-title em {
  background: linear-gradient(90deg, #2D5BFF 0%, #9B3FD8 50%, #F0468A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

::selection {
  background: var(--blue-500);
  color: #fff;
}
/*logo */
.hero-logo-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}

.hero-logo-bg img {
    width: 700px;
    max-width: 80%;
    opacity: 0.20;
    filter: grayscale(30%);
    transform: translateY(100px)
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    margin: 70px auto 0;
    text-align: center;
}

/* ── Section Shared ───────────────────────────────────────────── */
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-eyebrow {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-300, #93c5fd));
  border-radius: 2px;
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

/* ── Scroll Reveal ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #EBF5FF 0%, #FFFFFF 45%, #D6EDFF 100%);
  padding: 9rem 8rem;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: heroBlobFloat ease-in-out infinite;
}

@keyframes heroBlobFloat {
  0%   { transform: translate(0px,   0px); }
  25%  { transform: translate(25px, -20px); }
  50%  { transform: translate(-15px, 25px); }
  75%  { transform: translate(20px,  15px); }
  100% { transform: translate(0px,   0px); }
}
/* Animated floating background blobs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(96, 184, 250, 0.25), transparent 70%);
  top: -120px;
  left: -180px;
  animation: blobFloat1 10s ease-in-out infinite;
}

.hero::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 125, 216, 0.18), transparent 70%);
  bottom: -80px;
  right: -100px;
  animation: blobFloat2 12s ease-in-out infinite;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(40px, 30px) scale(1.08); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-30px, -20px) scale(1.06); }
}

/* Decorative ornaments */
/* .ornament {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(96, 184, 250, 0.18);
  top: 12%;
  left: 5%;
  animation: spinSlow 30s linear infinite;
  z-index: 0;
}

.ornament-br {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: 6%;
  top: auto;
  left: auto;
  animation-direction: reverse;
  animation-duration: 22s;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
} */

/* .hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  animation: heroFadeUp 1.1s var(--ease-smooth) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(52px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
} */

.hero-eyebrow {
  font-family: var(--font);
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  animation: heroFadeUp 1s 0.3s both var(--ease-smooth);
}

/* .hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--blue-400);
  border-radius: 2px;
} */

.hero-title {
 font-family: var(--font);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  width: 100%;
  text-align: center;
}

/* .hero-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-200));
  border-radius: 4px;
  margin: 1.5rem auto;
  animation: heroFadeUp 1s 0.4s both var(--ease-smooth);
} */

.hero-desc {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
  letter-spacing: 0.01em;
  animation: heroFadeUp 1s 0.5s both var(--ease-smooth);
}

/* Hero Meta */
.hero-meta {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: heroFadeUp 1s 0.6s both var(--ease-smooth);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-meta-item .num {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--blue-600);
  line-height: 1;
}

.hero-meta-item .label {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

/* Scroll Hint */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: heroFadeUp 1s 0.8s both var(--ease-smooth);
}

.scroll-line {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--blue-400));
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ══════════════════════════════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--blue-100);
  /* border-bottom: 1px solid var(--blue-100);
  background: var(--blue-50); */
  padding: 1rem 0;
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-text {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.marquee-sep {
  color: var(--blue-400);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   VISION
   ══════════════════════════════════════════════════════════════ */
.gradient-text {
    background: linear-gradient(
        90deg,
        #2D5BFF 0%,
        #9B3FD8 50%,
        #F0468A 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
    display: inline-block;
}
.vision {
  padding: 7rem 0;
  background: var(--white);
}

.vision-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}

.vision-label {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-600);
  padding-top: 0.6rem;
  border-top: 2px solid var(--blue-200);
}

.vision-heading {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.vision-text {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.85;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════════════════════════
   PURPOSE
   ══════════════════════════════════════════════════════════════ */
.gradient-text {
    background: linear-gradient(
        90deg,
        #2D5BFF 0%,
        #9B3FD8 50%,
        #F0468A 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
   .purpose {
  padding: 1rem 0;
  background: var(--off-white);
}

.purpose-card {
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 60%);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

/* .purpose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(30, 100, 200, 0.09);
} */

.purpose-eyebrow {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.purpose-eyebrow::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
}

.purpose-heading {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.purpose-text {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.85;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════════════════════════
   VALUES
   ══════════════════════════════════════════════════════════════ */
.values .section-heading em {
    background: linear-gradient(
        90deg,
        #2D5BFF 0%,
        #9B3FD8 50%,
        #F0468A 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}
  .values {
  padding: 64px 0 72px;
  background: #eff6ff;
}

.values-top {
  text-align: center;
  margin-bottom: 52px;
}

/* Override eyebrow for values/promise section */
.values .section-eyebrow,
.promise .section-eyebrow {
  font-family: var(--font);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: #dbeafe;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 16px;
  border-radius: 30px;
  border: 1.5px solid #93c5fd;
  margin-bottom: 16px;
}

.values .section-eyebrow::before,
.promise .section-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1d4ed8;
  flex-shrink: 0;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1d4ed8;
  flex-shrink: 0;
}

.values .section-heading,
.promise .section-heading {
  font-family: var(--font);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #17181c;
  line-height: 1.2;
}

.values .section-heading em,
.promise .section-heading em {
  font-style: italic;
  color: #1d4ed8;
}

.section-sub {
  font-family: var(--font);
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 400;
  color: #3b6fa0;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

/* ── Horizontal Scrollable Row ── */
.values-grid {
  display: flex;
  flex-direction: row;
  gap: 18px;
  /* overflow-x: auto; */
  padding: 6px 4px 18px;
  -webkit-overflow-scrolling: touch;
  margin-left: -90px;
}

.values-grid::-webkit-scrollbar { height: 4px; }
.values-grid::-webkit-scrollbar-track { background: transparent; }
.values-grid::-webkit-scrollbar-thumb { border-radius: 10px; }

/* ── Card Base ── */
.value-card {
  flex: 0 0 240px;
  min-height: 240px;
  border-radius: 20px;
  padding: 28px 22px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  scroll-snap-align: start;
  border-width: 1.5px;
  border-style: solid;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth), box-shadow 0.3s ease;
}

.value-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.value-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 110px; height: 110px;
  border-radius: 50%;
  opacity: 0.13;
}
/* ── Number Badge ── */
.card-num {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1.5px solid;
}

/* ── Icon Box ── */
.value-icon-box {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-expo);
}

/* .value-card:hover .value-icon-box {
  transform: scale(1.1) rotate(-4deg);
} */

.value-icon-box svg {
  width: 22px; height: 22px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Title & Description ── */
.value-title {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.value-desc {
  font-family: var(--font);
  font-size: 1.2rem;
  line-height: 1.72;
  font-weight: 400;
  letter-spacing: 0.01em;
  flex: 1;
}

/* ── Card Themes — blue & white only ── */
.value-card:nth-child(1) { background: #EAF3FF; border-color: #85B7EB; transition-delay: 0s; }
.value-card:nth-child(1)::before { background: #185FA5; }
/* .value-card:nth-child(1)::after  { background: #378ADD; } */
.value-card:nth-child(1) .card-num       { background: #B5D4F4; border-color: #378ADD; color: #0C447C; }
.value-card:nth-child(1) .value-icon-box { background: #B5D4F4; border-color: #378ADD; }
.value-card:nth-child(1) .value-icon-box svg { stroke: #0C447C; }
.value-card:nth-child(1) .value-title    { color: #0556a8; }
.value-card:nth-child(1) .value-desc     { color: #13131e; }

.value-card:nth-child(2) { background: #dbeafe; border-color: #93c5fd; transition-delay: 0.08s; }
.value-card:nth-child(2)::before { background: #1d4ed8; }
/* .value-card:nth-child(2)::after  { background: #2563eb; } */
.value-card:nth-child(2) .card-num       { background: #bfdbfe; border-color: #93c5fd; color: #1e3a8a; }
.value-card:nth-child(2) .value-icon-box { background: #bfdbfe; border-color: #93c5fd; }
.value-card:nth-child(2) .value-icon-box svg { stroke: #1e3a8a; }
.value-card:nth-child(2) .value-title    { color: #0556a8; }
.value-card:nth-child(2) .value-desc     { color: #13131e; }

.value-card:nth-child(3) { background: #eff6ff; border-color: #bfdbfe; transition-delay: 0.16s; }
.value-card:nth-child(3)::before { background: #2563eb; }
/* .value-card:nth-child(3)::after  { background: #3b82f6; } */
.value-card:nth-child(3) .card-num       { background: #dbeafe; border-color: #93c5fd; color: #1e3a8a; }
.value-card:nth-child(3) .value-icon-box { background: #dbeafe; border-color: #93c5fd; }
.value-card:nth-child(3) .value-icon-box svg { stroke: #1e3a8a; }
.value-card:nth-child(3) .value-title    { color: #0556a8;}
.value-card:nth-child(3) .value-desc     { color: #13131e; }

.value-card:nth-child(4) { background: #e0f2fe; border-color: #7dd3fc; transition-delay: 0.24s; }
.value-card:nth-child(4)::before { background: #0284c7; }
/* .value-card:nth-child(4)::after  { background: #0369a1; } */
.value-card:nth-child(4) .card-num       { background: #bae6fd; border-color: #7dd3fc; color: #0c4a6e; }
.value-card:nth-child(4) .value-icon-box { background: #bae6fd; border-color: #7dd3fc; }
.value-card:nth-child(4) .value-icon-box svg { stroke: #0c4a6e; }
.value-card:nth-child(4) .value-title    { color: #0556a8; }
.value-card:nth-child(4) .value-desc     { color: #13131e; }

.value-card:nth-child(5) { background: #dbeafe; border-color: #60a5fa; transition-delay: 0.32s; }
.value-card:nth-child(5)::before { background: #3b82f6; }
/* .value-card:nth-child(5)::after  { background: #60a5fa; } */
.value-card:nth-child(5) .card-num       { background: #93c5fd; border-color: #60a5fa; color: #1e3a8a; }
.value-card:nth-child(5) .value-icon-box { background: #93c5fd; border-color: #60a5fa; }
.value-card:nth-child(5) .value-icon-box svg { stroke: #1e3a8a; }
.value-card:nth-child(5) .value-title    { color: #0556a8; }
.value-card:nth-child(5) .value-desc     { color: #13131e; }

/* ══════════════════════════════════════════════════════════════
   JOURNEY
   ══════════════════════════════════════════════════════════════ */
.journey .section-heading em {
    background: linear-gradient(
        90deg,
        #2D5BFF 0%,
        #9B3FD8 50%,
        #F0468A 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}
   .journey {
  padding: 7rem 0;
  background: var(--off-white);
}

.journey-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.journey-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--blue-100);
}

.journey-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-smooth);
}

.journey-img-wrap:hover img {
  transform: scale(1.05);
}

.journey-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10, 22, 40, 0.45));
}

.journey-img-tag {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(26, 125, 216, 0.6);
  backdrop-filter: blur(6px);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
}

.journey-content p {
  font-family: var(--font);
  color: var(--text-mid);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

.journey-milestones {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.milestone {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.milestone-year {
  flex-shrink: 0;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.65rem;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.milestone-text {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════════════════════════
   PROMISE
   ══════════════════════════════════════════════════════════════ */
.promise .section-heading em {
    background: linear-gradient(
        90deg,
        #2D5BFF 0%,
        #9B3FD8 50%,
        #F0468A 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}
   .promise {
  padding: 80px 0 90px;
  background: #eff6ff;
}

.promise-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 2px 20px;
  /* scroll-snap-type: x mandatory; */
  /* -webkit-overflow-scrolling: touch; */
  /* scrollbar-width: thin;
  scrollbar-color: #C4C0F5 transparent; */
}

.promise-grid::-webkit-scrollbar { height: 4px; }
.promise-grid::-webkit-scrollbar-track { background: transparent; }
/* .promise-grid::-webkit-scrollbar-thumb { background: #C4C0F5; border-radius: 10px; } */

.promise-item {
  flex: 0 0 260px;
  min-height: 260px;
  border-radius: 22px;
  padding: 30px 26px 28px;
  margin-left: -02px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  scroll-snap-align: start;
  border-width: 1.5px;
  border-style: solid;
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth), box-shadow 0.25s ease;
}

.promise-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.promise-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.12);
}

.promise-item::before {
  content: '';
  position: absolute;
  top: -38px; right: -38px;
  width: 120px; height: 120px;
  border-radius: 50%;
  opacity: 0.13;
}

.promise-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 22px; right: 22px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  opacity: 0.4;
}

.promise-num {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 30px;
  border: 1.5px solid;
  display: inline-block;
  width: fit-content;
  margin-bottom: 20px;
}

.promise-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.promise-title {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.promise-desc {
  font-family: var(--font);
  font-size: 1.2rem;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ── Promise card themes — blue & white only ── */
/* .promise-item:nth-child(1) { background: #EAF3FF; border-color: #85B7EB; transition-delay: 0s; } */
.promise-item:nth-child(1)::before { background: #185FA5; }
/* .promise-item:nth-child(1)::after  { background: #378ADD; } */
.promise-item:nth-child(1) .promise-num   { background: #B5D4F4; border-color: #378ADD; color: #0C447C; }
.promise-item:nth-child(1) .promise-title { color: #0C447C; }
.promise-item:nth-child(1) .promise-desc  { color: #2d4670; }

/* .promise-item:nth-child(2) { background: #dbeafe; border-color: #93c5fd; transition-delay: 0.08s; } */
.promise-item:nth-child(2)::before { background: #1d4ed8; }
/* .promise-item:nth-child(2)::after  { background: #2563eb; } */
.promise-item:nth-child(2) .promise-num   { background: #bfdbfe; border-color: #93c5fd; color: #1e3a8a; }
.promise-item:nth-child(2) .promise-title { color: #1e3a8a; }
.promise-item:nth-child(2) .promise-desc  { color: #2d4670; }

/* .promise-item:nth-child(3) { background: #eff6ff; border-color: #bfdbfe; transition-delay: 0.16s; } */
.promise-item:nth-child(3)::before { background: #2563eb; }
/* .promise-item:nth-child(3)::after  { background: #3b82f6; } */
.promise-item:nth-child(3) .promise-num   { background: #dbeafe; border-color: #bfdbfe; color: #1e3a8a; }
.promise-item:nth-child(3) .promise-title { color: #1e3a8a; }
.promise-item:nth-child(3) .promise-desc  { color: #2d4670; }

/* .promise-item:nth-child(4) { background: #e0f2fe; border-color: #7dd3fc; transition-delay: 0.24s; } */
.promise-item:nth-child(4)::before { background: #0284c7; }
/* .promise-item:nth-child(4)::after  { background: #0369a1; } */
.promise-item:nth-child(4) .promise-num   { background: #bae6fd; border-color: #7dd3fc; color: #0c4a6e; }
.promise-item:nth-child(4) .promise-title { color: #0c4a6e; }
.promise-item:nth-child(4) .promise-desc  { color: #2d4670; }

.reveal-delay-1 { transition-delay: 0.08s !important; }
.reveal-delay-2 { transition-delay: 0.16s !important; }
.reveal-delay-3 { transition-delay: 0.24s !important; }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════ */
.testimonials .section-heading em {
    background: linear-gradient(
        90deg,
        #2D5BFF 0%,
        #9B3FD8 50%,
        #F0468A 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}
   .testimonials {
  padding: 2rem 0;
  background: var(--off-white);
}

.testi-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.testi-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-50), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.testi-card:hover::before { opacity: 1; }

.testi-quote-mark {
  display: block;
  font-size: 4rem;
  line-height: 1;
  color: #0b4867;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.testi-text {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.85;
  letter-spacing: 0.01em;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.testi-author-line {
  width: 28px; height: 2px;
  background: var(--blue-400);
  border-radius: 2px;
}

.testi-author-name {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════
   CTA
   ══════════════════════════════════════════════════════════════ */
.cta-heading em {
    background: linear-gradient(
        90deg,
        #2D5BFF 0%,
        #9B3FD8 50%,
        #F0468A 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}
   .cta {
  padding: 1rem 0 8rem 0;
  text-align: center;
  background: linear-gradient(160deg, #E8F3FF 0%, var(--white) 50%, #D4EAFF 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 184, 250, 0.15), transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.6; }
  50%       { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.cta-eyebrow {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-eyebrow::before,
.cta-eyebrow::after {
  content: '';
  display: inline-block;
  width: 20px; height: 1.5px;
  background: var(--blue-400);
  border-radius: 2px;
}

.cta-heading {
  font-family: var(--font);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--blue-600);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  background: var(--blue-800);
  box-shadow: 0 14px 40px rgba(41, 125, 203, 0.38);
  color: #fff !important;
}

.cta-btn:hover::before { transform: translateX(0); }
.cta-btn:active { transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   DARK MODE
   ══════════════════════════════════════════════════════════════ */
@media (prefers-color-scheme: dark) {
  body { background: #0a1628; }
  .values, .promise { background: #0a1628; }

  .values .section-eyebrow,
  .promise .section-eyebrow {
    background: #1e3a8a; color: #bfdbfe; border-color: #1d4ed8;
  }
  .values .section-eyebrow::before,
  .promise .section-eyebrow::before { background: #bfdbfe; }
  .values .section-heading,
  .promise .section-heading { color: #dbeafe; }
  .section-sub { color: #93c5fd; }

  /* Dark — Value Cards */
  .value-card:nth-child(1) { background: #0b1a2e; border-color: #185FA5; }
  .value-card:nth-child(1) .card-num       { background: #0C447C; border-color: #185FA5; color: #B5D4F4; }
  .value-card:nth-child(1) .value-icon-box { background: #0C447C; border-color: #185FA5; }
  .value-card:nth-child(1) .value-icon-box svg { stroke: #85B7EB; }
  .value-card:nth-child(1) .value-title    { color: #B5D4F4; }
  .value-card:nth-child(1) .value-desc     { color: #378ADD; }

  .value-card:nth-child(2) { background: #0f1f4a; border-color: #1d4ed8; }
  .value-card:nth-child(2) .card-num       { background: #1e3a8a; border-color: #1d4ed8; color: #bfdbfe; }
  .value-card:nth-child(2) .value-icon-box { background: #1e3a8a; border-color: #1d4ed8; }
  .value-card:nth-child(2) .value-icon-box svg { stroke: #bfdbfe; }
  .value-card:nth-child(2) .value-title    { color: #bfdbfe; }
  .value-card:nth-child(2) .value-desc     { color: #93c5fd; }

  .value-card:nth-child(3) { background: #0c2354; border-color: #2563eb; }
  .value-card:nth-child(3) .card-num       { background: #1d4ed8; border-color: #2563eb; color: #dbeafe; }
  .value-card:nth-child(3) .value-icon-box { background: #1d4ed8; border-color: #2563eb; }
  .value-card:nth-child(3) .value-icon-box svg { stroke: #dbeafe; }
  .value-card:nth-child(3) .value-title    { color: #dbeafe; }
  .value-card:nth-child(3) .value-desc     { color: #93c5fd; }

  .value-card:nth-child(4) { background: #0c2d4e; border-color: #0284c7; }
  .value-card:nth-child(4) .card-num       { background: #0369a1; border-color: #0284c7; color: #bae6fd; }
  .value-card:nth-child(4) .value-icon-box { background: #0369a1; border-color: #0284c7; }
  .value-card:nth-child(4) .value-icon-box svg { stroke: #bae6fd; }
  .value-card:nth-child(4) .value-title    { color: #bae6fd; }
  .value-card:nth-child(4) .value-desc     { color: #7dd3fc; }

  .value-card:nth-child(5) { background: #0f2040; border-color: #3b82f6; }
  .value-card:nth-child(5) .card-num       { background: #1e40af; border-color: #3b82f6; color: #dbeafe; }
  .value-card:nth-child(5) .value-icon-box { background: #1e40af; border-color: #3b82f6; }
  .value-card:nth-child(5) .value-icon-box svg { stroke: #dbeafe; }
  .value-card:nth-child(5) .value-title    { color: #dbeafe; }
  .value-card:nth-child(5) .value-desc     { color: #93c5fd; }

  /* Dark — Promise Cards */
  .promise-item:nth-child(1) { background: #0b1a2e; border-color: #185FA5; }
  .promise-item:nth-child(1) .promise-num   { background: #0C447C; border-color: #185FA5; color: #B5D4F4; }
  .promise-item:nth-child(1) .promise-title { color: #B5D4F4; }
  .promise-item:nth-child(1) .promise-desc  { color: #378ADD; }

  .promise-item:nth-child(2) { background: #0f1f4a; border-color: #1d4ed8; }
  .promise-item:nth-child(2) .promise-num   { background: #1e3a8a; border-color: #1d4ed8; color: #bfdbfe; }
  .promise-item:nth-child(2) .promise-title { color: #bfdbfe; }
  .promise-item:nth-child(2) .promise-desc  { color: #93c5fd; }

  .promise-item:nth-child(3) { background: #0c2354; border-color: #2563eb; }
  .promise-item:nth-child(3) .promise-num   { background: #1d4ed8; border-color: #2563eb; color: #dbeafe; }
  .promise-item:nth-child(3) .promise-title { color: #dbeafe; }
  .promise-item:nth-child(3) .promise-desc  { color: #93c5fd; }

  .promise-item:nth-child(4) { background: #0c2d4e; border-color: #0284c7; }
  .promise-item:nth-child(4) .promise-num   { background: #0369a1; border-color: #0284c7; color: #bae6fd; }
  .promise-item:nth-child(4) .promise-title { color: #bae6fd; }
  .promise-item:nth-child(4) .promise-desc  { color: #7dd3fc; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
/* @media (max-width: 900px) {
  .vision-grid,
  .journey-layout,
  .years-inner,
  .purpose-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .journey-img-wrap { aspect-ratio: 16/9; }
  .years-big { display: none; }
}

@media (max-width: 640px) {
  .hero { padding: 7rem 1.5rem 5rem; }
  .hero-meta { gap: 1.5rem; }
  .purpose-card { padding: 2.5rem 1.75rem; }
}

@media (max-width: 600px) {
  .values-grid,
  .promise-grid {
    flex-direction: column;
    overflow-x: visible;
    padding: 0 0 8px;
  }
  .value-card,
  .promise-item {
    flex: none;
    width: 100%;
    min-height: unset;
  }
} */
 /* ============================================================
   ABOUT PAGE — MOBILE RESPONSIVE FIX
   Paste this at the BOTTOM of about.css
   ============================================================ */

/* ── HERO ── */
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
    min-height: 100svh;
    text-align: center;
  }

  .hero-content {
    margin-top: 40px;
  }

  .hero-logo-bg img {
    width: 90%;
    opacity: 0.12;
    transform: translateY(40px);
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
  }

  .hero-title {
    font-size: clamp(1.9rem, 8vw, 2.6rem) !important;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .hero-divider {
    margin: 1rem auto;
  }

  .hero-desc {
    font-size: 0.95rem !important;
    line-height: 1.75;
    margin-bottom: 2rem;
  }

  .hero-meta {
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .hero-meta-item .num {
    font-size: 1.6rem;
  }

  .hero-meta-item .label {
    font-size: 0.62rem;
  }
}

/* ── MARQUEE ── */
@media (max-width: 768px) {
  .marquee-wrap { padding: 0.7rem 0; }
  .marquee-text { font-size: 0.68rem; letter-spacing: 0.1em; gap: 0.7rem; padding: 0 0.6rem; }
}

/* ── SECTION SHARED ── */
@media (max-width: 768px) {
  .section-inner { padding: 0 18px; }
  .section-heading { font-size: clamp(1.5rem, 6.5vw, 2rem) !important; }
  .section-eyebrow { font-size: 0.65rem; }
}

/* ── VISION ── */
@media (max-width: 768px) {
  .vision { padding: 48px 0; }

  .vision-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }

  .vision-label {
    font-size: 0.65rem;
    padding-top: 0.5rem;
  }

  .vision-heading {
    font-size: clamp(1.5rem, 6.5vw, 2rem) !important;
    margin-bottom: 1rem;
  }

  .vision-text {
    font-size: 0.93rem !important;
    line-height: 1.78;
  }
}

/* ── PURPOSE ── */
@media (max-width: 768px) {
  .purpose { padding: 0 0 40px; }

  .purpose-card {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 24px 20px !important;
    border-radius: 16px;
  }

  .purpose-heading {
    font-size: clamp(1.4rem, 6vw, 1.9rem) !important;
  }

  .purpose-text {
    font-size: 0.93rem !important;
    line-height: 1.75;
  }
}

/* ── VALUES ── */
@media (max-width: 768px) {
  .values { padding: 48px 0 52px; }

  .values-top { margin-bottom: 32px; }

  .values .section-heading {
    font-size: clamp(1.4rem, 6vw, 1.9rem) !important;
  }

  /* Stack cards vertically, remove horizontal scroll */
  .values-grid {
    flex-direction: column !important;
    overflow-x: visible !important;
    padding: 0 !important;
    gap: 14px !important;
    margin-left: 0 !important;   /* remove the -90px desktop offset */
  }

  .value-card {
    flex: none !important;
    width: 100% !important;
    min-height: unset !important;
    padding: 22px 18px !important;
    border-radius: 16px !important;
  }

  .value-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .value-icon-box svg { width: 20px; height: 20px; }

  .value-title { font-size: 0.95rem; margin-bottom: 6px; }
  .value-desc  { font-size: 0.88rem; line-height: 1.65; }
}

/* ── JOURNEY ── */
@media (max-width: 768px) {
  .journey { padding: 48px 0; }

  .journey-layout {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .journey-img-wrap {
    aspect-ratio: 16/9;
    border-radius: 14px;
  }

  .journey-img-tag {
    font-size: 0.65rem;
    padding: 0.3rem 0.8rem;
    bottom: 1rem;
    left: 1rem;
  }

  .journey-content .section-eyebrow { margin-bottom: 8px; }

  .journey-content p {
    font-size: 0.93rem !important;
    line-height: 1.75;
    margin-bottom: 0.8rem;
  }

  .milestone { gap: 1rem; }
  .milestone-year { font-size: 0.68rem; padding: 0.2rem 0.55rem; }
  .milestone-text { font-size: 0.85rem; }
}

/* ── PROMISE ── */
@media (max-width: 768px) {
  .promise { padding: 48px 0 56px; }

  /* Stack cards vertically */
  .promise-grid {
    flex-direction: column !important;
    overflow-x: visible !important;
    padding: 0 !important;
    gap: 14px !important;
  }

  .promise-item {
    flex: none !important;
    width: 100% !important;
    min-height: unset !important;
    padding: 22px 18px 20px !important;
    border-radius: 16px !important;
    transform: translateY(32px) !important; /* reset horizontal slide-in */
    margin-left: 0 !important;
  }

  /* reset transition direction for mobile */
  .promise-item.visible {
    transform: translateY(0) !important;
  }

  .promise-num   { font-size: 9px; padding: 3px 10px; margin-bottom: 14px; }
  .promise-title { font-size: 0.95rem; }
  .promise-desc  { font-size: 0.88rem; line-height: 1.6; }

  /* Give promise cards their background colors on mobile (were commented out in CSS) */
  .promise-item:nth-child(1) { background: #EAF3FF; border-color: #85B7EB; }
  .promise-item:nth-child(2) { background: #dbeafe; border-color: #93c5fd; }
  .promise-item:nth-child(3) { background: #eff6ff; border-color: #bfdbfe; }
  .promise-item:nth-child(4) { background: #e0f2fe; border-color: #7dd3fc; }
}

/* ── TESTIMONIALS ── */
@media (max-width: 768px) {
  .testimonials { padding: 40px 0; }

  .testi-track {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .testi-card { padding: 22px 18px; border-radius: 14px; }
  .testi-quote-mark { font-size: 3rem; margin-bottom: 0.3rem; }
  .testi-text { font-size: 0.93rem !important; line-height: 1.78; margin-bottom: 1.2rem; }
  .testi-author-name { font-size: 0.7rem; }
}

/* ── CTA ── */
@media (max-width: 768px) {
  .cta { padding: 48px 0 60px; }

  .cta-heading {
    font-size: clamp(1.8rem, 7.5vw, 2.5rem) !important;
    line-height: 1.15;
  }

  .cta-eyebrow { font-size: 0.65rem; gap: 8px; }
  .cta-eyebrow::before,
  .cta-eyebrow::after { width: 14px; }

  .cta-btn {
    font-size: 0.85rem;
    padding: 0.85rem 1.6rem;
    margin-top: 0.5rem;
  }
}

/* ── VERY SMALL SCREENS ── */
@media (max-width: 380px) {
  .hero-meta { gap: 1rem; }
  .hero-meta-item .num { font-size: 1.35rem; }

  .values-grid { gap: 10px !important; }
  .promise-grid { gap: 10px !important; }

  .value-card,
  .promise-item {
    padding: 18px 14px !important;
  }
}