/* ═══════════════════════════════════════════════
   TilliKassa — Hoofdstijlblad
   Design geïnspireerd op pay.nl, in TilliKassa oranje
   ═══════════════════════════════════════════════ */

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

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

:root {
  --o:          #E8771C;
  --od:         #C45E08;
  --ol:         #FFF0E0;
  --oll:        #FFF8F0;
  --peach:      #FFE8D1;
  --peach-soft: #FFF4E8;
  --ink:        #0D0A08;
  --ink2:       #2C1F12;
  --ink3:       #6B5847;
  --ink4:       #A89788;
  --w:          #FFFFFF;
  --bg:         #FAF6F1;
  --line:       rgba(13,10,8,0.08);
  --radius:     10px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --t:          .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--w);
  color: var(--ink);
  line-height: 1.5;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

/* Oranje highlight-pill (signature stijl) */
.hl {
  background: var(--o);
  color: #fff;
  padding: 2px 18px;
  border-radius: 14px;
  display: inline-block;
  transform: rotate(-1deg);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   NAVIGATIE
═══════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__logo img {
  height: 40px;
  width: auto;
  display: block;
}
.nav__center {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}
.nav__center a {
  color: var(--ink2);
  text-decoration: none;
  transition: color var(--t);
}
.nav__center a:hover { color: var(--o); }
.nav__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__login {
  color: var(--ink2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.nav__login:hover { color: var(--o); }

.btn-primary {
  background: var(--o);
  color: #fff;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--t);
  display: inline-block;
}
.btn-primary:hover { background: var(--od); }

.btn-secondary {
  background: var(--w);
  color: var(--ink);
  padding: 11px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all var(--t);
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--ink); }

/* Hamburger voor mobile */
.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: all .25s;
}
.nav__burger span:nth-child(1) { top: 13px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger span:nth-child(3) { top: 25px; }
.nav__burger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 120px 40px 110px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background-image: url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a0c04;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg,
    rgba(13,10,8,0.45) 0%,
    rgba(13,10,8,0.25) 40%,
    rgba(13,10,8,0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 88px;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 960px;
  margin: 0 auto 28px;
  padding: 0 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
  text-shadow: 0 1px 20px rgba(0,0,0,0.35);
}
.hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-hero {
  background: var(--o);
  color: #fff;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all var(--t);
  display: inline-block;
  box-shadow: 0 10px 30px rgba(232,119,28,0.35);
}
.btn-hero:hover {
  background: var(--od);
  transform: translateY(-1px);
}
.btn-hero--outline {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
}
.btn-hero--outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════════════
   DEVICE SHOWCASE
═══════════════════════════════════════════════ */
.showcase {
  background: var(--peach);
  border-radius: var(--radius-xl);
  margin: 60px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  align-items: center;
  min-height: 420px;
}
.showcase__left {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,119,28,0.14);
  color: var(--od);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 20px;
}
.showcase__left h2 {
  font-size: 46px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}
.showcase__left p {
  font-size: 16px;
  color: var(--ink2);
  margin-bottom: 26px;
  line-height: 1.6;
  max-width: 440px;
}
.showcase__right {
  position: relative;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
}
.showcase__right img {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 108%;
  height: auto;
}

/* ═══════════════════════════════════════════════
   STATEMENT (big typography quote)
═══════════════════════════════════════════════ */
.statement {
  padding: 120px 40px;
  text-align: center;
  background: var(--w);
}
.statement__sub {
  color: var(--o);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}
.statement h2 {
  font-size: 68px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 940px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   MODULES
═══════════════════════════════════════════════ */
.modules-section {
  padding: 40px 40px 140px;
  background: var(--w);
}
.modules-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.modules-head h3 {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.modules-head p {
  font-size: 17px;
  color: var(--ink3);
  line-height: 1.6;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto;
}
.module {
  background: var(--bg);
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all var(--t);
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  text-align: left;
  font-family: inherit;
}
.module:hover {
  background: var(--ol);
  transform: translateY(-2px);
}
.module:nth-child(3n)        { background: var(--peach-soft); }
.module:nth-child(3n):hover  { background: var(--peach); }
.module__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--w);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.module__icon svg { width: 18px; height: 18px; }
.module__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.module__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.module__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  background: rgba(232,119,28,0.14);
  color: var(--od);
  padding: 1px 7px;
  border-radius: 100px;
  width: fit-content;
  margin-top: 2px;
}
.module__arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--w);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  transition: all var(--t);
  flex-shrink: 0;
}
.module__arrow svg { width: 10px; height: 10px; }
.module:hover .module__arrow {
  background: var(--o);
  border-color: var(--o);
}
.module:hover .module__arrow svg path {
  stroke: #fff;
}

/* ═══════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════ */
.stats {
  padding: 120px 40px;
  background: var(--peach-soft);
}
.stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.stats__left h3 {
  font-size: 58px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.stats__left p {
  font-size: 17px;
  color: var(--ink3);
  line-height: 1.6;
  max-width: 420px;
}
.stats__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat-box {
  background: var(--w);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stat-tag {
  display: inline-flex;
  background: var(--ol);
  color: var(--od);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}
.stat-num {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--ink3);
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════
   PRIJZEN
═══════════════════════════════════════════════ */
.pricing {
  padding: 140px 40px;
  background: var(--w);
  text-align: center;
}
.pricing__head h3 {
  font-size: 58px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  max-width: 700px;
  margin-inline: auto;
}
.pricing__head p {
  font-size: 17px;
  color: var(--ink3);
  max-width: 520px;
  margin: 0 auto 60px;
  line-height: 1.6;
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.price-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.price-card--featured {
  background: var(--ink);
  color: var(--w);
}
.price-card--featured .pc__amount,
.price-card--featured .pc__features li { color: var(--w); }
.price-card--featured .pc__per,
.price-card--featured .pc__sub { color: rgba(255,255,255,0.6); }
.pc__badge {
  display: inline-flex;
  background: var(--o);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 14px;
}
.pc__tier {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink3);
  margin-bottom: 10px;
}
.price-card--featured .pc__tier { color: var(--o); }
.pc__amount {
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pc__per {
  font-size: 14px;
  color: var(--ink3);
  margin-bottom: 10px;
}
.pc__sub {
  font-size: 14px;
  color: var(--ink3);
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(13,10,8,0.08);
}
.price-card--featured .pc__sub { border-color: rgba(255,255,255,0.1); }
.pc__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 24px;
}
.pc__features li {
  font-size: 14px;
  color: var(--ink2);
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.pc__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ol);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-card--featured .pc__check { background: rgba(232,119,28,0.25); }
.pc__btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all var(--t);
  border: none;
  cursor: pointer;
}
.pc__btn--orange  { background: var(--o); color: #fff; }
.pc__btn--orange:hover   { background: var(--od); }
.pc__btn--dark    { background: var(--ink); color: #fff; }
.pc__btn--dark:hover     { background: #2a1f12; }
.pc__btn--outline { background: var(--w); color: var(--ink); border: 1px solid var(--line); }
.pc__btn--outline:hover  { border-color: var(--ink); }

/* ═══════════════════════════════════════════════
   TESTIMONIAL
═══════════════════════════════════════════════ */
.testimonial {
  padding: 120px 40px;
  background: var(--peach-soft);
  text-align: center;
}
.testimonial__sub {
  color: var(--o);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.testimonial h3 {
  font-size: 58px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 0 auto 40px;
}
.testimonial__source {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink2);
  font-weight: 500;
}
.testimonial__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--o);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════
   FOTO SLIDER
═══════════════════════════════════════════════ */
.slider-section {
  padding: 120px 40px;
  background: var(--w);
  text-align: center;
}
.slider-head {
  max-width: 720px;
  margin: 0 auto 48px;
}
.slider-head h3 {
  font-size: 58px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.slider__track {
  flex: 1;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__slide {
  flex: 0 0 calc((100% - 28px) / 3);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg);
}
.slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.slider__slide:hover img {
  transform: scale(1.03);
}
.slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--w);
  border: 1px solid var(--line);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(13,10,8,0.06);
}
.slider__btn:hover {
  background: var(--ol);
  border-color: var(--o);
  transform: scale(1.05);
}
.slider__btn:hover svg path {
  stroke: var(--o);
}
.slider__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.slider__btn:disabled:hover {
  background: var(--w);
  border-color: var(--line);
  transform: none;
}
.slider__btn:disabled:hover svg path {
  stroke: var(--ink);
}
.slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(13,10,8,0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--t);
}
.slider__dot.is-active {
  background: var(--o);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 960px) {
  .slider__slide { flex: 0 0 calc((100% - 14px) / 2); }
}
@media (max-width: 640px) {
  .slider-section { padding: 70px 20px; }
  .slider-head h3 { font-size: 34px; }
  .slider { gap: 8px; }
  .slider__btn { width: 38px; height: 38px; }
  .slider__slide { flex: 0 0 85%; }
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-section {
  padding: 140px 40px;
  background: var(--w);
}
.contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact__left h3 {
  font-size: 54px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.contact__left > p {
  font-size: 17px;
  color: var(--ink3);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 380px;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-info__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--ol);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink4);
  margin-bottom: 3px;
}
.contact-info__value {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.contact-info__value a { color: var(--o); text-decoration: none; }
.contact-info__value a:hover { text-decoration: underline; }

/* Formulier */
.contact-form {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--w);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--o);
  box-shadow: 0 0 0 3px rgba(232,119,28,0.12);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230D0A08' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input.is-error,
.form-group select.is-error,
.form-group textarea.is-error { border-color: #E24B4A; }
.form-hp { display: none; }

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}
.form-privacy input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--o);
  cursor: pointer;
}
.form-privacy label {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink3);
  cursor: pointer;
  line-height: 1.5;
}
.form-privacy a { color: var(--o); }

.btn-submit {
  width: 100%;
  background: var(--o);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 14px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit:hover:not(:disabled) { background: var(--od); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.btn-submit .spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
.btn-submit.is-loading .spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-notice {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  display: none;
  align-items: center;
  gap: 9px;
}
.form-notice.is-success {
  display: flex;
  background: rgba(99,153,34,0.12);
  border: 1px solid rgba(99,153,34,0.3);
  color: #3b6d11;
}
.form-notice.is-error {
  display: flex;
  background: rgba(226,75,74,0.1);
  border: 1px solid rgba(226,75,74,0.25);
  color: #a32d2d;
}

/* ═══════════════════════════════════════════════
   CTA BOTTOM
═══════════════════════════════════════════════ */
.cta-bottom { padding: 40px 40px 100px; }
.cta-box {
  background: var(--o);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: 'TILLI';
  font-size: 260px;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  position: absolute;
  bottom: -60px;
  right: -20px;
  letter-spacing: -0.05em;
  pointer-events: none;
  line-height: 1;
}
.cta-box h3 {
  font-size: 58px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.cta-box p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  max-width: 480px;
  margin: 0 auto 32px;
  position: relative;
}
.cta-btn-white {
  display: inline-block;
  background: #fff;
  color: var(--od);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  transition: transform var(--t);
}
.cta-btn-white:hover { transform: translateY(-2px); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  padding: 50px 40px 30px;
  background: var(--w);
  border-top: 1px solid var(--line);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 36px;
}
.footer__brand img {
  height: 46px;
  width: auto;
  margin-bottom: 14px;
}
.footer__brand p {
  font-size: 13px;
  color: var(--ink3);
  max-width: 260px;
  line-height: 1.6;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.footer__col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink4);
  margin-bottom: 14px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 14px;
  color: var(--ink2);
  text-decoration: none;
  transition: color var(--t);
}
.footer__col a:hover { color: var(--o); }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--ink4);
}

/* ═══════════════════════════════════════════════
   POPUP / MODAL (voor modules)
═══════════════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,10,8,0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.popup-overlay.is-open { opacity: 1; pointer-events: all; }
.popup {
  background: var(--w);
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform .3s ease;
}
.popup-overlay.is-open .popup { transform: translateY(0) scale(1); }
.popup__top { padding: 36px 36px 0; }
.popup__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--ol);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.popup__title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.1;
}
.popup__lead {
  font-size: 15px;
  color: var(--ink3);
  line-height: 1.65;
  margin-bottom: 24px;
}
.popup__body {
  padding: 0 36px 36px;
}
.popup__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-bottom: 26px;
}
.popup-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.popup-feat__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
}
.popup-feat__title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.popup-feat__desc {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.55;
}
.popup__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ol);
  color: var(--od);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.popup__cta {
  display: block;
  text-align: center;
  background: var(--o);
  color: #fff;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background var(--t);
}
.popup__cta:hover { background: var(--od); }
.popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
}
.popup__close:hover { background: var(--ol); }

/* Privacy popup specifiek */
.privacy-popup {
  max-width: 720px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}
.privacy-popup__content {
  padding: 40px 44px 24px;
  overflow-y: auto;
  flex: 1;
}
.privacy-popup__content h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.1;
}
.privacy-popup__content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 26px 0 10px;
  letter-spacing: -0.01em;
}
.privacy-popup__intro {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.65;
  margin-bottom: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.privacy-popup__content p {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.65;
  margin-bottom: 10px;
}
.privacy-popup__content ul {
  margin: 8px 0 14px 20px;
  padding: 0;
}
.privacy-popup__content li {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.6;
  margin-bottom: 5px;
}
.privacy-popup__content strong {
  color: var(--ink);
  font-weight: 600;
}
.privacy-popup__content a {
  color: var(--o);
  text-decoration: none;
}
.privacy-popup__content a:hover {
  text-decoration: underline;
}
.privacy-popup__footer {
  padding: 20px 44px 28px;
  border-top: 1px solid var(--line);
  background: var(--w);
}
.privacy-popup__footer .popup__cta {
  max-width: 220px;
  margin: 0 auto;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .modules-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .hero h1 { font-size: 68px; }
  .statement h2, .testimonial h3, .cta-box h3,
  .pricing__head h3, .modules-head h3, .stats__left h3 { font-size: 44px; }
  .showcase { grid-template-columns: 1fr; min-height: auto; margin: 40px 40px 80px; }
  .showcase__left  { padding: 40px 32px 0; }
  .showcase__right { min-height: 320px; }
  .showcase__right img { right: -20px; bottom: -20px; width: 100%; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .stats__inner, .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .nav__center { display: none; }
  .nav__burger { display: block; }
  .nav__right .nav__login { display: none; }
}

@media (max-width: 640px) {
  .nav { padding: 14px 20px; }
  .nav__logo img { height: 34px; }
  .hero { padding: 80px 20px 60px; }
  .hero h1 { font-size: 44px; letter-spacing: -0.03em; }
  .hero__sub { font-size: 16px; }
  .showcase { margin: 40px 20px 60px; border-radius: 22px; }
  .showcase__left  { padding: 32px 24px 0; }
  .showcase__left h2 { font-size: 32px; }
  .statement,
  .testimonial,
  .pricing,
  .contact-section { padding: 70px 20px; }
  .statement h2, .testimonial h3 { font-size: 32px; }
  .modules-section { padding: 30px 20px 70px; }
  .modules-head h3 { font-size: 34px; }
  .modules-grid { grid-template-columns: 1fr; }
  .stats { padding: 70px 20px; }
  .stats__left h3 { font-size: 34px; }
  .stats__right { grid-template-columns: 1fr; }
  .pricing__head h3,
  .cta-box h3,
  .contact__left h3 { font-size: 34px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-bottom { padding: 20px 20px 60px; }
  .cta-box { padding: 50px 28px; }
  .cta-box::before { font-size: 140px; bottom: -30px; }
  .popup__top { padding: 28px 24px 0; }
  .popup__body { padding: 0 24px 24px; }
  .popup__title { font-size: 26px; }
  .privacy-popup__content { padding: 28px 24px 20px; }
  .privacy-popup__content h2 { font-size: 24px; }
  .privacy-popup__footer { padding: 16px 24px 22px; }
  .footer { padding: 40px 20px 20px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-form { padding: 28px 22px; }
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--w);
  z-index: 199;
  padding: 90px 24px 32px;
  box-shadow: 0 10px 40px rgba(13,10,8,0.1);
  transform: translateY(-100%);
  transition: transform .3s ease;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-menu__cta {
  display: block;
  margin-top: 20px;
  padding: 14px 22px;
  background: var(--o);
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border-bottom: none;
  transition: background var(--t);
}
.mobile-menu .mobile-menu__cta:hover {
  background: var(--od);
}
