:root {
  --bg: #f7f2e8;
  --surface: #ffffff;
  --text: #13201a;
  --ink: #13201a;
  --muted: #647067;
  --line: rgba(19, 32, 26, 0.12);

  --accent: #6d5ef3;
  --blue: #2563eb;
  --orange: #f59e0b;

  --shadow: 0 14px 34px rgba(19, 32, 26, 0.08);
  --shadow-hover: 0 18px 42px rgba(19, 32, 26, 0.12);

  --radius: 18px;
  --radius-sm: 12px;
  --btn-radius: 10px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  line-height: 1.55;
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(109, 94, 243, 0.10), transparent 60%),
    radial-gradient(760px 420px at 92% 0%, rgba(245, 158, 11, 0.10), transparent 58%),
    var(--bg);
}

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

img {
  max-width: 100%;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 24px 0 34px;
}

/* Header */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 242, 232, 0.82);
  border-bottom: 1px solid rgba(19, 32, 26, 0.08);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.logo {
  display: block;
  width: auto;
  height: 40px;
  max-width: 220px;
  object-fit: contain;
}

/* Hero */

.choice-hero {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.choice-hero h1 {
  margin: 0 0 10px;
  color: #13201a;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1;
}

.choice-hero h1 span {
  display: inline-block;
  color: #6d5ef3;
}

.choice-hero h2 {
  margin: 0;
  color: #13201a;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
}

/* Main choice cards */

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
}

.choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 0.14s ease,
    border-color 0.14s ease,
    box-shadow 0.14s ease;
}

.choice-card:hover {
  transform: translateY(-2px);
  border-color: rgba(109, 94, 243, 0.25);
  box-shadow: var(--shadow-hover);
}

.choice-card-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.choice-card h2 {
  margin: 0 0 7px;
  color: var(--text);
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.pkg-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.45;
}

.choice-image {
  display: block;
  width: calc(100% + 2px);
  max-width: none;
  height: 235px;
  min-height: 235px;
  margin: 0 -1px;
  border: 0;
  border-top: 1px solid rgba(19, 32, 26, 0.08);
  border-bottom: 1px solid rgba(19, 32, 26, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
}

.choice-card-nood {
  background:
    linear-gradient(180deg, rgba(239, 246, 255, 0.98), rgba(255, 255, 255, 0.96));
}

.choice-card-klus {
  background:
    linear-gradient(180deg, rgba(255, 247, 237, 0.98), rgba(255, 255, 255, 0.96));
}

/* Bullets */

.bullets {
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 650;
}

.bullets li {
  margin: 6px 0;
}

/* Buttons */

.btn,
.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(19, 32, 26, 0.12);
  border-radius: var(--btn-radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease,
    box-shadow 0.12s ease;
}

.btn:hover,
.product-btn:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(109, 94, 243, 0.26);
  box-shadow: 0 10px 20px rgba(19, 32, 26, 0.08);
}

.btn-primary {
  border-color: rgba(109, 94, 243, 0.24);
  color: #fff;
  background: linear-gradient(135deg, rgba(109, 94, 243, 1), rgba(37, 99, 235, 0.92));
}

.btn-primary:hover {
  border-color: rgba(109, 94, 243, 0.36);
  background: linear-gradient(135deg, rgba(109, 94, 243, 1), rgba(37, 99, 235, 1));
}

.choice-card-klus .btn-primary {
  border-color: rgba(245, 158, 11, 0.25);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.96), rgba(249, 115, 22, 0.92));
}

.choice-card-klus .btn-primary:hover {
  border-color: rgba(245, 158, 11, 0.38);
  background: linear-gradient(135deg, rgba(245, 158, 11, 1), rgba(249, 115, 22, 0.96));
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

/* USP row */

.usp-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: var(--max);
  margin: 30px auto 0;
  padding: 0 20px;
}

.usp {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(19, 32, 26, 0.10);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 22px rgba(19, 32, 26, 0.055);
}

.usp-icon {
  display: flex;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(109, 94, 243, 0.09);
  color: var(--accent);
}

.usp-icon svg {
  width: 20px;
  height: 20px;
}

.usp strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.2;
}

.usp p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 550;
  line-height: 1.35;
}

/* Featured products */

.featured-products {
  margin-top: 34px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.featured-block {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(19, 32, 26, 0.10);
  border-radius: 999px;
  background: rgba(19, 32, 26, 0.04);
  color: rgba(19, 32, 26, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.b-comp {
  border-color: rgba(37, 99, 235, 0.18);
  background: rgba(37, 99, 235, 0.10);
  color: rgba(37, 99, 235, 0.95);
}

.b-ext {
  border-color: rgba(245, 158, 11, 0.22);
  background: rgba(245, 158, 11, 0.13);
  color: rgba(161, 98, 7, 0.98);
}

.featured-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.featured-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 100%;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(19, 32, 26, 0.10);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 8px 22px rgba(19, 32, 26, 0.055);
  transition:
    transform 0.12s ease,
    border-color 0.12s ease,
    box-shadow 0.12s ease;
}

.featured-card:hover {
  transform: translateY(-2px);
  border-color: rgba(109, 94, 243, 0.20);
  box-shadow: 0 14px 28px rgba(19, 32, 26, 0.09);
}

.featured-card .thumb {
  display: block;
  width: 100%;
  height: 96px;
  margin: 0 0 6px;
  padding: 4px;
  border: 1px solid rgba(19, 32, 26, 0.08);
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  object-position: center;
}

.featured-card strong {
  display: block;
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 900;
  line-height: 1.25;
}

.small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.35;
}

.price {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.product-btn.primary {
  min-height: 36px;
  padding: 8px 11px;
  border-color: rgba(37, 99, 235, 0.22);
  background: rgba(37, 99, 235, 0.10);
  color: rgba(19, 32, 26, 0.92);
  box-shadow: none;
}

.product-btn.primary:hover {
  border-color: rgba(37, 99, 235, 0.30);
  background: rgba(37, 99, 235, 0.16);
}

.featured-klus .product-btn.primary {
  border-color: rgba(245, 158, 11, 0.24);
  background: rgba(245, 158, 11, 0.12);
}

.featured-klus .product-btn.primary:hover {
  border-color: rgba(245, 158, 11, 0.32);
  background: rgba(245, 158, 11, 0.18);
}

/* Footer */

footer {
  margin-top: 8px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
  color: var(--muted);
}

.footer-grid {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid rgba(19, 32, 26, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  transition:
    transform 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
}

.footer-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(109, 94, 243, 0.28);
  background: #fff;
}

.footer-note {
  max-width: 850px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* Mobile */

@media (max-width: 920px) {
  .choice-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .wrap,
  .usp-row {
    padding: 0 16px;
  }

  .section {
    padding: 20px 0 28px;
  }

  .nav-inner {
    min-height: 58px;
  }

  .logo {
    height: 34px;
    max-width: 170px;
  }

  .choice-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
    letter-spacing: -0.07em;
  }

  .choice-hero h2 {
    font-size: 1rem;
  }

  .choice-grid {
    gap: 16px;
    margin-top: 22px;
  }

  .choice-card-content {
    padding: 17px;
  }

  .choice-image {
    height: 190px;
    min-height: 190px;
  }

  .featured-cards,
  .usp-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    margin-left: 0;
  }
}

  /* Content pages */

.page-hero {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 28px;
}

.page-hero h1 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.55;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.page-card,
.page-side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.page-card {
  padding: clamp(22px, 4vw, 40px);
}

.page-card h2 {
  margin: 28px 0 10px;
  color: var(--text);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.page-card h2:first-child {
  margin-top: 0;
}

.page-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.65;
}

.page-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 650;
}

.page-card li {
  margin: 7px 0;
}

.page-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.page-side {
  display: grid;
  gap: 14px;
}

.page-side-card {
  padding: 20px;
}

.page-side-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.page-side-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .page-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .page-hero {
    text-align: left;
  }

  .page-hero p {
    margin-left: 0;
    margin-right: 0;
  }

  .page-actions {
    display: grid;
  }

  .page-actions .btn {
    width: 100%;
  }
}
  /* Artikelenblok homepage + artikelenoverzicht */
.article-section {
  margin-top: 34px;
  padding: 10px 0 4px;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 22px;
}

.section-heading h2 {
  margin: 12px 0 8px;
  color: #13201a;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-heading p {
  margin: 0;
  color: #5d675f;
  font-size: 1rem;
  line-height: 1.5;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 180px;
  padding: 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(19, 32, 26, 0.08);
  box-shadow: 0 18px 45px rgba(19, 32, 26, 0.08);
  color: #13201a;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(19, 32, 26, 0.12);
}

.article-card span {
  color: #6d5ef3;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.article-card strong {
  display: block;
  color: #13201a;
  font-size: 1.08rem;
  line-height: 1.15;
  font-weight: 900;
}

.article-card p {
  margin: 0;
  color: #5d675f;
  font-size: 0.95rem;
  line-height: 1.45;
}

.article-more {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Mobiel/tablet */
@media (max-width: 900px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .article-section {
    margin-top: 24px;
  }

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

  .article-card {
    min-height: auto;
    padding: 18px;
    border-radius: 20px;
  }

  .section-heading h2 {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }
}
