/* ============================================
   STRATEEG.AI — Stylesheet
   Brand palette: #ff6600 · #0069b4 · #12ad2b
   ============================================ */

:root {
  --orange: #ff6600;
  --orange-soft: #fff1e6;
  --orange-deep: #cc5200;
  --blue: #0069b4;
  --blue-soft: #e6f1f8;
  --blue-deep: #004f8a;
  --green: #12ad2b;
  --green-soft: #e6f7e9;
  --green-deep: #0d8a22;

  --ink: #0f1729;
  --ink-soft: #364154;
  --muted: #6b7385;
  --line: #e6e8ee;
  --line-soft: #f2f3f7;

  --bg: #ffffff;
  --bg-soft: #fafbfc;
  --bg-warm: #faf8f4;
  --dark: #11141c;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 41, 0.04);
  --shadow: 0 8px 24px rgba(15, 23, 41, 0.06);
  --shadow-lg: 0 24px 60px rgba(15, 23, 41, 0.10);

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

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.container-narrow { max-width: 820px; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink);
}
.brand-logo { width: 45px; height: 45px; }
.brand-name { font-size: 18px; letter-spacing: -0.02em; }
.brand-dot { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }

.nav-cta { padding: 10px 18px; font-size: 14px; }

.nav-toggle {
  display: none;
  background: none; border: 0;
  width: 38px; height: 38px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 16px rgba(255, 102, 0, 0.25);
}
.btn-primary:hover {
  background: var(--orange-deep);
  box-shadow: 0 10px 22px rgba(255, 102, 0, 0.32);
}

.btn-ghost {
  background: #ffffff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.btn-large { padding: 18px 28px; font-size: 16px; }

.cal-dot {
  width: 14px; height: 14px;
  border-radius: 4px;
  border: 2px solid currentColor;
  position: relative;
  display: inline-flex;
}
.cal-dot::after {
  content: '';
  position: absolute; inset: 3px;
  background: currentColor;
  border-radius: 1px;
}
.cal-dot-dark { color: var(--ink); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 96px 0 120px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
  overflow: hidden;
}
.hero-inner { position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  z-index: 1;}

/* Hero visual — wheel + floating cards */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  align-content: space-between;
}
.hero__wheel {
  position: relative;
  width: 70%;
  filter: drop-shadow(0 30px 80px rgba(0, 105, 180, 0.18));
  animation: slow-spin 120s linear infinite;
  animation-direction: revert;
}
.hero__wheel img { width: 100%; height: auto; }
@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  text-align: center;
}
.eyebrow-light {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
}

.hero-title {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 0 22px;
  max-width: 920px;
}
.hero__copy {
  text-align: center;
}
.accent-orange { color: var(--orange); }
.accent-blue { color: var(--blue); }
.accent-green { color: var(--green); }

.underline-blue {
  position: relative;
  display: inline-block;
  color: var(--blue);
}
.underline-blue::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: var(--blue-soft);
  z-index: -1;
  border-radius: 4px;
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 0 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
  justify-content: center;
}

.hero-hint {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 36px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot-blue { background: var(--blue); }
.dot-green { background: var(--green); }
.dot-orange { background: var(--orange); }
.dot-dark { background: var(--ink); }

/* ============================================
   DECORATIVE SHAPES
   ============================================ */
.shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.shape-orange { background: radial-gradient(circle at 30% 30%, #ffb380, var(--orange)); }
.shape-blue   { background: radial-gradient(circle at 30% 30%, #74b5dd, var(--blue)); }
.shape-green  { background: radial-gradient(circle at 30% 30%, #7fd692, var(--green)); }

.shape-1 { width: 220px; height: 220px; top: 8%; right: -60px; opacity: 0.25; }
.shape-2 { width: 140px; height: 140px; top: 50%; right: 12%; opacity: 0.18; }
.shape-3 { width: 90px; height: 90px; bottom: 12%; left: 6%; opacity: 0.35; }

.shape-wedge-orange {
  position: absolute;
  width: 0; height: 0;
  border-left: 110px solid transparent;
  border-right: 110px solid transparent;
  border-bottom: 180px solid var(--orange);
  opacity: 0.10;
  top: 20%; left: -50px;
  transform: rotate(25deg);
  border-radius: 0;
  background: none;
}

.shape-4 { width: 170px; height: 170px; top: 10%; left: -40px; opacity: 0.15; }
.shape-5 { width: 90px; height: 90px; bottom: 20%; right: 6%; opacity: 0.22; }
.shape-6 { width: 200px; height: 200px; top: -50px; right: -60px; opacity: 0.18; }
.shape-7 { width: 120px; height: 120px; top: 12%; left: 4%; opacity: 0.18; }
.shape-8 { width: 80px; height: 80px; bottom: 14%; right: 8%; opacity: 0.22; }
.shape-9 { width: 260px; height: 260px; top: -80px; right: -80px; opacity: 0.20; }
.shape-10 { width: 160px; height: 160px; bottom: -40px; left: 8%; opacity: 0.16; }
.shape-11 { width: 80px; height: 80px; top: 30%; left: 40%; opacity: 0.18; }

/* ============================================
   SECTION SHELL
   ============================================ */
.section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.section-light { background: var(--bg-soft); }

.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--ink);
}
.section h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--ink);
}
.lead {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================
   JA-LADDER (Herken je dit)
   ============================================ */
.ja-ladder {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 16px;
}
.ja-ladder li {
  display: flex;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.ja-ladder li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--orange);
}
.ja-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ja-ladder li:nth-child(2) .ja-num { background: var(--blue); }
.ja-ladder li:nth-child(3) .ja-num { background: var(--green); }

.ja-text {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 6px;
}
.ja-sub {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
}

.conclusion {
  font-size: 19px;
  text-align: center;
  margin: 0;
  color: var(--ink);
}
.conclusion strong { color: var(--orange); }

/* ============================================
   MISSIE
   ============================================ */
.missie-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.missie-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.18;
}
.missie-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 30%;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.16;
}
.missie-quote {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  max-width: 880px;
  position: relative;
  z-index: 1;
}
.missie-body {
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 780px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.fomo {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--orange-soft);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
}
.fomo p { margin: 0; color: #7a3a00; font-size: 15.5px; line-height: 1.6; }
.fomo-icon {
  font-size: 18px;
  color: var(--orange);
  font-weight: 700;
}

/* ============================================
   PRODUCT GRID
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.product-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.product-card h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.product-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 22px;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14.5px;
  transition: gap 0.2s;
}
.product-link:hover { gap: 10px; }
.product-link span { transition: transform 0.2s; }

.product-corner {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  opacity: 0.10;
}

.product-tender .product-tag { background: var(--green-soft); color: var(--green-deep); }
.product-tender h3, .product-tender .product-link { color: var(--green); }
.product-tender { border-top: 4px solid var(--green); }
.product-tender .product-corner { background: var(--green); }

.product-contract .product-tag { background: var(--blue-soft); color: var(--blue-deep); }
.product-contract h3, .product-contract .product-link { color: var(--blue-deep); }
.product-contract { border-top: 4px solid var(--blue); }
.product-contract .product-corner { background: var(--blue); }

.product-inkoop .product-tag { background: var(--orange-soft); color: var(--orange-deep); }
.product-inkoop h3, .product-inkoop .product-link { color: var(--orange-deep); }
.product-inkoop { border-top: 4px solid var(--orange); }
.product-inkoop .product-corner { background: var(--orange); }

/* mini cta */
.mini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  box-shadow: var(--shadow-sm);
}
.mini-cta-title {
  font-size: 16.5px;
  font-weight: 600;
  margin: 0 0 4px;
}
.mini-cta-sub {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
}

/* ============================================
   AI AGENTS
   ============================================ */
.agents-callout {
  background: linear-gradient(135deg, var(--green-soft) 0%, #f5fbf6 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 28px;
  border: 1px solid #c8e9d0;
}
.agents-callout h3 {
  font-size: 22px;
  color: var(--green-deep);
  margin: 0 0 8px;
}
.agents-callout p {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 780px;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.agent-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.agent-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}
.agent-card h4 {
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--ink);
}
.agent-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.agent-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
}
.agent-icon-blue { background: var(--blue-soft); color: var(--blue); }
.agent-icon-green { background: var(--green-soft); color: var(--green-deep); }
.agent-icon-orange { background: var(--orange-soft); color: var(--orange-deep); }

.agent-card-feature {
  background: linear-gradient(135deg, #fff 0%, var(--orange-soft) 100%);
  border-color: #ffd9b8;
}

/* ============================================
   WAAROM
   ============================================ */
.waarom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.waarom-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
}
.waarom-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.waarom-card h3 {
  font-size: 19px;
  margin: 12px 0 10px;
}
.waarom-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.waarom-num {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
}
.waarom-orange { background: var(--orange-soft); color: var(--orange-deep); }
.waarom-blue   { background: var(--blue-soft);   color: var(--blue-deep);   }
.waarom-green  { background: var(--green-soft);  color: var(--green-deep);  }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 12px;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.badge-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* ============================================
   QUOTES
   ============================================ */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quote {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  border: 1px solid var(--line);
  margin: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.quote:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 0.5;
  color: var(--orange);
  position: absolute;
  top: 30px; left: 28px;
  font-weight: 700;
}
.quote blockquote {
  margin: 30px 0 22px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
  font-size: 14px;
  color: var(--ink-soft);
}
.quote figcaption small { color: var(--muted); }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13.5px;
  color: #fff;
  flex-shrink: 0;
}
.avatar-blue { background: var(--blue); }
.avatar-green { background: var(--green); }
.avatar-orange { background: var(--orange); }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.08;
}
.newsletter-text h2 { margin-top: 8px; font-size: 30px; }
.newsletter-text p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.newsletter-form input {
  font-family: inherit;
  font-size: 15px;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--bg-soft);
  transition: border-color 0.2s, background 0.2s;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}
.newsletter-form button { padding: 16px 24px; }

/* ============================================
   FAQ
   ============================================ */
.faq { display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--orange);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================
   FINAL CTA
   ============================================ */
.cta-final {
  position: relative;
  background: var(--dark);
  color: #fff;
  padding: 110px 0;
  overflow: hidden;
  text-align: center;
}
.cta-final .container { position: relative; z-index: 2; }
.cta-title {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  max-width: 880px;
  margin: 0 auto 22px;
}
.cta-sub {
  font-size: 17.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 660px;
  margin: 0 auto 36px;
}
.cta-hint-light { color: rgba(255,255,255,0.55); margin-top: 16px;}
.cta-bold{ font-weight:700;}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #fff;
  border-top: 1px solid var(--line-soft);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 14px 0 0;
  max-width: 320px;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-col a {
  color: var(--ink-soft);
  font-size: 14.5px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }

.footer-badges {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.footer-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--green-soft);
  color: var(--green-deep);
}
.footer-badge:nth-child(2) {
  background: var(--blue-soft);
  color: var(--blue-deep);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 13.5px;
  color: var(--muted);
}
.footer__socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    color: var(--ink-2);
    padding: 0;
}
.footer__socials a:hover {
    color: rgb(255, 255, 255);
    background: var(--blue);
    border-color: var(--blue);
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--orange); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 920px) {
  .product-grid,
  .agents-grid,
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .waarom-grid { grid-template-columns: 1fr; }
  .newsletter {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 28px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .missie-card { padding: 40px 30px; }
	
  .hero { padding-top: 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero__visual {max-width: 240px;margin: 0 auto;order: -1;}
  .hero__preview { display: none; }
  .hero .vorm { display: none; }	
}

@media (max-width: 700px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }

  .hero { padding: 60px 0 80px; }
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 36px; }

  .product-grid,
  .agents-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: flex-start; }

  .mini-cta { padding: 22px; }
  .missie-card { padding: 32px 24px; }
  .missie-quote { font-size: 22px; }
  .agents-callout { padding: 26px 24px; }
  .cta-final { padding: 80px 0; }

  .ja-ladder li { padding: 22px 20px; gap: 16px; }
  .ja-num { width: 38px; height: 38px; font-size: 16px; }
}
