/* ============================================
   BrainWork Websites — style.css
   ============================================ */

:root {
  --orange: #F4732A;
  --orange-soft: #FFE6D2;
  --orange-deep: #D85F1A;
  --purple: #4A2AB5;
  --purple-soft: #E8E2FA;
  --purple-deep: #2F1A82;
  --teal: #3BBFB5;
  --teal-soft: #D5F2EF;
  --bg: #F7F4F0;
  --bg-warm: #FFFBF5;
  --white: #FFFFFF;
  --ink: #1A1A2E;
  --ink-soft: #3D3D55;
  --line: #E8E3DC;

  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(74, 42, 181, 0.06);
  --shadow: 0 8px 24px rgba(74, 42, 181, 0.08);
  --shadow-lg: 0 24px 48px rgba(74, 42, 181, 0.12);

  --font: "Nunito", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.4em;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ NAVIGATION ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 244, 240, 0.96);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand .bw { color: var(--purple); }
.brand .ws { color: var(--orange); }

/* ============ INNER PAGES ============ */
.page {
  padding: 70px 0 90px;
  background: var(--bg);
}
.page-inner {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  box-shadow: var(--shadow-sm);
}
.page-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--purple);
  opacity: 0.6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-inner h1 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 12px;
}
.page-lede {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  text-wrap: pretty;
}
.page-inner h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 10px;
}
.page-inner h3 {
  font-size: 17px;
  margin-top: 24px;
  margin-bottom: 6px;
  color: var(--ink);
}
.page-inner p, .page-inner li {
  color: var(--ink-soft);
  font-size: 16px;
}
.page-inner ul, .page-inner ol { padding-left: 22px; }
.page-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
}
.page-back:hover { color: var(--orange); }

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.faq details {
  background: var(--bg-warm);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--purple-soft); background: var(--white); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: var(--purple);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 700;
  color: var(--purple);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

@media (max-width: 700px) {
  .page-inner { padding: 32px 24px; border-radius: 0; border-left: 0; border-right: 0; }
  .page { padding: 30px 0 60px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-links a:not(.btn):hover { color: var(--purple); }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 26px;
  color: var(--purple);
  cursor: pointer;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 15px;
  border-radius: var(--radius-pill);
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(244, 115, 42, 0.22);
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--orange-deep);
  box-shadow: 0 6px 18px rgba(244, 115, 42, 0.28);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-ghost:hover {
  background: var(--purple);
  color: var(--white);
}
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 72px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -160px; right: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--orange-soft) 0%, transparent 70%);
  opacity: 0.35;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--white);
  color: var(--purple);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(59, 191, 181, 0.2);
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero h1 .accent {
  position: relative;
  white-space: nowrap;
  color: var(--orange);
}
.hero-sub {
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}
.hero-ctas .secondary-link {
  color: var(--purple);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}
.hero-ctas .secondary-link::after {
  content: "";
  position: absolute;
  left: 4px; right: 24px; bottom: 10px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.hero-ctas .secondary-link:hover::after { transform: scaleX(1); }
.hero-ctas .secondary-link svg { transition: transform .2s ease; }
.hero-ctas .secondary-link:hover svg { transform: translateY(3px); }

.cred {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 600;
}
.cred .stars { color: var(--orange); letter-spacing: 1px; }
.cred-dot {
  width: 5px; height: 5px;
  background: var(--ink-soft);
  border-radius: 50%;
  opacity: 0.5;
}

.hero-mascot {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-mascot-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.hero-mascot-wrap img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  animation: float 8s ease-in-out infinite;
}
.hero-mascot-wrap::before {
  content: "";
  position: absolute;
  inset: 8% 6% 12% 6%;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  z-index: 1;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-mascot img, .contact-mascot img {
  will-change: transform;
  contain: layout style;
}

.hero-sticker { display: none; }
.hero-sticker-x {
  position: absolute;
  z-index: 3;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
}
.hero-sticker .emoji-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
}
.hero-sticker-1 {
  top: 8%;
  left: -8%;
  transform: rotate(-6deg);
  animation: bobLeft 5s ease-in-out infinite;
  will-change: transform;
}
.hero-sticker-1 .emoji-circle { background: var(--teal-soft); color: var(--teal); }
.hero-sticker-2 {
  bottom: 14%;
  right: -4%;
  transform: rotate(5deg);
  animation: bobRight 5.5s ease-in-out infinite;
  will-change: transform;
}
.hero-sticker-2 .emoji-circle { background: var(--purple-soft); color: var(--purple); }
@keyframes bobLeft {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-8px); }
}
@keyframes bobRight {
  0%, 100% { transform: rotate(5deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-8px); }
}

/* ============ SECTION HEADERS ============ */
.section { padding: 100px 0; position: relative; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--purple);
  opacity: 0.6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.section-head.left { text-align: left; margin: 0 0 56px; }

/* ============ DIENSTEN ============ */
#diensten { background: var(--bg-warm); }
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.pkg {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pkg:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-soft);
}
.pkg.featured {
  border-color: var(--purple-soft);
  box-shadow: var(--shadow);
  background: var(--white);
}
.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pkg-name {
  font-size: 22px;
  margin-bottom: 4px;
  color: var(--purple);
}
.pkg-tag {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 22px;
}
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line);
}
.pkg-price .currency {
  font-size: 22px;
  color: var(--purple);
  font-weight: 800;
}
.pkg-price .amount {
  font-size: 44px;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pkg-price .suffix {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 600;
}
.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
}
.pkg-features li .check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--teal-soft);
  color: var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
  margin-top: 2px;
}
.pkg.featured .pkg-features li .check { background: var(--orange-soft); color: var(--orange); }
.pkg .btn {
  margin-top: auto;
  width: 100%;
}

.addons {
  background: var(--white);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

/* Social media setup sub-section */
.social-block {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  margin-bottom: 24px;
}
.social-head {
  margin-bottom: 24px;
  max-width: 720px;
}
.social-title {
  font-size: 26px;
  margin-bottom: 8px;
}
.social-sub {
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0;
}
.social-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.social-card {
  background: var(--bg-warm);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, transform .2s ease;
}
.social-card:hover {
  border-color: var(--purple-soft);
  transform: translateY(-2px);
}
.social-card.featured {
  border-color: var(--orange);
  background: var(--white);
}
.social-card.featured .pkg-badge {
  background: var(--orange);
  color: var(--white);
}
.social-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--purple);
}
.social-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.social-price .cur {
  font-size: 18px;
  color: var(--purple);
  font-weight: 800;
}
.social-price .num {
  font-size: 36px;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: -0.02em;
  line-height: 1;
}
.social-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.social-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--ink);
}
.social-card ul li .check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--teal-soft);
  color: var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 11px;
  margin-top: 1px;
}
.social-card.featured ul li .check { background: var(--orange-soft); color: var(--orange); }

@media (max-width: 800px) {
  .social-cards { grid-template-columns: 1fr; }
  .social-block { padding: 28px 24px; }
}
.addons-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.addons-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.addons-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}
.addons-list .label {
  color: var(--ink-soft);
}
.addons-list .price {
  font-weight: 800;
  color: var(--purple);
  font-size: 16px;
}

/* ============ HOE HET WERKT ============ */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.step {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.step:nth-child(even) {
  grid-template-columns: 1fr 200px;
}
.step:nth-child(even) .step-mascot { order: 2; }
.step:nth-child(even) .step-body { order: 1; text-align: right; }
.step:nth-child(even) .step-num { left: auto; right: 28px; }

.step-mascot {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  background: var(--bg);
  border-radius: 50%;
  position: relative;
  /* overflow:hidden verwijderd — sneed mascots af */
}
.step-mascot img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  object-position: center center; /* was center 25% — trok alles omhoog */
  transition: transform .3s ease;
  /* scale(1.15) verwijderd — veroorzaakte afsnijden */
}
.step:hover .step-mascot img { transform: scale(1.08) rotate(-2deg); }

.step-num {
  position: absolute;
  top: 22px;
  left: 28px;
  font-size: 64px;
  font-weight: 900;
  color: var(--purple);
  opacity: 0.08;
  letter-spacing: -0.05em;
  line-height: 1;
}
.step-body h3 {
  font-size: 26px;
  margin-bottom: 8px;
}
.step-body p {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0;
}

/* ============ PORTFOLIO ============ */
#portfolio { background: var(--bg-warm); overflow: hidden; }
.carousel {
  position: relative;
  margin-top: 16px;
}
.carousel-track-wrap {
  overflow: hidden;
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.card {
  flex: 0 0 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--line);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-shot {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1.5px solid var(--line);
}
.card-shot .shot-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 32px;
  color: var(--white);
  letter-spacing: -0.02em;
  text-align: center;
  padding: 24px;
  line-height: 1;
}
.card-shot .browser-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28px;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  z-index: 2;
}
.card-shot .browser-bar span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
}
.card-shot .browser-bar span:first-child { background: #FF6058; }
.card-shot .browser-bar span:nth-child(2) { background: #FFBE2F; }
.card-shot .browser-bar span:nth-child(3) { background: #2ACA40; }
.card-shot .browser-bar .url {
  width: auto;
  height: 14px;
  background: var(--bg);
  border-radius: 7px;
  flex: 1;
  margin-left: 6px;
  font-size: 10px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.card-meta {
  padding: 18px 20px 22px;
}
.card-meta h4 {
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--purple);
}
.card-meta p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--purple);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .2s ease;
}
.carousel-btn:hover {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  transform: translateY(-2px);
}
.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all .2s ease;
}
.carousel-dots button.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* ============ CONTACT ============ */
#contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.contact-side {
  position: relative;
}
.contact-side h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}
.contact-side p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.contact-bubble {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  background: var(--white);
  padding: 14px 18px 14px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}
.contact-bubble .av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.contact-bubble .av img {
  width: 130%; height: 130%;
  object-fit: cover;
  object-position: center 20%;
}
.contact-bubble small {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 2px;
}
.contact-bubble strong { color: var(--purple); font-size: 15px; }

.contact-mascot {
  margin-top: 32px;
  width: 220px;
  max-width: 60%;
}
.contact-mascot img { width: 100%; }

form.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow);
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.field label {
  font-size: 14px;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 6px;
}
.field label .opt {
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 12px;
}
.field input,
.field textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  background: var(--bg-warm);
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.field textarea { min-height: 120px; }
.honeypot { position: absolute; left: -9999px; }
.contact-form .btn { width: 100%; margin-top: 8px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success img {
  width: 140px;
  height: 140px;        /* expliciete hoogte — voorkomt platdrukken */
  object-fit: contain;  /* behoudt verhouding */
  margin: 0 auto 16px;
}
.form-success h3 { font-size: 28px; margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); font-size: 16px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--purple);
  color: var(--white);
  padding: 70px 0 30px;
}
.footer a { color: rgba(255,255,255,0.92); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); text-underline-offset: 3px; }
.footer a:hover { color: var(--white); text-decoration-color: rgba(255,255,255,0.7); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer .brand img { background: var(--white); }
.footer .brand .bw,
.footer .brand .ws { color: var(--white); }
.footer .brand .ws { color: #FFB680; }
.footer .tagline {
  font-size: 15px;
  opacity: 0.75;
  margin-top: 12px;
  max-width: 280px;
}
.footer h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  opacity: 0.6;
  color: var(--white);
  font-weight: 800;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  transition: background .2s ease;
}
.socials a:hover { background: rgba(255,255,255,0.2); }
.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ COOKIE BANNER ============ */
.cookie {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 200;
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 24px 60px rgba(26, 26, 46, 0.2);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translateY(120%);
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
}
.cookie.show { transform: translateY(0); }
.cookie-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
}
.cookie-text { flex: 1; font-size: 14px; color: var(--ink); }
.cookie-text a { color: var(--purple); font-weight: 800; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .cred { justify-content: center; }
  .hero-mascot { order: -1; max-width: 360px; margin: 0 auto; }
  .packages { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; gap: 28px; }
  .addons-list { grid-template-columns: repeat(2, 1fr); }
  .step, .step:nth-child(even) {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .step:nth-child(even) .step-body { order: 0; text-align: center; }
  .step:nth-child(even) .step-mascot { order: -1; }
  .step-mascot { margin: 0 auto; }
  .step-num { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-mascot { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bot { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    flex-direction: column;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
  }
  .menu-toggle { display: block; }
  .section { padding: 70px 0; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .cookie {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
  .addons-list { grid-template-columns: 1fr; }
  form.contact-form { padding: 24px; }
}

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

.footer-nav-title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); margin-bottom: 14px; }

a:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 2px; }