:root {
  --banner-image-light: url("/privacyverklaring/assets/images/banner-01-01.jpg");
  --banner-image-dark: url("/privacyverklaring/assets/images/banner-01-02.jpg");

  --banner-overlay-light:
    linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.88) 38%, rgba(255,255,255,0.42) 68%, rgba(255,255,255,0.12) 100%);
  --banner-overlay-dark:
    linear-gradient(90deg, rgba(7,12,24,0.92) 0%, rgba(7,12,24,0.84) 40%, rgba(7,12,24,0.50) 70%, rgba(7,12,24,0.18) 100%);

  --banner-text-light: #10233f;
  --banner-text-dark: #edf4ff;

  --section-bg-light:
    linear-gradient(180deg, #f8fbff 0%, #f4f7fc 100%);
  --section-bg-dark:
    linear-gradient(180deg, #0c1422 0%, #101826 100%);
}

html,
body {
  height: 100%;
}

body {
  min-height: 100vh;
  background: var(--bs-body-bg);
}

.mode-card {
  border: 1px solid var(--bs-border-color);
  border-radius: 1rem;
}

.mode-indicator {
  font-size: 0.95rem;
  font-weight: 600;
}

.icon-badge {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(var(--bs-primary-rgb), 0.12);
  border: 1px solid rgba(var(--bs-primary-rgb), 0.18);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Full width hero banner */
.hero-banner-full {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  display: flex;
  align-items: center;
  width: 100%;
  background-image: var(--banner-overlay-light), var(--banner-image-light);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--banner-text-light);
  isolation: isolate;
}

[data-bs-theme="dark"] .hero-banner-full {
  background-image: var(--banner-overlay-dark), var(--banner-image-dark);
  color: var(--banner-text-dark);
}

.hero-banner-full::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 22%, rgba(var(--bs-primary-rgb), 0.16), transparent 20%),
    radial-gradient(circle at 72% 78%, rgba(var(--bs-info-rgb), 0.12), transparent 18%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 8rem 0 6rem;
}

.hero-panel {
  max-width: 980px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  background: rgba(var(--bs-primary-rgb), 0.12);
  border: 1px solid rgba(var(--bs-primary-rgb), 0.16);
  backdrop-filter: blur(8px);
}

@media (max-width: 767.98px) {
.hero-badge {
    margin-top: 90px; /* title header */
  }
}

[data-bs-theme="dark"] .hero-badge {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: #d7e7ff;
}

.hero-title {
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  max-width: 760px;
  font-size: 1.15rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.06);
  font-weight: 500;
}

[data-bs-theme="dark"] .hero-meta-item {
  background: rgba(10,16,28,0.42);
  border-color: rgba(255,255,255,0.08);
  color: #e9f2ff;
  box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.20);
}

/* Section below without big wrapper card */
.privacy-section {
  position: relative;
  padding: 5rem 0 6rem;
  background: var(--section-bg-light);
}

[data-bs-theme="dark"] .privacy-section {
  background: var(--section-bg-dark);
}

.privacy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(var(--bs-primary-rgb), 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(var(--bs-info-rgb), 0.06), transparent 20%);
}

.section-content {
  position: relative;
  z-index: 1;
}

.feature-card,
.info-card {
  border: 1px solid var(--bs-border-color);
  border-radius: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  background: rgba(var(--bs-body-bg-rgb), 0.82);
  backdrop-filter: blur(10px);
}

[data-bs-theme="dark"] .feature-card,
[data-bs-theme="dark"] .info-card {
  background: rgba(17, 24, 39, 0.88);
  border-color: rgba(255,255,255,0.08);
}

.feature-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.10);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(var(--bs-primary-rgb), 0.1);
  border: 1px solid rgba(var(--bs-primary-rgb), 0.16);
  font-size: 1.2rem;
}

.summary-banner {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.12);
}

.summary-side {
  background: rgba(0, 0, 0, 0.12);
}

@media (max-width: 991.98px) {
  .theme-switcher {
    position: static;
    margin: 1rem;
    max-width: none;
  }

  .hero-banner-full {
    min-height: 62vh;
  }

  .hero-inner {
    padding: 3rem 0 4rem;
  }
}

@media (max-width: 767.98px) {
  .hero-banner-full {
    min-height: 560px;
    background-position: center;
  }

  .hero-meta-item {
    width: 100%;
  }

  .hero-title {
    font-size: calc(1.8rem + 1.8vw);
  }

  .privacy-section {
    padding: 4rem 0 5rem;
  }
}