/* ============================================================
   CATALYST GROUP — Global Stylesheet
   www.catalystgroup.ch
   ============================================================ */

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

:root {
  --navy:       #1A2B4A;
  --navy-deep:  #111E35;
  --blue:       #2D5FA3;
  --blue-light: #3D72BF;
  --teal:       #00A88F;
  --teal-dark:  #008A75;
  --gray:       #4A5568;
  --gray-light: #718096;
  --gray-muted: #A0AEC0;
  --bg-light:   #F5F7FA;
  --bg-blue:    #E8F0FB;
  --bg-teal:    #E6F7F4;
  --white:      #FFFFFF;
  --border:     #E2E8F0;

  --shadow-sm:  0 2px 8px rgba(26,43,74,0.06);
  --shadow:     0 4px 24px rgba(26,43,74,0.10);
  --shadow-lg:  0 12px 48px rgba(26,43,74,0.14);
  --shadow-hover: 0 8px 40px rgba(26,43,74,0.16);

  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --transition: 0.22s ease;
  --max-width:  1200px;
  --nav-h:      72px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Google Font import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 { color: var(--navy); line-height: 1.2; font-weight: 700; }

.display {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.subheadline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--gray-light);
  line-height: 1.7;
}
.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}
.body-lg { font-size: 1.05rem; line-height: 1.75; color: var(--gray); }
.body-sm { font-size: 0.875rem; color: var(--gray-light); }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  background: var(--navy);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy);
  background: var(--bg-light);
}
.nav-links .has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(-4px);
  z-index: 100;
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--gray);
  font-size: 0.875rem;
}
.nav-dropdown a:hover { background: var(--bg-light); color: var(--navy); }
.nav-dropdown-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: var(--bg-blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.nav-dropdown-text strong { display: block; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.nav-cta {
  margin-left: 0.75rem;
  padding: 0.5rem 1.125rem !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--navy-deep) !important; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem;
  z-index: 999;
  box-shadow: var(--shadow);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--navy); }
.nav-mobile .mobile-cta {
  display: block;
  margin-top: 1.25rem;
  padding: 0.875rem 1.5rem;
  background: var(--navy);
  color: var(--white) !important;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
}

/* ── LAYOUT HELPERS ─────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 7rem 0; }
.page-offset { padding-top: var(--nav-h); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 0.75rem; }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 2.5rem; }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-teal { color: var(--teal); }
.text-blue { color: var(--blue); }

.mt-xs { margin-top: 0.5rem; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1.75rem; }
.mt-lg { margin-top: 2.5rem; }
.mt-xl { margin-top: 4rem; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #1e3a6e 100%);
  color: var(--white);
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,95,163,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,143,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}
.hero-label span { color: var(--teal); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  max-width: 780px;
}
.hero h1 em { color: var(--teal); font-style: normal; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,168,143,0.35);
}
.btn-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 6px 24px rgba(0,168,143,0.45);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; }

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: rgba(45,95,163,0.2);
}
.card-icon {
  width: 68px; height: 68px;
  border-radius: var(--radius);
  background: var(--bg-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.card-icon.teal { background: var(--bg-teal); }
.card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.card p { font-size: 0.9rem; color: var(--gray-light); line-height: 1.65; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
}
.card-link:hover { gap: 0.625rem; }
.card-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.card-link:hover svg { transform: translateX(3px); }

/* Service card variant */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--blue);
  transition: width var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.service-card.teal-accent::before { background: var(--teal); }
.service-card .num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gray-muted);
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; color: var(--gray-light); line-height: 1.7; }

/* ── STAT STRIP ─────────────────────────────────────────────── */
.stat-strip {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-item .num span { color: var(--teal); }
.stat-item .label { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-header-inner { margin: 0 auto; }
.section-header-inner { max-width: 640px; }
.section-header .label { margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; color: var(--gray-light); line-height: 1.75; }

/* ── FEATURES LIST ──────────────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0.15rem;
  align-items: start;
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--bg-teal);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 1.5rem;
  font-weight: 700;
  grid-row: 1 / 3; /* span title + text rows */
  align-self: start;
}
.feature-item h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0; align-self: end; }
.feature-item strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; font-size: 1rem; }
.feature-item p { font-size: 0.9rem; color: var(--gray-light); line-height: 1.65; margin: 0; }

/* What's Included table-style alignment */
.feature-table { display: flex; flex-direction: column; gap: 0; }
.feature-row {
  display: grid;
  grid-template-columns: 52px 220px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row .feature-icon { margin: 0; }
.feature-row strong { display: block; font-weight: 700; color: var(--navy); font-size: 1rem; padding-top: 0.15rem; }
.feature-row p { font-size: 0.9rem; color: var(--gray-light); line-height: 1.65; margin: 0; padding-top: 0.15rem; }

/* ── QUOTE / CALLOUT ────────────────────────────────────────── */
.callout {
  background: var(--bg-blue);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
}
.callout.teal { border-left-color: var(--teal); background: var(--bg-teal); }
.callout p { font-size: 1.05rem; color: var(--navy); font-weight: 500; line-height: 1.7; }
.callout cite { display: block; margin-top: 0.75rem; font-size: 0.875rem; color: var(--gray-light); font-style: normal; }

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #1e3a6e 100%);
  color: var(--white);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,143,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2.25rem; line-height: 1.75; }
.cta-section .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PROCESS STEPS ──────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-body strong { display: block; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.step-body p { font-size: 0.9rem; color: var(--gray-light); line-height: 1.65; }

/* ── INDUSTRY PILLS ─────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  background: var(--bg-blue);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  gap: 0.375rem;
}
.pill.teal { background: var(--bg-teal); color: var(--teal-dark); }

/* ── FORM ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45,95,163,0.12);
}
.form-control::placeholder { color: var(--gray-muted); }
select.form-control { appearance: none; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.65);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-logo-mark {
  width: 30px; height: 30px;
  background: var(--blue);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
}
.footer-desc { font-size: 0.875rem; line-height: 1.75; max-width: 300px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--blue); color: var(--white); }
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  padding: 0.3rem 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--white); }

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb span { color: rgba(255,255,255,0.85); }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #1e3a6e 100%);
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,95,163,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero h2, .page-hero h3 { color: var(--white); }
.page-hero .sub { color: rgba(255,255,255,0.88); font-size: 1.1rem; max-width: 620px; line-height: 1.75; }
.page-hero p,
.page-hero .body-lg,
.page-hero .subheadline { color: rgba(255,255,255,0.88); }

/* ── DARK SECTION TEXT OVERRIDES ────────────────────────────── */
/* Ensures body copy & headings are always readable on dark/navy backgrounds */
.hero p, .hero .body-lg, .hero .subheadline { color: rgba(255,255,255,0.82); }
.cta-section p, .cta-section .body-lg { color: rgba(255,255,255,0.78); }
[style*="background: linear-gradient"] p,
[style*="background: linear-gradient"] .body-lg { color: rgba(255,255,255,0.82); }
[style*="background: linear-gradient"] h1,
[style*="background: linear-gradient"] h2,
[style*="background: linear-gradient"] h3 { color: var(--white); }

/* ── SPLIT LAYOUT ───────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split.flip .split-visual { order: -1; }
.split-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-blue);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.split-visual.dark-bg { background: var(--navy); }
.visual-placeholder {
  font-size: 4rem;
  opacity: 0.4;
}

/* ── BAND ───────────────────────────────────────────────────── */
.band { background: var(--bg-light); padding: 4.5rem 0; }
.band-blue { background: var(--bg-blue); padding: 4.5rem 0; }

/* ── ANIMATE ON SCROLL ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.flip .split-visual { order: 0; }
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 5rem 0; }
  .band { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-bottom span { justify-content: center; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-section .actions { flex-direction: column; align-items: center; }
  .stat-strip .grid-4 { grid-template-columns: repeat(2, 1fr); }
  /* feature-item: stack vertically on narrow screens */
  .feature-item { grid-template-columns: 44px 1fr; column-gap: 0.75rem; }
  .feature-icon { width: 44px; height: 44px; font-size: 1.25rem; }
  /* feature-row table layout: collapse on mobile */
  .feature-row { grid-template-columns: 44px 1fr; }
  .feature-row p { grid-column: 2; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .display { font-size: 1.9rem; }
  .btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
}

/* ── COOKIE CONSENT BANNER ───────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 3px solid var(--teal);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.13);
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}
#cookie-banner.visible {
  transform: translateY(0);
}
.cookie-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.cookie-text {
  flex: 1;
  min-width: 0;
}
.cookie-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.cookie-text p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.55;
}
.cookie-text a {
  color: var(--teal);
  text-decoration: underline;
  font-weight: 500;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  align-items: center;
}
.cookie-btn {
  padding: 0.6rem 1.35rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1;
}
.cookie-btn-primary {
  background: var(--teal);
  color: #fff;
}
.cookie-btn-primary:hover {
  background: #008f78;
}
.cookie-btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid #ccd4de;
}
.cookie-btn-secondary:hover {
  border-color: var(--navy);
  background: var(--bg-light);
}
@media (max-width: 640px) {
  .cookie-inner { flex-direction: column; gap: 1rem; align-items: flex-start; padding: 1.25rem; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
