/* ============================================================
   SMARTSCALE — Stylesheet
   Kleurenpalet:
     Navy      #1B3A6B  — vertrouwen, expertise
     Navy Dark #122B52  — accenten, donkere achtergronden
     Amber     #C8882A  — warmte, actie, onderscheid
     Licht bg  #F7F9FC  — secties
     Tekst     #1A2332  — titels
     Tekst mid #4A5A72  — body
   ============================================================ */

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A2332;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid #C8882A;
  outline-offset: 3px;
  border-radius: 3px;
}

/* === Design Tokens === */
:root {
  --navy:        #1B3A6B;
  --navy-dark:   #122B52;
  --amber:       #C8882A;
  --amber-dark:  #A87020;
  --bg-light:    #F7F9FC;
  --bg-section:  #EDF1F7;
  --text-dark:   #1A2332;
  --text-mid:    #4A5A72;
  --text-muted:  #8898B0;
  --border:      #D1DCE9;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow:      0 2px 20px rgba(27, 58, 107, 0.08);
  --shadow-hover:0 8px 40px rgba(27, 58, 107, 0.15);
  --container:   1140px;
}

/* === Typography === */
h1, h2, h3, h4 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; letter-spacing: -0.005em; }

p   { color: var(--text-mid); line-height: 1.72; }
em  { font-style: normal; color: var(--amber); }

.label {
  display: inline-block;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

/* === Layout === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }

.section__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.section__header h2  { margin-bottom: 16px; }
.section__header p   { font-size: 1.05rem; }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.025em;
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn--amber {
  background: var(--amber);
  color: #fff;
}
.btn--amber:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 136, 42, 0.32);
}

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.32);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.btn--navy {
  background: var(--navy);
  color: #fff;
}
.btn--navy:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 0.95rem;
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s;
}

.nav.scrolled {
  box-shadow: 0 2px 24px rgba(27, 58, 107, 0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav__logo svg { height: 26px; width: auto; flex-shrink: 0; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__links a {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.nav__links a:hover { color: var(--navy); background: var(--bg-light); }

.nav__links .nav__cta {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  padding: 9px 20px;
  margin-left: 8px;
}
.nav__links .nav__cta:hover { background: var(--navy-dark); color: #fff; }

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Hero === */
.hero {
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 70%, #1E458A 100%);
  padding: 160px 0 108px;
  position: relative;
  overflow: hidden;
}

/* Subtle amber glow top-right */
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -8%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(200,136,42,0.14) 0%, transparent 65%);
  pointer-events: none;
}

/* Faint light blob bottom-left */
.hero::after {
  content: '';
  position: absolute;
  bottom: -25%; left: -8%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner { position: relative; max-width: 720px; }

.hero__tag {
  display: inline-block;
  background: rgba(200,136,42,0.18);
  color: #E8A84C;
  border: 1px solid rgba(200,136,42,0.32);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__title {
  color: #fff;
  font-weight: 800;
  margin-bottom: 24px;
}
.hero__title em { color: var(--amber); }

.hero__sub {
  font-size: 1.1rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.72);
  margin-bottom: 42px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* === Aanpak Section === */
.aanpak { background: var(--bg-light); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
}

.pillar:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.pillar__icon {
  width: 46px; height: 46px;
  background: rgba(27, 58, 107, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.pillar__icon svg { width: 22px; height: 22px; }

.pillar h3 { color: var(--navy); margin-bottom: 10px; }
.pillar p  { font-size: 0.95rem; }

/* === Diensten Section === */
.diensten { background: #fff; }

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.dienst-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.dienst-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.dienst-card__number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--bg-section);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.2s;
  user-select: none;
}

.dienst-card:hover .dienst-card__number { color: rgba(27,58,107,0.07); }

.dienst-card h3   { color: var(--navy); margin-bottom: 10px; }
.dienst-card p    { font-size: 0.95rem; }

/* === Over Section === */
.over { background: var(--bg-light); }

.over__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.over__content h2   { margin-bottom: 24px; }
.over__content p    { margin-bottom: 18px; }
.over__content p:last-child { margin-bottom: 0; }

/* Decorative bar chart illustration */
.over__visual {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.over__chart {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 160px;
}

.over__bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--navy);
  transition: height 0.8s ease;
}
.over__bar--1 { height: 30%; opacity: 0.25; }
.over__bar--2 { height: 52%; opacity: 0.45; }
.over__bar--3 { height: 74%; opacity: 0.7; }
.over__bar--4 { height: 100%; background: var(--amber); opacity: 1; }

.over__caption {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-align: center;
}

/* === CTA Banner === */
.cta-banner {
  background: var(--navy);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(200,136,42,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner > .container { position: relative; }

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 38px;
}

/* === Footer === */
.footer {
  background: var(--navy-dark);
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer__logo svg { height: 22px; width: auto; }

.footer__links {
  display: flex;
  gap: 20px;
}
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  transition: color 0.15s;
}
.footer__links a:hover { color: rgba(255,255,255,0.85); }

.footer__copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.32);
}

/* === Scroll Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible      { opacity: 1; transform: none; }
.reveal--delay-1     { transition-delay: 0.1s; }
.reveal--delay-2     { transition-delay: 0.22s; }
.reveal--delay-3     { transition-delay: 0.34s; }

/* === Responsive === */
@media (max-width: 960px) {
  .pillars        { grid-template-columns: 1fr; gap: 18px; }
  .diensten-grid  { grid-template-columns: 1fr; }
  .over__inner    { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav__links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #fff;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  .nav__links.open { display: flex; }
  .nav__links a    { padding: 12px 16px; font-size: 1rem; border-radius: 8px; }
  .nav__links .nav__cta { margin-left: 0; text-align: center; }

  .nav__burger { display: flex; }

  .hero { padding: 128px 0 80px; }
  .hero__sub { font-size: 1rem; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .dienst-card { padding: 28px 24px; }
}

/* === Dienst Card Icon === */
.dienst-card__icon {
  width: 46px; height: 46px;
  background: rgba(27, 58, 107, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.dienst-card__icon svg { width: 22px; height: 22px; }
.dienst-card:hover .dienst-card__icon { background: rgba(27, 58, 107, 0.12); }

/* === Proces Section === */
.proces { background: var(--bg-light); }

.proces-timeline {
  display: flex;
  position: relative;
  gap: 0;
}

/* Horizontal connecting line */
.proces-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.proces-stap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
}

.proces-stap__dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--bg-light); /* gap that "cuts" the line */
}

.proces-stap__dot--amber { background: var(--amber); }

.proces-stap__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.proces-stap__icon {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.proces-stap__icon svg { width: 20px; height: 20px; }

.proces-stap h3 {
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 7px;
}

.proces-stap p {
  font-size: 0.8rem;
  line-height: 1.62;
  color: var(--text-mid);
}

/* Mobile: vertical timeline */
@media (max-width: 900px) {
  .proces-timeline {
    flex-direction: column;
    max-width: 520px;
    margin: 0 auto;
  }

  .proces-timeline::before {
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .proces-stap {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 0 0 32px 0;
  }
  .proces-stap:last-child { padding-bottom: 0; }

  .proces-stap__dot {
    margin-bottom: 0;
    box-shadow: 0 0 0 4px var(--bg-light);
  }

  .proces-stap__body {
    align-items: flex-start;
    text-align: left;
    flex: 1;
  }
}

/* === Vaste Prijs Strip === */
.prijzen-strip {
  background: var(--navy);
  padding: 52px 0;
}

.prijzen-strip__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.prijzen-strip__icon {
  flex-shrink: 0;
  width: 58px; height: 58px;
  background: rgba(200,136,42,0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}
.prijzen-strip__icon svg { width: 28px; height: 28px; }

.prijzen-strip__text { flex: 1; }
.prijzen-strip__text h3 { color: #fff; margin-bottom: 8px; }
.prijzen-strip__text p  { color: rgba(255,255,255,0.68); font-size: 0.95rem; margin: 0; }

@media (max-width: 768px) {
  .prijzen-strip__inner { flex-direction: column; text-align: center; gap: 24px; }
  .prijzen-strip__inner .btn { width: 100%; text-align: center; }
}

/* === Contact Section === */
.contact-section {
  background: var(--bg-light);
  padding: 88px 0;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 72px;
  align-items: start;
}

.contact-section__intro h2 { margin-bottom: 18px; }
.contact-section__intro > p { margin-bottom: 32px; }

.contact-badges {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
}

.contact-badge {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.contact-badge svg {
  width: 19px; height: 19px;
  color: var(--amber);
  flex-shrink: 0;
}

.contact-direct {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}
.contact-direct a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-direct a:hover { color: var(--amber); }

/* Form card */
.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}
.form-field label span { color: var(--amber); }

.form-field input,
.form-field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #fff;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-muted); }

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,107,0.09);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 24px 16px 8px;
}
.form-success svg {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  display: block;
}
.form-success h3 { color: var(--navy); margin-bottom: 10px; }

@media (max-width: 960px) {
  .contact-section__inner { grid-template-columns: 1fr; gap: 44px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  .contact-form-card { padding: 28px 20px; }
}


/* === Service Card Meta (verdieping) === */
.service-card__meta {
  border-top: 1.5px solid var(--bg-section);
  margin-top: 24px;
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-meta-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.service-meta-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.service-meta-timeline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-section);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}
.service-meta-timeline svg { width: 13px; height: 13px; flex-shrink: 0; }

.service-meta-voor-wie {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

.service-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0; padding: 0;
}
.service-deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.service-deliverables li::before {
  content: '';
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8882A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-faq {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.service-faq__q {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.service-faq__q-icon {
  width: 17px; height: 17px;
  background: var(--amber);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-faq__a {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0 0 0 25px;
}


/* ============================================================
   DIENSTEN PAGE
   ============================================================ */

/* --- Page Hero (sub-pages) --- */
.page-hero {
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 70%, #1E458A 100%);
  padding: 128px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -8%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(200,136,42,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__inner { position: relative; }

.page-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.52);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 28px;
  transition: color 0.15s;
}
.page-hero__back:hover { color: rgba(255,255,255,0.85); }
.page-hero__back svg { width: 14px; height: 14px; }

.page-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

/* --- Quick Nav --- */
.quick-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 150;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.quick-nav::-webkit-scrollbar { display: none; }

.quick-nav__inner {
  display: flex;
  gap: 4px;
  padding: 10px 0;
  min-width: max-content;
}

.quick-nav__link {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.quick-nav__link:hover  { background: var(--bg-section); color: var(--navy); }
.quick-nav__link.active { background: var(--navy); color: #fff; }

/* --- Services Section --- */
.services-section { background: var(--bg-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* 7th card: left column, don't stretch */
.services-grid .service-card:last-child:nth-child(odd) {
  grid-column: 1;
}

/* --- Service Card --- */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.service-card__icon {
  width: 48px; height: 48px;
  background: rgba(27,58,107,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.service-card__icon svg {
  width: 22px; height: 22px;
  transition: stroke 0.2s;
}
.service-card:hover .service-card__icon             { background: var(--navy); }
.service-card:hover .service-card__icon svg         { stroke: #fff; }

.service-card__num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.service-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.25;
}

.service-card__tagline {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--amber);
  margin-bottom: 16px;
  line-height: 1.45;
}

.service-card__body {
  font-size: 0.95rem;
  line-height: 1.72;
  flex: 1;
}
.service-card__body p + p { margin-top: 12px; }

.service-card__examples {
  border-top: 1px solid var(--border);
  margin-top: 24px;
  padding-top: 20px;
}

.service-card__examples-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.service-card__examples ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card__examples li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.service-card__examples li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

/* Responsive for services page */
@media (max-width: 860px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:last-child:nth-child(odd) { grid-column: auto; }
}

@media (max-width: 600px) {
  .service-card { padding: 28px 24px; }
  .page-hero    { padding: 108px 0 56px; }
}


/* ============================================================
   MAATWERK SOFTWARE SECTION
   ============================================================ */

.maatwerk-section {
  background: var(--navy-dark);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.maatwerk-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 450px;
  background: radial-gradient(ellipse, rgba(200,136,42,0.11) 0%, transparent 65%);
  pointer-events: none;
}

.maatwerk-section > .container { position: relative; }

.maatwerk__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.maatwerk__header .label { color: #E8A84C; }

.maatwerk__header h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 20px;
}

.maatwerk__header p {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  line-height: 1.72;
}

.maatwerk__header strong {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}

/* Two-column layout */
.maatwerk__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Left: arguments */
.maatwerk__arguments {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.maatwerk__argument {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.maatwerk__arg-icon {
  width: 34px; height: 34px;
  background: rgba(200,136,42,0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.maatwerk__arg-icon svg {
  width: 16px; height: 16px;
  stroke: #E8A84C;
}

.maatwerk__argument h4 {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
}

.maatwerk__argument p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.62;
}

/* Right: examples panel */
.maatwerk__panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.maatwerk__panel-title {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.maatwerk__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.maatwerk__tag {
  padding: 6px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 100px;
  color: rgba(255,255,255,0.72);
  font-size: 0.84rem;
  font-weight: 500;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  cursor: default;
}

.maatwerk__tag:hover {
  background: rgba(200,136,42,0.18);
  border-color: rgba(200,136,42,0.38);
  color: #E8A84C;
}

.maatwerk__callout {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.maatwerk__callout-icon {
  width: 32px; height: 32px;
  background: rgba(200,136,42,0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.maatwerk__callout-icon svg { width: 15px; height: 15px; stroke: #E8A84C; }

.maatwerk__callout p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.6;
}

.maatwerk__callout strong {
  color: rgba(255,255,255,0.82);
  font-weight: 600;
}

@media (max-width: 860px) {
  .maatwerk__body { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .maatwerk-section { padding: 64px 0; }
  .maatwerk__panel  { padding: 24px; }
}


/* ============================================================
   BLOG LISTING PAGE
   ============================================================ */

.blog-section { background: var(--bg-light); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.blog-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.blog-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.68;
  flex: 1;
  margin-bottom: 20px;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-card__meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  transition: gap 0.15s;
}
.blog-card__read-more svg {
  width: 12px; height: 12px;
  stroke: var(--navy);
  flex-shrink: 0;
  transition: transform 0.15s;
}
.blog-card:hover .blog-card__read-more { gap: 7px; }
.blog-card:hover .blog-card__read-more svg { transform: translateX(2px); }

@media (max-width: 960px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .blog-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   BLOG DETAIL / ARTICLE PAGE
   ============================================================ */

.article-wrap {
  background: #fff;
  padding: 72px 0 96px;
}

.article {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
}

.article__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.article__category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(200,136,42,0.1);
  padding: 4px 12px;
  border-radius: 100px;
}

.article__meta-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

.article__date,
.article__read {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Article typography */
.article__content h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--navy);
  margin: 52px 0 16px;
  padding-top: 4px;
}

.article__content h3 {
  font-size: 1.08rem;
  color: var(--navy);
  margin: 36px 0 12px;
}

.article__content p {
  font-size: 1.02rem;
  line-height: 1.82;
  margin-bottom: 22px;
  color: var(--text-mid);
}

.article__content ul,
.article__content ol {
  margin: 0 0 22px 4px;
  padding-left: 20px;
}

.article__content li {
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--text-mid);
  margin-bottom: 10px;
}

.article__content ul li::marker { color: var(--amber); }
.article__content ol li::marker { color: var(--amber); font-weight: 700; }

.article__content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.article__content .callout {
  background: rgba(27,58,107,0.04);
  border-left: 3px solid var(--amber);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
}

.article__content .callout p {
  margin: 0;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.65;
}

.article__content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 52px 0;
}

@media (max-width: 600px) {
  .article-wrap { padding: 48px 0 72px; }
}


/* ============================================================
   AGENTS PAGE
   ============================================================ */

/* --- Waves Section --- */
.waves-section { background: var(--bg-light); }

.waves-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.waves-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(to right, var(--border) 0%, var(--navy) 50%, var(--amber) 100%);
  z-index: 0;
}

.wave {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px 8px;
}

.wave__badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.wave--1 .wave__badge {
  background: #fff;
  color: var(--text-muted);
  border: 2px solid var(--border);
}
.wave--2 .wave__badge {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(27,58,107,0.22);
}
.wave--3 .wave__badge {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 6px 24px rgba(200,136,42,0.42);
}

.wave__year {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.wave h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.wave p {
  font-size: 0.88rem;
  max-width: 230px;
  margin: 0 auto;
}

.wave__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 14px;
}

.wave__tag {
  background: var(--bg-section);
  color: var(--text-mid);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
}

.wave--3 .wave__tag {
  background: rgba(200,136,42,0.12);
  color: var(--amber-dark);
}

.wave__now {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,136,42,0.15);
  color: var(--amber);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 12px;
}
.wave__now::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.75); }
}

@media (max-width: 768px) {
  .waves-timeline {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
  .waves-timeline::before { display: none; }
  .wave {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 0 0 36px;
  }
  .wave:last-child { padding-bottom: 0; }
  .wave__badge { margin-bottom: 0; flex-shrink: 0; }
  .wave__content { flex: 1; }
  .wave p { max-width: none; margin: 0; }
  .wave__tags { justify-content: flex-start; }
}

/* --- Domain Sections --- */
.domain-section { padding: 72px 0; }
.domain-section:nth-child(even) { background: #fff; }
.domain-section:nth-child(odd)  { background: var(--bg-light); }

.domain-header { margin-bottom: 36px; }

.domain-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(27,58,107,0.07);
  color: var(--navy);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.domain-badge svg { width: 12px; height: 12px; }

.domain-header h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--navy);
  margin-bottom: 10px;
}
.domain-header > p {
  font-size: 0.95rem;
  max-width: 560px;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 860px) {
  .agents-grid { grid-template-columns: 1fr; }
  .domain-section { padding: 56px 0; }
}

/* --- Safety Section --- */
.safety-section {
  background: var(--navy-dark);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.safety-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(200,136,42,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.safety-section > .container { position: relative; }

.safety-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}
.safety-header .label { color: #E8A84C; }
.safety-header h2 { color: #fff; margin-bottom: 14px; }
.safety-header p  { color: rgba(255,255,255,0.65); }

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.safety-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background 0.2s, border-color 0.2s;
}
.safety-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.safety-card__icon {
  width: 40px; height: 40px;
  background: rgba(200,136,42,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.safety-card__icon svg { width: 18px; height: 18px; stroke: var(--amber); }

.safety-card h4 {
  color: #fff;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}
.safety-card p {
  color: rgba(255,255,255,0.58);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .safety-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   USE CASES PAGE
   ============================================================ */

.sector-section { padding: 72px 0; }
.sector-section:nth-child(odd)  { background: var(--bg-light); }
.sector-section:nth-child(even) { background: #fff; }

.sector-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}

.sector-icon {
  width: 54px; height: 54px;
  background: rgba(27,58,107,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}
.sector-icon svg { width: 24px; height: 24px; }

.sector-header__text h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--navy);
  margin-bottom: 8px;
}
.sector-header__text p { font-size: 0.95rem; max-width: 560px; }

.sector-examples {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.sector-example {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.sector-section:nth-child(odd) .sector-example { background: #fff; }
.sector-section:nth-child(even) .sector-example { background: var(--bg-light); }

.sector-example:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}

.sector-example__icon {
  width: 34px; height: 34px;
  background: rgba(27,58,107,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: background 0.2s;
}
.sector-example__icon svg { width: 15px; height: 15px; stroke: var(--navy); }
.sector-example:hover .sector-example__icon { background: var(--navy); }
.sector-example:hover .sector-example__icon svg { stroke: #fff; }

.sector-example h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.sector-example p {
  font-size: 0.855rem;
  color: var(--text-mid);
  line-height: 1.62;
  margin: 0;
}

.sector-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.sector-cta-bar p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

@media (max-width: 860px) {
  .sector-examples { grid-template-columns: 1fr; }
  .sector-header    { flex-direction: column; gap: 14px; }
  .sector-cta-bar   { flex-direction: column; align-items: flex-start; }
  .sector-section   { padding: 56px 0; }
}

/* ============================================================
   REFERENTIES PAGE
   ============================================================ */

.case-section { padding: 80px 0; }
.case-section:nth-child(odd)  { background: var(--bg-light); }
.case-section:nth-child(even) { background: #fff; }

.case-intro {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 44px;
}

.case-logo {
  width: 58px; height: 58px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.case-sector-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(27,58,107,0.07);
  color: var(--navy);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.case-intro__meta h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--navy);
  margin-bottom: 8px;
}

.case-intro__meta > p {
  font-size: 0.97rem;
  max-width: 640px;
}

.case-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.case-text-block {
  margin-bottom: 26px;
}

.case-text-block__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 10px;
}

.case-text-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.case-text-block li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}

.case-text-block li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 5px; height: 5px;
  background: var(--amber);
  border-radius: 50%;
}

.case-agents {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.case-agent-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(200,136,42,0.1);
  color: var(--amber-dark);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.result-metric {
  background: rgba(27,58,107,0.04);
  border-radius: var(--radius);
  padding: 16px 14px;
  border: 1px solid var(--border);
}

.result-metric__number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 5px;
}

.result-metric__label {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.45;
}

/* --- Architecture Diagrams --- */
.arch-diagram {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
}

.case-section:nth-child(even) .arch-diagram {
  background: var(--bg-light);
}

.arch-diagram__title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
  text-align: center;
}

.arch-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.arch-row {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.arch-node {
  border-radius: 8px;
  padding: 7px 13px;
  font-size: 0.77rem;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1.35;
}

.arch-node--source {
  background: rgba(27,58,107,0.07);
  color: var(--navy);
  border: 1px solid rgba(27,58,107,0.14);
}

.arch-node--agent {
  background: var(--navy);
  color: #fff;
  padding: 11px 16px;
  font-size: 0.82rem;
  width: 100%;
  justify-content: center;
}

.arch-node--agent-secondary {
  background: rgba(27,58,107,0.72);
  color: #fff;
  padding: 11px 16px;
  font-size: 0.82rem;
  width: 100%;
  justify-content: center;
}

.arch-node--output {
  background: rgba(200,136,42,0.1);
  color: var(--amber-dark);
  border: 1px solid rgba(200,136,42,0.2);
}

.arch-node--system {
  background: var(--bg-section);
  color: var(--text-mid);
  border: 1px solid var(--border);
  font-size: 0.73rem;
}

.arch-node--rag {
  background: rgba(27,58,107,0.12);
  color: var(--navy);
  border: 1.5px solid rgba(27,58,107,0.22);
  padding: 11px 16px;
  font-size: 0.82rem;
  width: 100%;
  justify-content: center;
  font-weight: 700;
}

.arch-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 0 2px;
  gap: 1px;
  color: var(--text-muted);
}

.arch-arrow svg { width: 14px; height: 14px; }

.arch-label {
  font-size: 0.67rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  margin-bottom: 6px;
  margin-top: -2px;
}

/* Responsive */
@media (max-width: 900px) {
  .case-layout { grid-template-columns: 1fr; }
  .case-results { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .case-section { padding: 56px 0; }
  .case-results { grid-template-columns: 1fr; }
  .case-intro { flex-direction: column; }
}


/* ============================================================
   BAROMETER PAGE
   ============================================================ */

/* Hero */
.baro-hero h1 em { font-style: normal; color: var(--amber); }

.baro-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.baro-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

.baro-hero-meta svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Section & Card */
.baro-section {
  background: var(--bg-light);
  padding: 64px 0 96px;
}

.baro-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(27,58,107,0.10);
  padding: 48px 52px;
  max-width: 720px;
  margin: 0 auto;
  min-height: 400px;
}

/* Progress */
.baro-progress-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.baro-progress-bar {
  flex: 1;
  height: 6px;
  background: var(--bg-light);
  border-radius: 100px;
  overflow: hidden;
}

.baro-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--amber);
  border-radius: 100px;
  transition: width 0.4s ease;
}

.baro-step-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Steps: show/hide */
.baro-step { display: none; }
.baro-step.active { display: block; }

/* Question */
.baro-q-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 10px;
}

.baro-q-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.baro-q-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Options grid */
.baro-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.baro-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-light);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s, transform 0.12s;
  font-family: inherit;
}

.baro-option:hover {
  border-color: var(--navy);
  background: #fff;
  box-shadow: var(--shadow);
}

.baro-option.selected {
  border-color: var(--amber);
  background: rgba(200,136,42,0.06);
  box-shadow: 0 0 0 3px rgba(200,136,42,0.15);
  transform: scale(1.01);
}

.baro-option__icon {
  width: 36px; height: 36px;
  background: rgba(27,58,107,0.08);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.baro-option__icon svg { width: 16px; height: 16px; stroke: var(--navy); }
.baro-option.selected .baro-option__icon { background: rgba(200,136,42,0.12); }
.baro-option.selected .baro-option__icon svg { stroke: var(--amber); }

.baro-option__text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.baro-option__text small {
  display: block;
  font-size: 0.77rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Contact form */
.baro-contact-intro {
  text-align: center;
  margin-bottom: 32px;
}

.baro-contact-icon {
  width: 56px; height: 56px;
  background: rgba(200,136,42,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.baro-contact-icon svg { width: 24px; height: 24px; stroke: var(--amber); }

.baro-contact-sub {
  font-size: 0.93rem;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.baro-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.baro-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.baro-form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.baro-optional {
  font-weight: 400;
  color: var(--text-muted);
}

.baro-form-group input {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
}

.baro-form-group input:focus {
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(27,58,107,0.10);
}

.baro-privacy {
  font-size: 0.77rem;
  color: var(--text-muted);
  margin: 16px 0 24px;
  line-height: 1.5;
}

.baro-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  width: 100%;
  justify-content: center;
}

.baro-submit-btn:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,136,42,0.35);
}

.baro-submit-btn svg { width: 18px; height: 18px; }

/* Gauge / Resultaten */
.baro-gauge-wrap {
  text-align: center;
  margin-bottom: 28px;
}

.baro-gauge-svg {
  width: 260px;
  height: 148px;
  display: block;
  margin: 0 auto;
  overflow: visible;
}

.baro-gauge-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

.baro-score-display {
  margin-top: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--navy);
}

#gauge-score-number { font-size: 2.6rem; line-height: 1; }
.baro-score-pct { font-size: 1.2rem; vertical-align: super; }

/* Tier badge */
.baro-tier-block {
  text-align: center;
  margin-bottom: 32px;
  padding: 28px 24px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.baro-tier-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  padding: 4px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.baro-tier-badge--verkenner     { background: rgba(200,136,42,0.12); color: var(--amber-dark); }
.baro-tier-badge--klaar-om-te-starten { background: rgba(27,58,107,0.1); color: var(--navy); }
.baro-tier-badge--ai-ready      { background: rgba(42,157,110,0.12); color: #1d7a55; }

.baro-result-title {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--navy);
  margin-bottom: 10px;
}

.baro-result-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* Aanbevelingen */
.baro-recs { margin-bottom: 32px; }

.baro-recs__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
  text-align: center;
}

.baro-recs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.baro-rec-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 14px;
  text-decoration: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.baro-rec-card:hover { border-color: var(--navy); box-shadow: var(--shadow); }

.baro-rec-card strong {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.baro-rec-card p {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.5;
  flex: 1;
}

.baro-rec-more {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber);
  margin-top: 4px;
}

/* CTA na resultaten */
.baro-result-cta {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.baro-result-cta > p {
  font-size: 0.93rem;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.baro-result-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: gap 0.2s;
}

.baro-result-link:hover { gap: 10px; }
.baro-result-link svg { width: 14px; height: 14px; }

/* Responsive */
@media (max-width: 700px) {
  .baro-card { padding: 28px 20px; }
  .baro-options { grid-template-columns: 1fr; }
  .baro-form-row { grid-template-columns: 1fr; }
  .baro-recs-grid { grid-template-columns: 1fr; }
  .baro-gauge-svg { width: 220px; height: 126px; }
}

@media (max-width: 480px) {
  .baro-section { padding: 40px 0 64px; }
  .baro-q-title { font-size: 1.15rem; }
}

/* ============================================================
   WHY SECTION (index.html)
   ============================================================ */

.why-section {
  background: #fff;
  padding: 80px 0 72px;
}

.why__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.why__intro h2 {
  color: var(--navy);
  margin-bottom: 18px;
}

.why__intro p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}

.why__beliefs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why__belief {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(27,58,107,0.08);
}

.why__belief:last-child {
  border-bottom: none;
}

.why__belief-accent {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.5;
  line-height: 1;
  padding-top: 4px;
}

.why__belief-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.why__belief-body p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.72;
  margin: 0;
}

@media (max-width: 860px) {
  .why-section { padding: 60px 0 52px; }
}

@media (max-width: 560px) {
  .why__intro { margin-bottom: 36px; }
  .why__belief { grid-template-columns: 44px 1fr; gap: 20px; padding: 24px 0; }
  .why__belief-accent { font-size: 1.5rem; }
}
