/* ── Brand Colors ──────────────────────────────── */
:root {
  --color-primary: #3B5B8C;
  --color-primary-dark: #2F4A73;
  --color-accent-tint: #ECEEF5;
  --color-text: #1A1A1A;
  --color-text-muted: #787774;
  --color-bg: #F7F6F3;
  --color-card: #FFFFFF;
  --color-border: #EAEAEA;
  --color-nav-bg: #0D0D0D;
  --color-nav-text: #FFFFFF;
  --color-footer-bg: #E0DDD8;
  --color-footer-text: #3A3A3A;
  --color-dark-hero: #1A2535;
}

/* ── Base ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0;
}

p {
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-container {
  max-width: 1126px;
  margin: 0 auto;
  padding: 0 28px;
}

.hero-canvas .site-container {
  max-width: 90%;
  display: flex;
  flex-direction: column;
}

.section-py {
  padding-top: 88px;
  padding-bottom: 88px;
}

.section-py-sm {
  padding-top: 56px;
  padding-bottom: 56px;
}

/* Hero */
.hero__grid {
  flex-grow: 1;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 56px;
  align-items: center;
  min-height: 380px;
}

.hero__h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.15;
}

.hero__lead {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero__image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 4/3;
  opacity: 0.85;
}

/* ── Buttons ────────────────────────────────────── */
.btn-primary-brand {
  background-color: var(--color-primary);
  color: #fff !important;
  border: none;
  padding: 13px 30px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: inline-block;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary-brand:hover {
  background-color: var(--color-primary-dark);
  color: #fff !important;
}

.btn-outline-brand {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  padding: 11px 28px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
  text-decoration: none;
  line-height: 1.4;
}

.btn-outline-brand:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  padding: 11px 28px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
  text-decoration: none;
  line-height: 1.4;
}

.btn-outline-white:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-white-filled {
  background: #fff;
  color: var(--color-primary);
  border: none;
  padding: 13px 30px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  text-decoration: none;
  line-height: 1.4;
}

.btn-white-filled:hover {
  background: var(--color-accent-tint);
  color: var(--color-primary-dark);
}

/* ── Card base ──────────────────────────────────── */
.card-base {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
}

/* ── Section headings ───────────────────────────── */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 14px;
}

.section-lead {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ── Breadcrumb ─────────────────────────────────── */
.breadcrumb-bar {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.breadcrumb-bar a {
  color: var(--color-text-muted);
  text-decoration: underline;
}

.breadcrumb-bar a:hover {
  color: var(--color-primary);
}

/* ── Numbered step ──────────────────────────────── */
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Checkmark list ─────────────────────────────── */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}

.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Dark hero variant ──────────────────────────── */
.hero-dark {
  background: var(--color-dark-hero);
  color: #fff;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 72px 0;
}

.hero-dark .hero-h1 {
  color: #fff;
}

.hero-dark .hero-lead {
  color: rgba(255, 255, 255, 0.75);
}

/* ── Page hero (canvas bg) ──────────────────────── */
.hero-canvas {
  background: var(--color-bg);
  min-height: calc(100vh - 64px);
  display: flex;
  justify-content: space-around;
  padding: 24px 0;
}

/* ── Nav offset ─────────────────────────────────── */
.page-content-offset {
  padding-top: 68px;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
  .section-py {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section-py-sm {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .section-h2 {
    font-size: 1.6rem;
  }

  .hero-canvas,
  .hero-dark {
    padding: 56px 0 48px;
    min-height: calc(100svh - 64px);
  }
}

@media (max-width: 480px) {
  .section-py {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-h2 {
    font-size: 1.4rem;
  }

  .hero-canvas,
  .hero-dark {
    padding: 40px 0 36px;
    min-height: 0;
  }

  .btn-primary-brand,
  .btn-outline-brand {
    padding: 11px 22px;
    font-size: 14px;
  }
}

/* ── Contact form (global — needed for InteractiveServer scoping) ── */
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.ct-form__row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-label {
  font-size: 13px;
  font-weight: 500;
  color: #4a4a48;
  margin-bottom: 2px;
  display: inline-block;
}

.ct-required {
  color: var(--color-primary);
}

.ct-input {
  border: 1px solid #e2e2e0;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--color-text);
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
  outline: none;
  line-height: 1.5;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.ct-input::placeholder {
  color: #A8A8A2;
  font-weight: 400;
}

.ct-input:hover:not(:focus) {
  border-color: #cbcbc4;
  background: #fafaf9;
}

.ct-input:focus {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 91, 140, 0.08), 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ct-input.invalid {
  border-color: #e74c3c;
  background: #fffafa;
}

.ct-input.invalid:focus {
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

.ct-textarea {
  min-height: 130px;
  resize: none;
}

.ct-select {
  cursor: pointer;
}

.ct-error {
  font-size: 12px;
  color: #c0392b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ct-error-slot {
  min-height: 17px;
}

.ct-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 2px;
}

.ct-vrijblijvend {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.ct-submit {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 24px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .ct-form__row--2col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .ct-form__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}