/* Triamy · marketing site
   Huisstijl: teal draagt, koraal verwarmt, inkt voor tekst, perzik en crème voor rust. */

:root {
  --teal: #127E76;
  --teal-deep: #0D615B;
  --teal-light: #2AA79B;
  --koraal: #EC6A4F;
  --koraal-licht: #F4946F;
  --inkt: #19303A;
  --perzik: #FBF1EA;
  --creme: #F1ECE4;
  --wit: #FFFFFF;
  --rand: #E6DFD4;
  --rand-zacht: #EFE0D2;
  --tekst-zacht: #5C6A6B;
  --tekst-gedempt: #6B7B80;
  --groen-ok: #6FE3B0;

  --font: 'Hanken Grotesk', system-ui, sans-serif;
  --font-data: 'Spline Sans', monospace;

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 22px;

  --shadow-card: 0 2px 6px rgba(25, 48, 58, 0.05), 0 14px 34px rgba(25, 48, 58, 0.07);
  --shadow-pop: 0 12px 26px rgba(18, 126, 118, 0.28);

  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--inkt);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal-deep); }

:focus-visible {
  outline: 3px solid var(--teal-light);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(244, 148, 111, 0.4); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- typografie ---------- */

h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -0.025em; }

h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.35rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; }

p { margin: 0; }

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  color: var(--tekst-zacht);
}

.eyebrow {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.eyebrow .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}

.eyebrow svg { display: block; }

/* ---------- knoppen ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--koraal);
  color: var(--inkt);
}

.btn-primary:hover {
  background: var(--koraal-licht);
  box-shadow: 0 10px 24px rgba(236, 106, 79, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--wit);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover { border-color: var(--wit); background: rgba(255, 255, 255, 0.08); }

.btn-teal {
  background: var(--teal);
  color: var(--wit);
}

.btn-teal:hover { background: var(--teal-deep); box-shadow: 0 10px 24px rgba(18, 126, 118, 0.3); }

.btn-outline-ink {
  background: transparent;
  color: var(--inkt);
  border-color: rgba(25, 48, 58, 0.25);
}

.btn-outline-ink:hover { border-color: var(--inkt); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(241, 236, 228, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 223, 212, 0.7);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  line-height: 1;
}

.logo .wordmark {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--inkt);
}

.logo.logo-light .wordmark { color: var(--wit); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--inkt);
  text-decoration: none;
  transition: background-color 160ms ease;
}

.main-nav a:hover { background: rgba(18, 126, 118, 0.09); }

.main-nav .btn {
  padding: 11px 22px;
  font-size: 0.95rem;
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  color: var(--inkt);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: var(--teal);
  color: var(--wit);
  overflow: hidden;
}

.hero-arcs {
  position: absolute;
  inset: auto 0 -8px 0;
  width: 100%;
  height: 190px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding-top: clamp(56px, 9vw, 104px);
  padding-bottom: clamp(96px, 12vw, 150px);
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
}

.hero h1 { color: var(--wit); max-width: 13ch; }

.hero .lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 46ch;
  margin-top: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

/* chat-demo */

.chat-card {
  background: var(--wit);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(13, 66, 62, 0.35);
  max-width: 430px;
  justify-self: end;
  width: 100%;
}

.chat-head {
  background: var(--teal-deep);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-avatar .t {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--wit);
  line-height: 0.9;
}

.chat-head .name { color: var(--wit); font-size: 0.95rem; font-weight: 700; }

.chat-head .sub { color: rgba(255, 255, 255, 0.65); font-size: 0.78rem; }

.chat-status {
  margin-left: auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--groen-ok);
}

.chat-body {
  background: var(--perzik);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-height: 320px;
}

.msg {
  max-width: 88%;
  padding: 12px 15px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.js .msg {
  opacity: 0;
  transform: translateY(10px);
}

.msg.in {
  background: var(--wit);
  border: 1px solid var(--rand-zacht);
  border-radius: 15px 15px 15px 5px;
  color: var(--inkt);
}

.msg.out {
  align-self: flex-end;
  background: var(--teal);
  border-radius: 15px 15px 5px 15px;
  color: var(--wit);
}

.js .msg.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 350ms ease, transform 350ms ease;
}

.chat-typing {
  display: inline-flex;
  gap: 5px;
  padding: 14px 16px;
  background: var(--wit);
  border: 1px solid var(--rand-zacht);
  border-radius: 15px 15px 15px 5px;
  width: fit-content;
}

.js .chat-typing { opacity: 0; }

.js .chat-typing.visible { opacity: 1; transition: opacity 250ms ease; }

.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #B9AD9C;
  animation: typing-bounce 1.1s infinite ease-in-out;
}

.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

.chat-sms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #FFF;
  border: 1.5px dashed var(--koraal-licht);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 0.85rem;
  color: var(--tekst-zacht);
}

.js .chat-sms {
  opacity: 0;
  transform: translateY(10px);
}

.js .chat-sms.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 350ms ease, transform 350ms ease;
}

.chat-sms svg { flex-shrink: 0; margin-top: 2px; }

.chat-sms strong { color: var(--inkt); }

/* ---------- secties ---------- */

.section { padding: clamp(64px, 9vw, 110px) 0; }

.section-white { background: var(--wit); }
.section-perzik { background: var(--perzik); }

.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }

.section-head .lead { margin-top: 14px; }

/* statband */

.statband { background: var(--inkt); color: var(--wit); }

.statband .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  padding-top: 52px;
  padding-bottom: 52px;
}

.stat .value {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.stat .value .accent { color: var(--koraal-licht); }

.stat .desc {
  margin-top: 8px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 30ch;
}

.stat .footnote { color: rgba(255, 255, 255, 0.58); }

/* probleem */

.probleem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.probleem-copy p + p { margin-top: 16px; }

.vraag-wolk {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vraag {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: 15px 15px 15px 5px;
  padding: 14px 18px;
  font-size: 0.97rem;
  color: var(--inkt);
  box-shadow: var(--shadow-card);
  width: fit-content;
  max-width: 92%;
}

.vraag:nth-child(2) { align-self: flex-end; border-radius: 15px 15px 5px 15px; }
.vraag:nth-child(4) { align-self: flex-end; border-radius: 15px 15px 5px 15px; }

.vraag-label {
  align-self: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--tekst-gedempt);
  margin-top: 6px;
}

/* oplossing */

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

.card {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius-m);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.section-white .card { background: var(--perzik); border-color: var(--rand-zacht); }

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

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon.tealbg { background: #DCEFEC; }
.card-icon.koraalbg { background: #FBE6DD; }

.card p { font-size: 0.96rem; color: var(--tekst-zacht); }

/* hoe het werkt */

.stappen {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: stap;
}

.stap {
  position: relative;
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius-m);
  padding: 64px 24px 26px;
}

.stap::before {
  counter-increment: stap;
  content: counter(stap);
  position: absolute;
  top: 20px;
  left: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--wit);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stap.stap-alt::before { background: var(--koraal); color: var(--inkt); }

.stap h3 { margin-bottom: 8px; }

.stap p { font-size: 0.93rem; color: var(--tekst-zacht); }

.stappen-note {
  margin-top: 26px;
  font-size: 0.95rem;
  color: var(--tekst-gedempt);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* regiekamer */

.regie-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.regie-copy .kenmerken {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.regie-copy .kenmerken li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--tekst-zacht);
}

.regie-copy .kenmerken svg { flex-shrink: 0; margin-top: 3px; }

.regie-copy .kenmerken strong { color: var(--inkt); }

/* dashboard-mock */

.panel {
  background: var(--wit);
  border-radius: var(--radius-l);
  border: 1px solid var(--rand);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  font-size: 0.87rem;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: var(--inkt);
  color: var(--wit);
}

.panel-head .title { font-weight: 700; font-size: 0.92rem; }

.panel-head .live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-data);
}

.panel-head .live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--groen-ok);
}

.gesprek {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 15px 22px;
  border-top: 1px solid #F0EBE2;
}

.gesprek.urgent { background: #FDF3EF; }

.gesprek-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--creme);
  color: var(--inkt);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gesprek .wie { font-weight: 700; color: var(--inkt); }

.gesprek .samenvatting { color: var(--tekst-gedempt); font-size: 0.83rem; margin-top: 1px; }

.gesprek-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tag-ok { background: #DCEFEC; color: var(--teal-deep); }
.tag-warm { background: #FBE6DD; color: #B4432B; }
.tag-urgent { background: var(--koraal); color: var(--wit); }

.sentiment {
  font-family: var(--font-data);
  font-size: 0.72rem;
  color: var(--tekst-gedempt);
}

.panel-foot {
  padding: 13px 22px;
  border-top: 1px solid #F0EBE2;
  background: #FDFBF8;
  color: var(--tekst-gedempt);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* veiligheid */

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

.veilig-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius-m);
  padding: 24px 26px;
}

.veilig-item .card-icon { width: 40px; height: 40px; }

.veilig-item h3 { font-size: 1.02rem; margin-bottom: 5px; }

.veilig-item p { font-size: 0.92rem; color: var(--tekst-zacht); }

/* pilot */

.pilot-card {
  position: relative;
  background: var(--teal);
  border-radius: 26px;
  padding: clamp(44px, 6vw, 72px);
  color: var(--wit);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.pilot-card h2 { color: var(--wit); }

.pilot-card .lead { color: rgba(255, 255, 255, 0.86); margin-top: 16px; }

.pilot-arcs {
  position: absolute;
  right: -40px;
  bottom: -10px;
  width: 55%;
  height: 100%;
  pointer-events: none;
}

.pilot-feiten {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pilot-feit {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 16px 20px;
  backdrop-filter: blur(4px);
}

.pilot-feit .wanneer {
  font-family: var(--font-data);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--koraal-licht);
}

.pilot-feit .wat { font-weight: 600; font-size: 0.97rem; margin-top: 3px; }

/* team */

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

.team-card {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius-m);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.team-foto {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  border: 3px solid var(--perzik);
  box-shadow: 0 4px 14px rgba(25, 48, 58, 0.12);
}

.team-card .rol { font-size: 0.92rem; color: var(--tekst-gedempt); }

/* cta-band */

.cta-band { background: var(--inkt); color: var(--wit); }

.cta-band .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: clamp(56px, 8vw, 88px);
  padding-bottom: clamp(56px, 8vw, 88px);
}

.cta-band h2 { color: var(--wit); max-width: 18ch; }

.cta-band .lead { color: rgba(255, 255, 255, 0.75); margin-top: 14px; max-width: 44ch; }

.cta-acties { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }

.cta-acties .contactregel { font-size: 0.95rem; color: rgba(255, 255, 255, 0.72); }

.cta-acties .contactregel a { color: var(--wit); font-weight: 600; }

/* footer */

.site-footer {
  background: var(--inkt);
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 30px;
  padding-bottom: 34px;
  font-size: 0.87rem;
}

.site-footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }

/* ---------- contactpagina ---------- */

.contact-hero {
  background: var(--teal);
  color: var(--wit);
  position: relative;
  overflow: hidden;
}

.contact-hero .container {
  position: relative;
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(72px, 9vw, 110px);
  max-width: 760px;
}

.contact-hero h1 { color: var(--wit); }

.contact-hero .lead { color: rgba(255, 255, 255, 0.86); margin-top: 18px; max-width: 52ch; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.contact-opties { display: flex; flex-direction: column; gap: 16px; }

.contact-optie {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius-m);
  padding: 24px 26px;
}

.contact-optie h3 { font-size: 1rem; margin-bottom: 3px; }

.contact-optie p { font-size: 0.92rem; color: var(--tekst-zacht); }

.contact-optie a { font-weight: 700; color: var(--teal-deep); }

.form-card {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius-l);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-card);
}

.form-card h2 { font-size: 1.5rem; margin-bottom: 6px; }

.form-card .form-intro { font-size: 0.95rem; color: var(--tekst-gedempt); margin-bottom: 26px; }

.form-veld { margin-bottom: 20px; }

.form-veld label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 7px;
}

.form-veld .hint { font-weight: 400; color: var(--tekst-gedempt); }

.form-veld input,
.form-veld textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--rand);
  border-radius: var(--radius-s);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--inkt);
  background: #FDFBF8;
  transition: border-color 160ms ease;
}

.form-veld input:focus,
.form-veld textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(18, 126, 118, 0.15);
}

.form-veld textarea { resize: vertical; min-height: 120px; }

.form-note { font-size: 0.85rem; color: var(--tekst-gedempt); margin-top: 16px; }

/* ---------- animaties ---------- */

/* reveals staan alleen uit wanneer JS geladen is (html.js) */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .js .msg, .js .chat-sms { opacity: 1; transform: none; transition: none; }
  .chat-typing { display: none; }
  .btn, .card { transition: none; }
  .chat-typing span { animation: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; padding-bottom: 90px; }
  .chat-card { justify-self: start; }
  .cards-3, .team-grid { grid-template-columns: 1fr 1fr; }
  .stappen { grid-template-columns: 1fr 1fr; }
  .pilot-card { grid-template-columns: 1fr; }
  .pilot-arcs { display: none; }
  .regie-grid, .probleem-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--creme);
    border-bottom: 1px solid var(--rand);
    padding: 16px 24px 24px;
    gap: 4px;
    display: none;
  }

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

  .main-nav a { padding: 13px 14px; }

  .main-nav .btn { margin: 10px 0 0; justify-content: center; }

  .nav-toggle { display: block; }

  .statband .container { grid-template-columns: 1fr; gap: 28px; }

  .cards-3, .team-grid, .stappen, .veilig-grid { grid-template-columns: 1fr; }
}
