/* ============================================================
   VliegSignal — Stylesheet
   VliegSignal font | Fris blauw/groen met gele accenten
   Rood alleen voor acties en waarschuwingen
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,400;6..12,500;6..12,600;6..12,700;6..12,800;6..12,900&family=Plus+Jakarta+Sans:wght@600;700;800;900&display=swap');

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

:root {
  --blue-primary:  #0077E6;
  --blue-dark:     #004C99;
  --blue-xdark:    #06204A;
  --blue-light:    #8BD7FF;
  --blue-lighter:  #E9F7FF;
  --navy:          #081A3A;
  --red:           #FF3F46;
  --orange:        #FFD23F;
  --green:         #00A676;
  --green-light:   #7BE0B7;
  --bg-warm:       #F6FBFF;
  --bg-card:       #FFFFFF;
  --text-dark:     #081A3A;
  --text-mid:      #31415F;
  --text-muted:    #6D7F96;
  --border:        #D8EAF7;
  --shadow-sm:     0 1px 4px rgba(8,26,58,.08);
  --shadow-md:     0 4px 16px rgba(8,26,58,.12);
  --shadow-lg:     0 8px 32px rgba(8,26,58,.16);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --max-w:         1200px;
  --transition:    .22s ease;
  --font-body:     'Nunito Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display:  'Plus Jakarta Sans', 'Nunito Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-warm);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
img[hidden] { display: none !important; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }

h1, h2, h3, h4, h5, h6,
.btn,
.nav-link,
.nav-logo-text,
.nav-login,
.nav-cta,
.hero-welcome,
.hero-badge,
.hero-title,
.section-title,
.deal-card-title,
.dest-page-card-title,
.booking-price-current,
.deal-hero-price-now,
.signup-submit,
.signup-price-badge {
  font-family: var(--font-display);
  letter-spacing: 0;
}

/* ─── Utility ───────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 700;
  transition: all var(--transition); white-space: nowrap; border: none; cursor: pointer;
}
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 2px 8px rgba(226,75,74,.35);
}
.btn-primary:hover { background: #E22F36; box-shadow: 0 4px 14px rgba(255,63,70,.34); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--blue-primary);
  border: 2px solid var(--blue-primary);
}
.btn-secondary:hover { background: var(--blue-primary); color: #fff; }
.btn-lg { padding: 15px 32px; font-size: 1.05rem; border-radius: 8px; }
.btn-sm { padding: 8px 16px; font-size: .85rem; }

/* ─── Live Ticker ───────────────────────────────────────────── */
.live-ticker {
  background: var(--red);
  color: #fff;
  padding: 9px 0; font-size: .84rem; font-weight: 800;
}
.live-ticker .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.ticker-left { display: flex; align-items: center; gap: 10px; }
.ticker-left i { color: #fff; }
.ticker-text strong { color: #fff; font-weight: 900; }
.ticker-right a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 900;
}
.ticker-right a:hover { text-decoration: underline; }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
  animation: pulse-anim 1.6s infinite;
}
@keyframes pulse-anim {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,210,63,.65); }
  50%      { box-shadow: 0 0 0 6px rgba(255,210,63,0); }
}
.ticker-text { color: #fff; }
.ticker-text strong { color: #fff; font-weight: 900; }
.ticker-right { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: rgba(255,255,255,.94); }

/* ─── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,100,180,.08);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-logo-text { font-size: 1.15rem; font-weight: 800; color: var(--blue-primary); letter-spacing: 0; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 6px 10px; border-radius: var(--radius-sm);
  font-size: .82rem; font-weight: 500; color: var(--text-dark);
  transition: all var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { background: var(--blue-lighter); color: var(--blue-primary); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-login {
  display: none;
  padding: 6px 14px; border-radius: var(--radius-sm);
  font-size: .82rem; font-weight: 600; color: var(--blue-primary);
  border: 1.5px solid var(--blue-primary); background: transparent;
  transition: all var(--transition); white-space: nowrap;
}
.nav-login:hover { background: var(--blue-primary); color: #fff; }
.nav-cta {
  padding: 7px 14px; border-radius: var(--radius-sm);
  font-size: .82rem; font-weight: 700;
  background: var(--red); color: #fff;
  transition: all var(--transition); display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.nav-cta:hover { background: #E22F36; transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all var(--transition); }

/* ─── Mobile Menu ───────────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(4,44,83,.5); backdrop-filter: blur(4px);
}
.mobile-menu.open { display: block; }
.mobile-menu-panel {
  position: absolute; top: 0; right: 0; width: min(340px, 100vw); height: 100%;
  background: #fff; padding: 28px 24px;
  display: flex; flex-direction: column;
  animation: slideIn .28s ease;
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.mobile-menu-close { background: none; border: none; font-size: 1.3rem; color: var(--text-mid); align-self: flex-end; margin-bottom: 14px; cursor: pointer; }
.mobile-menu-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 22px 4px;
  text-decoration: none;
}
.mobile-menu-logo img {
  width: 48px;
  height: auto;
  display: block;
}
.mobile-menu-logo span {
  color: var(--blue-primary);
  font-size: 1.08rem;
  font-weight: 900;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.mobile-nav-links a { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 1rem; font-weight: 600; color: var(--text-dark); display: flex; align-items: center; gap: 10px; }
.mobile-nav-links a:hover { background: var(--blue-lighter); }
.mobile-nav-links a i { color: var(--blue-primary); width: 20px; text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   HERO — Man met hoed op achtergrond (volledig bedekt)
   Volgorde z-index:
     z-0  = hero background kleur
     z-1  = man foto (achtergrond)
     z-2  = gradient overlay over man (tekst leesbaar)
     z-3  = hero content (tekst + signup)
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  background: var(--blue-lighter); /* fallback */
  display: flex;
  flex-direction: column;
}

/* Laag 1: zonnige reisfoto — volledig achtergrond */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(90deg, rgba(0,119,230,.12), rgba(0,166,118,.10)),
    url('../assets/photos/hero-vliegsignal-beach.jpg');
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}

/* Laag 2: zachte overlay zodat de foto zichtbaar blijft en tekst rustig leest */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.08) 48%, rgba(255,248,248,.28) 100%),
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.40) 0%, rgba(255,255,255,.20) 35%, rgba(255,255,255,0) 74%);
}

/* Laag 3: Content bovenop alles */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.hero-content::before {
  content: '';
  position: absolute;
  inset: 22px 24px 28px;
  z-index: -1;
  background: rgba(255,255,255,.36);
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 24px;
  box-shadow: 0 18px 62px rgba(255,255,255,.16), 0 14px 45px rgba(34,8,73,.10);
  backdrop-filter: blur(1px);
}

/* Hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.86); color: var(--blue-primary);
  border: 1px solid rgba(0,119,230,.24);
  padding: 5px 14px; border-radius: 100px;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  width: fit-content; margin-bottom: 12px;
  box-shadow: 0 8px 26px rgba(34,8,73,.12);
}

/* Hero welkom */
.hero-welcome {
  color: var(--blue-primary);
  font-size: .98rem;
  font-weight: 950;
  letter-spacing: .01em;
  line-height: 1;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(0,119,230,.22);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(8,26,58,.12);
  margin-bottom: 14px;
  padding: 11px 18px;
}

/* Headline */
.hero-h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900; color: var(--navy);
  line-height: 1.1; letter-spacing: 0;
  margin-bottom: 10px;
  max-width: 620px;
  text-align: center;
  text-shadow: 0 2px 0 rgba(255,255,255,.78), 0 10px 32px rgba(255,255,255,.9);
}
.hero-h1 span { color: var(--blue-primary); }

/* Sub tekst */
.hero-sub {
  font-size: .95rem; color: rgba(8,26,58,.9);
  line-height: 1.6; margin-bottom: 14px;
  max-width: 540px;
  text-align: center;
  font-weight: 750;
  text-shadow: 0 1px 0 rgba(255,255,255,.82);
}

/* Trust items onder tekst */
.hero-trust {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .85rem; color: rgba(34,8,73,.78); font-weight: 700;
}
.hero-trust-item i { color: var(--green); }

/* ─── Signup Card (in hero, onder tekst) ───────────────────── */
.signup-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 520px;
}
.signup-card-title {
  font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 4px;
  display: flex; align-items: center; gap: 8px;
}
.signup-card-sub {
  font-size: .87rem; color: var(--text-muted); margin-bottom: 20px;
}
.channel-selector { display: flex; gap: 10px; margin-bottom: 20px; }
.channel-btn {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 12px 8px; border-radius: var(--radius-md);
  border: 2px solid var(--border); background: #fff;
  font-size: .79rem; font-weight: 600; color: var(--text-mid);
  transition: all var(--transition); cursor: pointer;
}
.channel-btn i { font-size: 1.2rem; }
.channel-btn:hover { border-color: var(--blue-primary); color: var(--blue-primary); }
.channel-btn.active { border-color: var(--blue-primary); background: var(--blue-lighter); color: var(--blue-primary); }

.signup-input-wrap { margin-bottom: 14px; }
.signup-input {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: .95rem; font-family: inherit; color: var(--text-dark);
  background: #FAFCFE; transition: border-color var(--transition);
}
.signup-input:focus { outline: none; border-color: var(--blue-primary); background: #fff; }
.signup-input::placeholder { color: var(--text-muted); }

.signup-btn {
  width: 100%; padding: 15px 20px;
  background: var(--red); color: #fff;
  border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 700; border: none;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all var(--transition); cursor: pointer;
  box-shadow: 0 3px 12px rgba(226,75,74,.3);
}
.signup-btn:hover { background: #E22F36; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,63,70,.28); }

.signup-trust {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px; font-size: .76rem; color: rgba(34,8,73,.78);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,59,63,.16);
  border-radius: 100px;
  padding: 8px 13px;
  box-shadow: 0 8px 24px rgba(34,8,73,.1);
}
.signup-trust i { color: var(--green-light); }
.hero-trustpilot {
  display: flex;
  justify-content: center;
  margin: 12px 0 2px;
}
.hero-trustpilot img {
  width: min(100%, 390px);
  height: auto;
  display: block;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 12px;
  padding: 7px 10px;
  box-shadow: 0 10px 28px rgba(34,8,73,.10);
}

/* ─── Stats Row ─────────────────────────────────────────────── */
.stats-row { background: var(--navy); padding: 32px 0; }
.stats-row .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-number {
  display: block; font-size: 2.1rem; font-weight: 900;
  color: var(--red); letter-spacing: 0; line-height: 1; margin-bottom: 5px;
}
.stat-label { font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.65); display: flex; align-items: center; justify-content: center; gap: 5px; }

/* ─── Bekend van balk ────────────────────────────────────────── */
.bekend-van {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.bekend-van .container {
  display: flex; align-items: center; justify-content: center;
  padding-top: 10px; padding-bottom: 10px;
}
.bekend-van img {
  width: 100%; max-width: 900px;
  display: block;
}

/* ─── Section Headings ──────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-lighter); color: var(--blue-primary);
  padding: 5px 14px; border-radius: 100px;
  font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900; color: var(--navy);
  letter-spacing: 0; line-height: 1.2; margin-bottom: 12px;
}
.section-sub { font-size: 1rem; color: var(--text-mid); max-width: 600px; margin: 0 auto; line-height: 1.65; }

/* ─── How It Works ──────────────────────────────────────────── */
.how-section { padding: 80px 0; background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 32px; left: 16.66%; right: 16.66%;
  height: 2px; background: linear-gradient(90deg, var(--blue-primary), var(--blue-light));
  z-index: 0;
}
.step-item { text-align: center; padding: 0 32px; position: relative; z-index: 1; }
.step-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--blue-lighter); border: 2px solid var(--blue-primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.4rem; color: var(--blue-primary);
  position: relative;
}
.step-number {
  position: absolute; top: -6px; right: -6px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step-title { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.step-desc  { font-size: .88rem; color: var(--text-mid); line-height: 1.55; }
.how-cta-row {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.agent-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 100px;
  padding: 8px 14px;
  color: rgba(255,255,255,.92);
  font-size: .86rem;
  font-weight: 700;
}
.agent-chip i { color: #fff; }

.site-agent-cta {
  background: #fff;
  padding: 64px 0;
}
.site-agent-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items: center;
  background: linear-gradient(135deg,#081A3A 0%,#0077E6 52%,#00A676 100%);
  border-radius: 24px;
  padding: 38px;
  color: #fff;
  overflow: hidden;
}
.site-agent-photo {
  min-height: 280px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(34,8,73,.02), rgba(34,8,73,.30)),
    url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1200&q=82') center/cover no-repeat;
  box-shadow: 0 20px 50px rgba(0,0,0,.24);
}
.compare-section {
  background: linear-gradient(180deg, #fff 0%, #F5FBFF 100%);
  padding: 48px 0;
}
.compare-table {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(4,44,83,.08);
  margin: 22px auto 0;
  max-width: 920px;
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: .65fr 1fr 1.05fr;
  min-height: 58px;
}
.compare-row + .compare-row {
  border-top: 1px solid var(--border);
}
.compare-row.compare-head {
  background: #F4FAFF;
  border-bottom: 2px solid rgba(0,119,230,.18);
  min-height: 56px;
}
.compare-cell {
  align-items: center;
  color: var(--text-mid);
  display: flex;
  font-size: .91rem;
  font-weight: 750;
  line-height: 1.35;
  padding: 13px 18px;
}
.compare-head .compare-cell {
  color: var(--text-dark);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.compare-cell:first-child {
  color: var(--text-dark);
  font-weight: 900;
}
.compare-cell.highlight {
  color: var(--blue-primary);
  font-weight: 950;
}
.compare-foot {
  background: linear-gradient(90deg, rgba(0,119,230,.10), rgba(255,255,255,.95));
  color: var(--navy);
  font-size: .98rem;
  font-weight: 900;
  padding: 16px 22px;
  text-align: center;
}
.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--red);
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.referral-section {
  background: linear-gradient(135deg, #f6fbff 0%, #fff 54%, #e9f7ff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 34px 0;
}
.referral-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(233,247,255,.94) 58%, rgba(123,224,183,.24) 100%);
  border: 2px solid rgba(0, 119, 230, .34);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 20px 54px rgba(0, 119, 230, .16);
  position: relative;
  overflow: hidden;
}
.referral-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -100px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(255, 210, 63, .28);
  pointer-events: none;
}
.referral-visual {
  position: relative;
  min-height: 156px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(8, 26, 58, .18);
}
.referral-visual img {
  width: 100%;
  height: 100%;
  min-height: 156px;
  display: block;
  object-fit: cover;
}
.referral-check {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 154px;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  padding: 12px 14px;
  color: var(--navy);
  box-shadow: 0 14px 26px rgba(8, 26, 58, .18);
}
.referral-check span {
  display: block;
  color: var(--red);
  font-size: .66rem;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.referral-check strong {
  display: block;
  font-size: 1.95rem;
  line-height: 1;
  letter-spacing: 0;
}
.referral-copy {
  min-width: 0;
  position: relative;
  z-index: 1;
}
.referral-copy h2 {
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 8px 0 6px;
}
.referral-copy p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.45;
  margin: 0;
}
.referral-card .btn {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.trust-proof-grid {
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.trust-proof-grid-single {
  max-width: 760px;
  grid-template-columns: 1fr;
}
.trust-proof-img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  object-fit: contain;
}

/* ─── Deals Section ─────────────────────────────────────────── */
.deals-section { padding: 80px 0; background: var(--bg-warm); }

/* 4 kolommen naast elkaar op desktop (deals pagina) */
.deals-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/* 3 kolommen naast elkaar op desktop (homepage) */
.deals-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
/* Iets grotere kaartafbeeldingen op homepage */
.deals-grid-3 .deal-card-img { height: 200px; }

/* ─── Deal Cards ────────────────────────────────────────────── */
.deal-card {
  background: #fff; border-radius: var(--radius-md);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all var(--transition); cursor: pointer;
  position: relative;
}
.deal-card a.deal-card-link {
  position: absolute; inset: 0; z-index: 1;
  display: block; text-indent: -9999px;
}
.deal-card .deal-cta, .deal-card .deal-badges, .deal-card .deal-timer { position: relative; z-index: 2; }
.deal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.deal-card-img { position: relative; height: 170px; overflow: hidden; }
.deal-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.deal-card:hover .deal-card-img img { transform: scale(1.05); }
.deal-visual-fuerteventura {
  height: 100%;
  min-height: 200px;
  background:
    radial-gradient(circle at 72% 24%, rgba(255,255,255,.92) 0 7%, rgba(255,255,255,0) 8%),
    linear-gradient(170deg, rgba(34,8,73,.72) 0 24%, rgba(249,176,173,.3) 25%, rgba(255,248,246,.1) 44%, rgba(0,161,222,.42) 45% 67%, rgba(15,110,86,.28) 68%),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=82');
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform .5s ease;
}
.deal-card:hover .deal-visual-fuerteventura { transform: scale(1.06); }
.deal-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 5px; flex-wrap: wrap; }
.badge { padding: 3px 9px; border-radius: 100px; font-size: .7rem; font-weight: 700; }
.badge-discount { background: var(--red); color: #fff; }
.badge-new      { background: var(--orange); color: #fff; }
.badge-hot      { background: var(--navy); color: var(--orange); }
.badge-flight   { background: var(--blue-primary); color: #fff; }
.badge-hotel    { background: var(--green); color: #fff; }
.badge-package  { background: var(--orange); color: #fff; }
.badge-pricewatch { background: var(--blue-primary); color: #fff; }
.deal-timer {
  position: absolute; top: 10px; right: 10px;
  display: flex; align-items: center; gap: 4px;
  background: rgba(4,44,83,.82); backdrop-filter: blur(4px);
  color: #fff; padding: 3px 9px; border-radius: 100px;
  font-size: .7rem; font-weight: 600;
}
.deal-timer i { color: var(--orange); }
.deal-card-body { padding: 16px; }
.deal-route {
  font-size: .78rem; font-weight: 600; color: var(--text-muted);
  display: flex; align-items: center; gap: 5px; margin-bottom: 5px;
}
.deal-route i { color: var(--blue-primary); font-size: .72rem; }
.deal-title { font-size: .95rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; line-height: 1.25; }
.deal-desc  { font-size: .79rem; color: var(--text-mid); margin-bottom: 14px; line-height: 1.45; }
.deal-card-pricewatch {
  border-color: rgba(255,123,115,.55);
  box-shadow: 0 8px 28px rgba(34,8,73,.12);
}
.deal-card-pricewatch .deal-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34,8,73,0) 35%, rgba(34,8,73,.42) 100%);
  pointer-events: none;
}
.deal-warning {
  align-items: flex-start;
  background: var(--blue-lighter);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-mid);
  display: flex;
  font-size: .75rem;
  font-weight: 750;
  gap: 7px;
  line-height: 1.35;
  margin: -3px 0 12px;
  padding: 9px 10px;
}
.deal-warning i { color: var(--orange); margin-top: 2px; }
.deal-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 12px; }
.deal-price-current { font-size: 1.35rem; font-weight: 900; color: var(--blue-primary); letter-spacing: 0; line-height: 1; }
.deal-price-was { font-size: .74rem; color: var(--text-muted); text-decoration: line-through; margin-top: 2px; }
.deal-price-was.no-strike { text-decoration: none; }
.deal-cta {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 14px; border-radius: var(--radius-sm);
  background: var(--red); color: #fff;
  font-size: .82rem; font-weight: 700; transition: all var(--transition);
}
.deal-cta:hover { background: #E22F36; transform: translateX(2px); }

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonials-section { padding: 80px 0; background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-warm); border-radius: var(--radius-md);
  padding: 28px 24px; border: 1px solid var(--border);
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--orange); }
.testimonial-text { font-size: .91rem; color: var(--text-mid); line-height: 1.65; font-style: italic; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  overflow: hidden; background: var(--blue-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: #fff;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: .88rem; font-weight: 700; color: var(--navy); }
.testimonial-meta { font-size: .76rem; color: var(--text-muted); }

/* ─── Historische Deals ─────────────────────────────────────── */
.legendary-section { padding: 80px 0; background: var(--blue-lighter); }
.legendary-intro {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px 40px; 
  border: 1px solid var(--border);
  max-width: 820px; margin: 0 auto 48px;
}
.legendary-intro p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; }
.legendary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.legendary-card {
  background: var(--navy); border-radius: var(--radius-md);
  overflow: hidden; position: relative; min-height: 220px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.legendary-card-img { position: absolute; inset: 0; }
.legendary-card-img img { width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.legendary-card-body {
  position: relative; z-index: 1; padding: 20px;
  background: linear-gradient(0deg, rgba(4,44,83,.92) 0%, transparent 100%);
}
.legendary-dest { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.legendary-price { font-size: 1.6rem; font-weight: 900; color: var(--orange); letter-spacing: 0; }
.legendary-was   { font-size: .76rem; color: rgba(255,255,255,.5); text-decoration: line-through; }

/* ─── Footer ────────────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 56px 0 28px; }
.footer .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
  align-items: start;
}

/* brand kolom */
.footer-brand { display: flex; flex-direction: column; }
.footer-logo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; margin-bottom: 14px;
  width: fit-content;
}
.footer-logo img { height: 40px; width: auto; display: block; }
.footer-logo span { font-size: 1.15rem; font-weight: 800; color: #fff; letter-spacing: 0; }
.footer-tagline { font-size: .84rem; color: rgba(255,255,255,.48); line-height: 1.6; max-width: 260px; margin: 0; }

/* kolom titels & links */
.footer-col { display: flex; flex-direction: column; }
.footer-col-title {
  font-size: .74rem; font-weight: 700; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .08em;
  margin: 0 0 14px; padding: 0; display: block;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; padding: 0; margin: 0; }
.footer-links a {
  font-size: .88rem; color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }

/* ─── Keurmerken banner boven footer ─────────────────────────── */
.trustpilot-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  text-align: center;
}
.trustpilot-bar-title { display: none; }
.sector-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 26px;
}
.sector-logo {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: none;
  opacity: .92;
  transition: transform .2s ease, opacity .2s ease;
}
.sector-logo:hover {
  transform: translateY(-1px);
  opacity: 1;
}
.bekend-van-bottom {
  border-top: 0;
}
.trustpilot-bar-img {
  height: 80px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .trustpilot-bar { gap: 0; padding: 18px 24px; }
  .trustpilot-bar-img { height: 60px; }
}
@media (max-width: 640px) {
  .trustpilot-bar { flex-direction: column; gap: 0; padding: 16px; }
  .trustpilot-bar-img { height: 50px; }
}

/* logo rij: betaalmethodes + keurmerken */
.footer-logos-row {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.footer-logos-row img {
  max-height: 72px;
  height: auto;
  max-width: 560px;
  width: auto;
  filter: none;
  opacity: 1;
  background: transparent;
  border-radius: 0;
  padding: 0;
  object-fit: contain;
  transition: opacity .2s;
}
.footer-logos-row img:hover { opacity: .92; }

/* copyright balk */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-social { display: flex; gap: 18px; }
.footer-social a {
  color: rgba(255,255,255,.4);
  font-size: 1.15rem;
  transition: color var(--transition), transform var(--transition);
  display: flex; align-items: center;
}
.footer-social a:hover { color: #fff; transform: translateY(-2px); }

/* ─── Bestemmingen Carrousel ─────────────────────────────── */
.dest-section { padding: 80px 0; background: #fff; }

.dest-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.dest-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  flex: 1;
}
.dest-carousel::-webkit-scrollbar { display: none; }

.dest-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-light); }
.dest-card-img { height: 130px; overflow: hidden; }
.dest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.dest-card:hover .dest-card-img img { transform: scale(1.06); }
.dest-card-label {
  padding: 10px 12px;
  font-size: .8rem; font-weight: 700; color: var(--navy);
  line-height: 1.3; background: #fff;
}

/* ─── Deal Kalender ─────────────────────────────────────────── */
.month-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.month-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.month-card-active {
  border-color: var(--red);
  box-shadow: 0 8px 28px rgba(255,59,63,.16);
}
.month-card-expired {
  background: #fffafa;
  opacity: .86;
}
.month-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.month-name {
  color: var(--blue-primary);
  font-size: 1.25rem;
  font-weight: 900;
}
.month-status {
  border-radius: 999px;
  padding: 4px 10px;
  font-size: .72rem;
  font-weight: 800;
}
.month-status.live { background: var(--red); color: #fff; }
.month-status.soon { background: var(--blue-lighter); color: var(--blue-primary); }
.month-status.expired { background: #ece7ef; color: #6a5b73; }
.month-card h3 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.25;
  margin-bottom: 8px;
}
.month-card p {
  color: var(--text-mid);
  font-size: .88rem;
  line-height: 1.55;
}
.month-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 800;
  margin-top: 14px;
}
.month-note {
  margin: 22px auto 0;
  max-width: 760px;
  color: var(--text-muted);
  text-align: center;
  font-size: .86rem;
}

.dest-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--blue-primary);
  cursor: pointer; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.dest-arrow:hover { background: var(--blue-primary); color: #fff; border-color: var(--blue-primary); }

/* ─── Onderste CTA ───────────────────────────────────────── */
.bottom-cta {
  background: var(--navy);
  padding: 72px 0;
}
.bottom-cta-inner {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.bottom-cta-icon {
  font-size: 2.5rem; color: var(--orange);
}
.bottom-cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900; color: #fff; letter-spacing: 0; margin: 0;
}
.bottom-cta-sub {
  font-size: 1rem; color: rgba(255,255,255,.65);
}

/* ─── Removes sticky bar ──────────────────────────────────── */
.sticky-bar { display: none !important; }


.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--navy); border-top: 2px solid var(--blue-primary);
  padding: 14px 0; transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -4px 24px rgba(4,44,83,.25);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.sticky-bar-text h3 { font-size: .95rem; font-weight: 800; color: #fff; }
.sticky-bar-text p  { font-size: .78rem; color: rgba(255,255,255,.6); }
.sticky-bar-form { display: flex; gap: 10px; }
.sticky-bar-form input {
  padding: 10px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1);
  color: #fff; font-size: .88rem; font-family: inherit; min-width: 220px;
}
.sticky-bar-form input::placeholder { color: rgba(255,255,255,.45); }
.sticky-bar-form input:focus { outline: none; border-color: var(--blue-primary); }
.sticky-close { background: none; border: none; color: rgba(255,255,255,.45); font-size: 1.1rem; padding: 4px; cursor: pointer; }
.sticky-close:hover { color: #fff; }

/* ─── Animations ─────────────────────────────────────────────── */
.fade-in-up { opacity: 1; transform: translateY(0); transition: opacity .5s ease, transform .5s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Deals page ─────────────────────────────────────────────── */
.deals-page-hero { background: var(--navy); padding: 48px 0 40px; }
.deals-page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; color: #fff; letter-spacing: 0; margin-bottom: 10px; }
.deals-page-hero p { font-size: .95rem; color: rgba(255,255,255,.65); }
.deals-page-controls { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 72px; z-index: 100; }
.deals-page-controls .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.deals-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); overflow-x: auto; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.deals-tab {
  padding: 16px 24px; font-size: .88rem; font-weight: 600; color: var(--text-muted);
  border-bottom: 3px solid transparent; margin-bottom: -1px; cursor: pointer; white-space: nowrap;
  display: flex; align-items: center; gap: 7px; transition: all var(--transition);
  background: transparent; border-left: none; border-right: none; border-top: none;
}
.deals-tab:hover { color: var(--blue-primary); }
.deals-tab.active { color: var(--blue-primary); border-bottom-color: var(--blue-primary); }
.deals-tab .tab-count { background: var(--bg-warm); color: var(--text-muted); padding: 2px 8px; border-radius: 100px; font-size: .72rem; }
.deals-tab.active .tab-count { background: var(--blue-primary); color: #fff; }
.deals-toolbar { display: flex; align-items: center; gap: 16px; padding: 14px 24px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.search-box { flex: 1; min-width: 200px; max-width: 360px; position: relative; }
.search-box i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: .9rem; }
.search-box input { width: 100%; padding: 10px 14px 10px 40px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: .88rem; font-family: inherit; background: var(--bg-warm); }
.search-box input:focus { outline: none; border-color: var(--blue-primary); background: #fff; }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { padding: 7px 14px; border-radius: 100px; border: 1.5px solid var(--border); font-size: .8rem; font-weight: 600; color: var(--text-mid); background: #fff; cursor: pointer; transition: all var(--transition); display: flex; align-items: center; gap: 5px; }
.chip:hover, .chip.active { border-color: var(--blue-primary); background: var(--blue-lighter); color: var(--blue-primary); }
.sort-select { padding: 9px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: #fff; font-size: .85rem; font-family: inherit; cursor: pointer; margin-left: auto; }
.deals-page-content { padding: 40px 0 80px; }
.deals-page-content .container { display: block; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.deals-sidebar { display: none; }
.deals-main-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sidebar-card { background: #fff; border-radius: var(--radius-md); border: 1px solid var(--border); overflow: hidden; margin-bottom: 20px; }
.sidebar-card-header { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: .88rem; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.sidebar-card-header i { color: var(--blue-primary); }
.sidebar-card-body { padding: 16px 20px; }
.filter-group { margin-bottom: 20px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group-title { font-size: .78rem; font-weight: 700; color: var(--text-muted); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 10px; }
.filter-option { display: flex; align-items: center; gap: 10px; padding: 7px 0; cursor: pointer; font-size: .88rem; color: var(--text-mid); }
.filter-option input[type="checkbox"] { accent-color: var(--blue-primary); width: 15px; height: 15px; }
.urgency-banner { background: linear-gradient(135deg, #FFF0EE, #FFF4DC); border: 1.5px solid var(--red); border-radius: var(--radius-md); padding: 16px 20px; margin-bottom: 28px; display: flex; align-items: center; gap: 12px; }
.urgency-banner i { font-size: 1.2rem; color: var(--red); flex-shrink: 0; }
.urgency-banner-text h4 { font-size: .9rem; font-weight: 700; color: var(--red); }
.urgency-banner-text p { font-size: .82rem; color: var(--text-mid); }
/* deals-main-grid al gedefinieerd hierboven — 3 kolommen */

/* ─── VliegSignal Search + Agent Deals ───────────────────── */
.vs-search-shell {
  background: linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
  padding: 0 0 22px;
  border-bottom: 1px solid var(--border);
}
.vs-search-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(34,8,73,.14);
  padding: 14px;
  position: relative;
  z-index: 5;
}
.vs-search-tabs { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.vs-search-tab {
  border: 1px solid var(--border);
  background: var(--bg-warm);
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  font-size: .82rem;
  cursor: pointer;
}
.vs-search-tab.active { background: var(--blue-primary); border-color: var(--blue-primary); color: #fff; }
.vs-search-grid { display: grid; grid-template-columns: 1.1fr 1.1fr .9fr .9fr auto; gap: 10px; align-items: stretch; }
.vs-search-field {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 11px 13px;
  background: #fff;
}
.vs-search-label {
  display: block;
  color: var(--text-muted);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.vs-search-value { color: var(--navy); font-weight: 900; font-size: 1rem; }
.vs-search-button {
  border: 0;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  padding: 0 22px;
  min-height: 62px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(255,59,63,.24);
}
.vs-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 12px;
  color: var(--text-muted);
  font-weight: 700;
  font-size: .82rem;
}
.vs-trust-row i { color: var(--red); }
.vs-results-section { background: var(--bg-warm); padding: 44px 0 56px; }
.vs-results-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 18px;
}
.vs-results-head h2 {
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.05;
  margin: 0;
  font-weight: 900;
}
.vs-results-head p { color: var(--text-muted); margin: 7px 0 0; font-weight: 600; }
.vs-results-count {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}
.vs-filter-bar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 18px; }
.vs-filter {
  border: 2px solid var(--border);
  background: #fff;
  border-radius: 999px;
  color: var(--text-mid);
  cursor: pointer;
  font-weight: 900;
  padding: 10px 15px;
}
.vs-filter.active { background: var(--blue-primary); border-color: var(--blue-primary); color: #fff; }
.vs-agent-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.vs-result-card {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  gap: 16px;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.vs-result-img { min-height: 180px; background: var(--bg-warm); position: relative; }
.vs-result-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vs-result-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .06em;
  padding: 6px 10px;
  text-transform: uppercase;
}
.vs-result-body { padding: 17px 0; }
.vs-result-route { color: var(--text-muted); font-weight: 900; font-size: .88rem; margin-bottom: 6px; }
.vs-result-title { color: var(--navy); font-size: 1.23rem; line-height: 1.15; font-weight: 900; margin-bottom: 8px; }
.vs-result-desc { color: var(--text-mid); font-size: .94rem; line-height: 1.55; margin-bottom: 12px; max-width: 680px; }
.vs-result-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.vs-result-chip {
  background: var(--bg-warm);
  border-radius: 999px;
  color: var(--text-muted);
  font-weight: 800;
  font-size: .78rem;
  padding: 6px 10px;
}
.vs-result-warning {
  align-items: flex-start;
  background: var(--blue-lighter);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-mid);
  display: flex;
  font-size: .82rem;
  font-weight: 750;
  gap: 8px;
  line-height: 1.45;
  margin-top: 12px;
  max-width: 680px;
  padding: 10px 12px;
}
.vs-result-warning i { color: var(--orange); margin-top: 2px; }
.vs-result-side {
  border-left: 1px solid var(--border);
  padding: 17px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
.vs-result-provider {
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.vs-result-price { color: var(--navy); font-size: 1.65rem; font-weight: 950; line-height: 1; }
.vs-result-card.is-pricewatch {
  border-color: rgba(255,123,115,.42);
  box-shadow: 0 8px 28px rgba(34,8,73,.12);
}
.vs-result-card.is-pricewatch .vs-result-provider { color: var(--orange); }
.vs-result-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 900;
  padding: 12px 16px;
  width: 100%;
}
.vs-empty {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  color: var(--text-mid);
  font-weight: 700;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .deals-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .deals-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .deals-main-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .deals-page-content .container { grid-template-columns: 1fr; }
  .deals-sidebar { display: none; }
  .deals-main-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .agent-panel { grid-template-columns: 1fr !important; padding: 28px !important; }
  .site-agent-panel { grid-template-columns: 1fr; padding: 28px; }
  .referral-card {
    align-items: flex-start;
    grid-template-columns: 210px 1fr;
  }
  .referral-card .btn { grid-column: 1 / -1; justify-content: center; width: 100%; }
  .trust-proof-grid { grid-template-columns: 1fr; }
  .stats-row .container { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .deals-main-grid { grid-template-columns: 1fr; }
  .legendary-grid { grid-template-columns: repeat(2, 1fr); }
  .month-grid { grid-template-columns: repeat(2, 1fr); }
  .vs-search-grid { grid-template-columns: 1fr 1fr; }
  .vs-search-button { grid-column: 1 / -1; }
  .vs-result-card { grid-template-columns: 180px 1fr; }
  .vs-result-side { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--border); }
  .steps-grid::before { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { padding: 40px 24px 48px; }
  .footer-logos-row { justify-content: center; gap: 24px; }
  .footer-tagline { max-width: 100%; }
}
@media (max-width: 640px) {
  .nav-links, .nav-login { display: none; }
  .nav-burger { display: flex; }
  .stats-row .container { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { align-items: flex-start; }
  .footer-logos-row { justify-content: center; gap: 18px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .footer-tagline { max-width: 100%; }
  .deals-grid-4 { grid-template-columns: 1fr; }
  .deals-grid-3 { grid-template-columns: 1fr; }
  .legendary-grid { grid-template-columns: 1fr; }
  .month-grid { grid-template-columns: 1fr; }
  .vs-search-grid { grid-template-columns: 1fr; }
  .vs-results-head { display: block; }
  .vs-results-count { display: inline-flex; margin-top: 12px; }
  .vs-result-card { grid-template-columns: 1fr; }
  .vs-result-img { min-height: 195px; }
  .vs-result-body { padding: 16px; }
  .signup-card { padding: 24px 20px; }
  .sticky-bar-form input { min-width: 160px; }
  .hero-h1 { font-size: 2rem; }
}

/* ─── Compact high-conversion layout pass ─────────────────────
   Dichter, sneller scanbaar,
   minder agency whitespace en meer nuttige content boven de fold.
*/
@media (min-width: 901px) {
  :root {
    --max-w: 1120px;
    --radius-md: 10px;
    --radius-lg: 16px;
  }

  .container { padding-left: 18px; padding-right: 18px; }

  .live-ticker { padding: 6px 0; font-size: .76rem; }
  .navbar .container { height: 54px; }
  .nav-logo img { height: 32px; }
  .nav-logo-text { font-size: 1.02rem; }
  .nav-link { padding: 5px 9px; font-size: .78rem; }
  .nav-login { padding: 5px 12px; font-size: .78rem; }
  .nav-cta { padding: 6px 12px; font-size: .78rem; }

  .hero {
    min-height: min(70vh, 680px);
  }
  .hero-content {
    max-width: 610px;
    padding: 18px 20px 22px;
  }
  .hero-content::before {
    inset: 14px 18px 16px;
    border-radius: 18px;
  }
  .hero-welcome {
    font-size: .9rem;
    margin-bottom: 10px;
    padding: 10px 15px;
  }
  .hero-badge {
    padding: 4px 11px;
    font-size: .68rem;
    margin-bottom: 8px;
  }
  .hero-h1 {
    font-size: clamp(1.65rem, 2.35vw, 2.15rem);
    line-height: 1.06;
    margin-bottom: 8px;
  }
  .hero-sub {
    font-size: .86rem;
    line-height: 1.48;
    max-width: 520px;
    margin-bottom: 10px;
  }
  .hero-trust {
    gap: 12px;
    margin-bottom: 12px;
  }
  .hero-trust-item { font-size: .78rem; }

  .signup-card {
    max-width: 500px;
    padding: 16px 18px;
    border-radius: 14px;
  }
  .signup-card-title { font-size: 1.02rem; }
  .signup-card-sub {
    font-size: .78rem;
    margin-bottom: 12px;
  }
  .channel-selector {
    gap: 8px;
    margin-bottom: 12px;
  }
  .channel-btn {
    padding: 8px 6px;
    font-size: .74rem;
    border-width: 1.5px;
  }
  .channel-btn i { font-size: 1rem; }
  .signup-input-wrap { margin-bottom: 9px; }
  .signup-input {
    padding: 10px 12px;
    font-size: .86rem;
  }
  .signup-btn {
    padding: 11px 16px;
    font-size: .9rem;
  }
  .hero-trustpilot {
    margin-top: 8px;
  }
  .hero-trustpilot img {
    max-width: 300px;
    padding: 5px 8px;
  }

  .stats-row { padding: 18px 0; }
  .stats-row .container { gap: 16px; }
  .stat-number { font-size: 1.55rem; }
  .stat-label { font-size: .72rem; }

  .bekend-van .container {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .bekend-van img { max-width: 760px; }

  .section-header {
    margin-bottom: 24px;
  }
  .section-tag {
    padding: 4px 11px;
    font-size: .68rem;
    margin-bottom: 8px;
  }
  .section-h2 {
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    margin-bottom: 8px;
  }
  .section-sub {
    font-size: .88rem;
    line-height: 1.5;
    max-width: 560px;
  }

  .how-section,
  .deals-section,
  .testimonials-section,
  .legendary-section,
  .dest-section {
    padding: 44px 0;
  }
  .steps-grid::before { top: 25px; }
  .step-item { padding: 0 18px; }
  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.05rem;
    margin-bottom: 12px;
  }
  .step-number {
    width: 18px;
    height: 18px;
    font-size: .62rem;
  }
  .step-title {
    font-size: .9rem;
    margin-bottom: 5px;
  }
  .step-desc {
    font-size: .78rem;
    line-height: 1.45;
  }
  .how-cta-row { margin-top: 22px; }

  .btn { padding: 9px 16px; font-size: .86rem; }
  .btn-lg { padding: 11px 20px; font-size: .92rem; }

  .deals-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .deals-grid-3 > .deal-card {
    display: block;
  }
  .deals-grid-3 > .deal-card:nth-child(n+13) {
    display: none;
  }
  .deals-grid-3 .deal-card-img,
  .deal-card-img {
    height: 145px;
  }
  .deal-visual-fuerteventura {
    min-height: 145px;
  }
  .deal-card-body { padding: 12px; }
  .deal-route { font-size: .7rem; margin-bottom: 4px; }
  .deal-title { font-size: .86rem; margin-bottom: 5px; }
  .deal-desc {
    font-size: .73rem;
    line-height: 1.35;
    margin-bottom: 10px;
  }
  .deal-warning {
    font-size: .68rem;
    padding: 7px 8px;
    margin-bottom: 9px;
  }
  .deal-footer { padding-top: 9px; }
  .deal-price-current { font-size: 1.12rem; }
  .deal-price-was { font-size: .66rem; }
  .deal-cta {
    padding: 7px 10px;
    font-size: .74rem;
  }
  .badge,
  .deal-timer {
    font-size: .64rem;
    padding: 3px 7px;
  }

  .site-agent-cta,
  .referral-section {
    padding: 42px 0;
  }
  .site-agent-panel {
    grid-template-columns: 1.15fr .85fr;
    gap: 22px;
    padding: 24px;
    border-radius: 16px;
  }
  .site-agent-panel p {
    font-size: .9rem !important;
    line-height: 1.55 !important;
    margin-bottom: 14px !important;
  }
  .site-agent-photo {
    min-height: 210px;
    border-radius: 12px;
  }
  .agent-chip {
    padding: 6px 10px;
    font-size: .76rem;
  }

  .referral-card {
    gap: 22px;
    padding: 22px;
    border-radius: 16px;
  }
  .testimonials-grid,
  .legendary-grid {
    gap: 16px;
  }
  .testimonial-card {
    padding: 18px;
    border-radius: 10px;
  }
  .testimonial-stars { margin-bottom: 10px; }
  .testimonial-text {
    font-size: .8rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .testimonial-avatar {
    width: 36px;
    height: 36px;
  }
  .legendary-intro {
    padding: 22px 26px;
    margin-bottom: 28px;
  }
  .legendary-intro p {
    font-size: .88rem;
    line-height: 1.6;
  }
  .legendary-card {
    min-height: 170px;
    border-radius: 10px;
  }
  .legendary-card-body { padding: 14px; }
  .legendary-dest { font-size: .9rem; }
  .legendary-price { font-size: 1.25rem; }

  .dest-carousel { gap: 12px; }
  .dest-card {
    flex-basis: 170px;
    border-radius: 10px;
  }
  .dest-card-img { height: 105px; }
  .dest-card-label {
    padding: 8px 10px;
    font-size: .72rem;
  }
  .dest-arrow {
    width: 34px;
    height: 34px;
  }

  .bottom-cta {
    padding: 42px 0;
  }
  .bottom-cta-inner { gap: 10px; }
  .bottom-cta-icon { font-size: 1.8rem; }
  .bottom-cta-title {
    font-size: clamp(1.35rem, 2vw, 1.85rem);
  }
  .bottom-cta-sub { font-size: .88rem; }

  .trustpilot-bar {
    padding: 16px 24px;
    gap: 0;
  }
  .trust-proof-grid-single { max-width: 640px; }
  .trust-proof-img {
    padding: 7px 10px;
    border-radius: 10px;
  }

  .footer {
    padding: 36px 0 20px;
  }
  .footer-grid {
    gap: 30px;
    margin-bottom: 22px;
  }
  .footer-logo img { height: 32px; }
  .footer-logo span { font-size: 1rem; }
  .footer-tagline {
    font-size: .76rem;
    line-height: 1.5;
  }
  .footer-col-title {
    font-size: .68rem;
    margin-bottom: 10px;
  }
  .footer-links {
    gap: 7px;
  }
  .footer-links a { font-size: .78rem; }
  .footer-logos-row {
    padding: 16px 0;
    gap: 14px;
    justify-content: flex-end;
  }
  .footer-logos-row img {
    max-height: 64px;
    max-width: min(520px, 100%);
  }
  .footer-bottom {
    padding-top: 14px;
    font-size: .72rem;
  }

  .deals-page-hero { padding: 32px 0 28px; }
  .deals-page-hero h1 { font-size: clamp(1.55rem, 2.6vw, 2.15rem); }
.deals-page-controls { top: 54px; }
  .deals-tabs { padding: 0 18px; }
  .deals-tab { padding: 12px 18px; font-size: .8rem; }
  .deals-toolbar { padding: 10px 18px; gap: 10px; }
  .deals-page-content { padding: 28px 0 44px; }
  .deals-main-grid { gap: 16px; }
  .urgency-banner {
    padding: 12px 14px;
    margin-bottom: 18px;
  }

  .vs-search-panel {
    padding: 10px;
    border-radius: 12px;
  }
  .vs-search-tab { padding: 6px 11px; font-size: .76rem; }
  .vs-search-grid { gap: 8px; }
  .vs-search-field { padding: 8px 10px; }
  .vs-search-value { font-size: .9rem; }
  .vs-search-button {
    min-height: 52px;
    padding: 0 18px;
  }
  .vs-results-section { padding: 32px 0 42px; }
  .vs-result-card {
    grid-template-columns: 190px 1fr auto;
    gap: 14px;
  }
  .vs-result-img { min-height: 150px; }
  .vs-result-body { padding: 13px 0; }
  .vs-result-title { font-size: 1.05rem; }
  .vs-result-desc { font-size: .84rem; line-height: 1.45; }
  .vs-result-side {
    padding: 13px;
    min-width: 165px;
  }
  .vs-result-price { font-size: 1.35rem; }
}

@media (max-width: 900px) {
  .hero-content {
    padding: 22px 18px 28px;
  }
  .hero-content::before {
    inset: 14px 10px 18px;
    border-radius: 18px;
  }
  .hero-welcome { font-size: .9rem; padding: 10px 15px; margin-bottom: 10px; }
  .hero-h1 { font-size: clamp(1.6rem, 8vw, 2.15rem); }
  .hero-sub { font-size: .88rem; line-height: 1.5; }
  .signup-card { padding: 18px 16px; }
  .how-section,
  .deals-section,
  .testimonials-section,
  .legendary-section,
  .dest-section,
  .site-agent-cta,
  .referral-section {
    padding: 42px 0;
  }
  .section-header { margin-bottom: 26px; }
  .site-agent-panel,
  .referral-card {
    border-radius: 16px;
  }
  .compare-row {
    grid-template-columns: 1fr;
  }
  .compare-row.compare-head {
    display: none;
  }
  .compare-cell {
    padding: 12px 16px;
  }
  .compare-cell:first-child {
    background: var(--bg-warm);
  }
  .referral-card {
    gap: 14px;
    grid-template-columns: 1fr;
  }
  .referral-visual { width: 100%; min-height: 210px; }
  .referral-visual img { min-height: 210px; }
}

/* ─── Deal detail page, gelijk aan live VliegSignal ───────── */
.deal-page-hero { position: relative; height: 440px; overflow: hidden; }
.deal-page-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.deal-page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(4,44,83,.85) 0%, rgba(4,44,83,.25) 55%, transparent 100%);
}
.deal-page-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 0 32px; }
.deal-page-hero-content .container { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.deal-hero-left h1 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900; color: #fff; letter-spacing: 0; margin-bottom: 8px; line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.deal-hero-route { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.75); margin-bottom: 10px; flex-wrap: wrap; }
.deal-hero-route i { color: var(--orange); }
.deal-hero-badges-row { display: flex; gap: 8px; flex-wrap: wrap; }
.deal-hero-right { text-align: right; flex-shrink: 0; }
.deal-hero-price-was { font-size: .85rem; color: rgba(255,255,255,.55); text-decoration: line-through; }
.deal-hero-price-now { font-size: 3rem; font-weight: 900; color: var(--orange); line-height: 1; letter-spacing: 0; }
.deal-hero-price-save { font-size: .78rem; color: rgba(255,255,255,.7); margin-top: 4px; }
.deal-body { padding: 40px 0 80px; background: var(--bg-warm); }
.deal-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.deal-sidebar { position: sticky; top: 88px; }
.urgency-deal-banner {
  background: linear-gradient(135deg, #fff0ee, #fff4dc);
  border: 2px solid var(--red);
  border-radius: var(--radius-md);
  padding: 14px 18px; margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.urgency-deal-banner i { color: var(--red); font-size: 1.3rem; flex-shrink: 0; }
.urgency-deal-banner h4 { font-size: .9rem; font-weight: 700; color: var(--red); margin-bottom: 2px; }
.urgency-deal-banner p { font-size: .82rem; color: var(--text-mid); }
.deal-section { margin-bottom: 32px; }
.deal-section h3 {
  font-size: 1rem; font-weight: 800; color: var(--navy);
  margin-bottom: 14px; border-bottom: 2px solid var(--border); padding-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.deal-section h3 i { color: var(--blue-primary); }
.deal-checklist { list-style: none; display: flex; flex-direction: column; gap: 8px; padding: 0; margin: 0; }
.deal-checklist li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--text-mid); }
.deal-checklist li i { width: 16px; flex-shrink: 0; }
.check-green { color: var(--green-light); }
.check-orange { color: var(--orange); }
.periods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.period-chip {
  padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: .8rem; font-weight: 700; text-align: center;
  border: 1.5px solid var(--border); color: var(--text-mid);
}
.period-chip.avail { background: #e8f8ef; border-color: var(--green-light); color: var(--green); }
.period-chip.few { background: #fff8e7; border-color: var(--orange); color: #a06000; }
.period-chip span { font-size: .68rem; font-weight: 500; display: block; margin-top: 2px; opacity: .8; }
.booking-card {
  background: #fff; border-radius: var(--radius-lg); padding: 24px;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg); margin-bottom: 16px;
}
.booking-price-was { font-size: .82rem; color: var(--text-muted); text-decoration: line-through; }
.booking-price-current { font-size: 2.6rem; font-weight: 900; color: var(--blue-primary); letter-spacing: 0; line-height: 1; margin: 4px 0; }
.booking-save { display: inline-block; background: var(--red); color: #fff; padding: 4px 10px; border-radius: 100px; font-size: .75rem; font-weight: 700; margin-bottom: 18px; }
.booking-timer {
  display: flex; align-items: center; gap: 8px;
  background: #fff0ee; border: 1px solid #ffcccc; border-radius: var(--radius-sm);
  padding: 10px 14px; margin-bottom: 18px;
  font-size: .82rem; color: var(--red); font-weight: 600;
}
.booking-cta {
  width: 100%; padding: 15px; background: var(--red); color: #fff;
  border: none; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all var(--transition); box-shadow: 0 4px 14px rgba(226,75,74,.35);
  margin-bottom: 10px; text-decoration: none;
}
.booking-cta:hover { background: #E22F36; transform: translateY(-1px); }
.booking-meta { font-size: .76rem; color: var(--text-muted); text-align: center; }
.booking-details { margin-top: 16px; border-top: 1px solid var(--border); padding-top: 14px; display: flex; flex-direction: column; gap: 7px; }
.booking-detail-row { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--text-mid); }
.booking-detail-row i { color: var(--blue-primary); width: 16px; text-align: center; flex-shrink: 0; }
.how-box { background: var(--blue-lighter); border-radius: var(--radius-md); padding: 18px 20px; border: 1px solid var(--border); }
.how-box-title { font-size: .88rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; display: flex; align-items: center; gap: 7px; }
.how-box p { font-size: .8rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 12px; }

@media (max-width: 900px) {
  .deal-layout { grid-template-columns: 1fr; }
  .deal-sidebar { position: static; }
  .periods-grid { grid-template-columns: repeat(2, 1fr); }
  .deal-page-hero { height: 300px; }
  .deal-page-hero-content .container { flex-direction: column; align-items: flex-start; gap: 12px; }
  .deal-hero-right { text-align: left; }
}
@media (max-width: 640px) {
  .deal-page-hero { height: 240px; }
  .deal-hero-price-now { font-size: 2.2rem; }
}
