/* ============================================================
   RecIQ — Global Stylesheet
   Brand: Black #0D0D0D + Indigo #2B2D8C + White #FFFFFF
   Accent: Indigo #2B2D8C | Warm off-white #F8F7F5
   ============================================================ */

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

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

:root {
  /* Brand */
  --indigo:       #2B2D8C;
  --indigo-dark:  #1E1F6A;
  --indigo-light: #4547B0;
  --indigo-pale:  #EEEEF8;
  --black:        #0D0D0D;
  --charcoal:     #1A1A2E;
  --warm-white:   #F8F7F5;
  --off-white:    #F2F1EE;
  --border:       #E2E1DE;
  --text-body:    #2C2C3A;
  --text-muted:   #6B6B80;
  --text-faint:   #A8A8B8;
  --white:        #FFFFFF;

  /* Type */
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;

  /* Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.375rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2.25rem;
  --text-4xl:  3rem;
  --text-hero: clamp(2.5rem, 5vw, 4.25rem);

  /* Spacing */
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --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;

  /* Layout */
  --container: 1180px;
  --container-narrow: 780px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.22s var(--ease);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
}

.section--alt {
  background: var(--warm-white);
}

.section--indigo {
  background: var(--indigo);
  color: var(--white);
}

.section--dark {
  background: var(--charcoal);
  color: var(--white);
}

.text-center { text-align: center; }
.text-indigo { color: var(--indigo); }
.text-muted  { color: var(--text-muted); }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  letter-spacing: -0.02em;
}

.display-serif {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  display: block;
  margin-bottom: var(--space-3);
}

.section-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.section-lead {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 56ch;
}

.section-lead--center {
  margin: 0 auto;
  text-align: center;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--indigo);
  color: var(--white);
  border-color: var(--indigo);
}
.btn--primary:hover {
  background: var(--indigo-dark);
  border-color: var(--indigo-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(43,45,140,0.3);
}

.btn--outline {
  background: transparent;
  color: var(--indigo);
  border-color: var(--indigo);
}
.btn--outline:hover {
  background: var(--indigo);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--indigo);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--warm-white);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
  padding: var(--space-4) 0;
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

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

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

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-body);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--indigo);
  transition: width var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--indigo);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Mobile hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all var(--transition);
  border-radius: 2px;
}

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

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 100px var(--space-6) var(--space-8);
  flex-direction: column;
  gap: var(--space-2);
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--black);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

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

.nav__mobile .btn {
  margin-top: var(--space-6);
  align-self: flex-start;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,30,0.96) 45%, rgba(43,45,140,0.5) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(43,45,140,0.3);
  border: 1px solid rgba(43,45,140,0.6);
  color: rgba(255,255,255,0.9);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7EE8A2;
  flex-shrink: 0;
}

.hero h1 {
  font-size: var(--text-hero);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: var(--space-6);
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

.hero__lead {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: var(--space-10);
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__stat-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: auto;
}

.hero__stat {
  background: rgba(13,13,30,0.6);
  backdrop-filter: blur(8px);
  padding: var(--space-6) var(--space-8);
  text-align: center;
}

.hero__stat-number {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--white);
  display: block;
}

.hero__stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition);
}

.card:hover {
  border-color: var(--indigo-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card__icon {
  width: 52px;
  height: 52px;
  background: var(--indigo-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--indigo);
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.card p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ── Stats / Callout Strip ───────────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  background: var(--white);
  padding: var(--space-8);
  text-align: center;
}

.stat-item__number {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--indigo);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-item__label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Two-Column ───────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.two-col--flip .two-col__visual { order: -1; }

.two-col__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.two-col__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.two-col__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
  z-index: 1;
  pointer-events: none;
}

.two-col__text h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.two-col__text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

/* ── Checklist ────────────────────────────────────────────── */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.checklist li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--text-body);
}

.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--indigo-pale);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%232B2D8C'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414L8.414 15l-4.121-4.121a1 1 0 111.414-1.414L8.414 12.17l6.879-6.879a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* ── Service Steps ────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
  counter-reset: steps;
}

.step {
  position: relative;
  padding-top: var(--space-12);
}

.step::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--indigo-pale);
  line-height: 1;
}

.step h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  color: var(--black);
}

.step p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ── Team Cards ───────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-8);
}

.team-card {
  text-align: center;
}

.team-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--indigo-pale);
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--indigo);
  overflow: hidden;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.team-card__role {
  font-size: var(--text-sm);
  color: var(--indigo);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.team-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Certify / Pricing ────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition);
}

.pricing-card:hover {
  border-color: var(--indigo);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.pricing-card--featured {
  border-color: var(--indigo);
  background: var(--indigo);
  color: var(--white);
}

.pricing-card--featured h3,
.pricing-card--featured p,
.pricing-card--featured .pricing-card__price { color: var(--white); }

.pricing-card--featured .pricing-card__desc { color: rgba(255,255,255,0.75); }

.pricing-card__level {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: var(--space-3);
}

.pricing-card--featured .pricing-card__level { color: rgba(255,255,255,0.7); }

.pricing-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.pricing-card__price {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--black);
  margin-bottom: var(--space-1);
}

.pricing-card__price small {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

/* ── Contact Form ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-info h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.contact-detail {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  margin-bottom: var(--space-6);
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: var(--indigo-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--indigo);
}

.contact-detail__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}

.contact-detail__value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--black);
}

.contact-detail__value a:hover { color: var(--indigo); }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--black);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--text-base);
  color: var(--text-body);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(43,45,140,0.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.footer__brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-top: var(--space-4);
  color: rgba(255,255,255,0.5);
  max-width: 28ch;
}

.footer__logo img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer__col h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
  letter-spacing: 0.04em;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

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

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--indigo-pale);
  line-height: 1;
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
}

.testimonial__text {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-body);
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--indigo-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--indigo);
  flex-shrink: 0;
}

.testimonial__name {
  font-size: var(--text-sm);
  font-weight: 700;
  display: block;
}

.testimonial__company {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--indigo);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-10), 6vw, var(--space-16));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-lg);
  max-width: 48ch;
  margin: 0 auto var(--space-8);
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Page Hero (interior pages) ───────────────────────────── */
.page-hero {
  background: var(--charcoal);
  padding: clamp(6rem, 12vw, 9rem) 0 clamp(var(--space-12), 6vw, var(--space-20));
}

.page-hero .eyebrow { color: rgba(255,255,255,0.55); }
.page-hero h1 { color: var(--white); font-size: var(--text-3xl); }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 52ch; font-size: var(--text-lg); margin-top: var(--space-4); }

/* ── Assessment Banner ────────────────────────────────────── */
.assessment-strip {
  background: var(--indigo-pale);
  border: 1px solid rgba(43,45,140,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.assessment-strip p {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--indigo-dark);
}

.assessment-strip small {
  display: block;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-muted);
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) forwards;
}

.fade-up--delay-1 { animation-delay: 0.1s; }
.fade-up--delay-2 { animation-delay: 0.2s; }
.fade-up--delay-3 { animation-delay: 0.3s; }
.fade-up--delay-4 { animation-delay: 0.4s; }

/* Scroll-triggered */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --text-hero: 2.25rem; }

  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero { min-height: 85vh; }
  .hero__stat-bar { grid-template-columns: 1fr; }

  .two-col { grid-template-columns: 1fr; gap: var(--space-10); }
  .two-col--flip .two-col__visual { order: 0; }

  .stats-strip { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }

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

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

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}
