/* =========================================================
   Movement-IT — huisstijl
   Kleur, typografie en spacing volgens de Brand Guide
   ========================================================= */

:root {
  /* Kleurenpalet */
  --deep-purple: #19033B;
  --purple: #8E35EE;
  --violet: #AD29DB;
  --magenta: #D729AC;
  --pink: #F83774;
  --coral: #FE5942;
  --orange: #FD7025;
  --soft-white: #F7F6FA;
  --white: #FFFFFF;

  /* Toepassing */
  --bg: var(--white);
  --bg-alt: var(--soft-white);
  --ink: var(--deep-purple);
  --ink-soft: #5b5470;
  --line: #e7e4ee;
  --cta: var(--coral);
  --cta-hover: #ef4a34;

  --signature-gradient: linear-gradient(90deg, var(--purple) 0%, var(--magenta) 38%, var(--pink) 66%, var(--orange) 100%);

  /* Typografie */
  --font-head: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --fs-hero: clamp(2.5rem, 1.6rem + 3.8vw, 4rem);   /* 40 → 64 */
  --fs-h1:   clamp(2.25rem, 1.7rem + 2.3vw, 3rem);  /* 36 → 48 */
  --fs-h2:   clamp(1.875rem, 1.5rem + 1.6vw, 2.25rem); /* 30 → 36 */
  --fs-h3:   clamp(1.5rem, 1.35rem + 0.6vw, 1.75rem);  /* 24 → 28 */
  --fs-h4:   clamp(1.25rem, 1.18rem + 0.3vw, 1.375rem);/* 20 → 22 */
  --fs-lead: clamp(1.125rem, 1.06rem + 0.3vw, 1.25rem);/* 18 → 20 */
  --fs-body: 1rem;
  --fs-small: 0.875rem;

  /* Ritme */
  --container: 1140px;
  --gutter: clamp(1.25rem, 0.5rem + 3vw, 2.5rem);
  --section-y: clamp(4rem, 2.5rem + 6vw, 7.5rem);
  --radius-card: 30px;
  --radius-pill: 999px;
  --shadow-card: 0 1px 2px rgba(25, 3, 59, 0.04), 0 18px 40px -24px rgba(25, 3, 59, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

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

ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 1rem; left: 1rem;
  width: auto; height: auto;
  clip: auto;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 100;
}

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.9rem;
}

.lead {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-py: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: var(--btn-py) 1.6rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--cta);
  color: var(--white);
}
.btn--primary:hover { background: var(--cta-hover); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--white); }

.btn--sm { --btn-py: 0.6rem; padding-inline: 1.15rem; font-size: 0.95rem; }
.btn--full { width: 100%; }

/* ---------- Under construction ---------- */
.construction {
  background: var(--deep-purple);
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid transparent;
  border-image: var(--signature-gradient) 1;
}
.construction__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.7rem;
}
.construction__text {
  font-size: var(--fs-small);
  line-height: 1.5;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
}
.construction__badge {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--signature-gradient);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.construction__close {
  margin-left: auto;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.construction__close:hover { background: rgba(255, 255, 255, 0.12); color: var(--white); }
.construction__close:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.logo img { width: clamp(150px, 12vw, 200px); height: auto; }

.nav { display: flex; align-items: center; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.nav__menu a:not(.btn) {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  padding: 0.4rem 0;
  position: relative;
}

.nav__menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--signature-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav__menu a:not(.btn):hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  position: relative;
}
.nav__toggle-bar,
.nav__toggle-bar::before,
.nav__toggle-bar::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px; height: 2px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__toggle-bar { top: 50%; margin-top: -1px; }
.nav__toggle-bar::before { top: -6px; }
.nav__toggle-bar::after { top: 6px; }

.nav__toggle[aria-expanded="true"] .nav__toggle-bar { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar::before { transform: translateX(-50%) translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar::after { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(3.5rem, 2rem + 7vw, 7rem) var(--section-y);
  background:
    radial-gradient(60% 60% at 85% 0%, rgba(142, 53, 238, 0.10), transparent 70%),
    radial-gradient(50% 50% at 5% 15%, rgba(254, 89, 66, 0.08), transparent 70%);
}

.hero__inner { max-width: 860px; }

.hero__title {
  font-size: var(--fs-hero);
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.hero__lead { max-width: 46ch; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

.hero__gradient {
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--signature-gradient);
  margin-top: 3.5rem;
  max-width: 420px;
}

/* ---------- Trust bar ---------- */
.trust {
  border-block: 1px solid var(--line);
  background: var(--bg-alt);
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2.5rem;
  padding-block: 1.75rem;
}
.trust__label {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  font-weight: 500;
}
.trust__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.25rem;
  margin-left: auto;
}
.trust__logos li {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  opacity: 0.55;
  letter-spacing: 0.01em;
}

/* ---------- Secties ---------- */
.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-alt); }

.section__head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem);
}
.section__title { font-size: var(--fs-h2); font-weight: 700; margin-bottom: 1rem; }
.section__lead { margin-top: 0.25rem; }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.25rem, 0.5rem + 2vw, 2rem);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 1.25rem + 1.5vw, 2.5rem);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 2px rgba(25,3,59,0.05), 0 28px 55px -24px rgba(25,3,59,0.28);
}

.card__index {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: transparent;
  background: var(--signature-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}
.card__title { font-size: var(--fs-h3); font-weight: 600; }
.card__text { color: var(--ink-soft); }

.card__list {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.5rem;
}
.card__list li {
  font-size: var(--fs-small);
  color: var(--ink);
  padding-left: 1.25rem;
  position: relative;
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--signature-gradient);
}

/* ---------- Over ons ---------- */
.about {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: start;
}
.about__text > * + * { margin-top: 1.25rem; }
.about__text p:not(.lead):not(.eyebrow) { color: var(--ink-soft); }

.stats { display: grid; gap: 1.25rem; margin: 0; }
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.4rem 1.5rem;
}
.stat dt {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-h3);
  color: var(--ink);
}
.stat dd {
  margin: 0.35rem 0 0;
  font-size: var(--fs-small);
  color: var(--ink-soft);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--deep-purple);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(2.25rem, 1.5rem + 3vw, 3.75rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: auto -10% -60% auto;
  width: 380px; height: 380px;
  background: var(--signature-gradient);
  filter: blur(90px);
  opacity: 0.35;
}
.cta-band__content { position: relative; max-width: 46ch; }
.cta-band__title { color: var(--white); font-size: var(--fs-h2); font-weight: 700; margin-bottom: 0.9rem; }
.cta-band__text { color: rgba(255,255,255,0.82); font-size: var(--fs-lead); line-height: 1.6; }
.cta-band .btn { position: relative; flex-shrink: 0; }

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: start;
}
.contact__intro .lead { margin-bottom: 2rem; }

.contact__details { display: grid; gap: 1rem; }
.contact__details li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-body);
}
.contact__details span { color: var(--ink-soft); font-size: var(--fs-small); align-self: center; }
.contact__details a:hover { color: var(--purple); }

.contact__form {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  display: grid;
  gap: 1.25rem;
}
.field { display: grid; gap: 0.4rem; }
.field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-small);
}
.field input,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  width: 100%;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(142, 53, 238, 0.15);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--deep-purple);
  color: rgba(255,255,255,0.75);
  padding-top: clamp(3rem, 2rem + 3vw, 4.5rem);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer__logo {
  width: 170px;
  filter: brightness(0) invert(1);
  margin-bottom: 0.9rem;
}
.footer__brand p { font-family: var(--font-head); font-weight: 600; color: var(--white); }
.footer__nav { display: flex; gap: 1.75rem; align-items: center; }
.footer__nav a { font-family: var(--font-head); font-weight: 600; color: rgba(255,255,255,0.8); }
.footer__nav a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding-block: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: var(--fs-small);
}
.footer__gradient {
  height: 4px;
  width: 120px;
  border-radius: var(--radius-pill);
  background: var(--signature-gradient);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .about,
  .contact { grid-template-columns: 1fr; }

  .nav__toggle { display: block; z-index: 60; }

  .nav__menu {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.5rem;
    box-shadow: 0 24px 40px -24px rgba(25,3,59,0.25);
    transform: translateY(-120%);
    transition: transform 0.28s ease;
  }
  .nav__menu[data-open="true"] { transform: translateY(0); }
  .nav__menu li { border-bottom: 1px solid var(--line); }
  .nav__menu li:last-child { border-bottom: 0; }
  .nav__menu a:not(.btn) { display: block; padding: 1rem 0; }
  .nav__menu a:not(.btn)::after { display: none; }
  .nav__cta { padding-top: 1rem; }
  .nav__cta .btn { width: 100%; }

  .trust__logos { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
