/* ==============================
   CRI8F — Dark Theme
   Kleuren gebaseerd op logo:
   Teal #2AB8D4 · Geel #F5C518 · Coral #E85475
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- Custom properties --- */
:root {
  /* Backgrounds */
  --bg:          #080F1C;
  --bg-2:        #0C1525;
  --bg-card:     #0F1B2E;
  --bg-elevated: #152235;
  --bg-hover:    #1A2A42;

  /* Brand kleuren (uit logo) */
  --teal:        #2AB8D4;
  --teal-dark:   #1A9AB5;
  --teal-glow:   rgba(42,184,212,0.15);
  --yellow:      #F5C518;
  --yellow-dark: #D4A810;
  --yellow-glow: rgba(245,197,24,0.12);
  --coral:       #E85475;
  --coral-glow:  rgba(232,84,117,0.12);

  /* Tekst */
  --white:       #FFFFFF;
  --text:        #CBD5E1;
  --text-muted:  rgba(255,255,255,0.45);

  /* Borders */
  --border:      rgba(255,255,255,0.07);
  --border-teal: rgba(42,184,212,0.25);

  /* Typografie */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Border radius */
  --radius-sm:   4px;
  --radius:      8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.3);
  --shadow:      0 4px 16px rgba(0,0,0,.4);
  --shadow-md:   0 8px 32px rgba(0,0,0,.5);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.6);
  --shadow-teal: 0 8px 32px rgba(42,184,212,0.2);
  --shadow-yellow: 0 8px 32px rgba(245,197,24,0.2);

  --transition: .2s ease;
  --max-w: 1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section        { padding: 5rem 0; }
.section--alt   { background: var(--bg-2); }

/* --- Typografie --- */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}

.lead {
  font-size: var(--text-lg);
  color: var(--text);
  line-height: 1.75;
}

.text-teal   { color: var(--teal); }
.text-yellow { color: var(--yellow); }
.text-coral  { color: var(--coral); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }

/* --- Badge --- */
.badge {
  display: inline-block;
  padding: .35rem .9rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.badge--teal   { background: rgba(42,184,212,.15);  color: var(--teal); border: 1px solid rgba(42,184,212,.3); }
.badge--yellow { background: rgba(245,197,24,.15); color: var(--yellow); border: 1px solid rgba(245,197,24,.3); }
.badge--coral  { background: rgba(232,84,117,.15); color: var(--coral); border: 1px solid rgba(232,84,117,.3); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.85rem;
  border-radius: var(--radius);
  font-size: var(--text-base);
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--yellow {
  background: var(--yellow);
  color: #080F1C !important;
  border-color: var(--yellow);
}
.btn--yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  box-shadow: var(--shadow-yellow);
  transform: translateY(-2px);
}

.btn--teal {
  background: var(--teal);
  color: #0A0E18;
  border-color: var(--teal);
}
.btn--teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  box-shadow: var(--shadow-teal);
  transform: translateY(-2px);
}

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

.btn--lg { padding: 1rem 2.25rem; font-size: var(--text-lg); }

/* --- Nav --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,15,28,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: .4rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.nav__logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
}

.footer__bottom-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav__logo-text {
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.03em;
}

.nav__logo-text span { color: var(--yellow); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.active { color: var(--white); }

.nav__links .btn {
  padding: .55rem 1.35rem;
  font-size: var(--text-sm);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}

.nav__mobile a:hover { color: var(--white); background: var(--bg-elevated); }

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(42,184,212,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(245,197,24,.08) 0%, transparent 50%),
    var(--bg);
}

/* Dotpatroon achtergrond */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero__lead {
  font-size: var(--text-lg);
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 480px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__trust {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.hero__trust::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
}

/* --- Floating cards (Specifi-stijl) --- */
.hero__cards {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.fc-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.fc-icon--teal   { background: var(--teal-glow);   border: 1px solid rgba(42,184,212,.2); }
.fc-icon--yellow { background: var(--yellow-glow);  border: 1px solid rgba(245,197,24,.2); }
.fc-icon--coral  { background: var(--coral-glow);   border: 1px solid rgba(232,84,117,.2); }
.fc-icon--white  { background: rgba(255,255,255,.06); border: 1px solid var(--border); }

.fc-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: .1rem;
}

.fc-value {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

/* Posities & animaties */
.floating-card.card-1 {
  top: 10%;
  left: 5%;
  animation: float1 5s ease-in-out infinite;
  border-color: rgba(42,184,212,.2);
}
.floating-card.card-2 {
  top: 8%;
  right: 2%;
  animation: float2 6s ease-in-out infinite;
  border-color: rgba(245,197,24,.2);
  white-space: normal;
  max-width: 240px;
}
.floating-card.card-3 {
  bottom: 8%;
  left: 2%;
  animation: float1 7s ease-in-out infinite reverse;
}
.floating-card.card-4 {
  bottom: 10%;
  right: 5%;
  animation: float2 5.5s ease-in-out infinite;
  border-color: rgba(232,84,117,.2);
}
.floating-card.card-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-elevated);
  border-color: var(--border-teal);
  flex-direction: column;
  text-align: center;
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-teal);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(-8px); }
  50%       { transform: translateY(8px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 32px rgba(42,184,212,0.2); }
  50%       { box-shadow: 0 8px 48px rgba(42,184,212,0.4); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Stats bar --- */
.stats {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.stats__inner {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 1rem 2rem;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat__number {
  font-size: var(--text-4xl);
  font-weight: 900;
  line-height: 1;
  margin-bottom: .25rem;
}

.stat__label {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* --- Section headers --- */
.section-header { margin-bottom: 3.5rem; }

.section-header h2 {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  margin-top: .6rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.section-header .lead { max-width: 580px; }

.section-header.centered { text-align: center; }
.section-header.centered .lead { margin: 0 auto; }

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.card:hover {
  border-color: var(--border-teal);
  box-shadow: var(--shadow-teal);
  transform: translateY(-3px);
  background: var(--bg-elevated);
}

.card__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.card__icon--teal   { background: var(--teal-glow);   border: 1px solid rgba(42,184,212,.2); }
.card__icon--yellow { background: var(--yellow-glow);  border: 1px solid rgba(245,197,24,.2); }
.card__icon--coral  { background: var(--coral-glow);   border: 1px solid rgba(232,84,117,.2); }

.card h3 { font-size: var(--text-xl); margin-bottom: .65rem; color: var(--white); }
.card p  { color: var(--text); font-size: var(--text-sm); line-height: 1.7; }

/* --- Grid --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* --- Steps --- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.step { text-align: center; padding: 2rem 1.5rem; }

.step__number {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  color: #0A0E18;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: 900;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-yellow);
}

.step h3 { font-size: var(--text-xl); margin-bottom: .65rem; color: var(--white); }
.step p  { color: var(--text); font-size: var(--text-sm); line-height: 1.7; }

/* --- Timeline (Haak/Kern/Actie) --- */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.timeline__item {
  padding: 2rem 1.75rem;
  position: relative;
}

.timeline__item:nth-child(1) {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, #1A2A42 100%);
  border-right: 1px solid var(--border);
}
.timeline__item:nth-child(2) {
  background: linear-gradient(135deg, rgba(42,184,212,.08) 0%, rgba(42,184,212,.02) 100%);
  border-right: 1px solid var(--border);
}
.timeline__item:nth-child(3) {
  background: linear-gradient(135deg, rgba(245,197,24,.08) 0%, rgba(245,197,24,.02) 100%);
}

.timeline__phase {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.timeline__item:nth-child(1) .timeline__phase { color: var(--teal); }
.timeline__item:nth-child(2) .timeline__phase { color: var(--teal); }
.timeline__item:nth-child(3) .timeline__phase { color: var(--yellow); }

.timeline__time {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: .75rem;
}

.timeline__title {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--white);
  margin-bottom: .75rem;
}

.timeline__desc {
  font-size: var(--text-sm);
  color: var(--text);
  line-height: 1.65;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  transition: all var(--transition);
  position: relative;
}

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

.pricing-card--featured {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}

.pricing-card__tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #0A0E18;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem 1.1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card__label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .5rem;
}

.pricing-card__price {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: .25rem;
}

.pricing-card__price sup {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-muted);
  vertical-align: super;
}

.pricing-card__price sub {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-card__sub {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2rem;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: var(--text-sm);
  color: var(--text);
}

.pricing-card__feature .check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--teal-glow);
  border: 1px solid rgba(42,184,212,.3);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  margin-top: .1rem;
}

/* --- Portfolio grid --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.video-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}

.video-card:hover {
  border-color: var(--border-teal);
  box-shadow: var(--shadow-teal);
  transform: translateY(-3px);
}

.video-card__thumb {
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, #1E2F48 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-card__play {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-yellow);
}

.video-card:hover .video-card__play {
  transform: scale(1.1);
  background: var(--yellow-dark);
}

.video-card__play::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 18px;
  border-color: transparent transparent transparent #0A0E18;
  margin-left: 4px;
}

.video-card__duration {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  background: rgba(0,0,0,.65);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: .25rem .6rem;
  border-radius: var(--radius-full);
}

.video-card__cat {
  position: absolute;
  top: .75rem;
  left: .75rem;
}

.video-card__body { padding: 1.25rem; }

.video-card__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .35rem;
}

.video-card__meta {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* --- Contact form --- */
.form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: var(--text-base);
  color: var(--white);
  background: var(--bg-card);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,184,212,.12);
}

.form-group select { color: var(--text); }
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 130px; }

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

/* --- CTA Banner --- */
.cta-banner {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(42,184,212,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(245,197,24,.10) 0%, transparent 55%),
    var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text);
  font-size: var(--text-lg);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Quote --- */
.quote {
  background: var(--bg-elevated);
  border-left: 3px solid var(--teal);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}

.quote p {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
}

.quote cite {
  display: block;
  margin-top: .75rem;
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-style: normal;
}

/* --- Page hero --- */
.page-hero {
  background:
    radial-gradient(ellipse at 60% 50%, rgba(42,184,212,.12) 0%, transparent 55%),
    var(--bg);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  color: var(--white);
  margin: .75rem 0 1rem;
  position: relative;
}

.page-hero .lead { max-width: 560px; margin: 0 auto; position: relative; }

/* --- RL page --- */
.rl-method {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--border);
}

.pillar {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.pillar:last-child { border-bottom: none; }

.pillar__icon {
  width: 46px;
  height: 46px;
  background: var(--teal-glow);
  border: 1px solid rgba(42,184,212,.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pillar__content h4 { font-size: var(--text-lg); margin-bottom: .35rem; color: var(--white); }
.pillar__content p  { font-size: var(--text-sm); color: var(--text); line-height: 1.65; }

/* --- FAQ --- */
.faq { display: flex; flex-direction: column; gap: 1px; }

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: .75rem;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: background var(--transition);
}

.faq__question:hover { background: var(--bg-elevated); }

.faq__question::after {
  content: '+';
  font-size: var(--text-xl);
  color: var(--teal);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item.open .faq__question::after { transform: rotate(45deg); }

.faq__answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--text);
  font-size: var(--text-sm);
  line-height: 1.75;
}

.faq__item.open .faq__answer { display: block; }

/* --- Footer --- */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

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

.footer__brand p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 280px;
  margin-top: .75rem;
}

.footer__col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 1rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: .6rem; }

.footer__col a {
  color: var(--text);
  font-size: var(--text-sm);
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--teal); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p { color: var(--text-muted); font-size: var(--text-sm); }

/* --- Rishi intro (2 kolommen) --- */
.rishi-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
}

.rishi-intro__img img {
  padding-top: .75rem;
}

@media (max-width: 768px) {
  .rishi-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .rishi-intro__img {
    display: flex;
    justify-content: center;
  }
  .rishi-intro__img img {
    max-width: 280px !important;
  }
}

/* --- Probleem intro (2 kolommen) --- */
.probleem-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.probleem-intro .section-header {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .probleem-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .probleem-intro .probleem-img { order: -1; }
}

/* --- Divider --- */
.divider { height: 1px; background: var(--border); margin: 3rem 0; }

/* --- Vergelijkingstabel --- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.compare-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  background: var(--bg-elevated);
  color: var(--white);
  font-weight: 700;
}

.compare-table th:first-child { border-radius: var(--radius-md) 0 0 0; }
.compare-table th:last-child  { background: var(--teal-dark); border-radius: 0 var(--radius-md) 0 0; }

.compare-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.compare-table tr:nth-child(even) td { background: var(--bg-card); }
.compare-table td:first-child { font-weight: 600; color: var(--white); }
.compare-table td:last-child  { color: var(--teal); font-weight: 700; }

/* --- Scroll reveal --- */
/* Standaard zichtbaar — JS voegt .will-reveal toe vóór animatie */
.will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

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

/* --- Utility --- */
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-gap    { display: flex; align-items: center; gap: 1rem; }
.flex-wrap   { flex-wrap: wrap; }
.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-8  { margin-bottom: 2rem; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .hero__inner   { grid-template-columns: 1fr; gap: 3rem; }
  .hero__cards   { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

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

  .nav__links    { display: none; }
  .nav__hamburger { display: flex; }

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

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

  .form-row { grid-template-columns: 1fr; }

  .stats__inner   { gap: 0; }
  .stat           { min-width: 50%; border-bottom: 1px solid var(--border); }
  .stat:nth-child(2n) { border-right: none; }

  .footer__inner  { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

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

  .compare-table { font-size: var(--text-xs); }
  .compare-table th, .compare-table td { padding: .75rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero h1 { font-size: 2rem; }
  .grid-4  { grid-template-columns: 1fr; }
}
