/* Scalar Solutions — brand sheet blues + SaaS landing */
:root {
  --navy: #0A3A8C;
  --primary: #1A5FE0;
  --primary-hover: #144bb3;
  --secondary: #6B9AE8;
  --light: #B8D4F8;
  --heading: #0A3A8C;
  --ink: #5a6573;
  --dark: #082E70;
  --dark-2: #06245A;
  --white: #ffffff;
  --soft: #EEF4FC;
  --soft-2: #E3EDFA;
  --border: #D5E0F0;
  --muted: #C5C9CE;
  --whatsapp: #128C7E;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px rgba(26, 95, 224, 0.12);
  --shadow-soft: 0 8px 30px rgba(10, 58, 140, 0.06);
  --max: 1180px;
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --logo: "Sora", "Poppins", sans-serif;
  --grad: linear-gradient(45deg, var(--navy) 0%, var(--primary) 100%);
  --hero-bg:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.9) 0%, transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(26,95,224,0.16) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(184,212,248,0.55) 0%, transparent 46%),
    linear-gradient(180deg, #D6E8FC 0%, #EEF4FC 52%, #F7FAFE 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--heading); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--primary); }
strong { font-weight: 600; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.06);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover { color: var(--primary); opacity: 0.92; }
.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
.logo-word {
  font-family: var(--logo);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--primary);
}
.logo-sub {
  display: block;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-top: 0.2rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--heading);
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: inherit;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.site-nav a {
  color: var(--heading);
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--primary); }
.site-nav .nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  margin-left: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
}
.site-nav .nav-cta:hover { background: var(--primary-hover); color: var(--white) !important; }

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.55rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.3;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--dark); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--primary); color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--heading);
  border: 1px solid #cccccc;
}
.btn-secondary:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-outline {
  background: transparent;
  color: var(--heading);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-ghost { background: var(--soft); color: var(--heading); }
.btn-ghost:hover { background: var(--soft-2); color: var(--heading); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: #0e7468; color: var(--white); }
.btn-light { background: var(--white); color: var(--heading); }
.btn-light:hover { background: var(--primary); color: var(--white); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* —— Hero —— */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-bg);
  padding: 4.5rem 0 5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.sub-title {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: 1.5rem;
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sub-title::after,
.sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--primary);
  transform: translateY(-50%);
}
.sub-title::before {
  left: 6px;
  margin-top: -6px;
  opacity: 0.55;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin: 0 0 1.1rem;
  max-width: 14ch;
}
.hero-lead {
  font-size: 1.08rem;
  max-width: 36rem;
  margin: 0 0 1.75rem;
}
.trust-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem; }
.trust-chip {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(75,75,229,0.12);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--heading);
}

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.dash-float {
  position: absolute;
  right: -0.5rem;
  bottom: -1.25rem;
  background: var(--white);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow);
  min-width: 210px;
  border: 1px solid rgba(255,255,255,0.6);
}
.dash-float .label { font-size: 0.78rem; color: var(--ink); margin: 0 0 0.2rem; }
.dash-float .value {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.2;
}
.dash-float .hint { font-size: 0.78rem; color: var(--primary); font-weight: 500; margin: 0.15rem 0 0; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .dash-float { position: static; margin-top: 1rem; }
}

/* —— Sections —— */
.section { padding: 6rem 0; position: relative; }
.section-soft { background: var(--soft); }
.section-mesh { background: var(--hero-bg); }
.section-dark {
  background: var(--dark);
  color: #d8e3f0;
}
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-header { margin-bottom: 2.5rem; max-width: 40rem; }
.section-header.center { text-align: center; margin-inline: auto; max-width: 38rem; }
.section-header h2,
.page-hero h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 0.6rem;
  color: var(--heading);
  line-height: 1.2;
}
.section-header p { margin: 0; }
.page-hero {
  background: var(--hero-bg);
  padding: 4rem 0 3rem;
}
.page-hero p { margin: 0; max-width: 40rem; }

/* —— Cards —— */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-soft);
}
.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading);
}
.card p { margin: 0 0 1rem; }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--grad);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
  font-weight: 600;
}
.card-link { font-weight: 500; color: var(--primary); }
.card-link:hover { color: var(--heading); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.two-col.top { align-items: start; }
.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.media-frame img { width: 100%; }

.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.7rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--primary);
}

/* —— Process —— */
.process-list { display: grid; gap: 1.25rem; }
.process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--border);
}
.process-num {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}
.process-item h3 { margin: 0 0 0.25rem; font-size: 1.1rem; color: var(--heading); }
.process-item p { margin: 0; }

/* —— Services —— */
.service-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.service-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.svc-num {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--grad);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-list h3 { margin: 0 0 0.25rem; font-size: 1.08rem; color: var(--heading); }
.service-list p { margin: 0; }

.not-list {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
}
.not-list h3 { margin: 0 0 0.75rem; color: var(--heading); }
.not-list ul { margin: 0; padding-left: 1.15rem; }
.not-list li { margin-bottom: 0.35rem; }

/* —— Pricing —— */
.price-highlight {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.price-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.1rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.price-stat .amount {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.price-stat .label { font-size: 0.86rem; margin-top: 0.25rem; }
.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.price-table th {
  background: var(--dark);
  color: var(--white);
  font-weight: 500;
  font-size: 0.88rem;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child,
.price-table th:last-child { text-align: right; white-space: nowrap; }
.price-table .price { font-weight: 600; color: var(--primary); font-variant-numeric: tabular-nums; }
.price-note { font-size: 0.9rem; margin-top: 1rem; }

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-soft);
}
.price-card.featured {
  background: var(--dark);
  color: #d8e3f0;
  border-color: var(--dark);
}
.price-card.featured h3,
.price-card.featured .amount { color: var(--white); }
.price-card h3 { margin: 0 0 0.5rem; color: var(--heading); font-size: 1.2rem; }
.price-card .amount { font-size: 2.4rem; font-weight: 600; color: var(--primary); line-height: 1.1; }
.price-card .per { font-size: 0.9rem; display: block; margin: 0.35rem 0 1.25rem; }
.price-card ul { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.price-card li { padding: 0.3rem 0 0.3rem 1.3rem; position: relative; }
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--primary);
}
.price-card.featured li::before { background: var(--secondary); }

/* —— Areas —— */
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-tag {
  background: var(--white);
  color: var(--heading);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.38rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 500;
}

/* —— Funnel / CTA —— */
.funnel-soft {
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
}
.funnel-soft a { font-weight: 600; color: var(--primary); }
.cta-band { text-align: center; padding: 5.5rem 0; }
.cta-band h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--white);
}
.cta-band p { margin: 0 auto 1.75rem; max-width: 36rem; }
.cta-band .hero-actions { justify-content: center; }

/* —— Contact —— */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.35rem;
}
.form-group .optional { font-weight: 400; color: var(--ink); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--heading);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(75, 75, 229, 0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-actions { margin-top: 1.5rem; }
.form-hint,
.card .form-hint {
  font-size: 0.85rem;
  margin: 1.35rem 0 0;
  line-height: 1.55;
}
.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  margin: 1.1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.92rem;
}
.form-status-ok { background: #e8f6ef; color: #0e5c38; }
.form-status-err { background: #fdecea; color: #8a1f11; }
.contact-aside {
  background: var(--dark);
  color: #d8e3f0;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}
.contact-aside h2 { margin: 0 0 0.75rem; font-size: 1.3rem; color: var(--white); }
.contact-aside p { margin: 0 0 1rem; }
.contact-lines { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.contact-lines li { margin-bottom: 0.7rem; }
.contact-aside a { color: #c9d7ff; }
.contact-aside a:hover { color: var(--white); }

/* —— Bio / prose —— */
.bio-block { max-width: 44rem; }
.bio-block p { font-size: 1.05rem; }
.prose { max-width: 44rem; }
.prose h2 { font-size: 1.25rem; color: var(--heading); margin: 2rem 0 0.5rem; font-weight: 600; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink); }
.prose ul { padding-left: 1.2rem; }

/* —— Footer —— */
.site-footer {
  background: var(--dark-2);
  color: rgba(255,255,255,0.72);
  padding: 3.5rem 0 1.6rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.25rem;
}
.site-footer .footer-heading,
.site-footer h3 {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.9rem;
  font-weight: 600;
}
.site-footer a { color: rgba(255,255,255,0.72); }
.site-footer a:hover { color: var(--white); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  font-size: 0.82rem;
  line-height: 1.7;
}
.footer-funnel { margin-top: 0.75rem; }
.footer-funnel a { color: var(--light); font-weight: 500; }

.diensten-aside {
  position: sticky;
  top: 6rem;
}
.diensten-aside .media-frame + .media-frame { margin-top: 1.25rem; }

/* —— Mobile nav —— */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--white);
    padding: 0.75rem 1.25rem 1.1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; }
  .site-nav a { display: block; padding: 0.7rem 0.85rem; }
  .site-nav .nav-cta { margin-left: 0; margin-top: 0.35rem; text-align: center; }
  .card-grid,
  .price-highlight,
  .price-cards,
  .two-col,
  .footer-grid,
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 3rem 0 3.25rem; }
  .diensten-aside { position: static; }
}
@media (max-width: 560px) {
  .price-highlight { grid-template-columns: 1fr 1fr; }
  .logo-mark { width: 34px; height: 34px; }
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
