/* BitAssist — Mobiele IT-hulp bij jou aan huis
   Kleurenpalet: wit + blauw + donkergrijs */

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f3f7fa;
  --color-beige: #e6f2f9;
  --color-beige-dark: #c9e4f2;
  --color-accent: #127ab0;
  --color-accent-dark: #075a87;
  --color-text: #17212b;
  --color-dark: #2f4454;
  --color-text-muted: #52616d;
  --color-border: #d6e1e8;
  --color-white: #ffffff;

  --radius: 14px;
  --shadow: 0 10px 30px -15px rgba(51, 43, 34, 0.25);
  --max-width: 1160px;
  --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-accent);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover { background: var(--color-accent-dark); }
.btn-ghost {
  background: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
}
.btn-ghost:hover { background: var(--color-beige); }
.btn-lg { padding: 14px 26px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-dot { color: var(--color-accent); }

.site-logo {
  width: 170px;
  height: 64px;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
}

.site-logo-footer {
  width: 190px;
  height: 72px;
}

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--color-text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}
.header-phone-icon {
  width: 15px;
  height: 15px;
  fill: var(--color-accent);
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--color-beige) 0%, var(--color-bg) 100%);
  padding: 72px 0 64px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  margin: 0 0 10px;
}
.eyebrow.center, .section-title.center, .section-lead.center { text-align: center; }

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-lead {
  font-size: 1.08rem;
  color: var(--color-text-muted);
  max-width: 46ch;
  margin: 0 0 28px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
.hero-trust li { padding-left: 18px; position: relative; }
.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.hero-visual {
  display: grid;
  gap: 18px;
  justify-items: end;
}
.hero-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card .icon { width: 40px; height: 40px; stroke: var(--color-accent-dark); fill: none; stroke-width: 1.5; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.section-lead {
  color: var(--color-text-muted);
  max-width: 56ch;
  margin: 0 auto 44px;
}
.section > .container > .section-title.center,
.section > .container > .eyebrow.center { text-align: center; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 22px; }
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px;
}

.grid-services { grid-template-columns: repeat(4, 1fr); margin-top: 8px; }
.service-card { transition: transform 0.15s ease, box-shadow 0.15s ease; }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--color-beige);
  margin-bottom: 14px;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--color-accent-dark); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.service-card p { margin: 0; color: var(--color-text-muted); font-size: 0.92rem; }

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-accent-dark);
  background: var(--color-beige);
  border-radius: 999px;
  display: table;
  margin: -16px auto 36px;
  padding: 6px 16px;
}

.grid-pricing { grid-template-columns: repeat(3, 1fr); }
.pricing-card { text-align: center; }
.pricing-card h3 { margin: 0 0 16px; font-size: 1.15rem; }
.pricing-card .price { margin: 0 0 6px; font-size: 1.15rem; font-weight: 700; }
.pricing-card .price span { display: block; font-weight: 400; font-size: 0.8rem; color: var(--color-text-muted); }
.pricing-desc { color: var(--color-text-muted); font-size: 0.9rem; margin-top: 14px; }
.pricing-card-highlight { background: var(--color-dark); color: #fff; border-color: var(--color-dark); }
.pricing-card-highlight .price span,
.pricing-card-highlight .pricing-desc { color: #c8d5dd; }

.over-ons-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.over-ons-text p { color: var(--color-text-muted); }
.over-ons-stats { display: grid; gap: 18px; }
.stat {
  background: var(--color-beige);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
}
.stat-number { font-size: 1.3rem; font-weight: 800; }
.stat-label { color: var(--color-text-muted); font-size: 0.88rem; }

.grid-reviews { grid-template-columns: repeat(3, 1fr); }
.review-card { margin: 0; }
.stars { color: var(--color-accent); letter-spacing: 2px; margin-bottom: 10px; }
.review-card p { margin: 0 0 14px; font-style: italic; }
.review-card cite { font-style: normal; font-weight: 600; font-size: 0.9rem; color: var(--color-text-muted); }

/* ---------- Agenda & contact ---------- */
.agenda-contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: start;
}
.booking-card { padding: 18px; }
.booking-card-cta {
  text-align: center;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.booking-card-cta h3 { margin: 0; }
.booking-card-cta p { color: var(--color-text-muted); margin: 0 0 10px; }
.booking-card-cta .btn { margin: 8px 0 14px; }
.cal-booking-embed {
  width: 100%;
  min-height: 480px;
  border-radius: 10px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Eigen slot-picker (stap 4) - geen externe partij zichtbaar */
.slot-picker { width: 100%; }

.slot-picker-days {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}

.slot-day-btn {
  flex: 0 0 auto;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
}

.slot-day-btn span { display: block; }
.slot-day-btn .slot-day-date { font-weight: 700; font-size: 0.95rem; }
.slot-day-btn .slot-day-label { font-weight: 500; font-size: 0.72rem; color: var(--color-text-muted); text-transform: capitalize; }

.slot-day-btn:hover { border-color: var(--color-accent); }
.slot-day-btn.active { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.slot-day-btn.active .slot-day-label { color: rgba(255,255,255,0.85); }
.slot-day-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.slot-picker-times {
  min-height: 220px;
}

.slot-picker-status {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  text-align: center;
  padding: 40px 10px;
  margin: 0;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
}

.slot-btn {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 10px 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
}

.slot-btn:hover { border-color: var(--color-accent); color: var(--color-accent-dark); }
.slot-btn.selected { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.slot-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.slot-confirm-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.slot-confirm-text { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }
.slot-confirm-text strong { color: var(--color-text); }
.booking-fallback {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 14px 0 4px;
}

.contact-card h3 { margin: 0 0 16px; font-size: 1.05rem; }
.contact-list { list-style: none; margin: 0 0 4px; padding: 0; display: grid; gap: 14px; }
.contact-list li { display: flex; flex-direction: column; gap: 2px; font-size: 0.92rem; }
.contact-list strong { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); }
.contact-card hr { border: none; border-top: 1px solid var(--color-border); margin: 22px 0; }

.contact-form { display: grid; gap: 6px; }
.contact-form label { font-size: 0.82rem; font-weight: 600; margin-top: 8px; }
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--color-accent); outline-offset: 1px; }
.contact-form button { margin-top: 12px; justify-self: start; }
.contact-form button:disabled { opacity: 0.7; cursor: not-allowed; }
.form-feedback {
  margin: 4px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
}
.form-feedback-success { background: #e5f5ea; color: #1e6b3a; }
.form-feedback-error { background: #fbe8e6; color: #a5301f; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark);
  color: #e8eef2;
  padding-top: 56px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo-footer { color: #fff; background: #fff; border-radius: 8px; overflow: hidden; }
.footer-brand p { color: #b8c7d1; font-size: 0.9rem; margin-top: 10px; }
.footer-col h4 { margin: 0 0 14px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: #b8c7d1; }
.footer-col p { margin: 0 0 8px; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { padding: 18px 24px; font-size: 0.82rem; color: #b8c7d1; }

/* ---------- Beleidspagina's (privacy/voorwaarden) ---------- */
.policy-page { padding: 56px 0 84px; }
.policy-content { max-width: 760px; margin: 0 auto; }
.policy-content h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin: 0 0 8px; }
.policy-updated { color: var(--color-text-muted); font-size: 0.88rem; margin: 0 0 32px; }
.policy-content h2 { font-size: 1.25rem; margin: 40px 0 12px; }
.policy-content h2:first-of-type { margin-top: 0; }
.policy-content h3 { font-size: 1.02rem; margin: 24px 0 8px; }
.policy-content p, .policy-content li { color: var(--color-text-muted); line-height: 1.7; }
.policy-content ul, .policy-content ol { margin: 0 0 16px; padding-left: 20px; }
.policy-content li { margin-bottom: 6px; }
.policy-content a { color: var(--color-accent); text-decoration: underline; }
.policy-content strong { color: var(--color-text); }
.policy-note {
  background: var(--color-beige);
  border: 1px solid var(--color-beige-dark);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--color-text);
  margin: 0 0 32px;
}

.footer-legal { margin-top: 6px; }
.footer-legal a { color: inherit; text-decoration: underline; }
.footer-legal a:hover { color: #fff; }

/* ---------- 404 ---------- */
.notfound { padding: 88px 0 104px; }
.notfound-inner { max-width: 640px; }
.notfound-lead { color: var(--color-text-muted); font-size: 1.05rem; margin: 0 0 28px; }
.notfound-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.notfound-links { border-top: 1px solid var(--color-border); padding-top: 24px; }
.notfound-links-title { font-weight: 600; margin: 0 0 8px; }
.notfound-links ul { margin: 0 0 20px; padding-left: 20px; color: var(--color-text-muted); }
.notfound-links li { margin-bottom: 6px; }
.notfound-links a, .notfound-help a { color: var(--color-accent); text-decoration: underline; }
.notfound-help { color: var(--color-text-muted); font-size: 0.92rem; margin: 0; }

/* ---------- Afspraak-wizard ---------- */
.wizard-page { padding: 56px 0 84px; }
.wizard-container { max-width: 640px; }
.wizard-shell-wide { max-width: 100%; }
.wizard-shell.wizard-shell-wide { max-width: none; }
#step-4.wizard-shell, #step-5.wizard-shell { max-width: 100%; }

.step { display: none; }
.step.active { display: block; animation: stepFade 0.35s ease; }
@keyframes stepFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-indicator {
  display: flex;
  gap: 8px;
  max-width: 640px;
  margin: 0 auto 40px;
}
.step-dot {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--color-border);
  transition: background 0.2s ease;
}
.step-dot.active { background: var(--color-accent-dark); }
.step-dot.done { background: var(--color-accent); }

.wizard-page .section-title { margin-bottom: 10px; }
.wizard-page .section-lead { max-width: none; margin: 0 0 28px; }

.issue-heading {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin: 0 0 12px;
}
.issue-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.chip {
  background: var(--color-beige);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.chip:hover { background: var(--color-beige-dark); }
.chip.selected { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.issue-hint { font-size: 0.82rem; color: var(--color-text-muted); margin: 0 0 22px; }

.wizard-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.wizard-textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.98rem;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  resize: vertical;
  min-height: 140px;
}
.wizard-textarea:focus { outline: 2px solid var(--color-accent); outline-offset: 1px; }

.wizard-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 28px; }
.wizard-actions-spread { justify-content: space-between; }
.wizard-actions-center { justify-content: center; }

.description-preview {
  white-space: pre-wrap;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.wizard-form { display: grid; gap: 6px; max-width: 520px; }
.wizard-form label { font-size: 0.82rem; font-weight: 600; margin-top: 12px; }
.required-mark { color: var(--color-accent-dark); }
.wizard-form input {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 11px 13px;
  border-radius: 8px;
  border: 1.5px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
}
.wizard-form input:focus { outline: 2px solid var(--color-accent); outline-offset: 1px; }
.wizard-form .wizard-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 18px;
  font-weight: 400;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  cursor: pointer;
}
.wizard-form .wizard-consent input {
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 2px 0 0;
  flex-shrink: 0;
  accent-color: var(--color-accent);
  cursor: pointer;
}
.wizard-consent a { color: var(--color-accent); text-decoration: underline; }

.grid-confirm { grid-template-columns: repeat(2, 1fr); margin: 28px 0 20px; }
.grid-confirm .card h3 { margin: 0 0 10px; font-size: 1rem; }
.grid-confirm .card p { margin: 0; color: var(--color-text-muted); white-space: pre-wrap; }

.wizard-link-lead { margin-top: -24px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .grid-services { grid-template-columns: repeat(2, 1fr); }
  .grid-pricing { grid-template-columns: 1fr; }
  .grid-reviews { grid-template-columns: 1fr; }
  .over-ons-inner { grid-template-columns: 1fr; }
  .agenda-contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px;
    gap: 14px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary { padding: 9px 16px; font-size: 0.88rem; }
}

@media (max-width: 720px) {
  .grid-services { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .grid-confirm { grid-template-columns: 1fr; }
  .wizard-actions-spread { flex-direction: column-reverse; align-items: stretch; }
  .wizard-actions-spread .btn { text-align: center; }
}

.nav-cta-mobile { display: none; }

@media (max-width: 480px) {
  .grid-services { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }
  .header-actions .btn-primary { display: none; }
  .nav-cta-mobile { display: inline-block; margin-top: 4px; text-align: center; }
}


/* ---------- BitAssist logo responsive sizing ---------- */
@media (max-width: 760px) {
  .site-logo {
    width: 135px;
    height: 54px;
  }
  .site-logo-footer {
    width: 165px;
    height: 62px;
  }
}


/* ---------- Cookiemelding ---------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 300;
  display: flex;
  justify-content: center;
  pointer-events: none;           /* alleen de kaart zelf vangt klikken op */
}
.cookie-banner[hidden] { display: none; }

.cookie-inner {
  pointer-events: auto;
  width: 100%;
  max-width: 720px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px -12px rgba(23, 33, 43, 0.35);
  padding: 22px 24px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  animation: stepFade 0.3s ease;
}
.cookie-title { margin: 0 0 8px; font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; }
.cookie-text { margin: 0 0 16px; font-size: 0.9rem; color: var(--color-text-muted); }

.cookie-details { display: grid; gap: 10px; margin: 0 0 18px; }
.cookie-details[hidden] { display: none; }
.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  cursor: pointer;
}
.cookie-option input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--color-accent); flex-shrink: 0; }
.cookie-option input:disabled { cursor: not-allowed; opacity: 0.85; }
.cookie-option:has(input:disabled) { cursor: default; }
.cookie-option-body { display: flex; flex-direction: column; gap: 2px; font-size: 0.85rem; color: var(--color-text-muted); }
.cookie-option-body strong { font-size: 0.92rem; color: var(--color-text); }

.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.cookie-actions .btn { padding: 10px 18px; font-size: 0.9rem; }
.cookie-actions [hidden] { display: none; }

/* Footerlink */
.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-link-btn:hover { color: var(--color-accent); }

@media (max-width: 560px) {
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; }
  .cookie-inner { padding: 18px 16px; }
  .cookie-actions { flex-direction: column-reverse; }
  .cookie-actions .btn { width: 100%; text-align: center; }
}

/* Placeholder als agenda nog geen toestemming heeft */
.cal-consent-placeholder {
  text-align: center;
  padding: 28px 22px;
  max-width: 420px;
}
.cal-consent-placeholder p { margin: 0 0 16px; color: var(--color-text-muted); font-size: 0.95rem; }
