* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

:root {
  /* Bromly huisstijl - donkerblauw met beige accent.
     De variabelenamen blijven hetzelfde zodat de rest van de CSS werkt;
     alleen de waarden zijn omgezet naar de Bromly-kleuren. */
  --orange: #ffe2c8;          /* accent: beige i.p.v. oranje */
  --orange-light: #2a3343;    /* lichte-accent-vlakken -> donkere card-tint */
  --orange-dark: #ffe2c8;     /* donker accent -> beige (op donkere bg) */
  --ink: #ffffff;             /* hoofdtekst -> wit */
  --ink-soft: #cbd5e1;        /* zachte tekst -> lichtgrijs */
  --ink-muted: #94a3b8;       /* gedempte tekst -> grijs */
  --bg-page: #0f172a;         /* paginabg -> donkerblauw */
  --bg-card: #1e293b;         /* card-bg -> donkere card */
  --border: rgba(255,255,255,0.08);
  --green: #34C759;
  --blue: #38bdf8;
  --premium: #ffe2c8;         /* premium-accent -> beige */
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-page);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* === HERO === */
.hero { text-align: center; margin-bottom: 56px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-light);
  color: var(--orange-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: ping 2s ease-in-out infinite;
}

@keyframes ping {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .highlight { color: var(--orange); }

.hero p.subtitle {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-num { font-size: 28px; font-weight: 700; color: var(--ink); line-height: 1; }
.stat-num.orange { color: var(--orange); }
.stat-label {
  font-size: 12px; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-top: 4px;
}

/* === HERO CTA === */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero-btn-primary {
  background: var(--orange);
  color: #0f172a;
  box-shadow: 0 8px 20px -6px rgba(255,226,200,0.4);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(255,226,200,0.5);
}

.hero-btn-secondary {
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  color: var(--orange);
}

.hero-cta-note {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 14px;
}

/* === SECTIONS === */
.section { margin-bottom: 72px; }

.section-heading { text-align: center; margin-bottom: 40px; }

.section-heading h2 {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.section-heading p {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
}

/* === TIER TABS === */
.tier-tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: var(--bg-card);
  border-radius: 14px;
  width: fit-content;
  margin: 0 auto 32px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.tier-tab {
  padding: 10px 20px;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink-muted);
  font-family: inherit;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tier-tab:hover { color: var(--ink); }

.tier-tab.active.starter { background: var(--orange-light); color: var(--orange-dark); }
.tier-tab.active.pro { background: var(--orange); color: #0f172a; }
.tier-tab.active.premium { background: #ffe2c8; color: #0f172a; }

.tier-tab .price-tag {
  font-size: 12px;
  opacity: 0.75;
  font-weight: 500;
}

/* === TIER VIEW === */
.tier-view { display: none; }
.tier-view.active { display: block; animation: fadeIn 0.3s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === TIER HEADER === */
.tier-header {
  text-align: center;
  margin-bottom: 32px;
}

.tier-name {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.tier-name .name-starter { color: var(--orange-dark); }
.tier-name .name-pro { color: var(--orange); }
.tier-name .name-premium { color: var(--premium); }

.tier-tagline {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 18px;
}

.tier-pricing {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.tier-pricing .intro-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
}

.tier-pricing .intro-label {
  font-size: 12px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tier-pricing .divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

.tier-pricing .standard-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.tier-pricing .standard-label {
  font-size: 12px;
  color: var(--ink-muted);
}

.vat-note {
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 8px;
  letter-spacing: 0.3px;
}

.pricing-card-vat {
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 2px;
}

/* === SCENES GRID === */
.scenes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}

.scene { text-align: center; }

.scene-frame {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.phone {
  position: relative;
  width: 260px;
  border-radius: 36px;
  overflow: hidden;
  background: #000;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.04),
    0 20px 50px -10px rgba(0,0,0,0.18),
    0 8px 20px -5px rgba(0,0,0,0.08);
}

.phone-screen {
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 1320 / 2868;
  background: #f5f1ea;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* === OVERLAYS === */
.overlay {
  position: absolute;
  pointer-events: none;
}

/* PIN - kaart */
.pin-marker {
  width: 11%;
  aspect-ratio: 1;
  background: var(--orange);
  border: 3px solid white;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255,226,200,0.35);
}

.pin-marker.featured { width: 14%; }
.pin-marker.premium-pin {
  background: var(--premium);
  box-shadow: 0 4px 16px rgba(255,226,200,0.4);
}

.pin-marker svg {
  width: 50%;
  height: 50%;
  transform: rotate(45deg);
  color: #0f172a;
}

.pin-pulse {
  position: absolute;
  aspect-ratio: 1;
  background: rgba(255,226,200,0.25);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.pin-pulse.premium-pulse { background: rgba(255,226,200,0.3); }

@keyframes pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.7; }
  50% { transform: scale(1.4); opacity: 0; }
}

/* Profielkaart */
.popup-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.04);
  width: 82%;
  text-align: left;
}

.popup-row { display: flex; align-items: flex-start; gap: 10px; }

.popup-icon {
  width: 38px;
  height: 38px;
  background: var(--orange-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.popup-icon.premium { background: rgba(255,226,200,0.25); }
.popup-icon.premium svg { color: #b8893f; }

.popup-icon svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.popup-content { flex: 1; min-width: 0; }

.popup-title {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.popup-title .name { font-size: 13px; font-weight: 700; color: #0f172a; }

.popup-badge {
  font-size: 9px;
  padding: 2px 6px;
  background: var(--orange);
  color: #0f172a;
  border-radius: 4px;
  font-weight: 600;
}

.popup-badge.premium-badge { background: var(--premium); }

.popup-meta {
  font-size: 10px;
  color: var(--ink-muted);
  margin-top: 2px;
}

.popup-rating {
  font-size: 10px;
  color: var(--ink-soft);
  margin-top: 3px;
}

.popup-rating .star { color: #fbbf24; }

.popup-actions {
  display: flex;
  gap: 5px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.popup-btn {
  flex: 1;
  text-align: center;
  padding: 5px 4px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 600;
}

.popup-btn.primary { background: #ffe2c8; color: #0f172a; }
.popup-btn.secondary { background: #e2e8f0; color: #0f172a; }
.popup-btn.book { background: #0f172a; color: #ffffff; }

/* Photo strip in Premium popup */
.popup-photos {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.popup-photo {
  flex: 1;
  height: 32px;
  border-radius: 5px;
  background: linear-gradient(135deg, #ffe2c8, #fcd9b6);
}

.popup-photo:nth-child(2) { background: linear-gradient(135deg, #fcd9b6, #e8c9a8); }
.popup-photo:nth-child(3) { background: linear-gradient(135deg, #e8c9a8, #cbb89a); }

/* "Aanbevolen" Route plannen block */
.recommend-block {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,226,200,0.15);
  text-align: left;
}

.recommend-block.premium-recommend {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,226,200,0.2);
}

.recommend-label {
  font-size: 9px;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.recommend-label.premium-label { color: var(--premium); }

.recommend-label::before {
  content: '';
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
}

/* Bestemming-label op kaart tijdens rit */
.destination-label {
  position: absolute;
  background: var(--orange);
  color: #0f172a;
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255,226,200,0.35);
}

.destination-label.premium-dest { background: var(--premium); }

.destination-label svg { width: 11px; height: 11px; }

.destination-label::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 12px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--orange);
}

.destination-label.premium-dest::after { border-top-color: var(--premium); }

/* Push notification overlay */
.push-notification {
  position: absolute;
  top: 5%;
  left: 4%;
  right: 4%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.push-icon {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.push-icon.premium-push { background: var(--premium); }

.push-icon svg {
  width: 16px;
  height: 16px;
  color: #0f172a;
}

.push-content { flex: 1; min-width: 0; }

.push-row1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.push-app {
  font-size: 9px;
  font-weight: 700;
  color: var(--ink);
}

.push-time {
  font-size: 9px;
  color: var(--ink-muted);
}

.push-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1px;
}

.push-body {
  font-size: 10px;
  color: var(--ink-soft);
  line-height: 1.3;
}

/* Chip overlay op chips screenshot */
.chip-highlight {
  position: absolute;
  border-radius: 24px;
  border: 3px solid var(--orange);
  box-shadow: 0 0 0 4px rgba(255,226,200,0.2);
  animation: chip-glow 2.5s ease-in-out infinite;
}

@keyframes chip-glow {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,226,200,0.2); }
  50% { box-shadow: 0 0 0 10px rgba(255,226,200,0); }
}

.chip-pin-label {
  position: absolute;
  background: var(--orange);
  color: #0f172a;
  padding: 4px 9px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255,226,200,0.35);
}

.chip-pin-label::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid var(--orange);
}

/* Banner overlay op what's new */
.partner-banner {
  position: absolute;
  top: 5%;
  left: 4%;
  right: 4%;
  background: linear-gradient(135deg, #ffe2c8, #fff0e0);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  text-align: left;
}

.partner-banner.premium-banner {
  background: linear-gradient(135deg, #1e293b, #2a3343);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
/* De premium-banner is donker -> tekst/icoon weer licht maken,
   anders valt de (voor de beige banner bedoelde) donkere tekst weg. */
.partner-banner.premium-banner .partner-text { color: #ffffff; }
.partner-banner.premium-banner .partner-icon { background: rgba(255,255,255,0.12); }
.partner-banner.premium-banner .partner-icon svg { color: #ffe2c8; }

.partner-icon {
  width: 38px;
  height: 38px;
  background: rgba(15,23,42,0.12);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-icon svg {
  width: 20px;
  height: 20px;
  color: #0f172a;
}

.partner-text {
  flex: 1;
  min-width: 0;
  color: #0f172a;
}

.partner-title {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 2px;
}

.partner-subtitle {
  font-size: 10px;
  opacity: 0.95;
  line-height: 1.4;
}

/* === SCENE LABEL === */
.scene-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--orange-light);
  color: var(--orange-dark);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.scene-num.pro-num { background: #ffe2c8; color: #0f172a; }
.scene-num.premium-num { background: rgba(255,226,200,0.15); color: #ffe2c8; }

.scene-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.scene-desc {
  font-size: 13px;
  color: var(--ink-soft);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.5;
}

/* === TIER FEATURES === */
.tier-features {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  margin-top: 32px;
}

.tier-features-title {
  font-size: 14px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-check {
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-check svg { width: 13px; height: 13px; color: white; }

.feature-item-text {
  flex: 1;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.4;
}

.feature-item-text strong { font-weight: 700; }

.feature-item-text small {
  display: block;
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 2px;
  font-weight: 400;
}

/* === PRICING BAR === */
.pricing-summary {
  background: linear-gradient(135deg, #1e293b 0%, #2a3343 100%);
  border-radius: 24px;
  padding: 40px 32px;
  margin: 72px 0;
  text-align: center;
}

.pricing-summary h2 {
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-summary .lead {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 32px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  position: relative;
  border: 1px solid var(--border);
}

.pricing-card.recommend { border: 2px solid var(--orange); }

.pricing-card-recommend-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--orange);
  color: #0f172a;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pricing-card-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.pricing-card-name.starter-name { color: var(--orange-dark); }
.pricing-card-name.pro-name { color: var(--orange); }
.pricing-card-name.premium-name { color: var(--premium); }

.pricing-card-intro {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.pricing-card-amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.pricing-card-period {
  font-size: 12px;
  color: var(--ink-muted);
}

.pricing-card-after {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.pricing-card-after strong {
  color: var(--ink);
  font-weight: 600;
}

.pricing-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  margin-top: 6px;
  letter-spacing: 0.3px;
}

/* === BENEFITS === */
.benefits {
  margin: 72px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-2px);
  border-color: var(--orange-light);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.benefit-text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* === MINI CTA === */
.mini-cta {
  background: var(--orange-light);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 56px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.mini-cta-text {
  flex: 1;
  min-width: 240px;
}

.mini-cta-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.mini-cta-sub {
  font-size: 13px;
  color: var(--orange-dark);
}

.mini-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #0f172a;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease;
  white-space: nowrap;
}

.mini-cta-button:hover {
  transform: translateY(-2px);
}

/* === HOW IT WORKS === */
.how-it-works {
  margin: 72px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.step-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  position: relative;
}

.step-number {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-light);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-text {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* === CTA === */
.cta {
  text-align: center;
  background: #1e293b;
  color: #ffffff;
  border-radius: 24px;
  padding: 56px 32px;
  margin-top: 56px;
}

.cta h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.cta p {
  font-size: 16px;
  opacity: 0.8;
  max-width: 480px;
  margin: 0 auto 32px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #0f172a;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease;
}

.cta-button:hover { transform: translateY(-2px); }

.cta-contact {
  margin-top: 24px;
  font-size: 13px;
  opacity: 0.6;
}

/* === MAIL TOAST === */
.mail-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1e293b;
  color: white;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100vw - 40px);
}

.mail-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.mail-toast svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mail-toast .toast-email {
  font-weight: 700;
  color: var(--orange-light);
}

/* === RESPONSIVE === */
@media (max-width: 720px) {
  .container { padding: 32px 16px 48px; }
  .scenes { grid-template-columns: 1fr; gap: 40px; }
  .phone { width: 240px; }
  .pricing-summary, .cta, .tier-features { padding: 28px 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 24px; }
  .tier-tabs { width: 100%; }
  .tier-tab { flex: 1; justify-content: center; padding: 10px 8px; font-size: 12px; }
  .tier-tab .price-tag { display: none; }
}

/* === Bromly huisstijl: tekst binnen de witte popup-kaartjes (map-app UI)
   moet donker blijven. De --ink-variabelen zijn nu licht (voor de donkere
   pagina), dus binnen deze witte kaarten zetten we de tekst expliciet. === */
.popup-card,
.popup-card .popup-meta,
.popup-card .popup-rating,
.popup-card .popup-sub,
.popup-card .popup-subtitle { color: #475569; }
.popup-card .popup-title,
.popup-card .popup-title .name,
.popup-card strong { color: #0f172a; }


/* === Heading-tags reset: deze elementen waren <div> en zijn nu echte
   h1-h4 voor SEO. Browsers geven headings een margin-top; die halen we
   weg zodat de layout exact hetzelfde blijft als voorheen. === */
.hero h1,
.section-heading h2,
.benefit-title,
.step-title,
.tier-name,
.tier-features-title,
.pricing-summary h2,
.cta h2 { margin-top: 0; }

/* === Koppen expliciet wit ===
   Alle headings op de Bromly Ads-pagina hard op wit zetten. Ze erfden de
   kleur eerst van de body, maar een thema-reset kan headings zwart maken.
   Met een expliciete regel valt er niets meer terug op zwart. */
.bromly-ads-page h1,
.bromly-ads-page h2,
.bromly-ads-page h3,
.bromly-ads-page .hero h1,
.bromly-ads-page .section-heading h2,
.bromly-ads-page .benefit-title,
.bromly-ads-page .step-title,
.bromly-ads-page .tier-name,
.bromly-ads-page .scene-title,
.bromly-ads-page .cta h2,
.bromly-ads-page .pricing-summary h2 {
  color: #ffffff;
}
/* Het beige accentwoord in de H1 ('18.000+ scooterrijders') blijft beige. */
.bromly-ads-page .hero h1 .highlight {
  color: #ffe2c8;
}
/* H4-subkopjes ('Wat zit er in...') zijn gedempt grijs, zoals bedoeld. */
.bromly-ads-page .tier-features-title {
  color: #94a3b8;
}

/* Extra zekerheid: dezelfde kop-kleuren, maar zonder afhankelijkheid van
   de body-class. Deze classes bestaan alleen op de Bromly Ads-pagina,
   dus dit raakt geen andere pagina's. */
.hero h1,
.section-heading h2,
.benefit-title,
.step-title,
.tier-name,
.scene-title,
.cta h2,
.pricing-summary h2 { color: #ffffff; }

.hero h1 .highlight { color: #ffe2c8; }
.tier-features-title { color: #94a3b8; }

/* Allerlaatste vangnet: elke h1/h2/h3 binnen de Bromly Ads-container wit.
   .container is de wrapper rond de hele pagina-inhoud. */
.container h1,
.container h2,
.container h3 { color: #ffffff; }
.container .highlight,
.container .hero h1 .highlight { color: #ffe2c8; }
.container .tier-features-title { color: #94a3b8; }

/* Tekst binnen de (lichte) push-notificatie-mockup in de telefoon
   moet donker zijn - de --ink-variabelen zijn nu licht voor de
   donkere pagina, dus hier expliciet donker zetten. */
.push-notification .push-app,
.push-notification .push-title { color: #0f172a; }
.push-notification .push-time,
.push-notification .push-body { color: #475569; }

/* recommend-label staat op een witte mockup-kaart -> beige is daar
   onleesbaar, dus een donkere accentkleur gebruiken. */
.recommend-block .recommend-label { color: #b8893f; }
.recommend-block .recommend-label.premium-label { color: #b8893f; }