:root {
  --antraciet: #1C1E22;
  --creme: #FDFBF7;
  --wit: #FFFFFF;
  --off-white: #FAFAFA;
  --turquoise: #17A2B8;
  --turquoise-dark: #117A8B;
  --licht-bronsgoud: #E5D3B3;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--antraciet);
  color: var(--off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
em { font-style: italic; font-weight: 400; color: var(--turquoise); }
a { text-decoration: none; color: inherit; }

/* NAVIGATION */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(28, 30, 34, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 40px;
  border-bottom: 1px solid rgba(229, 211, 179, 0.08);
}
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 20px; letter-spacing: 3px; color: var(--licht-bronsgoud); font-weight: 700; }
.nav-logo span { font-size: 11px; letter-spacing: 2px; display: block; opacity: 0.6; font-weight: 400; }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a { color: var(--off-white); font-size: 14px; font-weight: 500; letter-spacing: 0.5px; opacity: 0.85; transition: opacity 0.2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--turquoise); }
.nav-cta { background: var(--turquoise); color: var(--wit) !important; padding: 12px 28px; border-radius: 50px; font-weight: 600; transition: all 0.3s; }
.nav-cta:hover { background: var(--turquoise-dark) !important; transform: translateY(-1px); }

/* SECTIONS */
section { padding: 120px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-narrow { max-width: 760px; margin: 0 auto; }

/* HERO */
.hero {
  background: var(--antraciet);
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 160px 40px 120px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 30%, rgba(23, 162, 184, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 900px; }
.hero-badge {
  display: inline-block;
  background: rgba(229, 211, 179, 0.12);
  color: var(--licht-bronsgoud);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid rgba(229, 211, 179, 0.25);
  margin-bottom: 32px;
}
.hero h1 { font-size: clamp(40px, 6vw, 76px); color: var(--off-white); margin-bottom: 32px; letter-spacing: -0.5px; }
.hero p { font-size: clamp(17px, 1.5vw, 20px); color: var(--off-white); opacity: 0.78; max-width: 640px; margin: 0 auto 48px; font-weight: 300; line-height: 1.7; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--turquoise); color: var(--wit);
  padding: 20px 48px; border-radius: 50px;
  font-size: 16px; font-weight: 600; letter-spacing: 0.3px;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(23, 162, 184, 0.28);
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn:hover { background: var(--turquoise-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(23, 162, 184, 0.38); }
.btn::after { content: "→"; font-size: 20px; line-height: 1; }
.btn-dark { background: var(--antraciet); box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3); }
.btn-dark:hover { background: #000; }
.btn-outline {
  background: transparent; color: var(--off-white);
  border: 2px solid rgba(255, 255, 255, 0.25); box-shadow: none;
}
.btn-outline:hover { border-color: var(--turquoise); color: var(--turquoise); background: transparent; }
.hero-note { margin-top: 24px; font-size: 14px; color: var(--off-white); opacity: 0.55; letter-spacing: 0.3px; }

/* CREME SECTION */
.creme-section { background: var(--creme); color: var(--antraciet); }
.creme-section h2 { font-size: clamp(34px, 5vw, 52px); text-align: center; margin-bottom: 24px; color: var(--antraciet); }
.creme-section > .section-inner > p.lead {
  text-align: center; font-size: 19px; max-width: 680px; margin: 0 auto 72px;
  color: var(--antraciet); opacity: 0.78; line-height: 1.75;
}

/* PAIN GRID */
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.pain-card {
  background: var(--wit); border-radius: 20px; padding: 36px 32px;
  border: 1px solid rgba(229, 211, 179, 0.3);
  box-shadow: 0 4px 24px rgba(28, 30, 34, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(28, 30, 34, 0.08); }
.pain-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(23, 162, 184, 0.12); color: var(--turquoise);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; margin-bottom: 20px;
}
.pain-card p { font-size: 16px; line-height: 1.7; color: var(--antraciet); opacity: 0.85; }

/* TURQUOISE BAND */
.turq-band {
  background: var(--turquoise); color: var(--wit); text-align: center;
  padding: 100px 40px;
}
.turq-band h2 { font-size: clamp(32px, 5vw, 48px); color: var(--wit); max-width: 900px; margin: 0 auto; line-height: 1.25; }
.turq-band h2 em { color: var(--wit); display: block; margin-top: 8px; }
.turq-band p { color: var(--wit); opacity: 0.92; font-size: 18px; max-width: 580px; margin: 20px auto 40px; }

/* DARK CONTENT */
.dark-section { background: var(--antraciet); }
.dark-section h2 { font-size: clamp(34px, 5vw, 52px); color: var(--off-white); text-align: center; margin-bottom: 24px; }
.dark-section > .section-inner > p.lead, .dark-section > .section-inner > .section-narrow p.lead {
  text-align: center; font-size: 19px; max-width: 720px; margin: 0 auto 72px;
  color: var(--off-white); opacity: 0.78; line-height: 1.75;
}

/* METHODE GRID */
.method-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 72px; }
.method-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px; padding: 40px 32px;
  transition: background 0.3s;
}
.method-step:hover { background: rgba(255, 255, 255, 0.06); }
.method-step-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 700; color: var(--turquoise);
  font-style: italic; line-height: 1; margin-bottom: 16px;
}
.method-step h3 { font-size: 22px; color: var(--off-white); margin-bottom: 12px; }
.method-step p { color: var(--off-white); opacity: 0.72; font-size: 15px; line-height: 1.7; }

/* OVER SECTION */
.over-section { background: var(--antraciet); padding: 140px 40px; }
.over-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center;
}
.over-image {
  background: linear-gradient(135deg, #2b2e34, #1c1e22);
  border-radius: 24px; aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
  color: rgba(229, 211, 179, 0.5); font-style: italic; font-size: 14px;
  border: 1px solid rgba(229, 211, 179, 0.15);
}
.over-text h2 { font-size: clamp(32px, 4.5vw, 48px); color: var(--off-white); margin-bottom: 24px; }
.over-text p { color: var(--off-white); opacity: 0.82; font-size: 17px; line-height: 1.85; margin-bottom: 16px; }
.over-text p strong { color: var(--licht-bronsgoud); font-weight: 600; }
@media (max-width: 800px) { .over-inner { grid-template-columns: 1fr; gap: 48px; } .over-image { max-width: 400px; margin: 0 auto; } }

/* TESTI SECTION */
.testi-section { background: var(--creme); color: var(--antraciet); padding: 140px 40px; }
.testi-section h2 { font-size: clamp(34px, 5vw, 52px); color: var(--antraciet); text-align: center; margin-bottom: 72px; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; max-width: 1100px; margin: 0 auto; }
.testi-card {
  background: var(--wit); border-radius: 20px; padding: 40px 32px;
  border: 1px solid rgba(229, 211, 179, 0.3);
  box-shadow: 0 4px 24px rgba(28, 30, 34, 0.04);
}
.testi-card .stars { color: var(--licht-bronsgoud); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-size: 16px; color: var(--antraciet); opacity: 0.88; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testi-name { font-weight: 600; font-size: 15px; color: var(--antraciet); }
.testi-role { font-size: 13px; color: var(--antraciet); opacity: 0.6; }

/* AANBOD GRID */
.aanbod-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; max-width: 1200px; margin: 0 auto; }
.aanbod-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px; padding: 48px 36px;
  display: flex; flex-direction: column; position: relative;
  transition: all 0.3s;
}
.aanbod-card:hover { transform: translateY(-6px); border-color: rgba(23, 162, 184, 0.4); }
.aanbod-card.featured { border: 2px solid var(--turquoise); background: rgba(23, 162, 184, 0.05); }
.aanbod-card.free { border-color: rgba(229, 211, 179, 0.35); background: rgba(229, 211, 179, 0.03); }
.aanbod-card .tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--turquoise); color: var(--wit);
  padding: 6px 16px; border-radius: 50px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}
.aanbod-card.free .tag { background: var(--licht-bronsgoud); color: var(--antraciet); }
.aanbod-card h3 { font-size: 26px; color: var(--off-white); margin-bottom: 8px; }
.aanbod-card h3 em { color: var(--turquoise); }
.aanbod-card .sub { font-size: 13px; color: var(--licht-bronsgoud); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 24px; }
.aanbod-card .desc { font-size: 15px; color: var(--off-white); opacity: 0.75; line-height: 1.7; margin-bottom: 24px; flex-grow: 1; }
.aanbod-card .features { list-style: none; padding: 0; margin-bottom: 32px; }
.aanbod-card .features li {
  font-size: 14px; color: var(--off-white); opacity: 0.85;
  padding: 8px 0; padding-left: 28px; position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.aanbod-card .features li:before { content: "✓"; position: absolute; left: 0; color: var(--turquoise); font-weight: 700; }
.aanbod-card .btn-small {
  display: inline-block; background: var(--turquoise); color: var(--wit);
  padding: 14px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 600; text-align: center;
  transition: all 0.3s;
}
.aanbod-card .btn-small:hover { background: var(--turquoise-dark); }

/* CONTACT */
.contact-section { background: var(--creme); padding: 140px 40px; text-align: center; }
.contact-section h2 { font-size: clamp(34px, 5vw, 52px); color: var(--antraciet); margin-bottom: 24px; }
.contact-section p.lead { font-size: 19px; max-width: 640px; margin: 0 auto 60px; color: var(--antraciet); opacity: 0.78; line-height: 1.75; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto 60px; }
.contact-card { background: var(--wit); border-radius: 20px; padding: 40px 28px; border: 1px solid rgba(229, 211, 179, 0.3); }
.contact-card h3 { font-size: 20px; color: var(--antraciet); margin-bottom: 12px; }
.contact-card p { color: var(--antraciet); opacity: 0.75; font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.contact-card a { color: var(--turquoise); font-weight: 600; border-bottom: 2px solid var(--turquoise); padding-bottom: 2px; }

/* FOOTER */
.site-footer { background: var(--antraciet); padding: 80px 40px 40px; text-align: center; border-top: 1px solid rgba(229, 211, 179, 0.08); }
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px; letter-spacing: 3px; color: var(--licht-bronsgoud);
  margin-bottom: 8px; font-weight: 700;
}
.footer-sub { font-size: 11px; letter-spacing: 2px; color: var(--off-white); opacity: 0.5; margin-bottom: 32px; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.footer-links a { color: var(--turquoise); font-size: 13px; opacity: 0.9; }
.footer-copyright { color: var(--off-white); opacity: 0.4; font-size: 12px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; gap: 10px; position: absolute; top: 100%; left: 0; right: 0; background: #1C1E22; flex-direction: column; padding: 20px; border-top: 1px solid rgba(23,162,184,0.3); z-index: 999; }
  .nav-links.menu-open { display: flex !important; flex-direction: column; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: block; }
  .nav-logo span { display: none; }
  .hamburger { display: block !important; }
  .nav-inner { position: relative; }
  section { padding: 80px 24px; }
  .hero { padding: 140px 24px 80px; }
  .method-grid, .pain-grid, .testi-grid, .aanbod-grid { grid-template-columns: 1fr; }
}
