/* ============================================================
   esimbuitenland.nl — Stylesheet
   Kleurenschema: fris blauw/cyaan, wit, professioneel + vakantiegevoel
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@300;400;600;700&display=swap');

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --cyan:          #00C8E8;
  --cyan-dark:     #0099BB;
  --blue:          #0077B6;
  --blue-dark:     #005580;
  --navy:          #023E6A;
  --navy-deep:     #011F3A;
  --sky:           #AEE6F5;
  --sky-light:     #E8F7FC;
  --white:         #FFFFFF;
  --off-white:     #F8FCFF;
  --gray-50:       #F0F7FC;
  --gray-100:      #E2EFF8;
  --gray-200:      #C8DFEE;
  --gray-400:      #7BA8C4;
  --gray-600:      #4A7090;
  --gray-800:      #1E3A4A;
  --text:          #0D2B3E;
  --text-muted:    #4A7090;
  --success:       #0FAB6E;
  --warning:       #F59E0B;
  --danger:        #EF4444;
  --gradient:      linear-gradient(135deg, var(--navy) 0%, var(--blue) 50%, var(--cyan) 100%);
  --gradient-soft: linear-gradient(135deg, #E8F7FC 0%, #F0FAFF 100%);
  --shadow-sm:     0 1px 3px rgba(0,100,160,0.08), 0 1px 2px rgba(0,100,160,0.06);
  --shadow:        0 4px 16px rgba(0,100,160,0.12), 0 2px 6px rgba(0,100,160,0.08);
  --shadow-lg:     0 12px 40px rgba(0,100,160,0.18), 0 4px 12px rgba(0,100,160,0.12);
  --shadow-xl:     0 24px 64px rgba(0,100,160,0.22);
  --radius-sm:     8px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --transition:    all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:     'Sora', sans-serif;
  --font-body:     'Plus Jakarta Sans', sans-serif;
  --max-w:         1180px;
  --header-h:      72px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--cyan-dark); }
ul, ol { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-cyan   { color: var(--cyan); }
.text-blue   { color: var(--blue); }
.text-muted  { color: var(--text-muted); }
.text-sm     { font-size: 0.875rem; }
.text-xs     { font-size: 0.75rem; }
.font-semibold { font-weight: 600; }
.font-bold   { font-weight: 700; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.site-logo img {
  height: 70px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  color: var(--gray-800);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
  background: var(--sky-light);
}

.nav-cta {
  background: var(--gradient) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 3px 12px rgba(0,119,182,0.3);
  transition: var(--transition) !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,119,182,0.4) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--gradient);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero h1 span {
  color: var(--cyan);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

/* Destination search bar */
.search-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-xl);
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: transparent;
}

.search-bar input::placeholder {
  color: var(--gray-400);
}

.search-btn {
  background: var(--gradient);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,119,182,0.4);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-stat {
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-stat strong {
  color: var(--white);
  font-size: 1rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,119,182,0.35);
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,119,182,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  background: var(--sky-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

/* Affiliate CTA button */
.btn-affiliate {
  background: linear-gradient(135deg, #00B4D8, #0077B6);
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(0,180,216,0.4);
  position: relative;
  overflow: hidden;
}

.btn-affiliate::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}

.btn-affiliate:hover::after { left: 100%; }
.btn-affiliate:hover {
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,180,216,0.5);
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--sky);
}

.card-body { padding: 1.5rem; }
.card-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--gray-100); }
.card-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--gray-100); background: var(--gray-50); }

/* ── Destination Cards ────────────────────────────────────── */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.destination-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: var(--text);
}

.destination-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  color: var(--text);
  background: var(--sky-light);
}

.destination-emoji {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 0.6rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.destination-naam {
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--navy);
}

.destination-continent {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.destination-prijs {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 600;
}

/* ── Provider Table ───────────────────────────────────────── */
.aanbieder-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.aanbieder-card.featured {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), var(--shadow-lg);
}

.featured-badge {
  position: absolute;
  top: 0;
  right: 1.5rem;
  background: var(--gradient);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.aanbieder-header {
  padding: 2rem 2rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.aanbieder-logo-wrap {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}

.aanbieder-logo-wrap img { height: 36px; width: auto; }

.aanbieder-logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.aanbieder-meta { flex: 1; min-width: 200px; }
.aanbieder-naam { font-size: 1.4rem; margin-bottom: 0.25rem; }
.aanbieder-omschrijving { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.75rem; }

.sterren { color: var(--warning); letter-spacing: 0.05em; }
.sterren .leeg { color: var(--gray-200); }
.beoordeling-num { font-weight: 700; color: var(--navy); }
.review-count { color: var(--text-muted); font-size: 0.85rem; }

/* Plan grid */
.plannen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  padding: 0 2rem 1.5rem;
}

.plan-card {
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

.plan-card.populair {
  border-color: var(--cyan);
  background: var(--sky-light);
}

.plan-label {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.plan-data {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.plan-dagen {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.plan-prijs {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
}

.aanbieder-acties {
  padding: 1.25rem 2rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.voordelen-lijst {
  padding: 0 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.voordeel-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-800);
}

.voordeel-item::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Section Headers ──────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  background: var(--sky-light);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--sky);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── How It Works ─────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(0,119,182,0.35);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.step-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── Blog cards ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--sky);
}

.blog-card-img {
  background: var(--gradient);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--blue); }

.blog-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 1.5rem 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
}

.trust-icon { font-size: 1.25rem; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--gradient);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '✈';
  position: absolute;
  font-size: 20rem;
  color: rgba(255,255,255,0.04);
  right: -4rem;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
}

.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.1rem; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 1rem 0;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { color: var(--cyan-dark); }
.breadcrumb-sep { color: var(--gray-200); }

/* ── Page hero ────────────────────────────────────────────── */
.page-hero {
  background: var(--gradient-soft);
  border-bottom: 1px solid var(--gray-100);
  padding: 3rem 0;
}

.page-hero h1 { margin-bottom: 0.5rem; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.6);
}

.footer-logo {
  height: 38px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-heading {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--cyan); }

.affiliate-disclaimer {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ── Tabs ─────────────────────────────────────────────────── */
.tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--gray-100);
  margin-bottom: 2rem;
  overflow-x: auto;
}

.tab-btn {
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-btn.active, .tab-btn:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover { background: var(--sky-light); }

.faq-arrow {
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--blue);
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* ── Forms ────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,200,232,0.12);
}

.form-textarea { min-height: 130px; resize: vertical; }

/* ── Alert / Notice ───────────────────────────────────────── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.alert-info {
  background: var(--sky-light);
  border: 1px solid var(--sky);
  color: var(--blue-dark);
}

.alert-success {
  background: #F0FDF7;
  border: 1px solid #A7F3D0;
  color: #065F46;
}

/* ── Badges ───────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-cyan { background: var(--sky-light); color: var(--blue); border: 1px solid var(--sky); }
.badge-green { background: #F0FDF7; color: #065F46; border: 1px solid #A7F3D0; }
.badge-navy { background: var(--navy); color: white; }

/* ── Content / Prose ──────────────────────────────────────── */
.prose h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.prose h3 { font-size: 1.15rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.prose p { margin-bottom: 1rem; line-height: 1.8; }
.prose ul, .prose ol { margin: 1rem 0 1rem 1.5rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.4rem; line-height: 1.7; }
.prose strong { font-weight: 700; color: var(--navy); }
.prose a { color: var(--blue); text-decoration: underline; }

/* ── Continent filter ─────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-tab {
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover, .filter-tab.active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

/* ── Beoordeling breakdown ────────────────────────────────── */
.score-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.score-bar-label { font-size: 0.85rem; width: 130px; color: var(--text-muted); }
.score-bar-track {
  flex: 1;
  height: 6px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 3px;
}
.score-bar-num { font-size: 0.85rem; font-weight: 700; color: var(--navy); width: 28px; text-align: right; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .main-nav { display: none; flex-direction: column; position: absolute; top: var(--header-h); left: 0; right: 0; background: white; padding: 1rem; border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow-lg); gap: 0.25rem; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }

  .section { padding: 3rem 0; }
  .hero { padding: 3.5rem 0 3rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .aanbieder-header { flex-direction: column; }
  .voordelen-lijst { grid-template-columns: 1fr; }
  .plannen-grid { grid-template-columns: repeat(2, 1fr); }
  .aanbieder-acties { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-stats { gap: 1.25rem; }
  .trust-items { gap: 1.25rem; }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .search-bar { flex-direction: column; padding: 0.75rem; }
  .search-bar input { width: 100%; }
  .search-btn { width: 100%; justify-content: center; }
  .plannen-grid { grid-template-columns: 1fr; }
}

/* ── Utilities ────────────────────────────────────────────── */
.bg-light   { background: var(--gray-50); }
.bg-white   { background: var(--white); }
.text-center { text-align: center; }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.w-100 { width: 100%; }
.hidden { display: none; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════════
   VERGELIJKINGSTABEL — homepage top 5
════════════════════════════════════════════════════════════ */

.compare-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.compare-title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin: 0;
}

.compare-title .year {
  color: var(--cyan);
  font-weight: 800;
}

/* Filter pills */
.filter-pills {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}

.filter-pill {
  padding: .35rem .9rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* Table wrapper */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  min-width: 720px;
}

.compare-table thead tr {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 700;
}

.compare-table thead th {
  padding: .8rem 1rem;
  text-align: left;
  white-space: nowrap;
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background .15s;
}

.compare-table tbody tr:last-child {
  border-bottom: none;
}

.compare-table tbody tr:hover {
  background: var(--sky-light);
}

.compare-table tbody tr.row-featured {
  background: linear-gradient(90deg, rgba(0,200,232,.05) 0%, #fff 100%);
  border-left: 3px solid var(--cyan);
}

.compare-table tbody tr.row-featured:hover {
  background: var(--sky-light);
}

.compare-table td {
  padding: .9rem 1rem;
  vertical-align: middle;
}

/* Column widths */
.col-provider  { min-width: 200px; }
.col-badge     { min-width: 130px; }
.col-plan      { white-space: nowrap; }
.col-validity  { text-align: center; white-space: nowrap; }
.col-countries { text-align: center; white-space: nowrap; }
.col-rating    { white-space: nowrap; }
.col-price     { white-space: nowrap; }
.col-cta       { text-align: right; padding-right: 1.25rem; }

/* Provider cell */
.provider-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}

.provider-logo {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.provider-naam-fallback {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
}

.provider-sub {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .2rem;
  max-width: 180px;
  line-height: 1.3;
}

/* Badges */
.provider-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .75rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
}

.badge-best_overall  { background: #FFF8E1; color: #B45309; border: 1px solid #FDE68A; }
.badge-most_popular  { background: #FFF1F0; color: #C0392B; border: 1px solid #FCA5A5; }
.badge-best_value    { background: #EEF2FF; color: #4338CA; border: 1px solid #C7D2FE; }
.badge-budget        { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.badge-recommended   { background: var(--sky-light); color: var(--blue); border: 1px solid var(--sky); }
.badge-default       { background: var(--gray-50); color: var(--gray-600); border: 1px solid var(--gray-100); }

/* Plan cell */
.plan-data {
  display: block;
  font-size: 1rem;
  font-family: var(--font-head);
  color: var(--navy);
}
.plan-type {
  font-size: .72rem;
  color: var(--text-muted);
}

/* Rating */
.sterren { color: #F59E0B; letter-spacing: .05em; }
.ster.leeg { color: var(--gray-200); }
.rating-num {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  margin-left: .25rem;
}

/* Price */
.price-from {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1;
}
.price-sub {
  font-size: .7rem;
  color: var(--text-muted);
}

/* CTA buttons in table */
.btn-deal {
  display: inline-block;
  padding: .55rem 1.1rem;
  background: var(--gradient);
  color: #fff !important;
  font-weight: 700;
  font-size: .85rem;
  border-radius: 50px;
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(0,119,182,.3);
}
.btn-deal:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,119,182,.4);
  color: #fff !important;
}

.btn-info {
  display: inline-block;
  padding: .55rem 1.1rem;
  background: var(--gray-50);
  color: var(--navy) !important;
  font-weight: 600;
  font-size: .85rem;
  border-radius: 50px;
  white-space: nowrap;
  text-decoration: none;
  border: 1.5px solid var(--gray-100);
  transition: var(--transition);
}
.btn-info:hover {
  background: var(--sky-light);
  border-color: var(--sky);
  color: var(--blue) !important;
}

.w-full { display: block; width: 100%; text-align: center; }

/* Disclaimer */
.compare-disclaimer {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}
.compare-disclaimer a { color: var(--blue); }

/* ── Provider kaarten (mobiel) ─────────────────────────────── */
.provider-cards { display: none; }

.pcard {
  background: #fff;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  position: relative;
  margin-bottom: 1rem;
}
.pcard-featured {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), var(--shadow);
}
.pcard-badge {
  margin-bottom: .75rem;
}
.pcard-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.pcard-logo {
  height: 28px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}
.pcard-naam-fallback {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
}
.pcard-meta { margin-left: auto; }
.pcard-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: .75rem;
  margin-bottom: 1rem;
}
.pcard-spec {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  font-size: .78rem;
}
.pcard-spec span { color: var(--text-muted); }
.pcard-spec strong { color: var(--navy); font-size: .85rem; }
.pcard-price { color: var(--blue) !important; font-size: 1rem !important; }
.pcard-actions {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.pcard-review-link {
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
  text-decoration: underline;
}

/* ── Responsive: tabel verbergen, kaarten tonen ─────────────── */
@media (max-width: 768px) {
  .compare-table-wrap { display: none; }
  .provider-cards { display: block; }
  .compare-header { flex-direction: column; align-items: flex-start; }
}

/* ── Destination grid met vlaggen ───────────────────────────── */
.dest-flag {
  display: block;
  margin-bottom: .6rem;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dest-flag img {
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
  width: 48px;
  height: 36px;
  object-fit: cover;
}
.dest-emoji-fallback {
  font-size: 2.5rem;
}

/* ── Hero quick links (populaire bestemmingen) ─────────────── */
.hero-quick-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin: 0 auto 1.75rem;
  max-width: 680px;
}

.hero-quick-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-right: 0.2rem;
  white-space: nowrap;
}

.hero-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  color: rgba(255,255,255,0.92) !important;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.hero-quick-link img {
  border-radius: 2px;
  display: inline;
  vertical-align: middle;
  flex-shrink: 0;
}

.hero-quick-link:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.4);
  color: #fff !important;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .hero-quick-links { gap: 0.3rem; }
  .hero-quick-link { font-size: 0.78rem; padding: 0.25rem 0.6rem; }
  .hero-quick-label { display: none; }
}

/* ── Blog kaart afbeeldingen ───────────────────────────────── */
.blog-card-img-wrap {
  display: block;
  height: 200px;
  overflow: hidden;
  background: var(--gradient);
  position: relative;
  flex-shrink: 0;
}

.blog-card-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img-real {
  transform: scale(1.04);
}

/* Fallback gradient als foto ontbreekt of kapot is */
.blog-card-img-wrap.blog-img-fallback,
.blog-card-img.blog-img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
}

.blog-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
}

.blog-cat-icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

/* ── Blog artikel hero afbeelding ──────────────────────────── */
.blog-hero-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

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

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 1rem;
}

.breadcrumb-light a,
.breadcrumb-light span {
  color: rgba(255,255,255,0.85) !important;
}

.breadcrumb-light .breadcrumb-sep {
  color: rgba(255,255,255,0.4) !important;
}

@media (max-width: 768px) {
  .blog-hero-img { height: 220px; }
}

/* ── Blog overzicht — minder ruimte boven filters ─────────── */
.blog-overzicht-section {
  padding-top: 2rem;
}

/* ── Paginatitel met icon ──────────────────────────────────── */
.page-h1-icon {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);  /* kleiner dan standaard h1 */
}

.page-h1-icon img {
  flex-shrink: 0;
  margin-top: -2px; /* optische uitlijning */
}
/* ══════════════════════════════════════════════════════════
   HOMEPAGE — nieuwe klassen
══════════════════════════════════════════════════════════ */

/* ── Providertabel: beschrijving kolom ───────────────────── */
.col-desc {
  min-width: 220px;
  max-width: 320px;
}
.provider-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ── Continent chips onder bestemmingengrid ──────────────── */
.continent-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.continent-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.continent-chip:hover {
  border-color: var(--cyan);
  background: var(--sky-light);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.continent-chip img {
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Destinationgrid: 5-koloms op desktop, kleinere flags ── */
.destination-grid {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 900px) {
  .destination-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Howto sectie — 3 kolommen ───────────────────────────── */
.howto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.howto-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.howto-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.howto-card h3 {
  font-size: 1.05rem;
  font-family: var(--font-head);
  color: var(--navy);
  margin-bottom: 1rem;
}

.howto-list {
  padding-left: 1.25rem;
  margin: 0 0 1.25rem 0;
  flex: 1;
}

.howto-list li {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.howto-checks {
  list-style: none;
  padding-left: 0;
}

.howto-checks li::before {
  content: "✓ ";
  color: var(--cyan);
  font-weight: 700;
}

.howto-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  margin-top: auto;
}

.howto-link:hover {
  color: var(--cyan);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .howto-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ── Mobile card: beschrijving zonder label ──────────────── */
.pcard-spec-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  border: none;
  padding-top: 0;
  padding-bottom: 0.5rem;
}

/* ── Footer vlaggen ──────────────────────────────────────── */
.footer-flag {
  vertical-align: middle;
  margin-right: 4px;
  border-radius: 2px;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}


/* ── Howto card: icon links van h3 ───────────────────────── */
.howto-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.howto-card-head img {
  flex-shrink: 0;
  display: block;       /* override global img { display:block } */
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.howto-card-head h3 {
  margin-bottom: 0;     /* override .howto-card h3 { margin-bottom: 1rem } */
  line-height: 1.25;
}

/* ── Footer brand: badges op donkere achtergrond ─────────── */
.footer-brand .badge {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-brand .badge img {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   LAND PAGINA
══════════════════════════════════════════════════════════ */

/* ── Layout ──────────────────────────────────────────────── */
.land-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

.land-main {}

.land-sidebar {}

.land-sticky-card {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.land-section-title {
  margin-bottom: 1.5rem;
}

.land-section-title h2 {
  margin-bottom: 0.4rem;
}

.land-section-title p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── Provider kaart op landenpagina ─────────────────────── */
.provider-land-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1.25rem;
  transition: var(--transition);
  position: relative;
}

.provider-land-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--sky);
}

.provider-land-featured {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), var(--shadow);
}

.plc-top-badge {
  background: var(--gradient);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 1.25rem;
  text-align: center;
}

.plc-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  flex-wrap: wrap;
}

.plc-logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.plc-logo {
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

.plc-meta {
  flex: 1;
  min-width: 180px;
}

.plc-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.plc-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.plc-reviews {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.plc-badge-wrap {
  flex-shrink: 0;
}

.plc-cta-wrap {
  flex-shrink: 0;
  margin-left: auto;
}

/* ── Plannen strip ───────────────────────────────────────── */
.plc-plannen {
  border-top: 1px solid var(--gray-100);
  padding: 1rem 1.5rem;
  background: var(--gray-50);
}

.plc-plannen-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.plc-plannen-grid {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.plc-plan {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  text-align: center;
  min-width: 100px;
  position: relative;
}

.plc-plan-populair {
  border-color: var(--cyan);
  background: var(--sky-light);
}

.plc-plan-label {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
  white-space: nowrap;
  text-transform: uppercase;
}

.plc-plan-data {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
}

.plc-plan-info {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0.1rem 0;
}

.plc-plan-prijs {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
}

/* ── Voordelen strip ─────────────────────────────────────── */
.plc-voordelen {
  border-top: 1px solid var(--gray-100);
  padding: 0.75rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.plc-voordeel {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--gray-800);
}

.plc-check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Sidebar provider rijen ──────────────────────────────── */
.sidebar-provider-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}

.sidebar-provider-row:last-child {
  border-bottom: none;
}

.sidebar-provider-row:hover {
  background: var(--sky-light);
  color: var(--text);
}

.sidebar-provider-logo {
  height: 24px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.sidebar-naam-fallback {
  font-size: 0.85rem;
  color: var(--navy);
}

.sidebar-provider-meta {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.sidebar-provider-prijs {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

/* ── Sidebar land rijen ──────────────────────────────────── */
.sidebar-land-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  font-size: 0.875rem;
  transition: var(--transition);
}

.sidebar-land-row:hover {
  background: var(--sky-light);
  color: var(--text);
}

.sidebar-land-prijs {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 600;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   LANDEN OVERZICHT
══════════════════════════════════════════════════════════ */

.continent-block {
  margin-bottom: 3rem;
}

.continent-heading {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.continent-count {
  font-size: 0.78rem;
  background: var(--sky-light);
  color: var(--blue);
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
}

/* ── Responsive landenpagina ─────────────────────────────── */
@media (max-width: 900px) {
  .land-layout {
    grid-template-columns: 1fr;
  }

  .land-sticky-card {
    position: static;
  }

  .plc-header {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .plc-cta-wrap {
    margin-left: 0;
    width: 100%;
  }

  .plc-cta-wrap .btn-deal,
  .plc-cta-wrap .btn-info {
    display: block;
    width: 100%;
    text-align: center;
  }

  .plc-plannen-grid {
    gap: 0.5rem;
  }

  .plc-plan {
    min-width: 80px;
    flex: 1;
  }
}

/* ══════════════════════════════════════════════════════════
   PAGE HERO — zachte gradient variant (optie B)
══════════════════════════════════════════════════════════ */

.page-hero-soft {
  background: linear-gradient(135deg, #daf0f8 0%, #eef7fb 50%, #f8fcff 100%);
  border-bottom: 1px solid var(--gray-100);
}

/* Alle page-hero's krijgen standaard de zachte variant */
.page-hero {
  background: linear-gradient(135deg, #daf0f8 0%, #eef7fb 50%, #f8fcff 100%);
  border-bottom: 1px solid var(--gray-100);
  padding: 3rem 0;
}

/* ══════════════════════════════════════════════════════════
   BLOG ARTIKEL PAGINA
══════════════════════════════════════════════════════════ */

/* ── Twee-koloms layout ──────────────────────────────────── */
.artikel-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

/* ── Artikel header ──────────────────────────────────────── */
.artikel-subtitel {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.artikel-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

/* ── Tags ────────────────────────────────────────────────── */
.artikel-tags {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.tags-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* ── Gerelateerde artikelen ──────────────────────────────── */
.gerelateerd-blok {
  margin-top: 3rem;
}

.gerelateerd-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text);
}

.gerelateerd-item:hover {
  border-color: var(--sky);
  background: var(--sky-light);
  color: var(--text);
}

.gerelateerd-img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.gerelateerd-tekst {
  flex: 1;
}

.gerelateerd-cat {
  font-size: 0.72rem;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.gerelateerd-titel {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
  line-height: 1.35;
}

.gerelateerd-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.gerelateerd-pijl {
  color: var(--blue);
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* ── Sidebar ─────────────────────────────────────────────── */
.artikel-sidebar-card {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  max-height: calc(100vh - var(--header-h) - 2rem);
  overflow-y: auto;
}

/* ── Artikel afbeelding onder samenvatting ───────────────── */
.artikel-afbeelding {
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 420px;
}

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

.sidebar-artikel-item {
  display: flex;
  flex-direction: column;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.15s;
}

.sidebar-artikel-item:hover {
  background: var(--sky-light);
}

.sidebar-artikel-actief {
  background: var(--sky-light);
  font-weight: 700;
}

.sidebar-artikel-meta {
  color: var(--text-muted);
  font-size: 0.72rem;
  margin-top: 0.1rem;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .artikel-layout {
    grid-template-columns: 1fr;
  }

  .artikel-sidebar-card {
    position: static;
  }
}