
/* ============================================================
   1 · TOKENS  (uit colors_and_type.css — Bricks → Global Variables)
   ============================================================ */
:root {
  /* Brand */
  --navy:#1B3A6B; --navy-light:#4A6FA5; --link-blue:#6B8FC9; --accent-violet:#7B68EE;
  /* Neutrals / surfaces */
  --bg:#FFFFFF; --surface:#F5F5F5; --border:#D0D5DD; --text:#555F6E;
  /* Derived / support */
  --navy-darker:#142C52; --surface-2:#ECEFF3; --text-strong:#1B3A6B; --text-muted:#8A93A2;
  --violet-soft:#EEEBFE; --navy-soft:#EAF0F9;
  /* Semantic */
  --success:#1F9D6B; --warning:#E0A000; --danger:#D64545;
  /* Logo palette */
  --logo-blue:#0084FE; --logo-black:#000000; --dot-red:#FF272B; --dot-green:#24AD39; --dot-yellow:#FFBE1C;
  /* Type families */
  --font-display:'Thicccboi','Poppins',system-ui,-apple-system,'Segoe UI',sans-serif;
  --font-body:'Nunito',system-ui,-apple-system,'Segoe UI',sans-serif;
  /* Type scale */
  --fs-display:56px; --fs-h1:44px; --fs-h2:40px; --fs-h3:28px; --fs-h4:22px;
  --fs-lead:20px; --fs-body:16px; --fs-small:14px; --fs-caption:13px;
  /* Weights */
  --w-regular:400; --w-medium:500; --w-semibold:600; --w-bold:700; --w-extra:800;
  /* Line heights */
  --lh-tight:1.1; --lh-heading:1.2; --lh-snug:1.4; --lh-body:1.6;
  /* Spacing */
  --space-1:4px; --space-2:8px; --space-3:16px; --space-4:24px; --space-5:48px; --space-6:80px;
  /* Radii */
  --radius-nav:6px; --radius-btn:8px; --radius-card:12px; --radius-pill:999px;
  /* Shadows */
  --shadow-sm:0 1px 2px rgba(27,58,107,.06); --shadow-card:0 8px 24px rgba(27,58,107,.08);
  --shadow-lg:0 16px 40px rgba(27,58,107,.12); --shadow-btn:0 4px 12px rgba(27,58,107,.18);
  /* Layout */
  --container:1160px; --container-narrow:760px;
  /* Motion */
  --ease:cubic-bezier(0.22,1,0.36,1); --dur-fast:140ms; --dur:220ms; --dur-slow:380ms;
}

/* ============================================================
   2 · FUNNEL BASE  (uit funnel.css — alleen de regels die de content gebruikt;
       .fn-head*, .fn-mini-footer*, .fn-sticky* zijn weggelaten = globale chrome)
   ============================================================ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body); background: var(--bg); color: var(--text);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; line-height: var(--lh-body);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--navy-soft); border-radius: 4px; }

/* layout */
.fn-container { width: 100%; max-width: 1080px; margin-inline: auto; padding-inline: clamp(1.25rem, .5rem + 3vw, 2.5rem); }
.fn-narrow { max-width: 760px; }
.fn-section { padding-block: clamp(48px, 7vw, 88px); }
.fn-section--surface { background: var(--surface); }
.fn-section--navy { background: var(--navy); color: #fff; }

/* buttons */
.fn-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; line-height: 1;
  border: 1.5px solid transparent; border-radius: var(--radius-btn); cursor: pointer;
  text-decoration: none; white-space: nowrap; text-align: center;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.fn-btn svg { width: 1.1em; height: 1.1em; flex: 0 0 auto; }
.fn-btn--lg { padding: 1.15rem 2.1rem; font-size: 1.125rem; }
/* WhatsApp — brand green, used as PRIMARY on intent-landing */
.fn-btn--whatsapp { background: #25D366; color: #fff; padding: 1rem 1.75rem; font-size: 1.0625rem; box-shadow: 0 8px 24px rgba(37,211,102,.28); }
.fn-btn--whatsapp:hover { background: #1FBE5B; box-shadow: 0 12px 30px rgba(37,211,102,.36); transform: translateY(-2px); }
.fn-btn--whatsapp:active { background: #149E4B; box-shadow: none; transform: translateY(0); }
.fn-btn--whatsapp svg { width: 1.25em; height: 1.25em; }

/* type helpers */
.fn-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-size: .8125rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--navy-light); margin: 0 0 1rem;
}
.fn-section--navy .fn-eyebrow { color: #9DB6DC; }
.fn-h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.1rem, 1.4rem + 3vw, 3.4rem); line-height: 1.08; letter-spacing: -.02em; color: var(--navy); margin: 0; text-wrap: balance; }
.fn-section--navy .fn-h1, .fn-section--navy .fn-h2 { color: #fff; }
.fn-h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 1.2rem + 2vw, 2.5rem); line-height: 1.12; letter-spacing: -.015em; color: var(--navy); margin: 0; text-wrap: balance; }
.fn-h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; line-height: 1.25; color: var(--navy); margin: 0; }
.fn-lead { font-size: clamp(1.0625rem, 1rem + .4vw, 1.3125rem); line-height: 1.55; color: var(--text); margin: 0; text-wrap: pretty; }
.fn-section--navy .fn-lead { color: #C6D2E6; }
.fn-muted { color: var(--text-muted); }

/* brand dots */
.fn-dots { display: inline-flex; gap: 8px; }
.fn-dots span { width: 11px; height: 11px; border-radius: 999px; display: block; }
.fn-dots span:nth-child(1) { background: var(--dot-red); }
.fn-dots span:nth-child(2) { background: var(--dot-green); }
.fn-dots span:nth-child(3) { background: var(--dot-yellow); }

/* testimonial stars (gedeeld met .fn-quote) */
.fn-quote__stars { display: inline-flex; gap: 2px; color: var(--dot-yellow); margin-bottom: .9rem; }
.fn-quote__stars svg { width: 17px; height: 17px; fill: var(--dot-yellow); }

/* utilities */
.fn-center { text-align: center; }

/* reveal on scroll — transform-only entrance (opacity stays 1) */
[data-reveal] { transform: none; transition: transform .6s var(--ease); will-change: transform; }
@media (prefers-reduced-motion: no-preference) {
  body:not(.fn-no-anim) [data-reveal]:not(.is-in) { transform: translateY(22px); }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transform: none !important; transition: none !important; }
}

/* ============================================================
   3 · PAGINA-EIGEN  (de inline <style> uit intent-landing-starter.html — verbatim)
   ============================================================ */
/* ===== top scarcity banner ===== */
.is-banner {
  background: var(--dot-red); color: #fff;
  text-align: center; padding: .6rem 1.25rem;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  line-height: 1.35; letter-spacing: .005em;
}
.is-banner strong { font-weight: 800; }
.is-banner__dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 999px;
  background: #fff; margin-right: .5rem; vertical-align: middle;
  animation: is-pulse 1.6s ease-in-out infinite;
}
@keyframes is-pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) { .is-banner__dot { animation: none; } }

/* ===== hero ===== */
.is-hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.is-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 480px at 82% -12%, rgba(123,104,238,.30), transparent 60%); pointer-events: none; }
.is-hero__inner { position: relative; max-width: 880px; padding-block: clamp(2.75rem, 7vw, 5.5rem); text-align: center; margin-inline: auto; }
.is-hero .fn-h1 { color: #fff; }
.is-hero .fn-lead { color: #C6D2E6; margin: 1.25rem auto 0; max-width: 660px; }
.is-hero__cta { display: flex; flex-direction: column; align-items: center; gap: .85rem; margin-top: 2rem; }
.is-hero__cta .fn-btn { width: 100%; max-width: 460px; }
.is-hint { font-size: .85rem; color: #9DB6DC; margin: 0; display: inline-flex; align-items: center; gap: .45rem; }
.is-hint svg { width: 15px; height: 15px; stroke: #9DB6DC; fill: none; stroke-width: 2; }

/* ===== blog-style narrow prose ===== */
.is-prose .fn-lead + .fn-lead { margin-top: 1.1rem; }
.is-prose p { color: var(--text); }

/* ===== valkuil cards (rode ✗) ===== */
.is-traps { display: grid; gap: 1.25rem; margin-top: 2.25rem; }
@media (min-width: 760px) { .is-traps { grid-template-columns: 1fr 1fr; } }
.is-trap {
  background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--dot-red);
  border-radius: var(--radius-card); padding: 1.6rem 1.75rem; box-shadow: var(--shadow-sm);
}
.is-trap__head { display: flex; align-items: center; gap: .7rem; margin-bottom: .85rem; }
.is-trap__x {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 999px;
  background: rgba(255,39,43,.10); display: inline-flex; align-items: center; justify-content: center;
}
.is-trap__x svg { width: 16px; height: 16px; stroke: var(--dot-red); stroke-width: 2.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.is-trap__label { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--navy); margin: 0; }
.is-trap p { margin: 0; font-size: 1rem; line-height: 1.6; color: var(--text); }
.is-midway { text-align: center; margin: 2.5rem auto 0; }
.is-midway p { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 1.1rem + 1.6vw, 2rem); color: var(--navy); margin: 0; }

/* ===== drie eisen ===== */
.is-needs { display: grid; gap: 1.1rem; margin-top: 2rem; }
@media (min-width: 820px) { .is-needs { grid-template-columns: repeat(3, 1fr); } }
.is-need {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-card);
}
.is-need__num {
  width: 40px; height: 40px; border-radius: 12px; background: var(--navy-soft);
  color: var(--navy); font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.is-need h3 { margin: 0 0 .5rem; }
.is-need p { margin: 0; font-size: 1rem; line-height: 1.55; color: var(--text-muted); }

/* ===== highlight / prijs-box ===== */
.is-highlight {
  background: var(--navy); color: #fff; border-radius: 18px;
  padding: clamp(1.75rem, 1rem + 2.5vw, 2.75rem); margin-top: 2rem;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.is-highlight::after { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 320px at 90% 0%, rgba(123,104,238,.22), transparent 60%); pointer-events: none; }
.is-highlight__price { position: relative; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 1.1rem + 2vw, 2.1rem); line-height: 1.2; margin: 0 0 1.5rem; text-wrap: balance; }
.is-highlight__price b { color: #fff; }
.is-highlight ul { position: relative; list-style: none; margin: 0; padding: 0; display: grid; gap: .95rem; }
.is-highlight li { display: flex; gap: .8rem; align-items: flex-start; font-size: 1.05rem; line-height: 1.5; color: #EAF0F9; }
.is-highlight .is-check {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 999px; background: var(--dot-green);
  display: inline-flex; align-items: center; justify-content: center; margin-top: 1px;
}
.is-highlight .is-check svg { width: 15px; height: 15px; stroke: #fff; stroke-width: 3.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ===== stappen ===== */
.is-steps { display: grid; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 820px) { .is-steps { grid-template-columns: repeat(3, 1fr); } }
.is-step { text-align: left; }
.is-step__num {
  width: 48px; height: 48px; border-radius: 999px; background: var(--navy); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.is-step h3 { margin: 0 0 .4rem; }
.is-step p { margin: 0; color: var(--text-muted); }

/* ===== schaarste-blok (amber) ===== */
.is-scarcity {
  margin-top: 2.5rem; background: #FFF8E6; border: 1px solid #F2D98A;
  border-left: 4px solid var(--warning); border-radius: var(--radius-card);
  padding: clamp(1.5rem, 1rem + 2vw, 2.25rem);
}
.is-scarcity__head { display: flex; align-items: center; gap: .8rem; margin-bottom: .85rem; }
.is-scarcity__head svg { flex: 0 0 auto; width: 28px; height: 28px; stroke: var(--warning); stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.is-scarcity__head h3 { margin: 0; color: #8A6500; font-size: 1.2rem; }
.is-scarcity p { margin: 0; font-size: 1.05rem; line-height: 1.65; color: #6B5410; }
.is-scarcity p strong { color: #5C4400; }

/* ===== testimonial ===== */
.is-testimonial {
  max-width: 720px; margin-inline: auto; background: #fff;
  border: 1px solid var(--border); border-radius: 18px;
  padding: clamp(1.75rem, 1rem + 2.5vw, 2.75rem); box-shadow: var(--shadow-card); text-align: center;
}
.is-testimonial .fn-quote__stars { justify-content: center; margin-bottom: 1.25rem; }
.is-testimonial blockquote { margin: 0; }
.is-testimonial blockquote p { font-size: clamp(1.15rem, 1rem + .8vw, 1.4rem); line-height: 1.5; color: var(--navy); font-style: italic; margin: 0 0 1.5rem; text-wrap: pretty; }
.is-testimonial figcaption { font-family: var(--font-display); font-weight: 700; color: var(--navy); }
.is-testimonial figcaption span { display: block; font-family: var(--font-body); font-weight: 400; font-size: .95rem; color: var(--text-muted); margin-top: .2rem; }

/* ===== slot CTA ===== */
.is-final .fn-h2 { color: #fff; }
.is-final__lead { max-width: 600px; margin: 1rem auto 0; }
.is-final__cta { display: flex; flex-direction: column; align-items: center; gap: .85rem; margin-top: 2.25rem; }
.is-final__cta .fn-btn { width: 100%; max-width: 460px; }
.is-final__seats { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--dot-yellow); margin: .25rem 0 0; display: inline-flex; align-items: center; gap: .5rem; }
.is-final__seats svg { width: 16px; height: 16px; stroke: var(--dot-yellow); stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ===== Bricks-conversie fixes (page-scoped, stripped landing) ===== */
html{font-size:100%!important;}                       /* rem-root reset: Bricks zet html op 62.5% */
html.tws-builder [data-reveal]{opacity:1!important;transform:none!important;} /* builder: niet leeg */
/* twds-chrome.css (site-wide heading guard) is dequeued op deze stripped pagina, dus her-assert
   het display-font hier. Bricks injecteert .brxe-text-basic{font-family:var(--font-body)} op elk
   text-element. LET OP: h3 NIET generiek forceren — .is-scarcity__head h3 is bewust Nunito. */
.page-root h1,.page-root h2{font-family:var(--font-display)!important;}
.page-root .fn-h3{font-family:var(--font-display)!important;}
.fn-h1.brxe-text-basic,.fn-h2.brxe-text-basic,.fn-h3.brxe-text-basic,
.fn-btn.brxe-text-basic,.fn-eyebrow.brxe-text-basic,.is-banner.brxe-text-basic,
.is-trap__label.brxe-text-basic,.is-need__num.brxe-text-basic,.is-step__num.brxe-text-basic,
.is-highlight__price.brxe-text-basic,.is-final__seats.brxe-text-basic{font-family:var(--font-display)!important;}
.page-root .is-midway p,.page-root .is-testimonial figcaption{font-family:var(--font-display)!important;}
.is-scarcity__ico{display:inline-flex;flex:0 0 auto;}

