/* ═══════════════════════════════════════════════════
   KF RECRUITMENT — V2 Bold Colorful
   Direction: Behance-inspired color-blocked sections,
   XXL typography, clean enterprise design
   ═══════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-light: #f5f7fb;
  --bg-blue: #172e6e;
  --bg-blue-dark: #112356;
  --bg-navy: #0f172a;
  --bg-navy-light: #1e293b;

  /* Text */
  --text-dark: #0f172a;
  --text-mid: #475569;
  --text-light: #94a3b8;
  --text-on-blue: #ffffff;
  --text-on-blue-muted: rgba(255, 255, 255, 0.7);
  --text-on-navy: #ffffff;
  --text-on-navy-muted: rgba(255, 255, 255, 0.6);

  /* Accent */
  --accent: #1d4ed8;
  --accent-hover: #2563eb;
  --accent-dark: #1e40af;
  --accent-subtle: rgba(29, 78, 216, 0.08);
  --accent-glow: rgba(29, 78, 216, 0.2);

  /* Status */
  --green: #059669;
  --green-bg: rgba(5, 150, 105, 0.1);
  --red: #dc2626;

  /* Borders & Shadows */
  --border-light: rgba(0, 0, 0, 0.08);
  --border-on-dark: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);

  /* Spacing */
  --s-xs: 0.5rem;
  --s-sm: 1rem;
  --s-md: 1.5rem;
  --s-lg: 3rem;
  --s-xl: 5rem;
  --s-2xl: 7rem;
  --s-3xl: 10rem;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Fonts */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Ease */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
  background: var(--bg-white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── LAYOUT ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--s-md); }
.container--narrow { max-width: 800px; }

/* ─── PILLS & BADGES ─── */
.pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 1rem;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pill--blue { background: var(--accent-subtle); color: var(--accent); }
.pill--white { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.pill--green { background: var(--green-bg); color: var(--green); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  border: none; border-radius: var(--r-full); cursor: pointer;
  transition: all 0.25s var(--ease); white-space: nowrap;
  padding: 0.9rem 2rem;
}
.btn--white {
  background: #fff; color: var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn--white:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.15); transform: translateY(-2px); }
.btn--blue {
  background: var(--accent); color: #fff;
  box-shadow: 0 2px 12px var(--accent-glow);
}
.btn--blue:hover { background: var(--accent-hover); box-shadow: 0 4px 24px var(--accent-glow); transform: translateY(-2px); }
.btn--outline {
  background: transparent; color: var(--text-dark);
  border: 2px solid var(--border-light);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--lg { padding: 1.1rem 2.8rem; font-size: 1.1rem; }
.btn--dark { background: var(--bg-navy); color: #fff; }
.btn--dark:hover { background: var(--bg-navy-light); transform: translateY(-2px); }

/* ─── SECTION HELPERS ─── */
.section { padding: var(--s-2xl) 0; }
.section--blue { background: var(--bg-blue); color: var(--text-on-blue); }
.section--navy { background: var(--bg-navy); color: var(--text-on-navy); }
.section--light { background: var(--bg-light); }
.section--white { background: var(--bg-white); }

.section__eyebrow {
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: var(--s-sm);
}
.section__eyebrow--blue { color: var(--accent); }
.section__eyebrow--white { color: rgba(255,255,255,0.6); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-md);
}

.section__title--xxl {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
}

.section__subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  max-width: 640px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  transition: padding 0.4s var(--ease);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s var(--ease);
}
.header--scrolled {
  padding: 0.6rem 2rem;
}
.header--scrolled .header__inner {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.header__logo-img {
  height: 38px; width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s var(--ease);
}
.header--scrolled .header__logo-img { filter: none; }

/* Button adapts on scroll */
.header .btn--blue {
  background: rgba(255, 255, 255, 0.2); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
  transition: all 0.4s var(--ease);
}
.header .btn--blue:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}
.header--scrolled .btn--blue {
  background: var(--accent); color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 12px var(--accent-glow);
}
.header--scrolled .btn--blue:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 24px var(--accent-glow);
  transform: translateY(-2px);
}
.header__nav { display: flex; align-items: center; gap: var(--s-md); }
.header__link {
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.85); transition: color 0.4s var(--ease);
}
.header__link:hover { color: #fff; }
.header__link--accent { color: rgba(255, 255, 255, 0.65); font-size: 0.82rem; }
.header__link--accent:hover { color: #fff; }

/* Scrolled state — dark text on white glass */
.header--scrolled .header__link { color: var(--text-mid); }
.header--scrolled .header__link:hover { color: var(--text-dark); }
.header--scrolled .header__link--accent { color: var(--accent); }
.header--scrolled .header__link--accent:hover { color: var(--accent-dark); }

/* ═══════════════════════════════════════════════════
   HERO — Full blue background, XXL text
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: calc(var(--s-3xl) + 2rem) 0 var(--s-3xl);
  background: var(--bg-blue);
  color: #fff;
  overflow: hidden;
}
.hero__bg-pattern {
  position: absolute; inset: 0; opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.3) 0%, transparent 50%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s-xl); align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 700; line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: var(--s-md);
}
.hero__title em {
  font-style: normal;
  color: rgba(255,255,255,0.5);
}
.hero__subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--text-on-blue-muted);
  max-width: 520px; line-height: 1.65;
  margin-bottom: var(--s-lg);
}
.hero__actions { display: flex; gap: var(--s-sm); flex-wrap: wrap; align-items: center; }
.hero__microcopy { font-size: 0.85rem; color: var(--text-on-blue-muted); margin-top: var(--s-xs); }

.hero__visual { position: relative; }
.hero__image {
  border-radius: var(--r-xl);
  width: 100%; height: auto; aspect-ratio: 4/5;
  object-fit: cover; object-position: top center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero__float-card {
  position: absolute; background: #fff; color: var(--text-dark);
  border-radius: var(--r-md); padding: var(--s-sm) var(--s-md);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem;
}
.hero__float-card--top {
  top: 8%; right: -20px;
}
.hero__float-card--bottom {
  bottom: 12%; left: -20px;
}
.hero__float-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.hero__float-dot--green { background: var(--green); }
.hero__float-dot--blue { background: var(--accent); }

/* ═══════════════════════════════════════════════════
   METRICS BAND — Dark navy with large numbers
   ═══════════════════════════════════════════════════ */
.metrics {
  padding: var(--s-xl) 0;
  background: var(--bg-navy);
}
.metrics__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s-lg); text-align: center;
}
.metric__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; color: #fff;
  line-height: 1; margin-bottom: var(--s-xs);
}
.metric__label {
  font-size: 0.92rem;
  color: var(--text-on-navy-muted);
}
.metrics__divider {
  width: 1px; background: var(--border-on-dark); align-self: stretch;
}

/* ═══════════════════════════════════════════════════
   PROBLEM — White, large text + cards
   ═══════════════════════════════════════════════════ */
.problem__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md); margin-top: var(--s-lg);
}
.problem__card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 0; overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.problem__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.problem__card-img {
  width: 100%; height: 180px; object-fit: cover;
}
.problem__card-body { padding: var(--s-md); }
.problem__card h3 {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 700; color: var(--text-dark);
  margin-bottom: var(--s-xs); line-height: 1.3;
}
.problem__card p { font-size: 0.92rem; }

/* ═══════════════════════════════════════════════════
   SOLUTION — Blue section, large text + comparison
   ═══════════════════════════════════════════════════ */
.solution__layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s-xl); align-items: center;
  margin-top: var(--s-xl);
}
.solution__comparison {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
}
.solution__col { margin-bottom: var(--s-lg); }
.solution__col:last-child { margin-bottom: 0; }
.solution__col-label {
  display: block;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: var(--s-sm); padding-bottom: var(--s-xs);
  border-bottom: 2px solid;
}
.solution__col--before .solution__col-label { color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.15); }
.solution__col--after .solution__col-label { color: #34d399; border-color: #34d399; }
.solution__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.solution__col--before li { color: rgba(255,255,255,0.5); font-size: 0.92rem; }
.solution__col--before li::before { content: '✕ '; color: rgba(248,113,113,0.7); font-weight: 600; }
.solution__col--after li { color: #fff; font-size: 0.92rem; }
.solution__col--after li::before { content: '✓ '; color: #34d399; font-weight: 600; }
.solution__divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  margin: var(--s-md) 0;
}
.solution__image {
  border-radius: var(--r-xl);
  width: 100%; height: auto;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* ═══════════════════════════════════════════════════
   DIVISIONS — White, cards with images
   ═══════════════════════════════════════════════════ */
.divisions__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: var(--s-md); margin-top: var(--s-lg);
}
.div-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.div-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.div-card--primary { border-color: rgba(29,78,216,0.2); }
.div-card__badge {
  position: absolute; top: var(--s-sm); left: var(--s-sm); z-index: 2;
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem; border-radius: var(--r-full);
  background: var(--accent); color: #fff;
}
.div-card__img-wrap { position: relative; overflow: hidden; }
.div-card__img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.div-card:hover .div-card__img { transform: scale(1.04); }
.div-card__body { padding: var(--s-md) var(--s-lg) var(--s-lg); }
.div-card h3 {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: var(--s-xs);
}
.div-card p { font-size: 0.95rem; margin-bottom: var(--s-md); line-height: 1.65; }
.div-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  display: inline-block; padding: 0.35rem 0.85rem;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 500;
  color: var(--text-mid);
  border: 1px solid var(--border-light);
  border-radius: var(--r-full);
  background: var(--bg-white);
  transition: all 0.2s var(--ease);
}
.tag:hover { color: var(--accent); border-color: var(--accent-glow); background: var(--accent-subtle); }

/* ═══════════════════════════════════════════════════
   INDUSTRIES — Navy section, icon cards
   ═══════════════════════════════════════════════════ */
.industries__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md); margin-top: var(--s-lg);
}
.ind-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  text-align: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.ind-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.ind-card__icon {
  font-size: 2.2rem; margin-bottom: var(--s-sm);
  display: block; line-height: 1;
}
.ind-card h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: #fff; margin-bottom: var(--s-xs);
}
.ind-card p { font-size: 0.9rem; color: var(--text-on-navy-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   FEATURES — Alternating left/right large blocks
   ═══════════════════════════════════════════════════ */
.features__grid { margin-top: var(--s-lg); }
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s-xl); align-items: center;
  padding: var(--s-xl) 0;
  border-bottom: 1px solid var(--border-light);
}
.feature-row:last-child { border-bottom: none; }
.feature-row--reverse .feature-row__visual { order: -1; }
.feature-row__content {}
.feature-row__number {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--accent); margin-bottom: var(--s-sm);
}
.feature-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--text-dark);
  line-height: 1.15; margin-bottom: var(--s-sm);
}
.feature-row__desc { font-size: 1rem; line-height: 1.7; max-width: 480px; }
.feature-row__img {
  width: 100%; height: auto; border-radius: var(--r-lg);
  object-fit: cover; box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════════════════
   PROCESS — Blue section, numbered steps
   ═══════════════════════════════════════════════════ */
/* ─── PROCESS LAYOUT (timeline + cards paired) ─── */
.process__layout {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
  margin-top: var(--s-xl);
}
.process__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-md);
}

/* Horizontal track */
.timeline__track {
  position: absolute;
  top: 20px; left: calc(100% / 6); right: calc(100% / 6);
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
  z-index: 1;
}
.timeline__progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Each step (dot + label) */
.timeline__step {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.75rem;
}

/* Dot */
.timeline__dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.25);
  background: var(--bg-blue);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}
.timeline__dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0);
  transition: background 0.4s;
}

/* Checkmark */
.timeline__check {
  width: 18px; height: 18px;
  color: #fff;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Label */
.timeline__label {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  white-space: nowrap;
  transition: color 0.4s;
}

/* ─── Active state — amber/orange ─── */
.timeline__step.is-checked .timeline__dot {
  border-color: #f59e0b;
  background: #2e2207;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.35), 0 0 40px rgba(249, 115, 22, 0.12);
}
.timeline__step.is-checked .timeline__dot::after {
  background: rgba(245, 158, 11, 0.08);
}
.timeline__step.is-checked .timeline__check {
  opacity: 1;
  transform: scale(1);
  color: #f59e0b;
}
.timeline__step.is-checked .timeline__label {
  color: #fff;
}

/* ─── Pulse on current step ─── */
.timeline__step.is-current .timeline__dot {
  animation: timeline-pulse 2s ease-in-out infinite;
}
@keyframes timeline-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.35), 0 0 40px rgba(249, 115, 22, 0.12); }
  50% { box-shadow: 0 0 30px rgba(245, 158, 11, 0.5), 0 0 60px rgba(249, 115, 22, 0.2); }
}

/* ─── Step cards ─── */
.step-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  width: 100%;
  transition: background 0.4s var(--ease), border-color 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.step-card:hover { background: rgba(255,255,255,0.12); }
.step-card.is-highlighted {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.12), inset 0 0 20px rgba(245, 158, 11, 0.04);
}
.step-card__number {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  color: rgba(255,255,255,0.15);
  line-height: 1; margin-bottom: var(--s-sm);
  transition: color 0.5s var(--ease);
}
.step-card.is-highlighted .step-card__number {
  color: rgba(245, 158, 11, 0.35);
}
.step-card h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: #fff; margin-bottom: var(--s-xs);
}
.step-card p { font-size: 0.92rem; color: var(--text-on-blue-muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════
   FAQ — Light bg, two columns
   ═══════════════════════════════════════════════════ */
.faq__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 var(--s-xl); margin-top: var(--s-lg);
}
.faq__col { display: flex; flex-direction: column; }
.faq__item {
  padding: var(--s-md) 0; cursor: pointer;
  border-bottom: 1px solid var(--border-light);
}
.faq__item:last-child { border-bottom: none; }
.faq__question {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 600; color: var(--text-dark);
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  transition: color 0.2s var(--ease);
}
.faq__item:hover .faq__question { color: var(--accent); }
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+'; font-size: 1.4rem; color: var(--accent);
  font-weight: 400; flex-shrink: 0; margin-left: var(--s-sm);
  transition: transform 0.3s var(--ease);
}
.faq__item[open] .faq__question::after { transform: rotate(45deg); }
.faq__answer {
  margin-top: var(--s-sm); font-size: 0.92rem;
  line-height: 1.7; color: var(--text-mid);
  padding-bottom: var(--s-xs);
}

/* ═══════════════════════════════════════════════════
   FINAL CTA — Navy gradient
   ═══════════════════════════════════════════════════ */
.cta {
  padding: var(--s-3xl) 0;
  background: linear-gradient(135deg, var(--bg-navy) 0%, var(--bg-blue-dark) 100%);
  color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.cta__glow {
  position: absolute; width: 600px; height: 600px;
  border-radius: 50%; background: var(--accent);
  opacity: 0.08; filter: blur(150px);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-md);
  position: relative; z-index: 1;
}
.cta__desc {
  font-size: 1.2rem; color: var(--text-on-navy-muted);
  max-width: 580px; margin: 0 auto var(--s-lg);
  line-height: 1.6; position: relative; z-index: 1;
}
.cta__form { position: relative; z-index: 1; }
.cta__fields {
  display: flex; gap: 0.75rem;
  max-width: 480px; margin: 0 auto var(--s-xs);
}
.cta__fields .input {
  flex: 1; padding: 0.85rem 1.25rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff; font-family: var(--font-body); font-size: 1rem;
  outline: none; transition: border-color 0.2s;
}
.cta__fields .input::placeholder { color: rgba(255,255,255,0.4); }
.cta__fields .input:focus { border-color: rgba(255,255,255,0.5); box-shadow: 0 0 0 3px rgba(255,255,255,0.1); }
.cta__micro { font-size: 0.82rem; color: var(--text-on-navy-muted); position: relative; z-index: 1; }
.cta__trust {
  display: flex; justify-content: center; gap: 0.75rem;
  font-size: 0.8rem; color: var(--text-on-navy-muted);
  margin-top: var(--s-md); flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ═══════════════════════════════════════════════════
   FOOTER — Dark
   ═══════════════════════════════════════════════════ */
.footer {
  padding: var(--s-lg) 0;
  background: var(--bg-navy);
  border-top: 1px solid var(--border-on-dark);
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--s-sm);
}
.footer__logo-img { height: 30px; width: auto; filter: brightness(0) invert(1); }
.footer__links { display: flex; gap: var(--s-md); }
.footer__links a { font-size: 0.85rem; color: var(--text-on-navy-muted); transition: color 0.2s; }
.footer__links a:hover { color: #fff; }
.footer__copy { font-size: 0.8rem; color: var(--text-on-navy-muted); }

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal--visible { opacity: 1; transform: translateY(0); }
.reveal--scale { transform: scale(0.95) translateY(20px); }
.reveal--scale.reveal--visible { transform: scale(1) translateY(0); }
.reveal--left { transform: translateX(-40px); }
.reveal--left.reveal--visible { transform: translateX(0); }
.reveal--right { transform: translateX(40px); }
.reveal--right.reveal--visible { transform: translateX(0); }
.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }
.reveal--d3 { transition-delay: 0.24s; }
.reveal--d4 { transition-delay: 0.32s; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; gap: var(--s-lg); }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { max-width: 400px; margin: 0 auto; }
  .hero__float-card { display: none; }

  .metrics__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-md); }
  .metrics__divider { display: none; }

  .problem__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .solution__layout { grid-template-columns: 1fr; }
  .divisions__grid { grid-template-columns: 1fr; }
  .industries__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row--reverse .feature-row__visual { order: 0; }
  /* Process layout → vertical on mobile, dot beside card */
  .process__layout {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto; margin-right: auto;
    padding-left: 28px;
  }
  .process__item {
    flex-direction: row;
    align-items: stretch;
    gap: var(--s-md);
  }
  .timeline__step {
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 40px;
    padding-top: var(--s-md);
  }
  .timeline__label { display: none; }
  .timeline__track {
    top: 0; bottom: 0;
    left: 48px; right: auto;
    width: 3px; height: auto;
  }
  .timeline__progress {
    width: 100%; height: 0%;
    background: linear-gradient(180deg, #f59e0b, #f97316);
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .faq__grid { grid-template-columns: 1fr; }

  .header__link--accent { display: none; }
  .header { padding: 0.6rem 1rem; }
  .header__inner { padding: 0.6rem 1.2rem; }
}

@media (max-width: 600px) {
  :root { --s-xl: 3.5rem; --s-2xl: 5rem; --s-3xl: 6rem; }
  .hero { padding-top: calc(var(--s-xl) + 4rem); }
  .header { padding: 0.5rem 0.75rem; }
  .header__inner { padding: 0.5rem 1rem; gap: var(--s-sm); }
  .header__nav { gap: var(--s-sm); }
  .header .btn--blue { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
  .industries__grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .metrics__grid { grid-template-columns: 1fr; }
  .cta__fields { flex-direction: column; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}

/* ═══════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
