:root {
  --bg: #0a0f0c;
  --surface: #101614;
  --surface-2: rgba(16, 22, 20, 0.72);
  --text: #e7f3ed;
  --muted: #a6b9b0;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #00e676;
  --accent-2: #00c853;
  --radius: 18px;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.48);
  --max: 1140px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 18% 0%, rgba(0, 230, 118, 0.14), transparent 60%),
    radial-gradient(900px 600px at 82% 10%, rgba(0, 200, 83, 0.1), transparent 55%),
    var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(10, 15, 12, 0.7);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.site-logo {
  display: inline-flex;
  flex-shrink: 0;
}

.site-logo img {
  width: 160px;
  height: auto;
}

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.menu-drawer {
  position: relative;
}

.menu-toggle {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.menu-toggle::-webkit-details-marker {
  display: none;
}

.menu-toggle__label {
  font-size: 13px;
  font-weight: 700;
}

.menu-toggle__icon {
  display: inline-grid;
  gap: 3px;
}

.menu-toggle__icon span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-drawer[open] .menu-toggle__icon span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-drawer[open] .menu-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.menu-drawer[open] .menu-toggle__icon span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 280px;
  display: grid;
  gap: 8px;
  padding: 14px;
  background: rgba(16, 22, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.menu-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.menu-panel a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.header-btn,
.cta-button,
.table-cta,
.toc a {
  text-decoration: none;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  min-height: 40px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.header-btn-primary {
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.95), rgba(0, 200, 83, 0.9));
  color: #03180d;
  box-shadow: 0 10px 22px rgba(0, 230, 118, 0.18);
}

.header-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.header-btn:hover,
.cta-button:hover,
.table-cta:hover,
.toc a:hover {
  transform: translateY(-1px);
  opacity: 0.97;
}

.breadcrumbs {
  margin-top: 16px;
}

.breadcrumbs .container {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(16, 22, 20, 0.55);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs__item + .breadcrumbs__item::before {
  content: "/";
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero {
  padding: 22px 0 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.hero-inner--single {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.hero-banner,
.hero-content {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-banner {
  overflow: hidden;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 18px;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 420px at 65% 50%, rgba(0, 230, 118, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.05));
  pointer-events: none;
}

.hero-banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  position: relative;
  z-index: 1;
}

.hero-banner-inline {
  display: none;
  margin: 18px 0 4px;
}

.hero-banner-side {
  display: flex;
}

.hero-content {
  padding: 22px;
}

.hero-content h1 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.2px;
}

.hero-content p {
  margin: 0;
  color: var(--muted);
}

.hero-content p + p {
  margin-top: 14px;
}

.hero-content a,
.content-section a,
.brand-table a,
.site-footer a {
  color: #87f3be;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  border: none;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.96), rgba(0, 200, 83, 0.9));
  color: #03180d;
  box-shadow: 0 14px 26px rgba(0, 230, 118, 0.2);
}

.toc,
.content-section,
.brand-table {
  margin-top: 18px;
  scroll-margin-top: 96px;
}

.toc > .container,
.content-section .container,
.brand-table .container,
.card,
.footer-inner {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.toc > .container,
.content-section .container,
.brand-table .container,
.card {
  padding: 22px;
}

.toc-summary__label,
.content-section h2,
.brand-table h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.1px;
}

.brand-table h2 {
  font-size: 28px;
  line-height: 1.25;
}

.content-section h3,
.brand-table h3,
.faq h3 {
  margin: 20px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.content-section p,
.brand-table p,
.faq p,
.muted {
  margin: 0;
  color: var(--muted);
}

.content-section p + p,
.brand-table p + p,
.faq p + p {
  margin-top: 10px;
}

.content-section ul,
.content-section ol,
.brand-table ul,
.brand-table ol,
.faq ul,
.faq ol {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.content-section li + li,
.brand-table li + li,
.faq li + li {
  margin-top: 8px;
}

.toc {
  display: block;
}

.toc summary {
  list-style: none;
  cursor: pointer;
}

.toc summary::-webkit-details-marker {
  display: none;
}

.toc-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.toc-summary__state {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: #87f3be;
}

.toc-summary__state::before {
  content: "Toon inhoud";
}

.toc[open] .toc-summary__state::before {
  content: "Verberg inhoud";
}

.toc-panel {
  margin-top: 10px;
}

.toc-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.toc-panel li {
  margin: 0;
}

.toc-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 600;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq h3 {
  margin: 0;
}

.faq p {
  margin-top: 6px;
}

.table-wrap {
  margin-top: 14px;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.12);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  background: transparent;
}

.info-table th,
.info-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: top;
  line-height: 1.45;
  text-align: left;
}

.info-table th {
  font-weight: 650;
  color: rgba(231, 243, 237, 0.92);
  background: rgba(0, 230, 118, 0.08);
}

.info-table td {
  color: var(--muted);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.table-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.92), rgba(0, 200, 83, 0.88));
  color: #03180d;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-weight: 750;
  white-space: nowrap;
}

.site-content {
  padding: 0 0 30px;
}

.site-footer {
  margin-top: 18px;
  padding: 0 0 40px;
  color: var(--muted);
}

.footer-inner {
  padding: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 14px;
}

.footer-links a {
  font-size: 13px;
}

.site-footer p {
  margin: 0 0 10px;
}

.site-footer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-banner-side {
    display: none;
  }

  .hero-banner-inline {
    display: flex;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .site-logo img {
    width: 140px;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 16px;
  }

  .header-inner {
    flex-wrap: nowrap;
    gap: 8px;
    row-gap: 0;
    padding: 10px 0;
  }

  .header-actions {
    flex-wrap: nowrap;
    gap: 6px;
    width: auto;
    margin-left: auto;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
  }

  .menu-drawer {
    min-width: 0;
  }

  .site-logo img {
    width: 96px;
  }

  .menu-toggle {
    width: auto;
    min-width: 36px;
    justify-content: center;
    gap: 0;
    padding: 8px;
    min-height: 36px;
  }

  .menu-toggle__label {
    display: none;
  }

  .header-btn {
    width: auto;
    min-height: 36px;
    padding: 8px 9px;
    font-size: 11px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-content,
  .toc > .container,
  .content-section .container,
  .brand-table .container,
  .card,
  .footer-inner {
    padding: 18px;
  }

  .breadcrumbs .container {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .menu-panel {
    left: 0;
    right: auto;
    width: min(320px, calc(100vw - 32px));
    min-width: 0;
    max-width: calc(100vw - 32px);
  }
}

@media (max-width: 380px) {
  .container {
    padding: 0 12px;
  }

  .header-inner {
    gap: 6px;
  }

  .header-actions {
    gap: 5px;
  }

  .site-logo img {
    width: 88px;
  }

  .menu-toggle {
    min-width: 34px;
    min-height: 34px;
    padding: 7px;
  }

  .menu-toggle__icon span {
    width: 14px;
  }

  .header-btn {
    min-height: 34px;
    padding: 7px 8px;
    font-size: 10px;
  }
}
