:root {
  --bg: #f4f5f7;
  --bg-top: #fbfcfe;
  --radial-bg: #ffffff;
  --bg-muted: #eff2f6;
  --surface: #ffffff;
  --text: #1f2630;
  --muted: #5b6675;
  --text-muted: var(--muted);
  --line: #dce2ea;
  --line-strong: #cad4e0;
  --brand: #0b7ac5;
  --brand-strong: #0663a1;
  --brand-soft: #e8f3fb;
  --success: #1e6f50;
  --danger: #a52f2f;
  --radius: 20px;
  --heading: #121a24;
  --header-bg: rgba(255, 255, 255, 0.84);
  --header-border: rgba(202, 212, 224, 0.9);
  --footer-bg: rgba(255, 255, 255, 0.86);
  --input-bg: #ffffff;
  --card-shadow: 0 18px 38px rgba(15, 30, 55, 0.07);
  --featured-shadow: 0 22px 44px rgba(6, 99, 161, 0.2);
  --cta-start: #ffffff;
  --cta-end: #f7fafe;
  --quote: #324258;
  --quote-strong: #1d3249;
  --label: #263647;
}

[data-theme="dark"] {
  --bg: #0a1018;
  --bg-top: #0f1722;
  --radial-bg: #172536;
  --bg-muted: #111b28;
  --surface: #121e2c;
  --text: #edf2f7;
  --muted: #a7b4c3;
  --line: #243548;
  --line-strong: #30455e;
  --brand: #3da4f5;
  --brand-strong: #5fb5fb;
  --brand-soft: #173149;
  --success: #6ad0a0;
  --danger: #f08f8f;
  --heading: #f7fbff;
  --header-bg: rgba(8, 14, 22, 0.76);
  --header-border: rgba(48, 69, 94, 0.74);
  --footer-bg: rgba(8, 14, 22, 0.82);
  --input-bg: #102031;
  --card-shadow: 0 20px 42px rgba(0, 0, 0, 0.38);
  --featured-shadow: 0 26px 48px rgba(2, 8, 17, 0.52);
  --cta-start: #142232;
  --cta-end: #1a2c40;
  --quote: #c4d3df;
  --quote-strong: #f1f6fb;
  --label: #d8e4ef;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  letter-spacing: 0.01em;
  background:
    radial-gradient(1200px 420px at 10% -20%, var(--radial-bg) 0%, transparent 68%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg) 100%);
}

main {
  padding-bottom: 2rem;
}

.container {
  width: min(1240px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.65rem 0 0.45rem;
  background: transparent;
}

.nav-wrapper {
  position: relative;
  min-height: 68px;
  padding: 0.5rem 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--header-bg);
  border: 1px solid var(--header-border);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(16, 29, 45, 0.08);
  backdrop-filter: blur(18px);
}

.logo {
  color: var(--text);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.site-nav {
  display: block;
}

.nav-toggle-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  min-height: 36px;
  padding: 0.48rem 0.76rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--heading);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.nav-toggle-icon {
  position: relative;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle-icon::before {
  top: -4px;
}

.nav-toggle-icon::after {
  top: 4px;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  padding: 0.52rem 0.86rem;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--brand-strong);
  background: var(--brand-soft);
  transform: translateY(-1px);
}

.theme-toggle-btn {
  position: relative;
  width: 62px;
  min-width: 62px;
  height: 30px;
  min-height: 30px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(92, 109, 127, 0.3);
  background: linear-gradient(180deg, rgba(249, 251, 254, 0.82) 0%, rgba(233, 238, 245, 0.78) 100%);
  backdrop-filter: blur(6px);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.4),
    0 2px 6px rgba(15, 23, 34, 0.12);
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.theme-switch-track {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: inherit;
}

.theme-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.theme-icon-sun {
  left: 8px;
  color: #cf8e06;
}

.theme-icon-moon {
  right: 8px;
  color: #f4f7ff;
}

.theme-switch-thumb {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(145deg, #434b56 0%, #242a33 100%);
  box-shadow:
    0 2px 5px rgba(0, 0, 0, 0.22),
    inset 0 -1px 2px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, background 0.25s ease;
}

.theme-switch-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.theme-toggle-btn[aria-pressed="true"] {
  background: linear-gradient(180deg, rgba(27, 33, 40, 0.95) 0%, rgba(15, 19, 24, 0.96) 100%);
  border-color: rgba(71, 86, 103, 0.62);
  box-shadow:
    inset 0 2px 5px rgba(0, 0, 0, 0.32),
    0 1px 2px rgba(0, 0, 0, 0.2);
}

.theme-toggle-btn[aria-pressed="true"] .theme-switch-thumb {
  transform: translateX(0);
  background: linear-gradient(145deg, #ffffff 0%, #e8edf3 100%);
}

.theme-toggle-btn[aria-pressed="false"] .theme-switch-thumb {
  transform: translateX(34px);
  background: linear-gradient(145deg, #434b56 0%, #242a33 100%);
}

.theme-toggle-btn[aria-pressed="true"] .theme-icon-sun {
  opacity: 0.34;
}

.theme-toggle-btn[aria-pressed="true"] .theme-icon-moon {
  opacity: 0.96;
}

.theme-toggle-btn[aria-pressed="false"] .theme-icon-sun {
  opacity: 0.95;
}

.theme-toggle-btn[aria-pressed="false"] .theme-icon-moon {
  opacity: 0.22;
}

.theme-toggle-btn:hover {
  border-color: var(--brand);
  box-shadow:
    0 0 0 2px rgba(27, 109, 134, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.theme-toggle-btn:focus-visible {
  outline: 3px solid rgba(27, 109, 134, 0.24);
  outline-offset: 2px;
}

.theme-toggle-btn:active .theme-switch-thumb {
  width: 27px;
}

.theme-toggle-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.hero {
  padding: 5rem 0 3.4rem;
}

.page-lead {
  padding-top: 2.8rem;
  padding-bottom: 1.4rem;
}

.section {
  padding: 3.4rem 0;
}

.section-muted {
  background: var(--bg-muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 820px;
}

.section-head .intro {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.95rem;
  padding: 0.34rem 0.84rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  line-height: 1.18;
  color: var(--heading);
}

h1 {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 20ch;
}

h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.intro {
  max-width: 70ch;
  margin-bottom: 1.6rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-grid {
  margin-top: 1.4rem;
}

.card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.55rem;
  box-shadow: var(--card-shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.card h2,
.card p,
.card ul {
  margin: 0;
}

.card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.cta-card {
  background: linear-gradient(180deg, var(--cta-start) 0%, var(--cta-end) 100%);
  border-color: var(--line-strong);
}

.package-card {
  border-top: 4px solid transparent;
}

.package-card.featured {
  border-top-color: var(--brand);
  box-shadow: var(--featured-shadow);
}

.package-price {
  margin-top: auto;
  padding-top: 0.2rem;
  color: var(--heading);
  font-size: 1.02rem;
}

.trust-grid .card {
  justify-content: space-between;
}

.quote-text {
  margin: 0;
  color: var(--quote);
  font-weight: 500;
}

.trust-result {
  margin-top: 0.6rem;
  color: var(--quote-strong);
  font-size: 0.96rem;
  font-weight: 700;
}

.quote-meta {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.clean-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.clean-list li {
  padding: 0.52rem 0;
  color: var(--text-muted);
  border-bottom: 1px dashed var(--line);
}

.clean-list li:last-child {
  border-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(6, 99, 161, 0.26);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  background: var(--brand-strong);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(6, 99, 161, 0.3);
  filter: saturate(105%);
}

.btn:focus-visible {
  outline: 3px solid rgba(27, 109, 134, 0.25);
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line-strong);
  box-shadow: 0 2px 10px rgba(20, 35, 53, 0.06);
}

.btn-secondary:hover {
  background: var(--brand-soft);
  color: var(--brand-strong);
  box-shadow: 0 8px 20px rgba(20, 35, 53, 0.1);
}

.hidden {
  display: none !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.card h3 {
  margin: 0;
  color: var(--heading);
  font-size: 1.08rem;
  line-height: 1.3;
}

.service-points {
  margin-top: 0.2rem;
}

.process-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-card {
  border-top: 3px solid var(--brand);
}

.step-label {
  margin: 0;
  display: inline-block;
  width: fit-content;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.8rem;
  font-weight: 800;
}

.pricing-card {
  position: relative;
}

.pricing-card .package-price {
  margin-top: 0.1rem;
  margin-bottom: 0.2rem;
  font-size: 1.16rem;
  font-weight: 800;
}

.pricing-card.featured {
  transform: translateY(-4px);
}

.pricing-badge {
  margin: 0;
  width: fit-content;
  border-radius: 999px;
  padding: 0.22rem 0.58rem;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--text-muted);
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.04rem;
  width: 1.1rem;
  text-align: left;
  font-weight: 800;
}

.feature-list li.is-included::before {
  content: "+";
  color: var(--success);
}

.feature-list li.is-excluded::before {
  content: "x";
  color: var(--danger);
}

.pricing-note {
  margin-top: 1rem;
}

.pricing-note p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
  gap: 0.7rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  color: var(--heading);
  font: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--brand-strong);
}

.faq-answer {
  margin: 0;
}

.trust-microcopy {
  margin-top: 0.1rem;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  color: var(--quote);
  font-weight: 600;
}

.text-link {
  color: var(--brand-strong);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-info p {
  margin-bottom: 0.45rem;
}

.contact-form {
  display: grid;
  gap: 0.78rem;
}

.form-hidden {
  display: none;
}

label {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--label);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--text);
  background: var(--input-bg);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(27, 109, 134, 0.18);
  border-color: var(--brand);
}

.form-status {
  min-height: 1.4rem;
  margin: 0.1rem 0 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--footer-bg);
  padding: 1.1rem 0;
}

.footer-content p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* diensten.html */
.diensten-pricing-section {
  padding-top: 2.1rem;
}

.diensten-pricing-grid {
  margin-top: 1.05rem;
}

.diensten-price-card {
  position: relative;
  gap: 0.9rem;
}

.diensten-price {
  margin: 0;
  color: var(--heading);
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.1;
}

.diensten-badge {
  margin: 0;
  width: fit-content;
  border-radius: 999px;
  padding: 0.22rem 0.62rem;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.diensten-price-card.featured {
  border-top: 4px solid var(--brand);
  box-shadow: var(--featured-shadow);
}

.diensten-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.diensten-feature-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--text-muted);
}

.diensten-feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.04rem;
  width: 1.1rem;
  font-weight: 800;
}

.diensten-feature-list li.is-included::before {
  content: "+";
  color: var(--success);
}

.diensten-feature-list li.is-excluded::before {
  content: "x";
  color: var(--danger);
}

.diensten-pricing-note {
  margin-top: 1rem;
}

.diensten-pricing-note p {
  margin: 0;
  color: var(--text-muted);
}

.diensten-simple-grid .card,
.diensten-step-card {
  gap: 0.7rem;
}

.diensten-keuzehulp-cta {
  margin-top: 1.15rem;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  text-align: center;
}

.diensten-keuzehulp-text {
  margin: 0;
  max-width: 62ch;
  color: var(--text-muted);
  font-weight: 600;
}

.diensten-steps-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.diensten-step-number {
  width: 32px;
  height: 32px;
  margin: 0;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
}

.diensten-faq-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.diensten-faq-item {
  gap: 0.6rem;
}

.diensten-faq-btn {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  color: var(--heading);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.diensten-faq-btn:hover {
  color: var(--brand-strong);
}

.diensten-faq-answer {
  margin: 0;
}

.diensten-cta-card {
  gap: 0.9rem;
}

.diensten-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

[data-motion="ready"] .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-motion="ready"] .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-motion="ready"] .reveal-delay-1 {
  transition-delay: 0.08s;
}

[data-motion="ready"] .reveal-delay-2 {
  transition-delay: 0.16s;
}

[data-motion="ready"] .reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 1024px) {
  .container {
    width: min(960px, 94%);
  }

  .hero {
    padding: 4.4rem 0 3.1rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .diensten-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .diensten-faq-list,
  .diensten-steps-grid {
    grid-template-columns: 1fr;
  }

  .card .btn,
  .contact-form .btn {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .nav-wrapper {
    min-height: 62px;
    padding: 0.5rem 0.7rem;
    align-items: center;
  }

  .nav-tools {
    margin-left: auto;
    gap: 0.5rem;
  }

  .nav-toggle-btn {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.45rem);
    display: none;
    padding: 0.75rem;
    background: var(--header-bg);
    border: 1px solid var(--header-border);
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(10, 22, 37, 0.14);
    backdrop-filter: blur(16px);
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-tools {
    display: flex;
  }

  .nav-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.36rem;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    width: 100%;
    text-align: left;
    padding: 0.6rem 0.78rem;
  }

  .theme-toggle-btn {
    width: 62px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .diensten-cta-actions .btn {
    width: 100%;
  }

  .hero {
    padding: 3.5rem 0 2.5rem;
  }

  .section {
    padding: 2rem 0;
  }

  .card {
    padding: 1.15rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: 92%;
  }

  .logo {
    font-size: 1.16rem;
  }

  h1 {
    font-size: clamp(1.72rem, 8.2vw, 2.05rem);
  }

  .btn {
    width: 100%;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-motion="ready"] .reveal,
  [data-motion="ready"] .reveal.in-view {
    opacity: 1;
    transform: none;
  }
}
