/* ============================================================
   PostLeads.nl -- Design System v4.0
   B2B Local Lead Generation Platform
   ============================================================ */

/* -----------------------------------------------------------
   1. CUSTOM PROPERTIES
   ----------------------------------------------------------- */
:root {
  /* Colors */
  --navy:         #0B1F3A;
  --navy-dark:    #071629;
  --navy-mid:     #152D4A;
  --navy-light:   #1E3A5F;
  --orange:       #F26D21;
  --orange-dark:  #D45B15;
  --orange-light: #FFF4ED;
  --green:        #22C55E;
  --green-light:  #F0FDF4;
  --white:        #FFFFFF;
  --gray-50:      #F8FAFC;
  --gray-100:     #F1F5F9;
  --gray-200:     #E2E8F0;
  --gray-300:     #CBD5E1;
  --gray-400:     #94A3B8;
  --gray-500:     #64748B;
  --gray-700:     #334155;
  --gray-900:     #0F172A;
  --text:         #1E293B;
  --text-light:   #475569;

  /* Typography */
  --font-display: 'Manrope', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --s1:  4px;
  --s2:  8px;
  --s3:  12px;
  --s4:  16px;
  --s5:  20px;
  --s6:  24px;
  --s8:  32px;
  --s10: 40px;
  --s12: 48px;
  --s16: 64px;
  --s20: 80px;
  --s24: 96px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.16);

  /* Radius */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-full: 9999px;
}

/* -----------------------------------------------------------
   2. BASE & RESET
   ----------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* -----------------------------------------------------------
   3. LAYOUT
   ----------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s6);
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--s6);
}

/* -----------------------------------------------------------
   4. NAVIGATION
   ----------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  height: 68px;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s6);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.nav__logo .accent {
  color: var(--orange);
}

.nav__links {
  display: flex;
  gap: var(--s8);
}

.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.15s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--navy);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--s4);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--s2);
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.2s;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--gray-200);
  padding: var(--s6);
  flex-direction: column;
  gap: var(--s4);
  z-index: 99;
  box-shadow: var(--shadow-lg);
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--gray-100);
}

.nav__mobile a:last-child {
  border-bottom: none;
}

/* -----------------------------------------------------------
   5. BUTTONS
   ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  border: none;
  font-size: 15px;
  padding: 10px 20px;
  line-height: 1;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: white;
}

.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(242, 109, 33, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-300);
}

.btn--outline:hover {
  border-color: var(--navy);
  background: var(--gray-50);
}

.btn--white {
  background: white;
  color: var(--navy);
}

.btn--white:hover {
  background: var(--gray-50);
}

.btn--ghost {
  background: transparent;
  color: var(--gray-700);
}

.btn--ghost:hover {
  color: var(--navy);
}

.btn--lg {
  font-size: 16px;
  padding: 14px 28px;
}

.btn--sm {
  font-size: 13px;
  padding: 7px 14px;
}

/* -----------------------------------------------------------
   6. TYPOGRAPHY
   ----------------------------------------------------------- */
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--s4);
}

.label-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.label-tag--light {
  color: rgba(255, 255, 255, 0.6);
}

.label-tag--light::before {
  background: var(--orange);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--navy);
}

h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
}

h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
}

h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
}

h4 {
  font-size: 17px;
  font-weight: 700;
}

p {
  color: var(--text-light);
  line-height: 1.75;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 560px;
}

.text-white { color: white !important; }

.text-white p,
.text-white h1,
.text-white h2,
.text-white h3 {
  color: white;
}

.text-muted { color: var(--gray-400) !important; }

/* -----------------------------------------------------------
   7. SECTION SYSTEM
   ----------------------------------------------------------- */
.section {
  padding: var(--s24) 0;
}

.section--sm {
  padding: var(--s16) 0;
}

.section--light {
  background: var(--gray-50);
}

.section--dark {
  background: var(--navy);
}

.section--darker {
  background: var(--navy-dark);
}

.section-header {
  max-width: 680px;
  margin-bottom: var(--s16);
}

.section-header--center {
  text-align: center;
  margin: 0 auto var(--s16);
}

.section-header h2 {
  margin-top: var(--s3);
}

.section-header p {
  margin-top: var(--s5);
  font-size: 17px;
}

/* -----------------------------------------------------------
   8. GRID UTILITIES
   ----------------------------------------------------------- */
.grid {
  display: grid;
  gap: var(--s8);
}

.grid--2   { grid-template-columns: repeat(2, 1fr); }
.grid--3   { grid-template-columns: repeat(3, 1fr); }
.grid--4   { grid-template-columns: repeat(4, 1fr); }
.grid--2-3 { grid-template-columns: 2fr 3fr; }
.grid--3-2 { grid-template-columns: 3fr 2fr; }

@media (max-width: 768px) {
  .grid--2,
  .grid--3,
  .grid--4,
  .grid--2-3,
  .grid--3-2 {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------------------------
   9. CARDS
   ----------------------------------------------------------- */
.card {
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  padding: var(--s8);
}

.card--hover {
  transition: box-shadow 0.2s, transform 0.2s;
}

.card--hover:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card--dark {
  background: var(--navy-mid);
  border-color: rgba(255, 255, 255, 0.08);
}

/* -----------------------------------------------------------
   10. HERO
   ----------------------------------------------------------- */
.hero {
  background: white;
  padding: var(--s20) 0 var(--s16);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(242, 109, 33, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content h1 {
  margin-bottom: var(--s6);
}

.hero__content .lead {
  margin-bottom: var(--s8);
}

.hero__actions {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-bottom: var(--s8);
}

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
}

.hero__trust-item::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------------------------
   11. PLATFORM MOCKUP
   ----------------------------------------------------------- */
.platform-window {
  background: var(--navy-dark);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.06);
  font-family: var(--font-body);
}

.platform-window__bar {
  background: var(--navy-mid);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.platform-window__dots {
  display: flex;
  gap: 6px;
}

.platform-window__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.platform-window__dot--red    { background: #FF5F57; }
.platform-window__dot--yellow { background: #FFBD2E; }
.platform-window__dot--green  { background: #28CA41; }

.platform-window__title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  flex: 1;
  text-align: center;
}

.platform-window__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* KPI row */
.platform-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.platform-kpi {
  background: var(--navy-mid);
  border-radius: 8px;
  padding: 10px 12px;
}

.platform-kpi__label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.platform-kpi__value {
  font-size: 18px;
  font-weight: 800;
  color: white;
  font-family: var(--font-display);
  letter-spacing: -0.5px;
}

.platform-kpi__value--orange { color: var(--orange); }
.platform-kpi__value--green  { color: var(--green); }

/* Lead items */
.platform-lead {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-mid);
  border-radius: 8px;
  padding: 10px 12px;
}

.platform-lead__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.platform-lead__avatar--blue { background: #3B82F6; }

.platform-lead__info {
  flex: 1;
  min-width: 0;
}

.platform-lead__name {
  font-size: 13px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.platform-lead__detail {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.platform-lead__badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.platform-lead__badge--new     { background: rgba(34, 197, 94, 0.2);  color: var(--green); }
.platform-lead__badge--pending { background: rgba(242, 109, 33, 0.2); color: var(--orange); }

/* Map placeholder */
.platform-map {
  background: linear-gradient(135deg, #0F2847 0%, #1a3a5c 100%);
  border-radius: 8px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.platform-map::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg,   transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 21px),
    repeating-linear-gradient(90deg,  transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 21px);
}

.platform-map__label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  z-index: 1;
}

.platform-region-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  z-index: 2;
}

.platform-region-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(242, 109, 33, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.platform-ticker {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 4px 0 2px;
}

/* -----------------------------------------------------------
   12. STATS BAR
   ----------------------------------------------------------- */
.stats-bar {
  background: var(--navy);
  padding: var(--s12) 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s8);
  text-align: center;
}

.stats-bar__value {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.stats-bar__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s6);
  }
}

/* -----------------------------------------------------------
   13. CHECK LIST
   ----------------------------------------------------------- */
.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.check-list li {
  display: flex;
  gap: var(--s4);
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  align-items: flex-start;
}

.check-list li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

.check-list--dark li {
  color: rgba(255, 255, 255, 0.7);
}

/* -----------------------------------------------------------
   14. FEATURE ITEMS
   ----------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s6);
}

.feature-item {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
}

.feature-item__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--orange);
  font-family: var(--font-display);
}

.feature-item__icon--blue  { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
.feature-item__icon--green { background: var(--green-light);       color: var(--green); }
.feature-item__icon--gray  { background: var(--gray-100);          color: var(--gray-700); }

.feature-item__body h4 {
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 15px;
}

.feature-item__body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------------------------
   15. PROCESS STEPS
   ----------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.step-card {
  text-align: center;
}

.step-card__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: white;
  margin: 0 auto var(--s5);
  position: relative;
  z-index: 1;
}

.step-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: var(--s3);
}

.step-card__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------------------------
   16. BRANCH CARDS
   ----------------------------------------------------------- */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}

.branch-card {
  display: block;
  padding: var(--s6);
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  text-decoration: none;
  transition: all 0.2s;
}

.branch-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--orange);
}

.branch-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: var(--orange);
  font-family: var(--font-display);
  margin-bottom: var(--s4);
}

.branch-card h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: var(--s3);
}

.branch-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: var(--s4);
}

.branch-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 1024px) {
  .branch-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .branch-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .branch-grid { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------
   17. WHY PHYSICAL MAIL
   ----------------------------------------------------------- */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s6);
}

.reason-item {
  display: flex;
  gap: var(--s5);
  align-items: flex-start;
}

.reason-item__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  font-weight: 700;
  color: white;
  font-family: var(--font-display);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.reason-item h4 {
  color: white;
  margin-bottom: 6px;
  font-size: 16px;
}

.reason-item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 600px) {
  .reason-grid {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------------------------
   18. TRUST / CASE
   ----------------------------------------------------------- */
.trust-card {
  background: var(--navy-mid);
  border-radius: var(--r-xl);
  padding: var(--s10);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-stat {
  text-align: center;
  padding: var(--s5);
}

.trust-stat__value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -1px;
  line-height: 1;
}

.trust-stat__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

.case-card {
  background: white;
  border-radius: var(--r-xl);
  padding: var(--s10);
  border: 1px solid var(--gray-200);
}

.case-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--s6);
  gap: var(--s4);
}

.case-badge {
  background: var(--orange-light);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s6);
}

.case-stat {
  text-align: center;
  background: var(--gray-50);
  border-radius: var(--r-md);
  padding: var(--s5) var(--s4);
}

.case-stat__value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.case-stat__label {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* -----------------------------------------------------------
   19. HIGHLIGHT BOX
   ----------------------------------------------------------- */
.highlight-box {
  background: var(--navy-mid);
  border-radius: var(--r-xl);
  padding: var(--s8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-box h3 {
  color: white;
  margin-bottom: var(--s4);
}

.highlight-box p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: var(--s4);
}

/* -----------------------------------------------------------
   20. FAQ
   ----------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  padding: var(--s6) var(--s8);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-family: var(--font-display);
}

.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--gray-400);
  transition: transform 0.2s;
  line-height: 1;
  flex-shrink: 0;
  margin-left: var(--s4);
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
  color: var(--orange);
}

.faq-a {
  display: none;
  padding: 0 var(--s8) var(--s6);
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.75;
}

.faq-item.open .faq-a {
  display: block;
}

/* -----------------------------------------------------------
   21. CTA SECTION
   ----------------------------------------------------------- */
.cta-section {
  background: var(--orange);
  padding: var(--s20) 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: var(--s5);
  letter-spacing: -1px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  margin-bottom: var(--s8);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* -----------------------------------------------------------
   22. PAGE HERO (inner pages)
   ----------------------------------------------------------- */
.page-hero {
  background: var(--navy);
  padding: var(--s20) 0 var(--s16);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--s5);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.15s;
}

.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.25);
}

.page-hero__badge {
  display: inline-block;
  background: rgba(242, 109, 33, 0.2);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--s5);
  border: 1px solid rgba(242, 109, 33, 0.3);
}

.page-hero h1 {
  color: white;
  max-width: 640px;
  margin-bottom: var(--s6);
}

.page-hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
  max-width: 560px;
  line-height: 1.7;
}

/* -----------------------------------------------------------
   23. FORM
   ----------------------------------------------------------- */
.form-section {
  background: var(--gray-50);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s5);
  margin-bottom: var(--s6);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

input,
select,
textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 11px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
  outline: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 109, 33, 0.12);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: var(--r-md);
  padding: 15px 32px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.15s;
}

.form-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* -----------------------------------------------------------
   24. FOOTER
   ----------------------------------------------------------- */
footer {
  background: var(--navy-dark);
  padding: var(--s20) 0 var(--s8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s16);
  margin-bottom: var(--s16);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: var(--s4);
  display: block;
}

.footer-logo .accent {
  color: var(--orange);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: var(--s5);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--s3);
  transition: color 0.15s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--s6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.15s;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s8);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--s3);
    text-align: center;
  }
}

/* -----------------------------------------------------------
   25. ANIMATIONS
   ----------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* -----------------------------------------------------------
   26. RESPONSIVE OVERRIDES
   ----------------------------------------------------------- */
@media (max-width: 768px) {
  .section {
    padding: var(--s16) 0;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero {
    padding: var(--s12) 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-kpi-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 32px; }
  h2 { font-size: 26px; }

  .case-stats {
    grid-template-columns: 1fr;
  }
}


/* ================================================
   TRUST / SOCIAL PROOF SECTION
   ================================================ */

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.trust-card-item {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}

.trust-card-item:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.trust-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.trust-visual--card { background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%); }
.trust-visual--regio { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); }
.trust-visual--campagne { background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%); }

.trust-card-item__body {
  padding: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.trust-card-item__body h3 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.trust-card-item__body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Postcard mockup */
.postcard-mockup {
  width: 100%;
  max-width: 280px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.08);
  overflow: hidden;
}

.postcard-mockup__front {
  display: flex;
  height: 140px;
}

.postcard-mockup__stripe {
  width: 6px;
  background: var(--orange);
  flex-shrink: 0;
}

.postcard-mockup__body {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.postcard-mockup__company {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.postcard-mockup__tagline {
  display: block;
  font-size: 10px;
  color: var(--gray-500);
  margin-top: 2px;
}

.postcard-mockup__offer {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.postcard-mockup__offer span:first-child {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-display);
}

.postcard-mockup__code {
  font-size: 9px;
  color: var(--gray-400);
  letter-spacing: 0.5px;
  font-weight: 600;
}

.postcard-mockup__address-side {
  width: 80px;
  padding: 10px 12px 10px 10px;
  border-left: 1px dashed var(--gray-200);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.postcard-mockup__stamp {
  width: 28px;
  height: 28px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 3px;
  align-self: flex-end;
}

.postcard-mockup__lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.postcard-mockup__lines span {
  display: block;
  height: 2px;
  background: var(--gray-200);
  border-radius: 2px;
  width: 100%;
}

/* Region mockup */
.regio-mockup {
  width: 100%;
  max-width: 240px;
  background: white;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.regio-mockup__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.regio-mockup__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 10px;
}

.regio-mockup__cell {
  background: var(--gray-100);
  border-radius: 4px;
  padding: 5px 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-400);
  text-align: center;
}

.regio-mockup__cell--active {
  background: rgba(34,197,94,0.12);
  color: #16a34a;
  font-weight: 700;
}

.regio-mockup__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-50);
  border-radius: 6px;
  padding: 6px 8px;
}

.regio-mockup__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* Campaign mockup */
.campagne-mockup {
  width: 100%;
  max-width: 260px;
  background: white;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  font-size: 12px;
}

.campagne-mockup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}

.campagne-mockup__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}

.campagne-mockup__status {
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 3px 8px;
  border-radius: 20px;
}

.campagne-mockup__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

.campagne-mockup__key {
  color: var(--gray-400);
  font-size: 11px;
}

.campagne-mockup__val {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  max-width: 140px;
}

.campagne-mockup__val--strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.campagne-mockup__val--green {
  color: var(--green);
  font-weight: 700;
}

.campagne-mockup__divider {
  height: 1px;
  background: var(--gray-100);
  margin: 8px 0;
}

.campagne-mockup__note {
  font-size: 10px;
  color: var(--gray-400);
  text-align: center;
}

/* Trust bar */
.trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.trust-bar__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 900px) {
  .trust-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 600px) {
  .trust-bar { gap: 1rem; justify-content: flex-start; }
  .trust-bar__item { white-space: normal; }
}


/* ================================================
   PRODUCT MOCKUP SECTIE
   ================================================ */

.product-section {
  background: white;
  padding: 7rem 0;
}

.product-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: center;
}

.product-split__text {
  max-width: 460px;
}

.product-split__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.product-mockup-img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 14px;
  box-shadow:
    0 40px 80px -20px rgba(15, 23, 42, 0.18),
    0 16px 36px -12px rgba(15, 23, 42, 0.10),
    0 2px 6px rgba(15, 23, 42, 0.04);
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1100px) {
  .product-section { padding: 5.5rem 0; }
  .product-split { gap: 4rem; }
}

@media (max-width: 900px) {
  .product-section { padding: 4.5rem 0; }
  .product-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .product-split__text { max-width: 100%; }
  .product-split__visual { order: -1; padding: 0; }
  .product-mockup-img { max-width: 520px; }
}

@media (max-width: 480px) {
  .product-mockup-img { max-width: 100%; }
}


/* ================================================
   USP STRIP (onder hero)
   ================================================ */
.usp-strip {
  background: var(--navy);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.usp-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}
.usp-strip__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.usp-strip__item strong {
  color: white;
  font-weight: 700;
}
.usp-strip__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  position: relative;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
}
.usp-strip__check::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}
@media (max-width: 900px) {
  .usp-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
  }
  .usp-strip__item { font-size: 13px; }
}
@media (max-width: 480px) {
  .usp-strip { padding: 1rem 0; }
  .usp-strip__grid { grid-template-columns: 1fr; gap: 0.75rem; }
}

/* ================================================
   HERO DASHBOARD — exclusief actief badge
   ================================================ */
.platform-exclusive-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(34,197,94,0.10) 0%, rgba(34,197,94,0.04) 100%);
  border: 1px solid rgba(34,197,94,0.20);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 12px;
}
.platform-exclusive-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.20);
  animation: pulse-dot 2s ease-in-out infinite;
}
.platform-exclusive-text {
  font-size: 12px;
  font-weight: 600;
  color: #15803d;
  letter-spacing: 0.01em;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.20); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.05); }
}

/* ================================================
   REGIONS STATUS GRID
   ================================================ */
.regions-status { background: white; }

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.region-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.region-card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
  transform: translateY(-2px);
}
.region-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 6px;
}
.region-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.region-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.region-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.region-card__badge--active {
  background: rgba(34,197,94,0.10);
  color: #15803d;
}
.region-card__badge--active .region-card__dot {
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.20);
}
.region-card__badge--limited {
  background: rgba(249,115,22,0.10);
  color: #c2410c;
}
.region-card__badge--limited .region-card__dot {
  background: #f97316;
  box-shadow: 0 0 0 2px rgba(249,115,22,0.20);
}
.region-card__badge--full {
  background: rgba(239,68,68,0.10);
  color: #b91c1c;
}
.region-card__badge--full .region-card__dot {
  background: #ef4444;
  box-shadow: 0 0 0 2px rgba(239,68,68,0.20);
}
.region-card__badge--open {
  background: rgba(59,130,246,0.10);
  color: #1d4ed8;
}
.region-card__badge--open .region-card__dot {
  background: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59,130,246,0.20);
}
.region-card--full { opacity: 0.78; }
.region-card__meta {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}
.regions-cta {
  text-align: center;
}
.regions-cta__note {
  margin-top: 1rem;
  font-size: 13px;
  color: var(--gray-500);
}
@media (max-width: 900px) {
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .regions-grid { grid-template-columns: 1fr; }
  .region-card { padding: 1rem 1.25rem; }
}

/* ================================================
   FOUNDER / WAAROM POSTLEADS
   ================================================ */
.founder-section {
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
}
.founder-card {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  padding: 3rem;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 2rem;
  align-items: start;
  box-shadow: 0 24px 60px -20px rgba(15,23,42,0.10);
}
.founder-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, #ea580c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 32px rgba(234,88,12,0.30);
}
.founder-card__body h2 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
}
.founder-card__body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-600, #475569);
}
.founder-card__sig {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.founder-card__sig strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--navy);
  font-weight: 800;
}
.founder-card__sig span {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
}
@media (max-width: 720px) {
  .founder-card {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
  }
  .founder-card__avatar { width: 72px; height: 72px; font-size: 26px; }
}

/* ================================================
   MOBILE polish — hero CTAs + spacing
   ================================================ */
@media (max-width: 640px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero__trust {
    gap: 0.5rem;
  }
  .hero__trust-item {
    font-size: 13px;
  }
  .section { padding: 3.5rem 0; }
  .section-header h2 { font-size: clamp(24px, 5vw, 32px); }
}


/* ================================================
   REGIO AANVRAGEN — trust strip + sidebar extras
   ================================================ */
.aanvragen-trust {
  background: white;
  border-bottom: 1px solid var(--gray-100);
  padding: 1.75rem 0;
}
.aanvragen-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.aanvragen-trust__num {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.aanvragen-trust__label {
  margin-top: 0.5rem;
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.45;
}
@media (max-width: 720px) {
  .aanvragen-trust__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

.aanvragen-mockup {
  background: linear-gradient(135deg, #fafbfc 0%, #f1f3f5 100%);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
}
.aanvragen-mockup img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 18px 42px -12px rgba(15,23,42,0.18), 0 6px 14px -6px rgba(15,23,42,0.10);
  display: block;
  margin: 0 auto;
}
.aanvragen-mockup__caption {
  margin-top: 0.875rem;
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.01em;
}

.aanvragen-exclusive {
  display: flex;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(242,109,33,0.08) 0%, rgba(242,109,33,0.03) 100%);
  border: 1px solid rgba(242,109,33,0.20);
  border-radius: 12px;
  padding: 1.25rem;
}
.aanvragen-exclusive__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--orange);
  position: relative;
  box-shadow: 0 6px 16px rgba(242,109,33,0.30);
}
.aanvragen-exclusive__icon::after {
  content: '';
  position: absolute;
  inset: 50% 50% auto auto;
  width: 14px;
  height: 8px;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  transform: translate(50%, -25%) rotate(-45deg);
}
.aanvragen-exclusive__body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: 800;
}
.aanvragen-exclusive__body p {
  font-size: 14px;
  color: var(--gray-600, #475569);
  line-height: 1.6;
  margin: 0;
}
