:root {
  --cplan-navy: #0f172a;
  --cplan-blue: #2563eb;
  --cplan-blue-dark: #1d4ed8;
  --cplan-cyan: #38bdf8;
  --cplan-green: #16a34a;
  --cplan-orange: #f97316;
  --cplan-muted: #64748b;
  --cplan-soft: #f8fafc;
  --cplan-line: #e2e8f0;
  --cplan-white: #ffffff;
  --cplan-radius: 24px;
  --cplan-shadow: 0 24px 70px rgba(15, 23, 42, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cplan-navy);
  background: var(--cplan-white);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--cplan-blue); }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--cplan-white);
  color: var(--cplan-navy);
}
.skip-link:focus { left: 12px; }

.navbar {
  padding: 18px 0;
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}
.navbar.is-scrolled {
  background: rgba(15, 23, 42, .92);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .16);
  backdrop-filter: blur(16px);
  padding: 10px 0;
}
.navbar .nav-link {
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem .85rem !important;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: #fff; }
.nav-cta { border-radius: 999px; font-weight: 800; padding: .62rem 1rem; }

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 154px 0 96px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(56, 189, 248, .35), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(37, 99, 235, .45), transparent 34%),
    linear-gradient(135deg, #0f172a 0%, #172554 48%, #1e3a8a 100%);
}
.hero-gradient {
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 58%;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 56%);
  pointer-events: none;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.88);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow.dark {
  color: var(--cplan-blue);
  border-color: rgba(37, 99, 235, .15);
  background: rgba(37, 99, 235, .08);
}
.hero-section h1 {
  max-width: 780px;
  margin: 0 0 24px;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 900;
}
.hero-lead {
  max-width: 660px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.btn {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.btn-primary {
  background: var(--cplan-blue);
  border-color: var(--cplan-blue);
  box-shadow: 0 14px 32px rgba(37, 99, 235, .28);
}
.btn-primary:hover,
.btn-primary:focus { background: var(--cplan-blue-dark); border-color: var(--cplan-blue-dark); }
.btn-outline-light { border-color: rgba(255,255,255,.28); color: #fff; }
.btn-outline-light:hover { color: var(--cplan-navy); background: #fff; }
.btn-outline-primary { border-color: rgba(37, 99, 235, .22); color: var(--cplan-blue); }
.btn-outline-primary:hover { background: var(--cplan-blue); color: #fff; }
.hero-checks,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.hero-checks li,
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}
.check-list li { color: var(--cplan-navy); }
.hero-checks i,
.check-list i { color: #86efac; font-size: 1.2rem; }
.check-list i { color: var(--cplan-green); }

.dashboard-card {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 32px;
  background: rgba(255,255,255,.10);
  box-shadow: 0 36px 100px rgba(0,0,0,.28);
  backdrop-filter: blur(22px);
}
.dashboard-topbar {
  display: flex;
  gap: 8px;
  padding: 4px 0 16px 4px;
}
.dashboard-topbar span {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background: rgba(255,255,255,.48);
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.dash-panel {
  min-height: 150px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  color: var(--cplan-navy);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
}
.dash-panel.large,
.dash-panel.full { grid-column: 1 / -1; }
.dash-label,
.mini-title {
  display: block;
  margin-bottom: 8px;
  color: var(--cplan-muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.dash-panel h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  font-weight: 900;
  letter-spacing: -.04em;
}
.dash-panel p { color: var(--cplan-muted); margin: 14px 0 0; }
.dash-panel i { display: block; color: var(--cplan-blue); font-size: 2rem; margin-bottom: 16px; }
.dash-panel strong { display: block; margin-top: 6px; font-size: 1.05rem; }
.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: .8rem;
  font-weight: 900;
  white-space: nowrap;
}
.route-line {
  overflow: hidden;
  margin: 22px 0 4px;
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
}
.route-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cplan-blue), var(--cplan-cyan));
}
.task-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--cplan-line);
  color: var(--cplan-muted);
}
.task-row strong { color: var(--cplan-navy); margin: 0; }

.trust-strip {
  margin-top: -36px;
  position: relative;
  z-index: 4;
}
.trust-strip .container {
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--cplan-shadow);
}
.trust-strip span {
  display: block;
  padding: 12px;
  border-radius: 16px;
  background: var(--cplan-soft);
  font-weight: 900;
  color: var(--cplan-navy);
}

.section-padding { padding: 112px 0; }
.soft-bg { background: var(--cplan-soft); }
.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}
.section-heading h2,
.section-padding h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 900;
}
.section-heading p,
.section-text { color: var(--cplan-muted); font-size: 1.08rem; }

.feature-card,
.step-card,
.pricing-card,
.modern-form,
.contact-card,
.faq-accordion .accordion-item {
  border: 1px solid var(--cplan-line);
  border-radius: var(--cplan-radius);
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .06);
}
.feature-card {
  height: 100%;
  padding: 30px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, .22);
  box-shadow: var(--cplan-shadow);
}
.feature-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--cplan-blue), var(--cplan-cyan));
  font-size: 1.7rem;
}
.feature-card h3,
.step-card h3,
.pricing-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.025em;
}
.feature-card p,
.step-card p { margin: 0; color: var(--cplan-muted); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.audience-grid div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--cplan-line);
  border-radius: 22px;
  background: #fff;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
}
.audience-grid i { color: var(--cplan-blue); font-size: 1.8rem; }

.step-card {
  height: 100%;
  padding: 28px;
}
.step-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--cplan-navy);
  color: #fff;
  font-weight: 900;
}

.phone-card {
  display: flex;
  justify-content: center;
}
.phone-shell {
  width: min(340px, 100%);
  min-height: 590px;
  padding: 16px;
  border-radius: 48px;
  background: var(--cplan-navy);
  box-shadow: var(--cplan-shadow);
}
.phone-notch {
  width: 96px;
  height: 24px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
}
.phone-content {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border-radius: 34px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, .34), rgba(15, 23, 42, .92)),
    radial-gradient(circle at 50% 18%, rgba(56,189,248,.45), transparent 34%);
}
.phone-content h3 { font-weight: 900; letter-spacing: -.04em; font-size: 2rem; }
.phone-content p { color: rgba(255,255,255,.76); }
.phone-content button {
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 900;
  color: var(--cplan-navy);
  background: #fff;
}

.pricing-card {
  position: relative;
  height: 100%;
  padding: 34px;
}
.pricing-card.featured {
  border-color: rgba(37, 99, 235, .38);
  box-shadow: var(--cplan-shadow);
  transform: translateY(-10px);
}
.badge-soft {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: .78rem;
  font-weight: 900;
}
.package {
  margin: 0 0 12px;
  color: var(--cplan-blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
}
.pricing-card h3 {
  font-size: clamp(2.2rem, 4vw, 3rem);
}
.pricing-card h3 small {
  color: var(--cplan-muted);
  font-size: 1rem;
  text-decoration: line-through;
}
.pricing-note { color: var(--cplan-muted); margin-bottom: 24px; }
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}
.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--cplan-muted);
}
.pricing-card li i { color: var(--cplan-green); margin-top: 4px; font-weight: 900; }
.price-disclaimer {
  margin: 28px 0 0;
  color: var(--cplan-muted);
  font-size: .94rem;
}

.faq-accordion {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-accordion .accordion-item { overflow: hidden; }
.faq-accordion .accordion-button {
  padding: 22px 24px;
  font-weight: 900;
  color: var(--cplan-navy);
  background: #fff;
  box-shadow: none;
}
.faq-accordion .accordion-body { color: var(--cplan-muted); padding: 0 24px 24px; }

.demo-section {
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(56,189,248,.24), transparent 32%),
    linear-gradient(135deg, #0f172a, #172554 62%, #1e40af);
}
.demo-section .section-text,
.demo-section p { color: rgba(255,255,255,.76); }
.contact-card {
  display: grid;
  gap: 6px;
  padding: 24px;
  margin-top: 28px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: #fff;
}
.contact-card a { color: #fff; font-weight: 800; }
.modern-form {
  padding: clamp(22px, 4vw, 40px);
  color: var(--cplan-navy);
}
.form-header { margin-bottom: 22px; }
.form-header h3 {
  margin: 0 0 6px;
  font-weight: 900;
  letter-spacing: -.03em;
}
.form-header p { margin: 0; color: var(--cplan-muted); }
.modern-form .form-label {
  font-weight: 800;
  color: var(--cplan-navy);
}
.modern-form .form-control {
  min-height: 54px;
  border-radius: 16px;
  border-color: #cbd5e1;
  padding: .75rem 1rem;
}
.modern-form .form-control:focus {
  border-color: var(--cplan-blue);
  box-shadow: 0 0 0 .2rem rgba(37, 99, 235, .14);
}
.modern-form .was-invalid,
.modern-form .form-control:invalid:not(:placeholder-shown) { border-color: #ef4444; }
.form-feedback {
  display: none;
  margin: 4px 0 14px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
}
.form-feedback.is-error { display: block; color: #991b1b; background: #fee2e2; }
.form-feedback.is-success { display: block; color: #166534; background: #dcfce7; }
.privacy-note {
  margin: 12px 0 0;
  color: var(--cplan-muted) !important;
  font-size: .9rem;
}
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.cf-turnstile { min-height: 65px; }

.site-footer {
  padding: 64px 0 24px;
  color: rgba(255,255,255,.78);
  background: #070b16;
}
.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}
.site-footer p { max-width: 380px; margin: 18px 0 0; }
.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.78);
}
.site-footer a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .92rem;
}
.footer-bottom a { margin: 0; }

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 14px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(15, 23, 42, .96);
    box-shadow: var(--cplan-shadow);
  }
  .hero-section { min-height: auto; padding-top: 128px; }
  .pricing-card.featured { transform: none; }
  .section-padding { padding: 82px 0; }
}

@media (max-width: 767.98px) {
  .hero-actions .btn { width: 100%; }
  .dashboard-grid,
  .audience-grid { grid-template-columns: 1fr; }
  .dash-panel { min-height: auto; }
  .trust-strip { margin-top: 0; }
  .trust-strip .container { border-radius: 0; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

.dashboard-showcase {
  padding: 16px;
}
.dashboard-showcase .dashboard-screen-wrap {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .16);
}
.dashboard-showcase .dashboard-screen {
  display: block;
  width: 100%;
  border-radius: 22px;
}
.dashboard-caption {
  padding: 18px 8px 4px;
}
.dashboard-caption p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.82);
}

.screenshot-section .section-heading {
  max-width: 820px;
}
.screenshot-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--cplan-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(15, 23, 42, .08);
}
.screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
}
.screenshot-media {
  padding: 18px;
  background: linear-gradient(180deg, #f8fbff, #eef4fb);
}
.screenshot-media.no-shadow {
  padding: 18px;
}
.screenshot-copy {
  padding: 0 24px 24px;
}
.screenshot-copy h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: -.03em;
}
.screenshot-copy p {
  margin: 0;
  color: var(--cplan-muted);
}
.featured-card .screenshot-copy {
  padding-top: 4px;
}
.small-card .screenshot-copy h3 {
  font-size: 1.08rem;
  line-height: 1.3;
}
.planning-highlight .side-copy {
  padding: 28px;
}

.video-card {
  padding: 18px;
  border: 1px solid var(--cplan-line);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(15, 23, 42, .1);
}
.video-embed {
  overflow: hidden;
  border-radius: 22px;
  background: #000;
}
.video-checks {
  margin-top: 18px;
}

@media (max-width: 991.98px) {
  .planning-highlight .side-copy {
    padding-top: 0;
  }
}

@media (max-width: 767.98px) {
  .screenshot-media,
  .screenshot-media.no-shadow,
  .video-card {
    padding: 12px;
  }
  .screenshot-copy,
  .planning-highlight .side-copy {
    padding: 0 18px 18px;
  }
}

/* Mobiele hero-spacing: voorkomt dat de vaste menuknop over de eerste tekstregel valt. */
@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 176px;
  }

  .hero-section .eyebrow {
    max-width: calc(100vw - 32px);
    white-space: normal;
    line-height: 1.35;
    margin-top: 8px;
  }
}

@media (max-width: 380px) {
  .hero-section {
    padding-top: 188px;
  }

  .hero-section .eyebrow {
    font-size: .74rem;
  }
}
