*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --navy: #0f2744;
  --navy-mid: #1a3a60;
  --accent: #3b82f6;
  --accent-light: #eff6ff;
  --gold: #f59e0b;
  --text: #1e293b;
  --muted: #64748b;
  --bg: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 12px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: "DM Serif Display", serif;
  font-size: 1.6rem;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.nav-logo span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--navy);
}
.nav-cta {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--accent);
}

/* HERO - donkere achtergrond met diepte */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 6rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.15) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(96, 165, 250, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-bg-symbols {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-symbols span {
  position: absolute;
  font-family: "DM Serif Display", serif;
  color: rgba(255, 255, 255, 0.035);
  user-select: none;
  line-height: 1;
}
.hero-bg-symbols span:nth-child(1) {
  top: 8%;
  left: 4%;
  font-size: 11rem;
}
.hero-bg-symbols span:nth-child(2) {
  top: 50%;
  left: 12%;
  font-size: 7rem;
}
.hero-bg-symbols span:nth-child(3) {
  top: 15%;
  right: 6%;
  font-size: 9rem;
}
.hero-bg-symbols span:nth-child(4) {
  bottom: 12%;
  right: 15%;
  font-size: 8rem;
}
.hero-bg-symbols span:nth-child(5) {
  bottom: 35%;
  left: 45%;
  font-size: 6rem;
}

.hero-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.dot {
  width: 6px;
  height: 6px;
  background: #93c5fd;
  border-radius: 50%;
}
h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}
h1 em {
  color: #60a5fa;
  font-style: italic;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-num {
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  color: var(--white);
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* SECTION */
section {
  padding: 6rem 2rem;
}
.section-inner {
  max-width: 960px;
  margin: 0 auto;
}
.section-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.section-sub {
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.step {
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}
.step:hover {
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.12);
  border-color: var(--navy);
}
.step-num {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  color: var(--white);
  background: var(--accent);
  position: absolute;
  top: -1px;
  right: -1px;
  font-weight: 600;
  line-height: 1;
  padding: 0.3rem 0.7rem;
  border-radius: 0 var(--radius) 0 var(--radius);
}
.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-visual::after {
  content: "∑";
  font-size: 140px;
  font-family: "DM Serif Display", serif;
  position: absolute;
  bottom: -20px;
  right: -10px;
  opacity: 0.06;
  line-height: 1;
}
.about-name {
  font-family: "DM Serif Display", serif;
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}
.about-title {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 2rem;
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.chip {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.about-quote {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.7;
  font-style: italic;
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  padding-left: 1rem;
}
.about-text ul {
  list-style: none;
  margin-top: 1.5rem;
}
.about-text li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}
.check {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

/* PRICING */
#prijzen {
  background: var(--bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 400px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.pricing-card.featured {
  border: 2px solid var(--navy);
  position: relative;
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.plan-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.plan-price {
  font-family: "DM Serif Display", serif;
  font-size: 2.8rem;
  color: var(--navy);
  line-height: 1;
}
.plan-price span {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
}
.plan-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.75rem 0 1.5rem;
}
.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}
.plan-features li {
  padding: 0.45rem 0;
  font-size: 0.88rem;
  display: flex;
  gap: 0.6rem;
}
.plan-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-btn {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 1.5px solid var(--border);
  color: var(--navy);
}
.plan-btn:hover {
  background: var(--bg);
}
.plan-btn.primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.plan-btn.primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}
.review-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}
.review-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}
.reviewer-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.reviewer-sub {
  font-size: 0.78rem;
  color: var(--muted);
}

/* CONTACT */
#contact {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
#contact h2 {
  color: var(--white);
}
#contact .section-sub {
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.contact-form {
  max-width: 500px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
input,
textarea,
select {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 0.8rem 1.1rem;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(255, 255, 255, 0.4);
}
select option {
  color: var(--text);
  background: var(--white);
}
textarea {
  resize: none;
  height: 120px;
}
.submit-btn {
  background: var(--white);
  color: var(--navy);
  border: none;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
}
.submit-btn:hover {
  background: var(--accent);
  color: var(--white);
}
.contact-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 500px;
  margin: 1.5rem auto 0;
}
.contact-divider::before,
.contact-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.contact-divider span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  max-width: 500px;
  margin: 1rem auto 0;
  background: #25d366;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    background 0.2s,
    transform 0.2s;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  background: #080f1c;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 2rem;
  font-size: 0.82rem;
}
footer strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

@media (max-width: 700px) {
  nav {
    padding: 0.9rem 1.2rem;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 7rem 1.25rem 5rem;
  }
  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  section {
    padding: 4rem 1.25rem;
  }
}
