/* ============================================================
   RSTech — websitestijlen (premium)
   Merkwaarden: eenvoud, veiligheid, modulariteit, betrouwbaarheid
   ============================================================ */

/* Lokaal gehoste fonts — geen externe verbindingen nodig */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("../fonts/sora-latin.woff2") format("woff2");
}

:root {
  /* Petrol — donkere vlakken: hero, footer, CTA */
  --color-ink: #0a2129;
  --color-navy-900: #0d2b33;
  --color-navy-800: #123640;
  --color-navy-700: #17454f;

  /* Koper — accent: knoppen, links, markeringen */
  --color-blue-600: #b0632f;
  --color-blue-500: #c2703d;
  --color-cyan-400: #d68a53;
  --color-blue-100: #f2e2d5;
  --color-blue-50: #faf3ed;

  /* Warme neutralen */
  --color-slate-900: #17262a;
  --color-slate-700: #4c5f63;
  --color-slate-500: #78888b;
  --color-slate-300: #c9c6bc;
  --color-slate-200: #e2ded4;
  --color-slate-100: #ebe8df;
  --color-slate-50: #f3f1ea;
  --color-white: #ffffff;

  /* Statuskleuren — bewust los van het koperen merkaccent */
  --color-green-600: #2f6b4f;
  --color-green-100: #e0efe6;
  --color-amber-700: #8a6a22;
  --color-amber-100: #f5edd8;

  /* Typografie */
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Sora", "Inter", "Segoe UI", system-ui, sans-serif;

  /* Maten */
  --container-max: 1180px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-card: 0 1px 2px rgba(13, 43, 51, 0.05);
  --shadow-card-hover: 0 2px 4px rgba(13, 43, 51, 0.07), 0 12px 28px -14px rgba(13, 43, 51, 0.22);
  --gradient-accent: #c2703d;
}

/* ---------- Reset & basis ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-slate-700);
  background: #fbfaf6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--color-blue-600);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--color-slate-900);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
}

h3 {
  font-size: 1.16rem;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5.5rem 0;
  position: relative;
}

.section-intro {
  max-width: 660px;
  margin-bottom: 3rem;
}

.section-intro p {
  margin-top: 0.9rem;
  font-size: 1.08rem;
}

.section-alt {
  background: var(--color-slate-50);
}

/* Eyebrow-label boven koppen */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-blue-600);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--color-blue-500);
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #d68a53;
}

.text-gradient {
  color: #e0a068;
}

/* ---------- Knoppen ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.97rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--color-blue-500);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-blue-600);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-slate-900);
  border-color: var(--color-slate-300);
}

.btn-secondary:hover {
  border-color: var(--color-blue-500);
  color: var(--color-blue-600);
}

.btn-light {
  background: var(--color-white);
  color: var(--color-navy-900);
}

.btn-light:hover {
  background: var(--color-blue-50);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- Badges ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.28rem 0.8rem;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: 1px solid transparent;
}

.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.badge-live {
  background: var(--color-green-100);
  color: var(--color-green-600);
  border-color: rgba(15, 138, 75, 0.18);
}

.badge-dev {
  background: var(--color-amber-100);
  color: var(--color-amber-700);
  border-color: rgba(180, 83, 9, 0.16);
}

.badge-neutral {
  background: var(--color-slate-100);
  color: var(--color-slate-500);
  border-color: var(--color-slate-200);
}

.page-hero .badge-live,
.hero .badge-live {
  background: rgba(126, 200, 160, 0.12);
  color: #8fd3ab;
  border-color: rgba(126, 200, 160, 0.28);
}

.page-hero .badge-dev,
.hero .badge-dev {
  background: rgba(224, 176, 96, 0.12);
  color: #e0b060;
  border-color: rgba(224, 176, 96, 0.28);
}

/* ---------- Header & navigatie ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-slate-200);
  transition: border-color 0.2s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--color-slate-300);
  background: rgba(251, 250, 246, 0.97);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--color-slate-900);
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--color-blue-500);
  display: grid;
  place-items: center;
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 800;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--color-slate-700);
  font-weight: 500;
  font-size: 0.94rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover {
  background: var(--color-slate-100);
  color: var(--color-slate-900);
  text-decoration: none;
}

.nav-links a.active {
  color: var(--color-blue-600);
  font-weight: 600;
  background: var(--color-blue-50);
}

.nav-links .nav-cta a {
  background: var(--color-blue-500);
  color: var(--color-white);
  font-weight: 600;
  margin-left: 0.6rem;
}

.nav-links .nav-cta a:hover {
  background: var(--color-blue-600);
}

/* ---------- Taalwisselaar ---------- */

.lang-notice {
  margin: 0;
  padding: 0.65rem 1.5rem;
  background: var(--color-amber-100);
  color: var(--color-amber-700);
  font-size: 0.87rem;
  font-weight: 500;
  text-align: center;
}

.lang-menu {
  position: relative;
}

/* Compacte blokjes: alleen de actieve taal is zichtbaar, klikken klapt uit */
.lang-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.45rem 0.55rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-white);
  background: var(--color-blue-500);
  white-space: nowrap;
  transition: background 0.13s ease;
}

.lang-trigger {
  border-radius: 5px;
  min-width: 68px;
}

.lang-menu.is-open .lang-trigger {
  border-radius: 5px 5px 0 0;
}

.lang-trigger:hover {
  background: var(--color-blue-600);
}

.lang-trigger:focus-visible,
.lang-option:focus-visible {
  outline: 2px solid var(--color-navy-900);
  outline-offset: 1px;
}

.lang-list {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 60;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 8px 20px -10px rgba(13, 43, 51, 0.4);
  display: none;
}

.lang-menu.is-open .lang-list {
  display: block;
}

.lang-option {
  background: var(--color-navy-700);
}

.lang-option:hover {
  background: var(--color-navy-800);
}

.lang-option.is-active {
  background: var(--color-blue-600);
}

.lang-flag {
  width: 14px;
  height: 9px;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Navigatie duwt taalmenu en menuknop naar rechts */
.nav-links {
  margin-left: auto;
}

.nav-toggle {
  display: none;
  background: var(--color-white);
  border: 1px solid var(--color-slate-300);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.6rem;
  cursor: pointer;
  color: var(--color-slate-900);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* ---------- Hero ---------- */

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: rgba(217, 228, 228, 0.85);
  background: var(--color-navy-900);
}

/* Accentlijn onderaan de hero */
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--color-blue-500);
}

.hero {
  padding: 6rem 0 5.5rem;
}

.hero h1,
.page-hero h1 {
  color: var(--color-white);
}

.hero-grid {
  display: block;
}

.hero-copy {
  max-width: 720px;
}

/* Productafbeelding op volle breedte onder de herotekst */
.hero-visual {
  margin-top: 3.25rem;
}

.hero .hero-sub {
  margin-top: 1.4rem;
  font-size: 1.16rem;
  max-width: 560px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-note {
  margin-top: 1.6rem;
  font-size: 0.88rem;
  color: rgba(217, 228, 228, 0.55);
}

.page-hero {
  padding: 4.75rem 0 4.25rem;
}

.page-hero p {
  margin-top: 1.1rem;
  max-width: 660px;
  font-size: 1.12rem;
}

/* ---------- Product-mockup (illustratief) ---------- */

.hero-visual {
  position: relative;
}

.mockup {
  position: relative;
  z-index: 1;
  background: var(--color-navy-800);
  border: 1px solid rgba(180, 210, 210, 0.16);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 48px -24px rgba(4, 16, 20, 0.7);
  overflow: hidden;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid rgba(180, 210, 210, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.mockup-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.mockup-bar .dot:nth-child(1) { background: #ff6b6b; }
.mockup-bar .dot:nth-child(2) { background: #fbbf24; }
.mockup-bar .dot:nth-child(3) { background: #34d399; }

.mockup-bar .mockup-title {
  margin-left: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(217, 228, 228, 0.6);
}

.mockup-body {
  padding: 1.15rem;
  display: grid;
  gap: 0.7rem;
}

.mockup-row {
  display: flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  gap: 0.85rem;
  padding: 0.8rem 0.95rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(180, 210, 210, 0.1);
}

.mockup-row-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(194, 112, 61, 0.2);
  color: #d68a53;
}

.mockup-row-icon svg {
  width: 18px;
  height: 18px;
}

.mockup-row-text {
  flex: 1;
  min-width: 0;
}

.mockup-row-text .t {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(240, 248, 246, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-row-text .s {
  display: block;
  font-size: 0.75rem;
  color: rgba(217, 228, 228, 0.5);
}

.mockup-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}

.mockup-pill.ok {
  background: rgba(126, 200, 160, 0.16);
  color: #8fd3ab;
}

.mockup-pill.new {
  background: rgba(214, 138, 83, 0.18);
  color: #e0a068;
}

.mockup-pill.sent {
  background: rgba(224, 176, 96, 0.14);
  color: #e0b060;
}

.mockup-caption {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(217, 228, 228, 0.45);
  margin-top: 0.9rem;
}

/* ---------- Productafbeeldingen ---------- */

.shot {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(180, 210, 210, 0.18);
  background: var(--color-navy-800);
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
}

.shot-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.95rem;
  border-bottom: 1px solid rgba(180, 210, 210, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.shot-bar .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.shot-bar .dot:nth-child(1) { background: #e06a5c; }
.shot-bar .dot:nth-child(2) { background: #e0b060; }
.shot-bar .dot:nth-child(3) { background: #7ec8a0; }

.shot-bar .shot-title {
  margin-left: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(217, 228, 228, 0.6);
}

.hero .shot {
  box-shadow: 0 24px 48px -24px rgba(4, 16, 20, 0.7);
}

/* Lichte variant voor productafbeeldingen op lichte secties */
.shot-light {
  border-color: var(--color-slate-200);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.shot-light .shot-bar {
  border-bottom-color: var(--color-slate-200);
  background: var(--color-slate-50);
}

.shot-light .shot-bar .shot-title {
  color: var(--color-slate-500);
}

.shot-caption {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--color-slate-500);
}

/* ---------- Kaarten & grids ---------- */

.grid {
  display: grid;
  gap: 1.6rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-slate-300);
}

.card h3 {
  margin-bottom: 0.55rem;
}

.card p {
  font-size: 0.96rem;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: var(--color-blue-100);
  color: var(--color-blue-600);
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.card-header h3 {
  margin-bottom: 0;
}

/* Modulekaarten */

.module-card ul {
  margin-top: 0.9rem;
  padding-left: 1.15rem;
  font-size: 0.93rem;
}

.module-card li {
  margin-bottom: 0.35rem;
}

.module-card li::marker {
  color: var(--color-blue-500);
}

.module-card-dev {
  background: var(--color-slate-50);
  border-style: dashed;
  border-color: var(--color-slate-300);
}

/* ---------- Feature-lijsten ---------- */

.check-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.check-list .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-green-600);
  color: var(--color-white);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 0.18rem;
}

/* ---------- Workflow ---------- */

.workflow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.workflow-step {
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--color-slate-900);
  transition: border-color 0.15s ease;
}

.workflow-step:hover {
  border-color: var(--color-blue-500);
}

.workflow-arrow {
  color: var(--color-slate-500);
  font-weight: 700;
}

.workflow-dark .workflow-step {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(180, 210, 210, 0.2);
  color: var(--color-white);
}

.workflow-dark .workflow-step:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--color-blue-500);
}

.workflow-dark .workflow-arrow {
  color: rgba(217, 228, 228, 0.5);
}

/* Ketenstap die nog in ontwikkeling is */
.workflow-step-dev {
  border-style: dashed;
}

.workflow-step .soon {
  display: inline-block;
  margin-left: 0.45rem;
  padding: 0.08rem 0.5rem;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(224, 176, 96, 0.16);
  color: #e0b060;
  vertical-align: middle;
}

/* ---------- Tijdlijn / roadmap ---------- */

.roadmap {
  list-style: none;
  position: relative;
  padding-left: 2rem;
  display: grid;
  gap: 2rem;
}

.roadmap::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--color-slate-200);
}

.roadmap li {
  position: relative;
}

.roadmap li::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-slate-300);
}

.roadmap li.done::before {
  border-color: var(--color-green-600);
  background: var(--color-green-100);
}

.roadmap li.active::before {
  border-color: var(--color-blue-500);
  background: var(--color-blue-100);
}

.roadmap h3 {
  font-size: 1.06rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.roadmap p {
  font-size: 0.95rem;
  margin-top: 0.3rem;
  max-width: 580px;
}

/* ---------- CTA-band ---------- */

.cta-band {
  position: relative;
  background: var(--color-navy-900);
  color: rgba(217, 228, 228, 0.85);
  border-left: 4px solid var(--color-blue-500);
  border-radius: var(--radius-md);
  padding: 3rem 2.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}

.cta-band h2 {
  color: var(--color-white);
  margin-bottom: 0.6rem;
}

.cta-band p {
  max-width: 500px;
}

.cta-band .hero-actions {
  margin-top: 0;
}

/* ---------- Formulieren ---------- */

.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  max-width: 560px;
}

.form-field {
  margin-bottom: 1.2rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-slate-900);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--color-slate-300);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-slate-900);
  background: var(--color-slate-50);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-blue-500);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(194, 112, 61, 0.18);
}

.form-note {
  font-size: 0.85rem;
  color: var(--color-slate-500);
  margin-top: 1rem;
}

.form-success {
  display: none;
  background: var(--color-green-100);
  color: var(--color-green-600);
  border: 1px solid rgba(15, 138, 75, 0.2);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
}

.form-success.visible {
  display: block;
}

/* ---------- Infoblokken ---------- */

.notice {
  position: relative;
  background: var(--color-blue-50);
  border: 1px solid var(--color-blue-100);
  border-left: 4px solid var(--color-blue-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.2rem 1.5rem;
  font-size: 0.96rem;
}

.notice strong {
  color: var(--color-slate-900);
}

.placeholder-value {
  color: var(--color-slate-500);
  font-style: italic;
}

/* Kernwaarden-chips */

.value-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.value-chips span {
  background: var(--color-white);
  color: var(--color-slate-900);
  border: 1px solid var(--color-slate-200);
  padding: 0.5rem 1.05rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: border-color 0.15s ease;
}

.value-chips span:hover {
  border-color: var(--color-blue-500);
}

/* ---------- Twee-koloms sectie ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.split h2 {
  margin-bottom: 1rem;
}

.split p + p {
  margin-top: 0.9rem;
}

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  background: var(--color-ink);
  color: rgba(217, 228, 228, 0.62);
  padding: 4rem 0 2rem;
  font-size: 0.93rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.75rem;
}

.footer-grid h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-grid a {
  color: rgba(217, 228, 228, 0.62);
  transition: color 0.15s ease;
}

.footer-grid a:hover {
  color: var(--color-white);
  text-decoration: none;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(217, 228, 228, 0.42);
}

/* ---------- Secundaire tekst-CTA ---------- */

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 0.5rem;
  font-weight: 600;
  font-size: 0.97rem;
  color: rgba(217, 228, 228, 0.85);
}

.btn-ghost:hover {
  color: var(--color-white);
  text-decoration: none;
}

.btn-ghost::after {
  content: "→";
  transition: transform 0.2s ease;
}

.btn-ghost:hover::after {
  transform: translateX(4px);
}

/* ---------- Browserframe-mockup ---------- */

.browser-frame {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  min-height: 300px;
}

.browser-side {
  border-right: 1px solid rgba(180, 210, 210, 0.12);
  padding: 1rem 0.75rem;
  display: grid;
  gap: 0.25rem;
  align-content: start;
  background: rgba(255, 255, 255, 0.02);
}

.browser-side span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(217, 228, 228, 0.55);
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
}

.browser-side span.on {
  background: rgba(194, 112, 61, 0.24);
  color: #f0d3bd;
}

.browser-main {
  padding: 1.1rem;
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.browser-main .heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.browser-main .heading-row .h {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(240, 246, 253, 0.95);
}

.browser-main .heading-row .b {
  font-size: 0.72rem;
  font-weight: 700;
  color: #f0d3bd;
  background: rgba(194, 112, 61, 0.25);
  padding: 0.25rem 0.7rem;
  border-radius: 5px;
}

/* ---------- Workflow-tour (genummerde stappen) ---------- */

.workflow-tour {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  counter-reset: tourstep;
}

.tour-step {
  position: relative;
  background: var(--color-white);
  border: 1px solid rgba(16, 33, 56, 0.08);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.2rem 1.3rem;
  box-shadow: var(--shadow-card);
  counter-increment: tourstep;
}

.tour-step::before {
  content: counter(tourstep, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-blue-500);
  margin-bottom: 0.6rem;
}

.tour-step h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.tour-step p {
  font-size: 0.87rem;
  line-height: 1.55;
}

/* ---------- Mobiel menu-overlay ---------- */

body.nav-open::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(10, 18, 32, 0.5);
  backdrop-filter: blur(2px);
}

body.nav-open {
  overflow: hidden;
}

/* ---------- Formulier: registratie nog niet geopend ---------- */

.form-pending button[type="submit"] {
  background: var(--color-slate-200);
  color: var(--color-slate-500);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.form-error {
  display: none;
  background: #fdecec;
  color: #b42318;
  border: 1px solid rgba(180, 35, 24, 0.2);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
}

.form-error.visible {
  display: block;
}

/* ---------- Scroll-reveal animaties ---------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }

  .reveal.reveal-in {
    opacity: 1;
    transform: none;
  }

}

/* ---------- Responsief ---------- */

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

  .split {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1020px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(251, 252, 254, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--color-slate-200);
    padding: 0.85rem 1.5rem 1.4rem;
    gap: 0.2rem;
    box-shadow: 0 24px 48px -20px rgba(10, 18, 32, 0.25);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: var(--radius-sm);
  }

  .nav-links .nav-cta a {
    margin-left: 0;
    margin-top: 0.6rem;
    text-align: center;
    justify-content: center;
    display: flex;
  }
}

@media (max-width: 960px) and (min-width: 721px) {
  .workflow-tour {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  section {
    padding: 3.5rem 0;
  }

  /* Workflow verticaal op mobiel */
  .workflow {
    flex-direction: column;
    align-items: stretch;
  }

  .workflow-step {
    text-align: center;
  }

  .workflow-arrow {
    align-self: center;
    transform: rotate(90deg);
  }

  .workflow-tour {
    grid-template-columns: 1fr;
  }

  .browser-frame {
    grid-template-columns: 1fr;
  }

  .browser-side {
    display: flex;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid rgba(180, 210, 210, 0.12);
    padding: 0.7rem 0.75rem;
  }

  /* Hero krapper op mobiel: kleinere kop en volle-breedte knoppen */
  .hero {
    padding: 3.25rem 0 3.5rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.5vw, 2.4rem);
  }

  .hero .hero-sub {
    font-size: 1.04rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
    text-align: center;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 4rem 0;
  }

  .cta-band {
    padding: 2.5rem 1.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.85rem;
  }
}
