/* ===========================================================================
   EuropaReserve - style.css
   Donker, strak, "sealed / mysterie" met een vertrouwd blauw accent (Trust blue).
   =========================================================================== */
:root {
  --bg:        #0b1220;
  --bg-2:      #0f1828;
  --panel:     #131c2e;
  --panel-2:   #1a2740;
  --line:      #24314a;
  --text:      #eaf0fb;
  --muted:     #9fb0c9;
  /* Primaire accentkleur = vertrouwd blauw ("Trust blue"). De variabelenamen
     --gold/--gold-2 zijn bewust behouden zodat de hele site in één keer meeschuift. */
  --gold:      #3d7bf7;
  --gold-2:    #5b93f5;
  --green:     #47c07a;
  --trust:     #4fd6a3;   /* emerald: betrouwbaarheid / geld terug */
  --info:      #6ea8fe;   /* lichtblauw: informatie / rechten */
  --purple:    #8b93f7;   /* indigo: nalatenschap / naam in de geschiedenis */
  --red:       #e2635b;
  --radius:    16px;
  --maxw:      1120px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* Slanke, blauwe pagina-scrollbar, zelfde stijl als de landenlijst (.avail-list). */
html {
  scrollbar-width: thin;                       /* Firefox */
  scrollbar-color: var(--line) transparent;
}
html::-webkit-scrollbar { width: 10px; }
html::-webkit-scrollbar-track { background: transparent; }
html::-webkit-scrollbar-thumb {
  background: var(--line); border-radius: 999px;
  border: 2px solid var(--bg);                 /* beetje ruimte rond de duim */
}
html::-webkit-scrollbar-thumb:hover { background: rgba(61,123,247,.55); }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -0.02em; }

/* Achtergrond: een low-poly netwerk-mesh (knooppunten verbonden door lijnen) =
   iedereen die met elkaar gelinkt wordt. De mesh zit in assets/network-bg.svg;
   daarboven een blauwe glow bovenaan, daaronder de navy basiskleur. */
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 520px at 50% -8%, rgba(61,123,247,.16), transparent 60%) center top / 100% 100% no-repeat,
    url("network-bg.svg") center center / cover no-repeat,
    linear-gradient(var(--bg), var(--bg));
}
/* Levend netwerk-canvas (network-bg.js) boven de .bg-grid glow, achter de content. */
.bg-net {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  width: 100%; height: 100%;
}
section, header, footer, nav { position: relative; z-index: 1; }

/* ------------------------------- NAV / HERO ------------------------------- */
.nav {
  max-width: var(--maxw); margin: 0 auto; padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-weight: 800; letter-spacing: .14em; font-size: 1.05rem;
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); text-decoration: none;
}
.brand .dot { color: var(--gold); }
.brand-mark { width: 30px; height: 30px; display: block; }
.seal-ico img { width: 34px; height: 34px; display: block; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-wrap { display: flex; align-items: center; gap: 6px; }
.lang-globe { font-size: .95rem; opacity: .8; }
#langSwitcher {
  background: var(--bg-2); border: 1px solid var(--line); color: var(--text);
  border-radius: 10px; padding: 9px 34px 9px 14px; font-size: .9rem; font-family: inherit;
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%239fb0c9' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 12px 8px;
  transition: border-color .15s;
}
#langSwitcher:focus { outline: none; border-color: var(--gold); }
.nav-cta {
  font-size: .85rem; font-weight: 600; color: var(--gold);
  border: 1px solid var(--line); padding: 8px 16px; border-radius: 999px;
  transition: .2s; white-space: nowrap;
}
.nav-cta:hover { border-color: var(--gold); }
.nav-link {
  font-size: .85rem; font-weight: 600; color: var(--muted);
  transition: color .2s; white-space: nowrap;
}
.nav-link:hover { color: var(--text); }
.h-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero { text-align: center; padding-bottom: 40px; }
.hero-inner { max-width: 820px; margin: 0 auto; padding: 56px 24px 0; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .28em; font-size: .72rem;
  color: var(--gold); margin-bottom: 22px; font-weight: 600;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 800;
  background: linear-gradient(180deg, #fff, #c8cbdb);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede {
  color: var(--muted); font-size: clamp(1rem, 2.2vw, 1.18rem);
  max-width: 620px; margin: 22px auto 34px;
}

/* -------------------------------- COUNTER -------------------------------- */
.counter {
  max-width: 520px; margin: 0 auto 30px; text-align: left;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 20px;
}
.counter-bar {
  height: 8px; border-radius: 999px; background: var(--panel-2);
  overflow: hidden; margin-bottom: 12px;
}
.counter-bar span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transition: width 1s ease;
}
.counter-nums { display: flex; align-items: baseline; gap: 8px; }
.counter-nums strong {
  font-size: 1.6rem; font-variant-numeric: tabular-nums; color: var(--gold-2);
}
.counter-nums span { color: var(--muted); font-size: .9rem; }

/* ------------------------------ HERO SPLIT (A) ------------------------------ */
.hero-split {
  max-width: var(--maxw); text-align: left;
  display: grid; grid-template-columns: 1.35fr .9fr; gap: 44px; align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 18px; }
.hero-split h1 { font-size: clamp(2.2rem, 5vw, 3.7rem); }
.hero-copy .lede { margin: 20px 0 28px; max-width: 540px; }
.hero-copy .hero-note { margin-top: 16px; }
.hero-seal {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px; text-align: center;
}
.seal-ico {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 18px;
  display: grid; place-items: center; font-size: 1.35rem;
  background: rgba(61,123,247,.12); border: 1px solid rgba(61,123,247,.4);
}
.seal-num {
  font-size: 2.7rem; font-weight: 800; line-height: 1; letter-spacing: -.02em;
  color: var(--text); font-variant-numeric: tabular-nums;
}
.seal-of { font-size: .86rem; color: var(--muted); margin: 8px 0 18px; }
.hero-seal .counter-bar { margin-bottom: 0; height: 8px; }
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .hero-copy .lede { margin-left: auto; margin-right: auto; }
  .hero-seal { max-width: 420px; margin: 0 auto; }
}

/* -------------------------------- BUTTONS -------------------------------- */
.btn {
  display: inline-block; font-weight: 700; border-radius: 12px;
  cursor: pointer; border: 1px solid transparent; transition: .18s; font-size: .98rem;
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #ffffff; padding: 14px 26px;
  box-shadow: 0 8px 30px rgba(61,123,247,.25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 36px rgba(61,123,247,.35); }
.btn-lg { font-size: 1.05rem; padding: 16px 34px; }
.btn-block { width: 100%; padding: 15px; font-size: 1.05rem; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.hero-note { color: var(--muted); font-size: .85rem; margin-top: 14px; }

/* ------------------------------- TRUST BAR ------------------------------- */
.trustbar {
  max-width: var(--maxw); margin: 44px auto 0; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px; text-align: left;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 16px;
}
.trust-ico {
  flex: none; width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center; font-size: 1.1rem;
  background: rgba(79,214,163,.12); color: var(--trust);
  border: 1px solid rgba(79,214,163,.28);
}
.trust-item div { display: flex; flex-direction: column; line-height: 1.25; }
.trust-item strong { font-size: .92rem; }
.trust-item span { font-size: .78rem; color: var(--muted); }

/* -------------------------- TRUST / RIGHTS PANELS -------------------------- */
.panels {
  max-width: var(--maxw); margin: 44px auto 20px; padding: 0 24px;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px;
}
.panel {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 26px;
  position: relative; overflow: hidden;
}
.panel::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
}
.panel-good::before { background: var(--trust); }
.panel-info::before { background: var(--info); }
.panel-gold::before { background: var(--gold); }
.panel-name::before { background: var(--purple); }
.panel-ico {
  flex: none; width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center; font-size: 1.05rem;
}
.panel-good .panel-ico { background: rgba(79,214,163,.12); color: var(--trust); border: 1px solid rgba(79,214,163,.28); }
.panel-info .panel-ico { background: rgba(110,168,254,.12); color: var(--info); border: 1px solid rgba(110,168,254,.28); }
.panel-gold .panel-ico { background: rgba(61,123,247,.12); color: var(--gold-2); border: 1px solid rgba(61,123,247,.30); }
.panel-name .panel-ico { background: rgba(139,147,247,.12); color: var(--purple); border: 1px solid rgba(139,147,247,.34); }
.panel h3 { font-size: 1.05rem; margin-bottom: 6px; }
.panel p { color: var(--muted); font-size: .92rem; line-height: 1.6; }

/* ------------------------- A GLIMPSE / EXPLANATION ------------------------- */
.glimpse { max-width: var(--maxw); margin: 44px auto; padding: 0 24px; }
.glimpse-head { text-align: center; max-width: 680px; margin: 0 auto 26px; }
.glimpse-head h2 { font-size: 1.7rem; margin-bottom: 10px; }
.glimpse-head p { color: var(--muted); font-size: 1rem; line-height: 1.6; }
.glimpse-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px;
}
.glimpse-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 24px 22px;
  position: relative; overflow: hidden;
}
.glimpse-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold);
}
.glimpse-ico {
  display: inline-grid; place-items: center; width: 42px; height: 42px;
  border-radius: 11px; font-size: 1.2rem; margin-bottom: 12px;
  background: rgba(61,123,247,.12); border: 1px solid rgba(61,123,247,.30);
}
.glimpse-card h3 { font-size: 1.08rem; margin-bottom: 7px; }
.glimpse-card p { color: var(--muted); font-size: .92rem; line-height: 1.6; }

/* --------------------------- WE INVITE EVERYONE --------------------------- */
.invite { max-width: var(--maxw); margin: 44px auto; padding: 0 24px; }
.invite-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
}
.invite-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px;
}
.invite-ico {
  display: inline-grid; place-items: center; width: 38px; height: 38px;
  border-radius: 10px; font-size: 1.05rem; margin-bottom: 10px;
  background: rgba(61,123,247,.12); border: 1px solid rgba(61,123,247,.30);
}
.invite-card h3 { font-size: 1rem; margin-bottom: 5px; }
.invite-card p { color: var(--muted); font-size: .88rem; line-height: 1.55; }
.invite-all {
  margin-top: 14px; background: var(--panel); border: 1px solid var(--gold);
  border-radius: var(--radius); padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 14px;
}
.invite-all .invite-ico { margin-bottom: 0; flex: none; }
.invite-all h3 { font-size: 1rem; margin-bottom: 4px; }
.invite-all p { color: var(--muted); font-size: .9rem; line-height: 1.55; }

/* -------------------------------- NOTICE -------------------------------- */
.notice {
  /* uitlijnen met de binnenrand van .panels (maxw minus 2x 24px gutter) */
  max-width: calc(var(--maxw) - 48px); margin: 0 auto 44px; padding: 24px 26px;
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); position: relative; overflow: hidden;
}
.notice::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--red);
}
.notice { margin-left: 24px; margin-right: 24px; }
@media (min-width: 1168px) { .notice { margin-left: auto; margin-right: auto; } }
.notice-icon {
  flex: none; width: 40px; height: 40px; border-radius: 10px;
  background: rgba(226,99,91,.12); color: var(--red); font-weight: 800;
  border: 1px solid rgba(226,99,91,.3);
  display: grid; place-items: center;
}
.notice h3 { font-size: 1.05rem; margin-bottom: 6px; }
.notice p { color: var(--muted); font-size: .92rem; line-height: 1.6; }
.notice strong { color: var(--text); }

/* ------------------------------ RESERVE AREA ------------------------------ */
.reserve {
  max-width: var(--maxw); margin: 0 auto 60px; padding: 0 24px;
  display: grid; grid-template-columns: 1.4fr .9fr; gap: 24px; align-items: start;
}
.reserve-card, .availability {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
}
.reserve-card h2 { font-size: 1.7rem; }
.reserve-sub { color: var(--muted); margin: 6px 0 22px; font-size: .95rem; }

.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { font-size: .85rem; font-weight: 600; margin-bottom: 7px; }
.opt { color: var(--muted); font-weight: 400; }
input, select, textarea {
  background: var(--bg-2); border: 1px solid var(--line); color: var(--text);
  border-radius: 10px; padding: 12px 14px; font-size: 1rem; font-family: inherit;
  transition: border-color .15s;
}
textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); }
select {
  appearance: none; cursor: pointer; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%239fb0c9' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 12px 8px;
}
.hint { margin-top: 6px; font-size: .82rem; color: var(--muted); min-height: 1em; }
.hint.low { color: var(--gold-2); }
.hint.out { color: var(--red); }

.qty { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 44px; height: 44px; border-radius: 10px; font-size: 1.4rem;
  background: var(--panel-2); border: 1px solid var(--line); color: var(--text);
  cursor: pointer; transition: .15s;
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty input {
  width: 70px; text-align: center; font-weight: 700; font-size: 1.2rem;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }

.check { flex-direction: row; align-items: flex-start; gap: 10px; display: flex;
  margin: 6px 0 18px; font-size: .88rem; color: var(--muted); font-weight: 400; }
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); }

/* Deel-eis: opvallend blok zodat niemand er overheen leest */
.share-req {
  display: flex; gap: 14px; align-items: flex-start;
  margin: 18px 0; padding: 16px 18px;
  background: rgba(61,123,247,.10);
  border: 1px solid rgba(61,123,247,.40);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
}
.share-req-ico {
  flex: none; width: 38px; height: 38px; border-radius: 10px;
  background: rgba(61,123,247,.16); color: var(--gold-2);
  border: 1px solid rgba(61,123,247,.34);
  display: grid; place-items: center; font-size: 1.15rem;
}
.share-req h3 { font-size: 1rem; margin-bottom: 5px; color: var(--text); }
.share-req p { color: var(--muted); font-size: .88rem; line-height: 1.6; }
.share-req-ig {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
  padding: 9px 16px; border-radius: 10px; font-size: .86rem; font-weight: 700;
  color: #fff; text-decoration: none;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  border: 1px solid rgba(61,123,247,.55);
}
.share-req-ig::before { content: "📷"; }
.share-req-ig:hover { filter: brightness(1.08); }

.total-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-top: 1px solid var(--line); margin-bottom: 8px;
}
.total-line strong { font-size: 1.5rem; color: var(--gold-2); }
.vat-note { color: var(--muted); font-size: .8rem; margin: -2px 0 8px; text-align: right; }

.form-error {
  background: rgba(226,99,91,.12); border: 1px solid rgba(226,99,91,.4);
  color: #f2a9a3; padding: 10px 14px; border-radius: 10px;
  font-size: .9rem; margin-top: 12px;
}
.secure-note { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 14px; }

/* ----------------------------- AVAILABILITY ----------------------------- */
.availability h3 { font-size: 1.2rem; }
.avail-sub { color: var(--muted); font-size: .85rem; margin: 4px 0 16px; }
/* Slanke scrollbar in de stijl van de site (dun, rond, subtiel goud bij hover) */
.avail-wrap { position: relative; }
.avail-list {
  list-style: none; max-height: 520px; overflow-y: auto;
  padding-right: 12px;
  scrollbar-width: thin;                      /* Firefox */
  scrollbar-color: var(--line) transparent;
}
.avail-list::-webkit-scrollbar { width: 6px; }
.avail-list::-webkit-scrollbar-track { background: transparent; }
.avail-list::-webkit-scrollbar-thumb {
  background: var(--line); border-radius: 999px;
}
.avail-list::-webkit-scrollbar-thumb:hover { background: rgba(61,123,247,.55); }

/* Zachte fade onderaan als hint dat er meer landen volgen; verdwijnt onderaan. */
.avail-wrap::after {
  content: ""; position: absolute; left: 0; right: 12px; bottom: 0; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--panel));
  pointer-events: none; opacity: 1; transition: opacity .25s ease;
}
.avail-wrap.at-end::after { opacity: 0; }
.avail-list li {
  display: flex; align-items: center; gap: 10px; padding: 10px 4px;
  border-bottom: 1px solid var(--line); font-size: .9rem;
}
.avail-flag { font-size: 1.15rem; }
.avail-name { flex: 1; }
.avail-count { font-variant-numeric: tabular-nums; color: var(--muted); }
.avail-count.low { color: var(--gold-2); font-weight: 600; }
.avail-count.out { color: var(--red); font-weight: 600; }
.avail-loading { color: var(--muted); }

/* --------------------------------- TICKER -------------------------------- */
.ticker {
  margin: 18px auto 0; max-width: 520px;
  color: var(--muted); font-size: .84rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  opacity: 1; transition: opacity .45s ease;
}
.ticker.fade { opacity: 0; }
.ticker .tk-dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--trust); box-shadow: 0 0 8px rgba(79,214,163,.8);
}

/* ---------------------- AVAILABILITY PROGRESS BARS ---------------------- */
.avail-list li { flex-wrap: wrap; }
.avail-bar {
  flex-basis: 100%; height: 4px; border-radius: 999px;
  background: var(--panel-2); overflow: hidden; margin-top: 7px;
}
.avail-bar span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transition: width .8s ease;
}
.avail-bar.low span { background: linear-gradient(90deg, #e2a25b, var(--red)); }
/* Zelfde balk onder de landkeuze in het formulier (kolom-flex: breedte i.p.v. flex-basis). */
#countryBar { flex: 0 0 auto; width: 100%; }
.badge-low {
  font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  color: var(--gold-2); border: 1px solid rgba(61,123,247,.45);
  background: rgba(61,123,247,.1);
  border-radius: 999px; padding: 2px 8px; white-space: nowrap;
}

/* ---------------------------------- FAQ ---------------------------------- */
.faq { max-width: 780px; margin: 0 auto 70px; padding: 0 24px; }
.faq h2 { text-align: center; font-size: 1.8rem; margin-bottom: 26px; }
.faq-list details {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 12px; margin-bottom: 10px; overflow: hidden;
}
.faq-list summary {
  cursor: pointer; list-style: none; padding: 16px 20px;
  font-weight: 600; font-size: .97rem; position: relative;
  padding-right: 46px; transition: color .15s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%); color: var(--gold);
  font-size: 1.25rem; font-weight: 400; transition: transform .2s;
}
.faq-list details[open] summary { color: var(--gold-2); }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p {
  padding: 0 20px 18px; color: var(--muted); font-size: .92rem;
}

/* ------------------------------ LEGAL PAGES ------------------------------ */
.legal { max-width: 760px; margin: 0 auto; padding: 30px 24px 70px; }
.legal h1 { font-size: 2rem; margin-bottom: 6px; }
.legal .legal-updated { color: var(--muted); font-size: .85rem; margin-bottom: 28px; }
.legal h2 { font-size: 1.2rem; margin: 30px 0 10px; }
.legal p, .legal li { color: var(--muted); font-size: .94rem; margin-bottom: 10px; }
.legal ul, .legal ol { padding-left: 22px; margin-bottom: 10px; }
.legal .legal-note {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 18px; font-size: .88rem; margin-bottom: 26px;
}
.legal a { color: var(--gold-2); text-decoration: underline; }

/* ------------------------------- COMPLAINT ------------------------------ */
.complaint-sec { max-width: var(--maxw); margin: 44px auto; padding: 0 24px; }
.complaint-inner {
  max-width: 640px; margin: 0 auto; padding: 26px 28px;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
}
.complaint-inner h2 { font-size: 1.5rem; margin-bottom: 6px; }
.complaint-sub { color: var(--muted); font-size: .95rem; line-height: 1.6; margin-bottom: 18px; }

/* -------------------------------- FOOTER -------------------------------- */
.footer {
  max-width: var(--maxw); margin: 0 auto; padding: 40px 24px 60px;
  text-align: center; color: var(--muted); font-size: .88rem;
  border-top: 1px solid var(--line);
}
.foot-small { font-size: .78rem; margin-top: 8px; opacity: .75; }
.foot-links { margin-top: 14px; font-size: .82rem; }
.foot-links a { color: var(--muted); text-decoration: underline; }
.foot-links a:hover { color: var(--text); }
.foot-links span { margin: 0 8px; opacity: .5; }

/* -------------------------------- MOBILE -------------------------------- */
@media (max-width: 900px) {
  .trustbar { grid-template-columns: repeat(2, 1fr); }
  .panels { grid-template-columns: 1fr; }
  .reserve { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .row { grid-template-columns: 1fr; }
  .trustbar { grid-template-columns: 1fr; }
  .invite-grid { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 32px; }
  .nav-cta { display: none; }
}

/* ------------------------------ THANK YOU ------------------------------ */
.ty-wrap {
  max-width: 620px; margin: 0 auto; padding: 80px 24px; text-align: center;
}
.ty-badge {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 24px;
  display: grid; place-items: center; font-size: 2rem;
  background: rgba(71,192,122,.15); border: 1px solid rgba(71,192,122,.4); color: var(--green);
}
.ty-wrap h1 { font-size: 2.2rem; margin-bottom: 12px; }
.ty-wrap p { color: var(--muted); margin-bottom: 10px; }
.ty-refund {
  background: linear-gradient(180deg, rgba(79,214,163,.09), rgba(79,214,163,.02));
  border: 1px solid rgba(79,214,163,.32); border-radius: 12px;
  padding: 14px 18px; color: var(--text) !important; margin-top: 18px;
  font-size: .92rem;
}

/* ------------------------------- anti-bot -------------------------------- */
/* Honeypot: voor mensen onzichtbaar en onbereikbaar; bots vullen hem wel in. */
.hp-field {
  position: absolute !important; left: -9999px; top: -9999px;
  width: 1px; height: 1px; opacity: 0; pointer-events: none;
}
/* Turnstile-widget netjes in het formulier */
.captcha-field { margin: 14px 0 4px; }
.captcha-field label { display: block; margin-bottom: 8px; }
#turnstileWidget { min-height: 65px; }
