
/* ============================================================
   DESIGN SYSTEM
   ============================================================ */
:root {
  --primary:       #059669; /* Darkened from #10b981 for better contrast */
  --primary-dark:  #047857;
  --primary-light: #d1fae5;
  --primary-mid:   #a7f3d0;
  --black:        #111111;
  --gray-900:     #222222;
  --gray-700:     #444444;
  --gray-500:     #555555; /* Darkened for better readability */
  --gray-400:     #999999;
  --gray-200:     #E8E8E8;
  --gray-100:     #F4F4F4;
  --gray-50:      #F9F9F9;
  --white:        #FFFFFF;
  --green:        #00B67A;
  --font:         'Outfit', system-ui, sans-serif;
  --max-w:        1200px;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow-sm:     0 1px 4px rgba(0,0,0,0.07);
  --shadow:        0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:     0 12px 48px rgba(0,0,0,0.12);
  --shadow-orange: 0 8px 28px rgba(16,185,129,0.1);
  --radius-sm:     6px;
  --radius-xl:     24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  height: 70px;
  display: flex;
  align-items: center;
}

.nav > .container { width: 100%; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-circle {
  width: 44px;
  height: 44px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-circle svg {
  width: 26px;
  height: 26px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text .logo-top {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.logo-text .logo-bottom {
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: 0.04em;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links > li > a,
.nav-links > li > button {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover {
  color: var(--black);
  background: var(--gray-100);
}

.nav-chevron {
  width: 12px;
  height: 12px;
  opacity: 0.5;
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-nav-login {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 9px 18px;
  min-height: 44px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-nav-login:hover {
  color: var(--black);
  border-color: var(--gray-400);
}

.btn-nav-primary {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--primary);
  padding: 9px 20px;
  min-height: 44px;
  border-radius: var(--radius);
  border: 1.5px solid var(--primary);
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-nav-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(16,185,129,0.35);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 72px 0 80px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-left {
  max-width: 520px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-heading {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 22px;
}

.hero-heading .orange {
  color: var(--primary);
}

.hero-sub {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: var(--primary);
  padding: 13px 26px;
  min-height: 44px;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  transition: all 0.18s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16,185,129,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  padding: 13px 26px;
  min-height: 44px;
  border-radius: var(--radius);
  border: 2px solid var(--gray-200);
  transition: all 0.18s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--gray-400);
  background: var(--gray-50);
}

/* Trustpilot */
.trustpilot-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tp-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.tp-stars {
  display: flex;
  gap: 2px;
}

.tp-star {
  width: 18px;
  height: 18px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.tp-star svg {
  width: 11px;
  height: 11px;
  fill: white;
}

.tp-text {
  font-size: 13px;
  color: var(--gray-500);
}

.tp-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}

.tp-logo-star {
  width: 18px;
  height: 18px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Hero Right: Photo Grid */
.hero-right {
  position: relative;
  height: 500px;
}

.photo-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  padding: 10px 0;
}

.photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--gray-100);
}

.photo-card-1 { grid-row: 1; grid-column: 1; }
.photo-card-2 { grid-row: 1; grid-column: 2; }
.photo-card-3 { grid-row: 2; grid-column: 1; }
.photo-card-4 { grid-row: 2; grid-column: 2; }

.photo-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Simulated professional photos with CSS */
.photo-p1 { background: linear-gradient(135deg, #E8D5C4 0%, #C9A98A 100%); }
.photo-p2 { background: linear-gradient(135deg, #D4C5B0 0%, #B89880 100%); }
.photo-p3 { background: linear-gradient(135deg, #C5D4C0 0%, #8AB090 100%); }
.photo-p4 { background: linear-gradient(135deg, #C5C0D4 0%, #9088B0 100%); }

.photo-person {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
}

.photo-person svg {
  width: 100%;
  height: auto;
}

.photo-dots {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  opacity: 0.25;
}

.photo-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gray-500);
}

/* Metric overlays */
.metric-overlay {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}

.metric-overlay-1 {
  bottom: 60px;
  left: -10px;
}

.metric-overlay-2 {
  top: 20px;
  right: -10px;
}

.metric-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.metric-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 2px;
}

.metric-lbl {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
  line-height: 1.3;
}

/* ============================================================
   METRICS STRIP
   ============================================================ */
.metrics-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 36px 0;
}

.metrics-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 160px;
}

.metric-item-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric-item-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.metric-item-val {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 3px;
}

.metric-item-lbl {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  line-height: 1.35;
}

.metrics-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
  padding: 104px 0;
}

.section-sm { padding: 72px 0; }

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.15;
}

.section-sub {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.75;
}

.text-orange { color: var(--primary); }

.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 24px;
  transition: gap 0.2s;
}

.learn-more-link:hover { gap: 10px; }

/* Fade animations */
.fade-up {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Lazy image fade-in */
img[loading="lazy"] { opacity: 1; transition: opacity 0.4s ease; }
img[loading="lazy"].loaded { opacity: 1; }

/* Nav scroll shadow */
.nav--shadow { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

/* ============================================================
   WHAT WE DO
   ============================================================ */
.what-we-do .section-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}

.what-we-do-left { max-width: 360px; }
.what-we-do-left .section-heading { margin-bottom: 18px; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.feature-card:hover { background: var(--primary-light); }

.feature-card-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.2s;
}

.feature-card:hover .feature-card-icon {
  background: rgba(16,185,129,0.18);
}

.feature-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.feature-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.feature-card-body {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
}

/* ============================================================
   OPPORTUNITIES
   ============================================================ */
.opportunities {
  background: var(--gray-50);
}

.opp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  transition: gap 0.2s;
}
.view-all-link:hover { gap: 10px; }

.opp-scroll-wrapper {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin: 0 -48px;
  padding: 0 48px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.opp-scroll-wrapper::-webkit-scrollbar { display: none; }

.opp-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--gray-200);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}
.opp-nav-btn:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(16,185,129,0.2);
}
@media (max-width: 860px) { .opp-nav-btn { display: none; } }

.opp-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding-bottom: 8px;
}

.opp-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 272px;
  min-height: 280px;
  flex-shrink: 0;
  transition: all 0.22s;
  cursor: default;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  scroll-snap-align: start;
  will-change: transform;
}

.opp-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(16,185,129,0.15);
}

.opp-card:hover .opp-card-icon {
  background: var(--primary-mid);
}

.opp-card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.opp-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.opp-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.25;
}

.opp-card-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 0;
  flex: 1;
}

.opp-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 12px;
  opacity: 1;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
}
.opp-card:hover .opp-card-cta { opacity: 1; transform: translateY(0); }

.opp-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
}
.opp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: background 0.2s, width 0.2s, border-radius 0.2s;
}
.opp-dot.active {
  background: var(--primary);
  width: 18px;
  border-radius: 3px;
}
@media (max-width: 860px) { .opp-dots { display: flex; } }

.opp-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
}

.opp-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}

.opp-tag-gray {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

.hiw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hiw-panel {
  background: var(--white);
  padding: 48px;
}

.hiw-panel-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.hiw-panel-sub {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 36px;
}

.hiw-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}

.hiw-step-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.hiw-step-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.hiw-step-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.25;
}

.hiw-step-desc {
  font-size: 11.5px;
  color: var(--gray-500);
  line-height: 1.55;
}

.hiw-arrow {
  display: flex;
  align-items: center;
  padding-top: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

.hiw-note {
  margin-top: 36px;
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.6;
  border-left: 3px solid var(--primary);
}

.hiw-note strong { color: var(--black); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--gray-50); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testi-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
  will-change: transform;
}

.testi-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 36px rgba(16,185,129,0.12);
  transform: translateY(-4px);
}

.testi-stars {
  display: flex;
  gap: 2px;
}

.testi-star {
  width: 16px;
  height: 16px;
  background: var(--green);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-star svg { width: 10px; height: 10px; fill: white; }

.testi-text {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  min-height: 130px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 2px solid var(--primary-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
  overflow: hidden;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.testi-location {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  margin-top: 1px;
}

.testi-verified {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  margin-top: 2px;
  letter-spacing: 0.01em;
}

.testi-role {
  font-size: 12px;
  color: var(--gray-500);
}

/* ============================================================
   TRANSPARENCY
   ============================================================ */
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.transp-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  will-change: transform;
}

.transp-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16,185,129,0.09);
}

.transp-check {
  width: 44px;
  height: 44px;
  background: #E8F8F1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.transp-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.transp-body {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================================
   COMPANIES / CANDIDATES SPLIT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-panel {
  padding: 80px 64px;
}

.split-panel-left { background: var(--white); }
.split-panel-right { background: var(--gray-50); border-left: 1px solid var(--gray-200); }

.split-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.split-feat-icon {
  width: 34px;
  height: 34px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.split-feat-icon svg { width: 17px; height: 17px; color: var(--primary); }

.split-feat-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3px;
}

.split-feat-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--gray-50); }

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: flex-start;
}

.faq-sidebar {
  position: sticky;
  top: 90px;
}

.faq-sidebar .section-heading { margin-bottom: 16px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.faq-item { background: var(--white); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}

.faq-q:hover { background: var(--gray-50); }
.faq-q.open { color: var(--primary); background: transparent; }

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: all 0.25s;
  line-height: 1;
}

.faq-q.open .faq-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s, opacity 0.3s;
  padding: 0 24px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.75;
  background: var(--white);
  opacity: 1;
}
.faq-a.open { opacity: 1; }

.faq-a.open {
  max-height: 260px;
  padding: 0;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--black);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(16,185,129,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.final-cta-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.final-cta-heading {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.final-cta-heading .orange { color: var(--primary); }

.final-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 44px;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: var(--primary);
  padding: 14px 30px;
  border-radius: var(--radius);
  transition: all 0.18s;
  cursor: pointer;
}

.btn-cta-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,185,129,0.4);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.18s;
  cursor: pointer;
}

.btn-cta-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 72px 0 40px;
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

.footer-brand .logo-text .logo-top { color: var(--primary); }
.footer-brand .logo-text .logo-bottom { color: var(--white); }

.footer-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 280px;
  margin-top: 16px;
  margin-bottom: 28px;
}

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

.footer-soc {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: all 0.18s;
}

.footer-soc:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: scale(1.05);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; }

.footer-col a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   GLOBAL REACH SECTION
   ============================================================ */
.global-reach { background: var(--white); }

.global-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.global-map {
  position: relative;
  height: 340px;
  background: #0C0D14;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3), 0 0 0 1px rgba(16,185,129,0.06);
}

.global-map-bg {
  width: 90%;
  height: 80%;
  opacity: 0.12;
  fill: var(--black);
}

.map-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
}

.map-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.15;
  animation: ping 2.5s ease-in-out infinite;
}

@keyframes ping {
  0%, 100% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(2.5); opacity: 1; }
}

.global-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.global-stat {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
}

.global-stat-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.global-stat-lbl {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

/* ============================================================
   MOBILE HAMBURGER MENU
   ============================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger:hover { background: var(--gray-100); }
.nav-hamburger:focus { outline: none; }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 1; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  z-index: 99;
  padding: 16px 24px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .mobile-cta {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.mobile-menu .mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  border-bottom: none;
  font-size: 14px;
  font-weight: 700;
}
.mobile-menu .mobile-cta .mobile-hire {
  background: var(--gray-100);
  color: var(--black);
}
.mobile-menu .mobile-cta .mobile-apply {
  background: var(--primary);
  color: white;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero-inner { gap: 40px; }
  .what-we-do .section-inner { gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 860px) {
  /* Layout */
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }

  /* Navbar */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo img { height: 42px !important; }
  .nav-inner { gap: 0 !important; justify-content: space-between; }

  /* Hero */
  .hero { padding: 36px 0 44px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-right { display: none; }
  .hero-left { max-width: 100%; }
  .hero-heading { font-size: clamp(28px, 7.5vw, 40px); line-height: 1.12; margin-bottom: 16px; }
  .hero-sub { font-size: 15px; line-height: 1.7; margin-bottom: 24px; max-width: 100%; }
  .hero-actions { flex-wrap: wrap; gap: 10px; margin-top: 28px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; text-align: center; justify-content: center; display: flex; }
  .hero-eyebrow { margin-bottom: 14px; }

  /* Metrics strip */
  .metrics-inner { flex-wrap: wrap; gap: 0; justify-content: center; }
  .metric-item { width: 50%; padding: 20px 16px; flex: none; }
  .metrics-divider { display: none; }

  /* Other sections */
  .what-we-do .section-inner { grid-template-columns: 1fr; gap: 32px; }
  .what-we-do-left { max-width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .transparency-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; border-radius: var(--radius-lg); overflow: hidden; }
  .split-panel { padding: 40px 24px; }
  .split-panel-right { border-left: none; border-top: 1px solid var(--gray-200); }
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .faq-sidebar { position: relative; top: 0; }
  .global-inner { grid-template-columns: 1fr; gap: 40px; }
  .hiw-grid { grid-template-columns: 1fr; gap: 16px; }
  .opp-scroll-wrapper { margin: 0 -20px; padding: 0 20px; }
  .section-header { margin-bottom: 32px; }

  /* BLOG */
  .blog-featured-card { grid-template-columns: 1fr !important; }
  .blog-featured-card > div:first-child { min-height: 160px !important; }
  .blog-post-grid { grid-template-columns: 1fr !important; gap: 16px !important; }

  /* HOW IT WORKS PANELS */
  #tab-candidates, #tab-companies { font-size: 13px !important; padding: 9px 18px !important; }
  .candidates-steps { grid-template-columns: 1fr !important; gap: 0 !important; }
  .candidates-steps > div { padding: 20px 24px !important; border-top: 1px solid var(--gray-100) !important; }
  .candidates-steps > div:first-child { border-top: none !important; }
  .companies-cards { grid-template-columns: 1fr !important; gap: 16px !important; }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .nav-logo img { height: 36px !important; }
  .nav-inner { gap: 0 !important; }
  .hero { padding: 28px 0 36px; }
  .hero-heading { font-size: clamp(26px, 8vw, 34px); }
  .hero-sub { font-size: 14px; }
  .blog-featured-card > div:first-child { min-height: 140px !important; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .transparency-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: 1; }
  .metrics-item { width: 50%; }
  .hiw-steps { flex-wrap: wrap; justify-content: center; }
  .hiw-arrow { display: none; }
  .global-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .opp-card { min-width: 260px !important; }
  .split-panel { padding: 28px 16px; }
  .hero-badge { font-size: 11px; padding: 6px 10px; }
  .candidates-steps > div { padding: 16px 18px !important; }
  .faq-q { padding: 18px 20px !important; font-size: 15px !important; }
}
@media (max-width: 860px) {
  #our-story > .container > div { grid-template-columns: 1fr !important; gap: 40px !important; }
  #privacy > .container > div[style*="repeat(3"] { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
  #privacy > .container > div[style*="repeat(3"] { grid-template-columns: 1fr !important; }
  #our-story > .container > div > div:first-child { display: none !important; }
}



/* ============================================================
   TRAINAITOGAIN SPECIFIC ADDITIONS
   ============================================================ */

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
  color: var(--black);
  font-size: 1.1rem;
}

.article-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 2em 0 0.5em;
  letter-spacing: -0.02em;
}

.article-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1.5em 0 0.5em;
}

.article-content p {
  margin-bottom: 1.2em;
  line-height: 1.7;
  color: var(--gray-700);
}

.article-content ul, .article-content ol {
  margin: 0 0 1.5em 1.5em;
  color: var(--gray-700);
}

.article-content li {
  margin-bottom: 0.5em;
  line-height: 1.7;
}

.article-content strong {
  color: var(--black);
  font-weight: 700;
}

.article-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.article-content a:hover {
  text-decoration: underline;
}

.callout {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 24px;
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
}

.callout .k {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

.callout p {
  color: var(--black);
  margin: 0;
}

.callout.calm {
  background: rgba(0, 182, 122, 0.1);
  border-left-color: var(--green);
}

.callout.calm .k {
  color: var(--green);
}

.path {
  font-family: monospace;
  font-size: 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--black);
  padding: 12px 16px;
  border-radius: 8px;
  display: block;
  margin: 24px 0;
  overflow-x: auto;
}

.next {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 64px 0 0;
}

.next h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.next ul {
  margin-left: 20px;
  margin-bottom: 0;
}
html { scroll-behavior: smooth; }

/* Filter Chips & Load More */
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--primary-mid);
}

.filter-chip button {
  color: var(--primary-dark);
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-load-more {
  display: block;
  margin: 40px auto 0;
  background: var(--white);
  border: 2px solid var(--gray-200);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-load-more:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Privacy Consent Banner */
#consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
  padding: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

#consent-banner.show {
  transform: translateY(0);
}

@media(min-width: 768px) {
  #consent-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
  }
}

.consent-text {
  font-size: 14px;
  color: var(--gray-700);
  max-width: 800px;
}

.consent-actions {
  display: flex;
  gap: 12px;
}

/* ============================================================
   MOBILE NAV TOGGLE
   ============================================================ */
.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle-icon, .nav-toggle-icon::before, .nav-toggle-icon::after {
  display: block;
  background: var(--black);
  height: 2px;
  width: 24px;
  border-radius: 2px;
  position: relative;
  transition: all 0.2s ease-out;
}
.nav-toggle-icon::before, .nav-toggle-icon::after {
  content: '';
  position: absolute;
}
.nav-toggle-icon::before { top: 6px; }
.nav-toggle-icon::after { top: -6px; }

#nav-toggle {
  display: none;
}

@media (max-width: 768px) {
  .nav-toggle-label { display: block; }
  .nav-links, .nav-cta {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 16px 0;
  }
  .nav-inner { flex-wrap: wrap; }
  #nav-toggle:checked ~ .nav-links,
  #nav-toggle:checked ~ .nav-cta {
    display: flex;
  }
  #nav-toggle:checked ~ .nav-toggle-label .nav-toggle-icon { background: transparent; }
  #nav-toggle:checked ~ .nav-toggle-label .nav-toggle-icon::before { transform: rotate(45deg); top: 0; }
  #nav-toggle:checked ~ .nav-toggle-label .nav-toggle-icon::after { transform: rotate(-45deg); top: 0; }
  .nav { height: auto; min-height: 70px; }
  
  .btn-primary, .btn-secondary, .btn-nav-primary, .btn-nav-login {
    width: 100%;
    margin-bottom: 8px;
  }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap { width: 100%; overflow: hidden; background: #064e3b; padding: 8px 0; border-bottom: 2px solid var(--primary); }
.ticker-content { white-space: nowrap; font-size: 13px; font-weight: 600; color: #a7f3d0; animation: ticker 25s linear infinite; display: inline-block; cursor: default; }
.ticker-content:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; margin-right: 48px; }
.pulse-dot { width: 6px; height: 6px; background: #34d399; border-radius: 50%; box-shadow: 0 0 8px #34d399; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }

/* ============================================================
   GLOBAL MOBILE OVERRIDES
   ============================================================ */
@media (max-width: 860px) {
  /* Dashboard Kanban mobile tweaks */
  .kanban-col {
    min-width: 250px !important;
  }
  
  /* Dashboard Bonus Widget Stacking */
  #results-section > .container > div:first-child > div:first-child {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px;
  }
  #results-section > .container > div:first-child > div:first-child > div:last-child {
    text-align: left !important;
  }
  
  /* Dashboard Input Form */
  form[style*="display:flex"] {
    flex-direction: column !important;
  }
  
  /* Hiring Pipeline Split Views */
  div[style*="display:flex; justify-content:space-between; align-items:center; gap:64px;"] {
    flex-direction: column !important;
    gap: 32px !important;
  }
  div[style*="flex:1; padding-right:40px;"] {
    padding-right: 0 !important;
  }
  
  /* Interactive Modules (Prep Hub) */
  .interactive-module {
    padding: 24px !important;
  }
  .interactive-module > div {
    flex-direction: column !important;
  }
  .interactive-module > div > div {
    width: 100% !important;
  }
  
  /* Generic inline flex containers that need to wrap */
  div[style*="display:flex; justify-content:space-between; align-items:flex-start;"] {
    flex-wrap: wrap !important;
    gap: 16px !important;
  }
  
  /* Carousels should remain horizontal but scrollable */
  [id^="carousel-"] {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
  }
  
  /* Headers scaling */
  h1 { font-size: clamp(32px, 8vw, 42px) !important; }
  h2 { font-size: clamp(28px, 6vw, 36px) !important; }
  
  /* Make images responsive */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
}
