/* Bellen Zonder Zorgen B.V. — hoofdstylesheet */

:root {
  --purple: #3d1a6e;
  --purple-dark: #2a1150;
  --purple-light: #f3eefc;
  --coral: #ff6b4a;
  --coral-dark: #e6522f;
  --text: #2b2340;
  --text-muted: #6b6480;
  --bg: #ffffff;
  --bg-soft: #faf8fd;
  --border: #e8e2f2;
  --radius: 16px;
  --shadow: 0 8px 30px rgba(61, 26, 110, 0.10);
  --maxw: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

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

/* ---------- Topbar ---------- */
.topbar {
  background: var(--purple-dark);
  color: #fff;
  font-size: 0.85rem;
  padding: 6px 0;
}
.topbar .container {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }

/* ---------- Header / navigatie ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--purple);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.2;
}
.logo svg { flex-shrink: 0; }
.logo span small {
  display: block;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--purple);
  border-bottom-color: var(--coral);
}
.nav-cta {
  background: var(--coral);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 999px;
  border-bottom: none !important;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--coral-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--purple);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, #5b2da0 100%);
  color: #fff;
  padding: 88px 0 96px;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--coral);
}
.hero p.lead {
  font-size: 1.15rem;
  color: #e6ddf5;
  margin-bottom: 32px;
  max-width: 32em;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { display: flex; justify-content: center; }
.hero-visual svg { width: 100%; max-width: 380px; height: auto; }

.hero-usps {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  font-size: 0.95rem;
  color: #e6ddf5;
}
.hero-usps span::before {
  content: "✓";
  color: var(--coral);
  font-weight: 800;
  margin-right: 8px;
}

/* ---------- Knoppen ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s, transform 0.1s;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-dark); }
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }
.btn-purple { background: var(--purple); color: #fff; }
.btn-purple:hover { background: var(--purple-dark); }

/* ---------- Secties ---------- */
.section { padding: 80px 0; }
.section-soft { background: var(--bg-soft); }
.section-head {
  text-align: center;
  max-width: 44em;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--purple);
  margin-bottom: 12px;
}
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

.kicker {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ---------- Kaarten ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(61, 26, 110, 0.16);
}
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
}
.card h3 { color: var(--purple); margin-bottom: 10px; font-size: 1.15rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Stappen ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}
.step {
  text-align: center;
  padding: 24px;
}
.step .num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step h3 { color: var(--purple); margin-bottom: 8px; font-size: 1.1rem; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- USP-lijst ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--purple); margin-bottom: 16px; }
.split p { color: var(--text-muted); margin-bottom: 16px; }

.checklist { list-style: none; margin: 20px 0; }
.checklist li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 12px;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--purple-light);
  color: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

/* ---------- CTA-band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--purple) 0%, #5b2da0 100%);
  color: #fff;
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; }
.cta-band p { color: #e6ddf5; margin-bottom: 28px; max-width: 40em; margin-left: auto; margin-right: auto; }

/* ---------- Prose (over ons) ---------- */
.prose { max-width: 48em; margin: 0 auto; }
.prose h2 { color: var(--purple); margin: 40px 0 14px; font-size: 1.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 16px; color: var(--text); }
.prose a { color: var(--coral-dark); font-weight: 600; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info .item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info .item .icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.contact-info h3 { color: var(--purple); font-size: 1rem; margin-bottom: 2px; }
.contact-info a { color: var(--coral-dark); text-decoration: none; font-weight: 600; }
.contact-info a:hover { text-decoration: underline; }
.contact-info p { color: var(--text-muted); }

.hours { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours td { padding: 6px 0; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.hours td:last-child { text-align: right; color: var(--text); font-weight: 600; }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}
.contact-form h2 { color: var(--purple); margin-bottom: 20px; font-size: 1.4rem; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: var(--bg-soft);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--purple);
  outline-offset: 1px;
  background: #fff;
}
.form-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 12px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--purple-dark);
  color: #cfc3e6;
  padding: 64px 0 24px;
  margin-top: 80px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #cfc3e6; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-brand strong { color: #fff; font-size: 1.1rem; display: block; margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #a794c9;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-actions, .hero-usps { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-visual svg { max-width: 240px; }
  .cards, .steps { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 28px; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
  }
  .main-nav li { width: 100%; }
  .main-nav a {
    display: block;
    padding: 14px 24px;
    border-bottom: none;
  }
  .nav-cta { margin: 12px 24px; text-align: center; }
  .nav-toggle { display: block; }
  .topbar .container { justify-content: center; }
}

@media (max-width: 560px) {
  .cards, .steps { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero { padding: 56px 0 64px; }
  .cta-band { padding: 40px 24px; }
  .contact-form { padding: 24px; }
}
