/* ════════════════════════════════════════════════════════
   Penningwijs – Marketing website
   Pixel-perfect translation from Figma CSS export.
   Base design: 1440 × 4237 px
   ════════════════════════════════════════════════════════ */

/* ── Custom Properties (exact Figma values) ─────────────── */
:root {
  /* Colors */
  --accent:       #45BF9F;   /* Primary CTA, icon circles */
  --brand-blue:   #566FB3;   /* Footer, waitlist bg, card titles, names */
  --text-dark:    #3D3D3D;   /* Headings */
  --text-body:    #757575;   /* Body text */
  --text-muted:   #A6AEBB;   /* Placeholder */
  --bg-page:      #F5F6F7;   /* Page background */
  --bg-card:      #FFFFFF;   /* Cards */
  --border:       #DFE2E6;   /* Form borders */
  --border-light: #C2C7D0;   /* Feature dividers, card borders */

  /* Typography */
  --font-h:   'Hubot Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --font-b:   'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.5;
  background: var(--bg-page);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

/* ── Screen-reader only ─────────────────────────────────── */
.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;
}

/* ── Page wrapper ───────────────────────────────────────── */
.page {
  width: 100%;
  overflow-x: hidden;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-h);
  font-weight: 500;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Accent (teal) — main CTA */
.btn--accent {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
}
/* White — secondary CTA (How it works) */
.btn--white {
  background: #fff;
  color: #6B788E;
  border-radius: 999px;
}
/* Nav contact button (inside dark pill) */
.btn--nav {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  padding: 8px 28px;
  height: 36px;
}
/* Large buttons (hero CTAs) */
.btn--lg {
  font-size: 16px;
  padding: 20px 32px;
  height: 64px;
}
/* Medium buttons */
.btn--md {
  font-size: 17px;
  padding: 16px 36px;
  height: 58px;
}
/* Hero text link (secondary action) */
.hero__link {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}
.hero__link:hover { color: #fff; }
/* Full-width */
.btn--full { width: 100%; }


/* ════════════════════════════════════════════════════════
   HERO
   Full-bleed: geen margin, geen border-radius
   ════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  margin: 0;
  height: 960px;
  border-radius: 0;
  overflow: visible; /* desktop mockup extends below */
}

/* Photo background with gradient overlay */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    linear-gradient(3.04deg, rgba(0,0,0,0.8) 2.73%, rgba(0,0,0,0) 55.75%),
    url('assets/hero_charity_5.png') center center / cover no-repeat;
  border-radius: 0;
  overflow: hidden;
}

/* Semi-transparent darkening overlay (no blur — keeps photo sharp) */
.hero__blur {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.12);
  border-radius: 0;
  overflow: hidden;
}

/* ── Navigation — clean transparent balk ───────────────── */
.nav {
  position: absolute;
  top: 32px;
  left: 84px;
  right: 84px;
  height: 36px;
  background: transparent;
  border-radius: 0;
  z-index: 10;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 29px;
}
.nav__logo {
  flex-shrink: 0;
  width: 160px;
  height: 26px;
  display: flex;
  align-items: center;
}
.nav__logo img {
  display: block;
  height: 26px;
  width: auto;
}
.nav__links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex: 1;
}
.nav__links a {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.nav__links a:hover { opacity: 0.75; }

/* Nav right-side actions: Inloggen + CTA */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__login {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav__login:hover { color: #fff; }

/* ── Hero text content ──────────────────────────────────── */
.hero__content {
  position: absolute;
  left: 84px;
  top: 160px;
  width: 560px;
  z-index: 5;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0; /* individuele margins per blok voor betere controle */
}
.hero__heading {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: 62px;
  line-height: 70px;
  color: #fff;
  text-align: left;
  margin-bottom: 20px;
}
.hero__sub {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255,255,255,0.75);
  text-align: left;
  margin-bottom: 32px;
}
.hero__ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
  margin-top: 20px;
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  white-space: nowrap;
}
.hero__trust-item svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* ── Desktop app mockup (bottom-center, overlaps into pain section) ── */
.hero__desktop {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 880px;
  width: 1060px;
  height: 550px;
  z-index: 10;
  overflow: visible;
  transform: translateX(-50%);
}


/* ════════════════════════════════════════════════════════
   PAIN POINTS
   Padding: 160px above (gap from hero), 80px below
   3 white cards on #F5F6F7 background
   ════════════════════════════════════════════════════════ */
.pain {
  padding: 600px 0 0;
  background: var(--bg-page);
}
.pain__inner {
  max-width: 1272px;
  margin: 0 auto;
  padding: 0 84px;
}
.pain__heading {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 52px;
  line-height: 60px;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 64px;
}
.pain__grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}

/* Pain card */
.pain-card {
  position: relative;
  flex: 1;
  height: 480px;
  background: var(--bg-card);
  border-radius: 32px;
  overflow: hidden;
}
.pain-card__title {
  position: absolute;
  left: 30px;
  top: 30px;
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  color: var(--brand-blue);
}
.pain-card__desc {
  position: absolute;
  left: 30px;
  right: 30px;
  top: 122px;
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-body);
}

/* Card 1 image: centered, top 225px */
.pain-card__img--centered {
  position: absolute;
  top: 224.87px;
  left: 50%;
  transform: translateX(-50%);
}
.pain-card__img--centered img {
  width: 303px;
  height: auto;
}

/* Card 2 image: full width, top 199px */
.pain-card__img--wide {
  position: absolute;
  top: 199px;
  left: 0;
  right: 0;
}
.pain-card__img--wide img {
  width: 100%;
  height: auto;
}

/* Card 3 image: left 50px, top 221px */
.pain-card__img--left {
  position: absolute;
  top: 221px;
  left: 50px;
}
.pain-card__img--left img {
  width: 306px;
  height: auto;
}


/* ════════════════════════════════════════════════════════
   STICKY NAV — appears after scrolling past hero
   ════════════════════════════════════════════════════════ */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(62, 82, 148, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transform: translateY(-100%);
  transition: transform 0.25s ease;
  pointer-events: none;
}
.sticky-nav.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-nav__inner {
  max-width: 1272px;
  margin: 0 auto;
  padding: 0 48px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.sticky-nav__logo {
  flex-shrink: 0;
}
.sticky-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.sticky-nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.15s;
}
.sticky-nav__links a:hover { color: #fff; }
.sticky-nav__cta {
  flex-shrink: 0;
  font-size: 14px !important;
  padding: 8px 20px !important;
  height: 36px !important;
}
@media (max-width: 768px) {
  .sticky-nav__links { display: none; }
  .sticky-nav__inner { padding: 0 20px; justify-content: space-between; }
}


/* ════════════════════════════════════════════════════════
   SECTION CTA — subtle centered CTA between sections
   ════════════════════════════════════════════════════════ */
.section-cta {
  background: var(--bg-page);
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}
.section-cta .btn {
  font-size: 15px;
  padding: 13px 32px;
  height: auto;
}


/* ════════════════════════════════════════════════════════
   BRIDGE — pain → product transition sentence
   ════════════════════════════════════════════════════════ */
.bridge {
  background: var(--bg-page);
  padding: 64px 0 80px;
}
.bridge__inner {
  max-width: 1272px;
  margin: 0 auto;
  padding: 0 84px;
  display: flex;
  justify-content: center;
}
.bridge__text {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: 42px;
  line-height: 56px;
  text-align: center;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.bridge__accent {
  color: var(--accent);
  font-weight: 600;
  position: relative;
  display: inline-block;
}
/* Subtle underline glow beneath "AI." */
.bridge__accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.5;
}

/* ════════════════════════════════════════════════════════
   PRODUCT SHOWCASE — centered layout
   Heading + sub gecentreerd, groot screenshot + Florijn overlay, 3 features eronder
   ════════════════════════════════════════════════════════ */
.product {
  padding: 100px 0 120px;
  background: var(--bg-page);
}
.product__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

/* Centered heading + sub */
.product__intro {
  text-align: center;
  max-width: 760px;
}
.product__heading {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 52px;
  line-height: 66px;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.product__sub {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-body);
}

/* Screenshot + Florijn overlay wrapper */
.product__visual {
  position: relative;
  width: 100%;
  max-width: 1060px; /* 2121px native / 2 = pixel-perfect op Retina */
  padding-bottom: 48px; /* ruimte voor Florijn card die onderuit hangt */
  padding-right: 8px;   /* ruimte rechts */
}

/* Screenshot wrapper — screenshot heeft eigen browser-chrome al zichtbaar */
.screenshot-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 40px 90px rgba(0,0,0,0.20),
    0 12px 32px rgba(0,0,0,0.12),
    0 4px 10px rgba(0,0,0,0.07);
}
.product__screenshot {
  width: 100%;
  height: auto;
  display: block;
}

/* Florijn floating card — linksonder over screenshot */
.product__florijn-card {
  position: absolute;
  bottom: 24px;
  left: -24px;
  width: 280px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow:
    0 12px 40px rgba(0,0,0,0.16),
    0 2px 8px rgba(0,0,0,0.08);
}
.florijn-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.florijn-card__avatar {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.florijn-card__meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.florijn-card__name {
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.3;
}
.florijn-card__online {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-b);
  font-size: 11px;
  color: var(--accent);
  line-height: 1.3;
}
.florijn-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.florijn-card__msg {
  font-family: var(--font-b);
  font-size: 12px;
  line-height: 17px;
  color: var(--text-body);
  background: #f5f5f7;
  border-radius: 10px 10px 10px 2px;
  padding: 8px 12px;
  margin-bottom: 8px;
}
.florijn-card__reply {
  background: var(--accent);
  border-radius: 10px 10px 2px 10px;
  padding: 8px 12px;
}
.florijn-card__reply p {
  font-family: var(--font-b);
  font-size: 12px;
  line-height: 17px;
  color: #fff;
  margin: 0;
}

/* Feature row: 3 columns with vertical dividers */
.features-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}
.feature-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 0 36px 0 0;
}
.feature-col:last-child { padding-right: 0; }

/* The teal circle icon */
.feature-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.feature-col__title {
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: var(--text-dark);
}
.feature-col__desc {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: var(--text-body);
}

/* Vertical divider between feature columns */
.feature-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border-light);
  margin: 0 32px;
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════════════
   HOE HET WERKT — 3-stappen sectie
   ════════════════════════════════════════════════════════ */
.howitworks {
  background: #f5f5f8;
  padding: 100px 24px;
}

.howitworks__inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* Header */
.howitworks__header {
  text-align: center;
  margin-bottom: 72px;
}

.howitworks__header h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.howitworks__header p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* Step grid — steps + arrows in a row */
.howitworks__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

/* Arrow connector */
.howitworks__arrow {
  flex-shrink: 0;
  margin-top: 68px;
  padding: 0 16px;
  opacity: 0.6;
}

/* Individual step card */
.howstep {
  flex: 1;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Big ghost step number — decorative background text */
.howstep__num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  color: #e8e8ee;
  letter-spacing: -4px;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

/* Teal icon circle */
.howstep__icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  margin-top: 40px;
  box-shadow: 0 8px 24px rgba(67, 182, 147, 0.30);
}

.howstep__title {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.howstep__desc {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

/* ─────── responsive ─────── */
@media (max-width: 860px) {
  .howitworks__steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .howitworks__arrow {
    margin-top: 0;
    padding: 8px 0;
    transform: rotate(90deg);
  }

  .howstep {
    max-width: 340px;
    margin-bottom: 8px;
  }
}

@media (max-width: 600px) {
  .howitworks { padding: 72px 20px; }
  .howitworks__header h2 { font-size: 28px; }
  .howitworks__header p { font-size: 16px; }
  .howstep__num { font-size: 72px; }
}


/* ════════════════════════════════════════════════════════
   FEATURES — bento grid
   ════════════════════════════════════════════════════════ */
.features {
  background: #fff;
  padding: 96px 24px;
}

.features__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.features__header {
  text-align: center;
  margin-bottom: 56px;
}

.features__header h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.features__header p {
  font-size: 18px;
  color: var(--text-muted);
}

/* Bento grid — asymmetric 3-column layout */
.features__bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

/* Card 1 (wide, spans 2 cols) */
.fcard--wide    { grid-column: span 2; }
/* Card 4 (tall, spans 2 rows) */
.fcard--tall    { grid-row: span 2; }

/* Base card */
.fcard {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fcard:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

/* Accent card (Florijn AI) — teal gradient */
.fcard--accent {
  background: linear-gradient(135deg, #3aaa8c 0%, #45BF9F 60%, #5dd4b0 100%);
  border-color: transparent;
  color: #fff;
}

.fcard--accent .fcard__title,
.fcard--accent .fcard__desc {
  color: #fff;
}

.fcard--accent .fcard__desc {
  opacity: 0.85;
}

/* Blue card (ANBI) */
.fcard--blue {
  background: linear-gradient(135deg, #3d5a99 0%, #566FB3 60%, #6b83c5 100%);
  border-color: transparent;
}

.fcard--blue .fcard__title,
.fcard--blue .fcard__desc {
  color: #fff;
}

.fcard--blue .fcard__desc {
  opacity: 0.85;
}

/* Icon circle */
.fcard__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fcard__icon--blue  { background: var(--brand-blue); }
.fcard__icon--white { background: rgba(255,255,255,0.25); }

.fcard--accent .fcard__icon,
.fcard--blue   .fcard__icon { background: rgba(255,255,255,0.2); }

.fcard__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.fcard__desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  flex: 1;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .features__bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .fcard--wide { grid-column: span 2; }
  .fcard--tall { grid-row: span 1; }
}

@media (max-width: 560px) {
  .features { padding: 72px 20px; }
  .features__header h2 { font-size: 28px; }
  .features__bento {
    grid-template-columns: 1fr;
  }
  .fcard--wide { grid-column: span 1; }
}


/* ════════════════════════════════════════════════════════
   TESTIMONIALS
   Wider-than-container row, centered
   ════════════════════════════════════════════════════════ */
.testimonials {
  padding: 160px 0;
  background: var(--bg-page);
}
.testimonials__inner {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 48px;
}
.testimonials__header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 84px;
}
.testimonials__header h2 {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 38px;
  line-height: 52px;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.testimonials__header p {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-body);
}

/* ── Trust badges ── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 72px;
  padding: 0 24px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.trust-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Carousel wrapper — positions prev/next buttons */
.testimonials__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Prev / next arrow buttons */
.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
  z-index: 2;
  flex-shrink: 0;
}

.carousel-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 2px 10px rgba(69,191,159,0.2);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.carousel-btn--prev { margin-right: 16px; }
.carousel-btn--next { margin-left: 16px; }

/* Scrollable card track */
.testimonials__grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  padding: 8px 4px 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;       /* Firefox */
  flex: 1;
  min-width: 0;
}

.testimonials__grid::-webkit-scrollbar { display: none; }

/* Testimonial card */
.testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 32px 44px;
  gap: 36px;
  width: 500px;
  min-height: 262px;
  background: var(--bg-card);
  border-radius: 24px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.testimonial-card--featured {
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
.testimonial-card__avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-card__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}
.testimonial-card blockquote p {
  font-family: var(--font-b);
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  color: var(--text-dark);
  font-style: normal;
}
.testimonial-card__person {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.testimonial-card__name {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--brand-blue);
  font-style: normal;
}
.testimonial-card__role {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-body);
}




/* ════════════════════════════════════════════════════════
   PRICING
   3-card layout on page bg, Groei card featured with teal glow
   ════════════════════════════════════════════════════════ */
.pricing {
  padding: 160px 0 120px;
  background: var(--bg-page);
}
.pricing__inner {
  max-width: 1272px;
  margin: 0 auto;
  padding: 0 84px;
}
.pricing__header {
  text-align: center;
  margin-bottom: 72px;
}
.pricing__header h2 {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.pricing__header p {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 24px;
  color: var(--text-body);
}
.pricing__trial-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
}
.pricing__trial-note::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* Grid */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Base card */
.pricing-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow 0.2s;
}
.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}

/* Featured card — Groei */
.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(69,191,159,0.14), 0 4px 16px rgba(69,191,159,0.08);
  padding-top: 52px; /* extra room for badge */
}
.pricing-card--featured:hover {
  box-shadow: 0 28px 70px rgba(69,191,159,0.20), 0 6px 20px rgba(69,191,159,0.10);
}

/* "Most popular" badge */
.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
}

/* Plan name + description */
.pricing-card__name {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-card--featured .pricing-card__name {
  color: var(--accent);
}
.pricing-card__desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 20px;
  margin-bottom: 28px;
}

/* Price */
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-card__amount {
  font-family: var(--font-h);
  font-size: 48px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
}
.pricing-card__currency {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  align-self: flex-start;
  margin-top: 6px;
}
.pricing-card__period {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 32px;
}

/* Divider */
.pricing-card__divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 28px;
}

/* Feature list */
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex: 1;
}
.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 20px;
}
.pricing-card__feature-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}
.pricing-card__feature--muted {
  color: var(--text-muted);
}
.pricing-card__feature-label--bold {
  font-weight: 600;
  color: var(--text-dark);
}

/* "Everything in X" line */
.pricing-card__inherit {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 10px;
  padding-left: 28px;
}

/* CTA button */
.pricing-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 999px;
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.15s;
  text-decoration: none;
}
.pricing-card__cta:hover { opacity: 0.9; transform: translateY(-1px); }
.pricing-card__cta--outline {
  background: transparent;
  border: 1.5px solid var(--border-light);
  color: var(--text-dark);
}
.pricing-card__cta--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pricing-card__cta--accent {
  background: var(--accent);
  color: #fff;
}

/* Footer note */
.pricing__footer {
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
  color: var(--text-body);
}
.pricing__footer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing__inner { padding: 0 40px; }
  .pricing-card--featured { padding-top: 52px; }
}
@media (max-width: 600px) {
  .pricing { padding: 100px 0 80px; }
  .pricing__inner { padding: 0 20px; }
  .pricing__header h2 { font-size: 34px; line-height: 44px; }
}


/* ════════════════════════════════════════════════════════
   WAITLIST
   Blue background (#566FB3), decorative circles, centered form
   ════════════════════════════════════════════════════════ */
.waitlist {
  position: relative;
  width: 100%;
  height: 760px;
  background: var(--brand-blue);
  overflow: visible;
}

/* Clip wrapper — keeps decorative circles from bleeding out */
.waitlist__clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Decorative concentric circles — centered horizontally */
.waitlist__circles {
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
  width: 622px;
  height: 622px;
  pointer-events: none;
}
.circle {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.circle--1 { width: 622px; height: 622px; background: #5973BA; }
.circle--2 { width: 528px; height: 528px; background: #5C78C3; }
.circle--3 { width: 402px; height: 402px; background: #5F7CCB; }
.circle--4 { width: 258px; height: 258px; background: #6481D0; }
.circle--5 { width: 154px; height: 154px; background: #6B88D7; }

/* Floating icon badges */
.waitlist__badge {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}
.waitlist__badge--1 {
  width: 74px; height: 74px;
  background: var(--accent);
  right: 275px; top: 143px;
}
.waitlist__badge--2 {
  width: 96px; height: 96px;
  background: linear-gradient(180deg, #fff 0%, #E1E1E1 100%);
  right: 342px; top: 249px;
}
.waitlist__badge--3 {
  width: 88px; height: 88px;
  background: linear-gradient(180deg, #fff 0%, #E1E1E1 100%);
  right: 389px; top: 95px;
}

/* Left: text */
.waitlist__text {
  position: absolute;
  left: 84px;
  top: 183px;
  width: 297px;
}
.waitlist__text h2 {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 38px;
  line-height: 52px;
  color: #fff;
  margin-bottom: 40px;
}
.waitlist__text p {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

/* Center: form card (white card, centered horizontally) */
.waitlist__form-card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 192px;
  width: 514px;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 30px;
}
.waitlist__form-lead {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-dark);
  margin-bottom: 32px;
}
.waitlist__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-field { position: relative; }
.form-field input,
.form-field select {
  width: 100%;
  height: 52px;
  padding: 14px 20px;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 24px;
  color: var(--text-dark);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.15s ease;
}
.form-field input::placeholder { color: var(--text-muted); }
.form-field input:focus,
.form-field select:focus { border-color: var(--accent); }

/* Select with chevron */
.form-field--select select {
  padding-right: 48px;
  cursor: pointer;
  color: var(--text-muted);
}
.form-field--select select.has-value { color: var(--text-dark); }
.form-field--select select option { background: #fff; color: var(--text-dark); }
.select-chevron {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-body);
}

/* Right: phone mockup + floating badges */
/* ── Waitlist phone mockup ── */
.waitlist__phone {
  position: absolute;
  right: 40px;
  bottom: 60px;
  width: 320px;
  height: 680px;
  pointer-events: none;
}

/* App screenshot */
.wl-iphone {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 240px;
  height: auto;
  display: block;
  border-radius: 28px;
  transform: rotate(-5deg);
  transform-origin: bottom right;
  box-shadow:
    -16px 16px 52px rgba(0,0,0,0.45),
     -4px  4px 16px rgba(0,0,0,0.18);
}

/* Shared badge base */
.wl-badge {
  position: absolute;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  z-index: 2;
}

/* Badge 1 — teal (Penningwijs logo) — center-left */
.wl-badge--pw {
  width: 76px;
  height: 76px;
  background: #45BF9F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Badge 2 — white (coin-piles) — above the phone, top area */
.wl-badge--coins {
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg, #ffffff 0%, #ebebeb 100%);
  right: 60px;
  top: 60px;
}

/* Badge 3 — white (AI icon) — lower-left */
.wl-badge--ai {
  width: 76px;
  height: 76px;
  background: linear-gradient(145deg, #ffffff 0%, #ebebeb 100%);
  left: 20px;
  bottom: 160px;
}


/* ════════════════════════════════════════════════════════
   FOOTER
   Blue (#566FB3), 4 columns
   ════════════════════════════════════════════════════════ */
.footer {
  background: var(--brand-blue);
  padding: 0;
}
.footer__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  padding: 60px 84px 26px;
  min-height: 373px;
}

/* Brand column */
.footer__brand {
  flex-shrink: 0;
  width: 325px;
  padding-right: 40px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
.footer__logo img { display: block; }

.footer__slogan {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin-bottom: auto;
  letter-spacing: -0.1px;
  max-width: 240px;
}

.footer__tagline {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  opacity: 0.8;
  margin-bottom: auto;
}
.footer__copyright {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  opacity: 0.8;
  margin-top: 220px; /* push to bottom */
}

/* Nav columns (Platform, Solutions, Support) */
.footer__nav,
.footer__contact {
  width: 217px;
  padding-left: 0;
}
.footer__nav-heading {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 34px; /* gap between heading and links: 60 + 34 offset */
}
.footer__nav ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__nav a,
.footer__contact a,
.footer__contact li span {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
.footer__contact li {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}


/* ════════════════════════════════════════════════════════
   RESPONSIVE — scale mockup at large tablet (≤ 1280px)
   Strategy: scale-down via transform so mockup stays
   pixel-perfect regardless of viewport width.
   ════════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  /* Scale the 1060×550 mockup down to fit ~800px viewport */
  .hero__desktop {
    width: 1060px;
    height: 550px;
    transform: translateX(-50%) scale(0.68);
    transform-origin: center top;
    top: 650px;
  }
  /* Scaled visual height: 550*0.68=374px, hang: 640+374-640=374… layout hang: 640+550-640=550-640+640=550 */
  .pain { padding-top: 340px; }

  .product__heading { font-size: 44px; line-height: 56px; }
  .product__florijn-card { width: 240px; left: -10px; }
  .product { padding: 80px 0 100px; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — tablet (≤ 1024px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { height: 640px; }
  .hero__desktop, .hero__spotlight { display: none; }
  .pain { padding-top: 80px; }
  .hero__content { left: 40px; width: 380px; top: 160px; align-items: flex-start; }
  .nav { left: 40px; right: 40px; }
  .hero__heading { font-size: 42px; line-height: 50px; }

  .pain__inner { padding: 0 40px; }
  .pain__grid { gap: 20px; }

  .product { padding: 60px 0 80px; }
  .product__inner { padding: 0 24px; gap: 40px; }
  .product__heading { font-size: 36px; line-height: 48px; }
  .product__sub { font-size: 16px; line-height: 26px; }
  .product__florijn-card { width: 220px; left: 0; font-size: 11px; }
  .features-row { flex-direction: column; gap: 32px; }
  .feature-divider { width: 100%; height: 1px; align-self: auto; margin: 0; }
  .feature-col { padding: 0; }

  .testimonials__grid { gap: 20px; padding: 0 40px; }
  .testimonial-card { width: auto; flex: 1; padding: 24px 28px; }
  .testimonial-card blockquote p { font-size: 18px; }

  .waitlist__text { left: 40px; width: 240px; }
  .waitlist__form-card { width: 440px; }
  .waitlist__phone { display: none; }

  .footer__inner { padding: 60px 40px 26px; gap: 0; }
  .footer__brand { width: 280px; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — mobile (≤ 768px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero {
    margin: 16px;
    height: auto;
    min-height: 580px;
    padding-bottom: 80px;
    overflow: hidden;
  }
  .nav { left: 12px; right: 12px; top: 12px; padding: 8px 8px 8px 16px; gap: 0; }
  .nav__links { display: none; }
  .nav__logo { width: auto; }

  .hero__content {
    left: 20px; right: 20px; width: auto; top: 120px;
    align-items: flex-start; gap: 16px;
  }
  .hero__heading { font-size: 36px; line-height: 44px; text-align: left; }
  .hero__sub { width: 100%; font-size: 15px; text-align: left; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { text-align: center; }

  .pain { padding: 80px 0 60px; }
  .pain__inner { padding: 0 20px; }
  .pain__heading { font-size: 28px; line-height: 38px; margin-bottom: 40px; }
  .pain__grid { flex-direction: column; }
  .pain-card { width: 100%; flex: none; }

  .product { padding: 60px 0; }
  .product__inner { padding: 0 16px; gap: 32px; }
  .product__heading { font-size: 30px; line-height: 40px; }
  .product__sub { font-size: 15px; }
  .product__florijn-card { display: none; }
  .features-row { flex-direction: column; gap: 28px; }
  .feature-divider { width: 100%; height: 1px; align-self: auto; margin: 0; }
  .feature-col { padding: 0; }

  .testimonials { padding: 80px 0; }
  .testimonials__header { padding: 0 20px; margin-bottom: 40px; }
  .testimonials__header h2 { font-size: 28px; }
  .testimonials__grid { padding: 8px 4px 16px; gap: 16px; }
  .testimonial-card { width: min(calc(100vw - 48px), 440px); flex-direction: column; }
  .carousel-btn { display: none; }
  .testimonial-card blockquote p { font-size: 16px; }

  .waitlist { height: auto; padding-bottom: 60px; }
  .waitlist__circles { display: none; }
  .waitlist__badge { display: none; }
  .waitlist__text { position: static; width: auto; padding: 60px 20px 40px; }
  .waitlist__form-card {
    position: static;
    transform: none;
    bottom: auto;
    width: auto;
    margin: 0 20px;
    border-radius: 16px;
  }

  .footer__inner { flex-direction: column; padding: 48px 20px 32px; gap: 40px; }
  .footer__brand { width: auto; padding-right: 0; }
  .footer__copyright { margin-top: 24px; }
  .footer__nav, .footer__contact { width: auto; }
}

/* ════════════════════════════════════════════════════════
   PRINT
   ════════════════════════════════════════════════════════ */
@media print {
  .hero__blur, .hero__desktop, .waitlist__circles, .waitlist__badge { display: none; }
  body { background: white; }
  .page { max-width: none; }
}
