:root {
  --primary: #c9544a;
  --primary-dark: #a23e36;
  --secondary: #2d3142;
  --accent: #f5b841;
  --bg: #faf8f5;
  --bg-soft: #f3eeea;
  --text: #1f2532;
  --text-muted: #6b6f7a;
  --border: #e6e0db;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(31, 37, 50, 0.06);
  --shadow: 0 8px 28px rgba(31, 37, 50, 0.10);
  --shadow-lg: 0 18px 48px rgba(31, 37, 50, 0.14);
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER ========== */
.hdr {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.hdr-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
}
.logo:hover { text-decoration: none; }
.logo-mark {
  display: inline-block;
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  position: relative;
}
.logo-mark::after {
  content: ""; position: absolute;
  inset: 7px; border-radius: 50%;
  background: var(--white);
}
.logo-text strong { color: var(--primary); font-weight: 700; }
.hdr-nav { display: flex; gap: 24px; }
.hdr-nav a {
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.95rem;
}
.hdr-nav a:hover { color: var(--primary); text-decoration: none; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); box-shadow: var(--shadow); }
.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-secondary:hover { background: #1a1f2e; }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }
.btn-lg { padding: 18px 34px; font-size: 1.08rem; }

/* ========== HERO ========== */
.hero {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  padding: 64px 0 80px;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.badge {
  display: inline-block;
  background: rgba(201, 84, 74, 0.10);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero h1 .hl {
  background: linear-gradient(120deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 0.92rem;
  color: var(--secondary);
  font-weight: 500;
}
.hero-img {
  position: relative;
}
.hero-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero-img::before {
  content: "";
  position: absolute;
  inset: -12px -12px auto auto;
  width: 70%;
  height: 70%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: var(--radius);
  opacity: 0.08;
  z-index: -1;
}

/* ========== SECTIONS ========== */
section { padding: 72px 0; }
section h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.3rem);
  font-weight: 800;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
section .sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 44px;
}

/* ========== DESIGN OPTIONS ========== */
.design-options { background: var(--bg-soft); }
.design-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.design-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.design-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.design-card-alt { border-color: var(--accent); background: linear-gradient(180deg, #fff 0%, #fffaf0 100%); }
.design-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(201, 84, 74, 0.12), rgba(245, 184, 65, 0.18));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
}
.design-card h3 {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 8px;
}
.design-stat {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.design-list {
  list-style: none;
  padding: 0;
}
.design-list li {
  position: relative;
  padding: 7px 0 7px 24px;
  font-size: 0.95rem;
  color: var(--text);
}
.design-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--primary);
  font-weight: 700;
}
.design-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}
.design-cta .btn { flex: 1 1 calc(50% - 6px); min-width: 0; }
.design-card-alt .design-cta .btn-primary { background: var(--accent); border-color: var(--accent); color: var(--secondary); }
.design-card-alt .design-cta .btn-primary:hover { background: #e0a834; border-color: #e0a834; }
.design-card-alt .design-cta .btn-outline { color: var(--secondary); border-color: var(--accent); }
.design-card-alt .design-cta .btn-outline:hover { background: var(--accent); color: var(--secondary); }
@media (max-width: 480px) {
  .design-cta .btn { flex: 1 1 100%; }
}

/* ========== VARIANTEN CARDS ========== */
.varianten { background: var(--white); }
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-feat { border-color: var(--primary); box-shadow: var(--shadow); }
.card-img { position: relative; }
.card-img img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--secondary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.tag-warm { background: var(--primary); color: var(--white); }
.card-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.4rem; color: var(--secondary); margin-bottom: 10px; }
.card-body > p { color: var(--text-muted); margin-bottom: 18px; }
.specs-list {
  list-style: none;
  margin-bottom: 22px;
  border-top: 1px solid var(--border);
}
.specs-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.specs-list b { color: var(--secondary); font-weight: 600; }
.specs-list span { color: var(--text-muted); text-align: right; }
.card-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.card-cta .btn { flex: 1; min-width: 140px; }

/* ========== SPECS TABLE ========== */
.specs { background: var(--bg-soft); }
.specs-table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
  overflow-x: auto;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.specs-table th, .specs-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.specs-table thead th {
  background: var(--secondary);
  color: var(--white);
  font-weight: 600;
}
.specs-table tbody td:first-child { font-weight: 600; color: var(--secondary); width: 28%; }
.specs-table tbody tr:last-child td { border-bottom: none; }
.specs-table tbody tr:nth-child(even) { background: #fafafa; }

/* ========== PROCES ========== */
.proces { background: var(--white); }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.steps li {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.15rem;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-sm);
}
.steps h3 { font-size: 1.05rem; color: var(--secondary); margin-bottom: 8px; }
.steps p { font-size: 0.9rem; color: var(--text-muted); }
.proces-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ========== USP GRID ========== */
.usp { background: var(--bg-soft); }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.usp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.usp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.usp-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(201, 84, 74, 0.12), rgba(245, 184, 65, 0.12));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}
.usp-card h3 { font-size: 1.08rem; color: var(--secondary); margin-bottom: 8px; }
.usp-card p { font-size: 0.93rem; color: var(--text-muted); }

/* ========== FAQ ========== */
.faq { background: var(--white); }
.faq-list { max-width: 820px; margin: 40px auto 0; }
.faq details {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  transition: border-color 0.2s ease;
}
.faq details[open] { border-color: var(--primary); }
.faq summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary span {
  width: 24px; height: 24px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ========== FINAL CTA ========== */
.final-cta {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a1f2e 100%);
  color: var(--white);
  text-align: center;
}
.final-cta h2 { color: var(--white); }
.final-cta p { color: rgba(255, 255, 255, 0.78); font-size: 1.1rem; margin-bottom: 28px; }
.final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-secondary { background: rgba(255, 255, 255, 0.10); border-color: rgba(255, 255, 255, 0.25); }
.final-cta .btn-secondary:hover { background: rgba(255, 255, 255, 0.18); }

/* ========== FOOTER ========== */
.ftr {
  background: #1a1f2e;
  color: rgba(255, 255, 255, 0.78);
  padding-top: 48px;
}
.ftr-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}
.ftr-col strong {
  color: var(--white);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 14px;
}
.ftr-col strong span { color: var(--primary); }
.ftr-col p { font-size: 0.92rem; line-height: 1.65; }
.ftr-col ul { list-style: none; }
.ftr-col li { margin-bottom: 8px; font-size: 0.92rem; }
.ftr-col a { color: rgba(255, 255, 255, 0.78); }
.ftr-col a:hover { color: var(--white); text-decoration: underline; }
.ftr-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 18px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.ftr-bottom .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.ftr-by a {
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.30);
}
.ftr-by a:hover {
  color: var(--white);
  text-decoration: none;
  border-bottom-color: var(--white);
}
@media (max-width: 560px) {
  .ftr-bottom .wrap { justify-content: center; text-align: center; }
}

/* ========== MATEN ========== */
.maten { background: var(--white); }
.maten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.maten-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.maten-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--primary); }
.maten-size {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.01em;
}
.maten-label {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.maten-use {
  margin-top: 14px;
  color: var(--text);
  font-size: 0.96rem;
}
.maten-meta {
  list-style: none;
  margin-top: 16px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.maten-meta li {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.maten-meta b { color: var(--secondary); font-weight: 600; }
.maten-note {
  margin-top: 24px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ========== PRIJZEN ========== */
.prijzen { background: var(--bg-soft); }
.prijzen-table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 28px;
  overflow-x: auto;
}
.prijzen-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.prijzen-table th, .prijzen-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.prijzen-table thead th {
  background: var(--secondary);
  color: var(--white);
  font-weight: 600;
}
.prijzen-table tbody tr:last-child td { border-bottom: none; }
.prijzen-table tbody tr:nth-child(even) { background: #fafafa; }
.prijzen-table td.was { color: var(--text-muted); }
.prijzen-table td.was s { color: var(--text-muted); }
.prijzen-table td.now strong { color: var(--primary); font-size: 1.05rem; }
.prijzen-extra {
  list-style: none;
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
.prijzen-extra li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 0.94rem;
}
.prijzen-extra li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ========== VERZENDING ========== */
.verzending { background: var(--white); }
.verz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.verz-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  position: relative;
}
.verz-num {
  position: absolute;
  top: -16px; left: 20px;
  width: 32px; height: 32px;
  background: var(--accent);
  color: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}
.verz-card h3 {
  font-size: 1.05rem;
  color: var(--secondary);
  margin: 8px 0 8px;
}
.verz-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ========== ONDERHOUD ========== */
.onderhoud { background: var(--bg-soft); }
.ond-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.ond-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
}
.ond-col h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.ond-do { border-top: 4px solid #2a8f4d; }
.ond-do h3 { color: #2a8f4d; }
.ond-dont { border-top: 4px solid var(--primary); }
.ond-dont h3 { color: var(--primary); }
.ond-col ul { list-style: none; }
.ond-col li {
  padding: 8px 0;
  font-size: 0.94rem;
  color: var(--text);
  border-bottom: 1px dashed var(--border);
}
.ond-col li:last-child { border-bottom: none; }

/* ========== CADEAU ========== */
.cadeau { background: var(--white); }
.cad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.cad-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cad-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cad-icon {
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 10px;
}
.cad-card h3 {
  font-size: 1.02rem;
  color: var(--secondary);
  margin-bottom: 8px;
}
.cad-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-img { order: -1; max-width: 460px; margin: 0 auto; }
  .cards { grid-template-columns: 1fr; }
  .design-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .maten-grid { grid-template-columns: 1fr; }
  .verz-grid { grid-template-columns: repeat(2, 1fr); }
  .cad-grid { grid-template-columns: repeat(2, 1fr); }
  .ond-grid { grid-template-columns: 1fr; }
  .prijzen-extra { grid-template-columns: 1fr; }
  .ftr-inner { grid-template-columns: 1fr 1fr; }
  .hdr-nav { display: none; }
}
@media (max-width: 560px) {
  section { padding: 56px 0; }
  .hero { padding: 40px 0 56px; }
  .steps { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .verz-grid { grid-template-columns: 1fr; }
  .cad-grid { grid-template-columns: 1fr 1fr; }
  .ftr-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-cta .btn, .proces-cta .btn, .final-cta-btns .btn { width: 100%; }
  .card-cta .btn { flex: 1 1 100%; }
}
