/* ── Brand tokens ── */
:root {
  --orange:      #FF6602;
  --orange-dark: #e05500;
  --blue:        #0089EA;
  --blue-dark:   #0070C0;
  --navy:        #002A48;
  --light:       #F2F9FF;
  --green:       #3CB86A;
  --text:        #1a1a2e;
}

/* ── Wider container ── */
.container { max-width: 1240px !important; }

/* ── Top bar ── */
.top-bar {
  background-color: var(--navy);
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  padding: 0.35rem 0;
}
.top-bar a { color: rgba(255,255,255,0.82); text-decoration: none; }
.top-bar .top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.top-bar .usps {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) { .top-bar .usps { display: none; } }

/* ── Fixed header wrapper ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.content-offset { padding-top: 90px; }

/* ── Navbar ── */
.navbar { box-shadow: none; }
.navbar-item img { max-height: 42px; }
.navbar-item { font-weight: 500; color: var(--navy); }
.navbar-item:hover { color: var(--blue) !important; background: transparent !important; }

/* ── Pill buttons ── */
.btn-orange {
  background-color: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
  border-radius: 50px;
  padding: 0.55em 1.5em;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn-orange:hover { background-color: var(--orange-dark); border-color: var(--orange-dark); color: #fff; }

.btn-orange-outline {
  background-color: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 50px;
  padding: 0.55em 1.5em;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-orange-outline:hover { background-color: var(--orange); color: #fff; }

.btn-navy {
  background-color: var(--navy);
  color: #fff;
  border: 2px solid var(--navy);
  border-radius: 50px;
  padding: 0.55em 1.5em;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-navy:hover { background-color: #003a62; color: #fff; }

.btn-green {
  background-color: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 50px;
  padding: 0.55em 1.5em;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-green:hover { background-color: #2fa05a; color: #fff; }

.btn-white {
  background-color: #fff;
  color: var(--navy);
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 0.55em 1.5em;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-white:hover { background-color: #f0f0f0; color: var(--navy); }

/* ── Section colours ── */
.section-light { background-color: var(--light) !important; }
.section-blue  { background-color: var(--blue) !important; }
.section-navy  { background-color: var(--navy) !important; }

/* ── Hero (light) ── */
.hero-light {
  background-color: var(--light);
  padding: 4rem 1.5rem;
}
.hero-light .title   { color: var(--navy); }
.hero-light .subtitle { color: #444; }

/* ── Feature media ── */
.feature-media {
  border-radius: 12px;
  width: 100%;
  display: block;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

/* ── Partner logos ── */
.partner-logo {
  max-height: 34px;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.2s, opacity 0.2s;
}
.partner-logo:hover { filter: none; opacity: 1; }

/* ── Pricing cards ── */
.pricing-card {
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: 0 6px 28px rgba(0,137,234,0.13); }
.pricing-card .pkg-features { flex: 1; list-style: none; padding: 0; margin: 1rem 0 1.5rem; }
.pricing-card .pkg-features li { padding: 0.3rem 0; font-size: 0.9rem; color: #444; }
.pricing-card .pkg-features li::before { content: "● "; color: var(--blue); font-size: 0.6rem; vertical-align: middle; }
.pricing-card .pkg-features li.pkg-plus::before { content: "+ "; color: var(--blue); font-size: 0.9rem; font-weight: 700; }
.pricing-card .pkg-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  margin-bottom: 1rem;
}
.pricing-card .pkg-price small { font-size: 1rem; font-weight: 400; color: #888; }
.pricing-card .pkg-price.on-request { font-size: 1.4rem; color: var(--orange); }

/* ── Checklist (functionaliteiten) ── */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}
.check-list li:last-child { border-bottom: none; }
.check-list li:nth-child(odd) { background: #f8f8f8; }
.check-icon { color: #3DBE6C; font-size: 1.25rem; flex-shrink: 0; }

/* ── Blockquote ── */
.blockquote-brand {
  border-left: 4px solid var(--blue);
  padding-left: 1.25rem;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
}

/* ── Stats ── */
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

/* ── Force light inputs regardless of OS/browser dark mode ── */
.input, .textarea, .select select {
  background-color: #fff !important;
  color: #333 !important;
  border-color: #dbdbdb !important;
}
.input::placeholder, .textarea::placeholder { color: #aaa !important; }
.input:focus, .textarea:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 2px rgba(0,137,234,0.15) !important;
}
.label { color: #555 !important; }

/* ── FAQ ── */
.faq-item {
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.faq-question {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  background: #fff;
  color: var(--navy);
}
.faq-question::after { content: "∨"; color: var(--blue); font-size: 1rem; flex-shrink: 0; margin-left: 1rem; }
.faq-item.is-open .faq-question { background: var(--light); }
.faq-item.is-open .faq-question::after { content: "∧"; }
.faq-answer { display: none; padding: 0.75rem 1.25rem 1rem; color: #555; font-size: 0.9rem; background: #fff; }
.faq-item.is-open .faq-answer { display: block; }

/* ── Arnoud contact bar ── */
.arnoud-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.arnoud-bar img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ── Feature accordion (middle section) ── */
.feature-accordion { display: flex; flex-direction: column; gap: 0; }
.feature-item { border-bottom: 1px solid #e4e4e4; }
.feature-item:first-child { border-top: 1px solid #e4e4e4; }
.feature-item-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 0;
  cursor: pointer;
  user-select: none;
}
.feature-item-icon { font-size: 1.4rem; font-weight: 800; color: var(--blue); flex-shrink: 0; width: 24px; text-align: center; line-height: 1; }
.feature-item-title { flex: 1; font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.feature-item-chevron {
  font-size: 1.2rem;
  color: var(--orange);
  font-weight: 700;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.feature-item.is-open .feature-item-chevron { transform: rotate(90deg); }
.feature-item-body { display: none; padding: 0 0 1.25rem 2.6rem; }
.feature-item.is-open .feature-item-body { display: block; }
.feature-item-body p { color: #555; font-size: 0.9rem; line-height: 1.6; }

/* ── Cookie consent banner ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  z-index: 999;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.2);
}
#cookie-banner-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
#cookie-banner p { font-size: 0.88rem; margin: 0; }
#cookie-banner a { color: #fff; text-decoration: underline; }
#cookie-banner-buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }
#cookie-banner-buttons button { font-size: 0.85rem; padding: 0.45em 1.2em; cursor: pointer; }

/* ── Footer ── */
footer.footer {
  background-color: var(--navy) !important;
  color: rgba(255,255,255,0.82);
  padding-top: 3rem;
  padding-bottom: 2rem;
}
footer.footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
footer.footer a:hover { color: #fff; }
footer.footer .footer-divider { background: rgba(255,255,255,0.12); height: 1px; margin: 1.5rem 0; }
footer.footer .footer-copy { font-size: 0.78rem; opacity: 0.4; text-align: center; }
footer.footer ul { list-style: none; padding: 0; margin: 0; }
footer.footer ul li { margin-bottom: 0.4rem; font-size: 0.88rem; }
footer.footer .footer-heading { font-weight: 600; font-size: 0.88rem; margin-bottom: 0.75rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.5px; }
