/*
Theme Name: inaday
Theme URI: https://inaday.ai
Description: inaday.ai — AI in a Day. Volledig aanpasbaar via de WordPress Customizer en ACF.
Version: 1.0
Author: inaday.ai
Text Domain: inaday
Tags: landing-page, custom-colors, custom-logo, custom-menu, full-width-template, blog, portfolio
*/

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

:root {
  --bg:           #0f0f0f;
  --bg2:          #141414;
  --card:         #1a1a1a;
  --card2:        #202020;
  --border:       rgba(255,255,255,.07);
  --border2:      rgba(255,255,255,.12);
  --white:        #fff;
  --off:          #e8e7e3;
  --muted:        #a0a09a;
  --subtle:       #666662;
  --purple:       #8b7ff5;
  --purple2:      #6c5fe6;
  --purple-glow:  rgba(139,127,245,.2);
  --teal:         #1db87a;
  --teal-glow:    rgba(29,184,122,.15);
  --amber:        #f0a429;
  --grad-start:   #8b7ff5;
  --grad-mid:     #c4b5fd;
  --grad-end:     #7ef5c4;
  --grad-speed:   4s;
  --btn-radius:   100px;
  --card-radius:  18px;
}

body {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-size: var(--font-size-base, 16px);
  background: var(--bg);
  color: var(--off);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── CURSOR GLOW ── */
.cursor-glow {
  pointer-events: none;
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,127,245,.18) 0%, rgba(139,127,245,.06) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: transform .08s ease;
  top: 0;
  left: 0;
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13,13,13,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  transition: border-color .3s;
}

#nav.scrolled { border-bottom-color: var(--border2); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--white);
}

.nav-logo img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
  padding: 0;
}

.nav-links a,
.nav-links li a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 6px;
  transition: all .15s;
  white-space: nowrap;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links li a:hover {
  color: var(--white);
  background: rgba(255,255,255,.06);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #0f0f0f !important;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

/* ── GRADIENT BUTTONS ── */
.btn-gradient {
  background: linear-gradient(135deg, #8b7ff5 0%, #c4b5fd 45%, #7ef5c4 100%);
  background-size: 200% 200%;
  animation: gradient-shift var(--grad-speed, 4s) ease infinite;
  color: #0f0f0f !important;
  font-weight: 700;
  border: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  cursor: pointer;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139,127,245,.35);
  opacity: .92;
}

@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 5% 60px;
  position: sticky;
  top: 0;
  z-index: 1;
  overflow: hidden;
}

/* tools-bar en alle secties erna schuiven over de hero */
.tools-bar,
.tools-bar ~ *,
section {
  position: relative;
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,127,245,var(--grid-opacity, .06)) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,127,245,var(--grid-opacity, .06)) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  animation: grid-drift 20s linear infinite;
  pointer-events: none;
}

@keyframes grid-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,127,245,.22) 0%, rgba(139,127,245,.08) 40%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: 0;
  animation: breathe 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes breathe {
  0%, 100% { transform: translate(-50%, -55%) scale(1); opacity: .9; }
  50%       { transform: translate(-50%, -55%) scale(1.15); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,127,245,.1);
  border: 1px solid rgba(139,127,245,.25);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 36px;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp .6s .1s forwards;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .3; transform: scale(.7); }
}

h1 {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: var(--heading-weight, 800);
  line-height: 1.02;
  letter-spacing: var(--h1-letter-spacing, -4px);
  color: var(--white);
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp .7s .25s forwards;
  text-align: center;
  width: 100%;
}

.h1-accent {
  background: linear-gradient(135deg, #8b7ff5 0%, #c4b5fd 40%, #7ef5c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
  margin: 24px auto 40px;
  opacity: 0;
  animation: fadeUp .7s .4s forwards;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .7s .55s forwards;
}

.btn-main {
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-ghost {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .15s;
  padding: 14px 20px;
}

.btn-ghost:hover { color: var(--white); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--btn-radius);
  border: 1px solid var(--border2);
  font-size: 15px;
  font-weight: 600;
  color: var(--off);
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.btn-outline:hover { border-color: var(--purple); background: var(--purple-glow); }

.hero-proof {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  opacity: 0;
  animation: fadeUp .7s .7s forwards;
}

.proof-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--subtle);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}

.proof-pill svg {
  width: 12px;
  height: 12px;
  stroke: var(--teal);
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
}

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

/* ── TOOLS BAR ── */
.tools-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}

.tools-bar::before,
.tools-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.tools-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--card), transparent);
}

.tools-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--card), transparent);
}

.tools-track {
  display: flex;
  width: max-content;
}

.tools-slide {
  display: flex;
  gap: 44px;
  padding-right: 44px;
  align-items: center;
}

.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 44px;
  flex-shrink: 0;
  opacity: .45;
  transition: all .25s;
  cursor: default;
}

.tool-item svg {
  width: 34px;
  height: 34px;
}

.tool-item--uploaded svg,
.tool-item--uploaded img {
  width: auto;
  height: 34px;
  max-width: 120px;
  filter: grayscale(1) brightness(10) opacity(.75);
  transition: filter .25s;
}


/* ── SECTIONS ── */
section {
  padding: 110px 5%;
  position: relative;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.s-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.s-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--purple);
}

h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: var(--heading-weight, 800);
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--white);
}

.s-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 64px;
}

/* ── PAIN ── */
.pain {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.pain h2 em { font-style: normal; color: var(--subtle); }

.book-section h2 em { font-style: italic; }

.pain-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.pain-card {
  flex: 1;
  padding: 36px 32px;
  background: var(--card);
  transition: background .2s;
  position: relative;
  overflow: hidden;
}

.pain-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.pain-card:hover { background: var(--card2); }
.pain-card:hover::after { transform: scaleX(1); }

.pain-divider { width: 1px; background: var(--border); flex-shrink: 0; }

.pain-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.2px;
  margin-bottom: 12px;
  color: var(--white);
  display: inline-block;
}

.pain-text { font-size: 15px; color: var(--muted); line-height: 1.65; }

.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.vs-card { border-radius: 14px; padding: 28px; border: 1px solid; }
.vs-bad  { background: rgba(180,40,40,.04);  border-color: rgba(180,40,40,.18); }
.vs-good { background: rgba(29,184,122,.04); border-color: rgba(29,184,122,.2); }

.vs-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.vs-bad .vs-title  { color: #c07070; }
.vs-good .vs-title { color: var(--teal); }

.vs-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.vs-list li { font-size: 14px; color: var(--muted); display: flex; gap: 9px; line-height: 1.5; }
.vs-bad .vs-list  li::before { content: '✗'; color: #c07070; flex-shrink: 0; }
.vs-good .vs-list li::before { content: '✓'; color: var(--teal); flex-shrink: 0; }

/* ── HOW ── */
.how { background: var(--bg); }

.steps-wrapper { position: relative; }

.steps-line {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--teal), var(--purple));
  opacity: .2;
  z-index: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius, 18px);
  padding: 32px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .3s;
}

.step:nth-child(1)::before { background: radial-gradient(circle at 20% 20%, rgba(139,127,245,.08), transparent 60%); }
.step:nth-child(2)::before { background: radial-gradient(circle at 20% 20%, rgba(29,184,122,.07),  transparent 60%); }
.step:nth-child(3)::before { background: radial-gradient(circle at 20% 20%, rgba(240,164,41,.06),  transparent 60%); }

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}

.step:nth-child(1):hover { border-color: rgba(139,127,245,.3); }
.step:nth-child(2):hover { border-color: rgba(29,184,122,.3); }
.step:nth-child(3):hover { border-color: rgba(240,164,41,.25); }

.step:hover::before { opacity: 1; }

.step-num {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ── SERVICES ── */
.services {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

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

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius, 18px);
  padding: 28px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .3s;
  border-radius: 18px;
  pointer-events: none;
}

.sc-purple::before { background: radial-gradient(circle at 10% 10%, rgba(139,127,245,.08), transparent 60%); }
.sc-teal::before   { background: radial-gradient(circle at 10% 10%, rgba(29,184,122,.07),  transparent 60%); }
.sc-amber::before  { background: radial-gradient(circle at 10% 10%, rgba(240,164,41,.06),  transparent 60%); }
.sc-green::before  { background: radial-gradient(circle at 10% 10%, rgba(29,184,122,.06),  transparent 60%); }

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}

.service-card:hover::before { opacity: 1; }

.sc-purple:hover { border-color: rgba(139,127,245,.35); }
.sc-teal:hover   { border-color: rgba(29,184,122,.3); }
.sc-amber:hover  { border-color: rgba(240,164,41,.25); }
.sc-green:hover  { border-color: rgba(29,184,122,.35); }

.service-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.tag-purple { background: rgba(139,127,245,.12); color: #b4adff; }
.tag-teal   { background: rgba(29,184,122,.1);   color: #4ecfa0; }
.tag-amber  { background: rgba(240,164,41,.1);   color: #f5b84a; }
.tag-green  { background: rgba(29,184,122,.1);   color: #4ecfa0; }

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.deliverables-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  margin-top: 4px;
  transition: color .2s;
}
.deliverables-toggle:hover { color: var(--fg); }
.deliverables-toggle svg {
  transition: transform .25s;
  flex-shrink: 0;
}
.deliverables-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.service-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  transition: max-height .5s ease, margin-top .5s ease;
}
.service-deliverables.is-open {
  max-height: 400px;
  margin-top: 10px;
}

.service-deliverables li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}

.service-deliverables li::before {
  content: '–';
  color: var(--muted);
  flex-shrink: 0;
  font-size: 13px;
}

.service-monthly {
  border-color: var(--border);
  background: transparent;
}

.monthly-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.monthly-top .service-tag { margin-bottom: 0; }

.monthly-price {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--white);
}

.monthly-price small {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.monthly-note {
  font-size: 12px;
  color: var(--subtle);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  line-height: 1.55;
}

.price-footer {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 22px 28px;
  margin-top: 28px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.price-footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
}

.pf-amount { font-size: 36px; font-weight: 800; letter-spacing: -1px; color: var(--white); }
.pf-label  { font-size: 13px; font-weight: 500; color: var(--muted); }
.pf-div    { width: 1px; height: 36px; background: var(--border2); flex-shrink: 0; }
.pf-desc   { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 480px; margin: 0; }

/* ── TESTIMONIALS ── */
.proof-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

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

.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius, 18px);
  padding: 28px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 100px;
  color: rgba(139,127,245,.05);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.testimonial:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}

.stars { font-size: 12px; letter-spacing: 3px; color: var(--amber); margin-bottom: 16px; }

.testimonial blockquote {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.t-author { display: flex; align-items: center; gap: 12px; }

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.t-name { font-size: 14px; font-weight: 600; color: var(--white); }
.t-role { font-size: 12px; color: var(--subtle); }

/* ── FAQ ── */
.faq-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: border-color .2s, background .2s;
  cursor: pointer;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(139,127,245,.25);
  background: var(--card2);
}

.faq-item.open { border-color: rgba(139,127,245,.3); }

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  width: 100%;
}

.faq-trigger h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  text-align: left;
}

.faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(139,127,245,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, background .2s;
}

.faq-icon svg {
  width: 10px;
  height: 10px;
  stroke: var(--purple);
  stroke-width: 2.5;
  fill: none;
  transition: transform .3s;
}

.faq-item.open .faq-icon { background: rgba(139,127,245,.2); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq-item.open .faq-body { grid-template-rows: 1fr; }

.faq-body-inner { overflow: hidden; }

.faq-body-inner p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  padding: 0 28px 24px;
}

/* ── BOOK SECTION ── */
.book-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.book-glow1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,127,245,.07), transparent 70%);
  top: -150px;
  left: -150px;
  pointer-events: none;
}

.book-glow2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,184,122,.05), transparent 70%);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

.book-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,184,122,.08);
  border: 1px solid rgba(29,184,122,.2);
  color: var(--teal);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.avail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}

.book-section h2 {
  font-size: clamp(32px, 4vw, 50px);
  margin-bottom: 16px;
}

.book-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 420px;
}

.booking-form {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.booking-form::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.f-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.f-sub   { font-size: 13px; color: var(--muted); margin-bottom: 28px; }

.fg { margin-bottom: 16px; }

.fg label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--off);
  margin-bottom: 7px;
  letter-spacing: .03em;
}

.fg input,
.fg select {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--white);
  font-family: inherit;
  outline: none;
  appearance: none;
  transition: all .15s;
}

.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.fg select option { background: #1a1a1a; color: var(--white); }

.fg input:focus,
.fg select:focus {
  border-color: var(--purple);
  background: rgba(139,127,245,.06);
  box-shadow: 0 0 0 3px rgba(139,127,245,.1);
}

.fg input::placeholder { color: var(--subtle); }

.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn-submit {
  width: 100%;
  color: #0f0f0f;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  margin-top: 8px;
}

.f-note {
  font-size: 11px;
  color: var(--subtle);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 28px 5%;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.f-logo {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
}

.f-logo span { color: var(--purple); }

.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }

.footer-nav a,
.footer-nav li a {
  font-size: 13px;
  color: var(--subtle);
  text-decoration: none;
  transition: color .2s;
}

.footer-nav a:hover { color: var(--muted); }

.f-social a {
  font-size: 13px;
  color: var(--subtle);
  text-decoration: none;
  transition: color .2s;
}

.f-social a:hover { color: var(--muted); }

.f-copy { font-size: 12px; color: var(--subtle); }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease, transform .75s ease;
}

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

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* Sections zelf mogen nooit opacity:0 hebben (parallax schuift ze over hero).
   Reveal-animatie alleen op de content erin toepassen. */
section.reveal {
  opacity: 1;
  transform: none;
}

section.reveal .s-label,
section.reveal h2,
section.reveal .s-sub {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .75s ease, transform .75s ease;
}

section.reveal.visible .s-label,
section.reveal.visible h2,
section.reveal.visible .s-sub {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { position: relative; }
  .tools-bar,
  .tools-bar ~ *,
  section { z-index: auto; }

  .how .s-label,
  .how h2,
  .how .s-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .how .s-label { justify-content: center; }

  .pain-row     { flex-direction: column; }
  .pain-divider { width: 100%; height: 1px; }
  .steps,
  .services-grid,
  .testimonials,
  .faq-grid,
  .book-inner   { grid-template-columns: 1fr; }
  .vs-grid,
  .fg-row       { grid-template-columns: 1fr; }
  .nav-links a:not(.nav-cta) { display: none; }
  .steps-line   { display: none; }
  .price-footer { flex-direction: column; gap: 14px; }
  .pf-div       { width: 100%; height: 1px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav   { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-main,
  .hero-btns .btn-outline { text-align: center; justify-content: center; }
}

/* ── BLOG / ARCHIVE ── */
.blog-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 40px;
}

.page-numbers {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}

.page-numbers:hover, .page-numbers.current {
  border-color: var(--purple);
  color: var(--purple);
}

.widget { margin-bottom: 32px; }
.widget-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em; }

.post-content h2, .post-content h3 { color: var(--white); margin: 32px 0 16px; font-weight: 700; }
.post-content p { margin-bottom: 20px; }
.post-content a { color: var(--purple); }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 20px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
  border-left: 3px solid var(--purple);
  padding-left: 20px;
  color: var(--muted);
  font-style: italic;
  margin: 24px 0;
}

.post-navigation { display: flex; justify-content: space-between; gap: 24px; }
.post-navigation a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .2s; }
.post-navigation a:hover { color: var(--white); }

.comments-area { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.comments-title { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 28px; }
.comment-list { list-style: none; }
.comment { padding: 24px 0; border-bottom: 1px solid var(--border); }
.comment-author b { color: var(--white); font-size: 14px; }
.comment-meta { font-size: 12px; color: var(--subtle); margin-bottom: 12px; }
.comment-content p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.comment-respond { margin-top: 40px; }
.comment-reply-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.comment-form label { display: block; font-size: 12px; color: var(--subtle); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; margin-bottom: 8px; }
.comment-form input,
.comment-form textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--white);
  font-family: inherit;
  margin-bottom: 16px;
  outline: none;
  transition: border-color .2s;
}
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--purple); }
.comment-form .submit {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-mid), var(--grad-end));
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
}


/* ── BLOG – ARCHIVE & SINGLE ── */

/* ── ARCHIVE HEADER ── */
.blog-archive-heading {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}

.blog-archive-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 56px;
}

.blog-empty {
  font-size: 16px;
  color: var(--muted);
  margin-top: 40px;
}

/* ── BLOG GRID ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ── BLOG CARD ── */
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}

.blog-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}

.blog-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--card2);
  text-decoration: none;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}

.blog-card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139,127,245,.12) 0%, rgba(126,245,196,.08) 100%);
}

.blog-card-img--placeholder span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -.3px;
  color: var(--purple);
  opacity: .5;
}

.blog-card-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1.25;
  color: var(--white);
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color .15s;
}

.blog-card-title a:hover { color: var(--purple); }

.blog-card-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.blog-card-date {
  font-size: 12px;
  color: var(--subtle);
}

.blog-card-read {
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  transition: color .15s;
}

.blog-card-read:hover { color: var(--grad-mid); }

/* ── BLOG TAGS ── */
.blog-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 100px;
  padding: 4px 0;
  text-decoration: none;
  transition: opacity .15s;
  align-self: flex-start;
  position: relative;
  background: linear-gradient(135deg, #8b7ff5 0%, #c4b5fd 45%, #7ef5c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}


.blog-tag:hover { opacity: .8; }

/* ── PAGINATION ── */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

/* ── SINGLE LAYOUT ── */
.blog-single-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

@media (max-width: 960px) {
  .blog-single-inner { grid-template-columns: 1fr; }
  .blog-single-sidebar { display: none; }
}

/* ── SINGLE HEADER ── */
.blog-single-meta-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.blog-single-date,
.blog-single-readtime {
  font-size: 12px;
  color: var(--subtle);
}

.blog-single-date::before {
  content: '·';
  margin-right: 12px;
  color: var(--border2);
}

.blog-single-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  text-align: left;
  opacity: 1;
  animation: none;
}

.blog-single-excerpt {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 24px;
}

/* ── AUTHOR BAR ── */
.blog-author-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 36px;
  width: fit-content;
}

.blog-author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(139,127,245,.15);
  border: 1px solid rgba(139,127,245,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--purple);
  flex-shrink: 0;
}

.blog-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blog-author-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.blog-author-role {
  font-size: 11px;
  color: var(--subtle);
}

/* ── SINGLE THUMBNAIL ── */
.blog-single-thumb {
  border-radius: var(--card-radius);
  overflow: hidden;
  margin-bottom: 48px;
  aspect-ratio: 21 / 9;
}

.blog-single-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── SINGLE CONTENT ── */
.blog-single-content {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 700px;
}

.blog-single-content *,
.blog-single-header * {
  opacity: 1 !important;
  animation: none !important;
  transform: none !important;
}

.blog-single-content h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  margin: 48px 0 16px;
  line-height: 1.15;
}

.blog-single-content h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--white);
  margin: 36px 0 12px;
}

.blog-single-content p { margin-bottom: 22px; }

.blog-single-content a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .15s;
}

.blog-single-content a:hover { color: var(--grad-mid); }

.blog-single-content ul,
.blog-single-content ol {
  padding-left: 22px;
  margin-bottom: 22px;
  list-style: revert;
}

.blog-single-content li { margin-bottom: 8px; }

.blog-single-content blockquote {
  border-left: 3px solid var(--purple);
  padding: 16px 20px;
  margin: 32px 0;
  background: rgba(139,127,245,.05);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--off);
  font-size: 17px;
}

.blog-single-content blockquote p { margin-bottom: 0; }

.blog-single-content img {
  border-radius: 10px;
  margin: 8px 0 24px;
}

.blog-single-content code {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 2px 7px;
  font-size: 13px;
  color: var(--teal);
  font-family: 'Fira Code', 'Courier New', monospace;
}

.blog-single-content pre {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  overflow-x: auto;
  margin-bottom: 24px;
}

.blog-single-content pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
}

/* ── SINGLE FOOTER ── */
.blog-single-footer {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.blog-single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.blog-single-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) {
  .blog-single-nav { grid-template-columns: 1fr; }
}

.blog-nav-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.blog-nav-item:hover {
  border-color: var(--purple);
  background: var(--card2);
}

.blog-nav-item--next { text-align: right; }

.blog-nav-dir {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--subtle);
}

.blog-nav-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

/* ── SIDEBAR ── */
.blog-single-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-sidebar-widget {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 24px;
}

.blog-sidebar-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--subtle);
  margin-bottom: 18px;
}

.blog-related-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  transition: opacity .15s;
}

.blog-related-item:first-of-type { border-top: none; padding-top: 0; }
.blog-related-item:hover { opacity: .75; }

.blog-related-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--card2);
}

.blog-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-related-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-related-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}

.blog-related-date {
  font-size: 11px;
  color: var(--subtle);
}

/* ── SIDEBAR CTA ── */
.blog-sidebar-cta {
  background: rgba(139,127,245,.06);
  border-color: rgba(139,127,245,.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-sidebar-cta-label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.3px;
  color: var(--white);
}

.blog-sidebar-cta-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.blog-sidebar-cta .btn-main {
  font-size: 14px;
  padding: 12px 20px;
  align-self: flex-start;
}


/* ── BLOG CTA BANNER ── */
.blog-cta-banner {
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}

.blog-cta-banner--purple::before,
.blog-cta-banner--teal::before,
.blog-cta-banner--amber::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blog-cta-banner--purple::before { background: radial-gradient(ellipse at 65% 50%, rgba(139,127,245,.08) 0%, transparent 65%); }
.blog-cta-banner--teal::before   { background: radial-gradient(ellipse at 65% 50%, rgba(29,184,122,.07)  0%, transparent 65%); }
.blog-cta-banner--amber::before  { background: radial-gradient(ellipse at 65% 50%, rgba(240,164,41,.07)  0%, transparent 65%); }

.blog-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .blog-cta-inner { grid-template-columns: 1fr; gap: 28px; }
}

.blog-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
}

.blog-cta-banner--purple .blog-cta-label { color: var(--purple); }
.blog-cta-banner--teal   .blog-cta-label { color: var(--teal); }
.blog-cta-banner--amber  .blog-cta-label { color: var(--amber); }

.blog-cta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.blog-cta-banner--purple .blog-cta-dot { background: var(--purple); }
.blog-cta-banner--teal   .blog-cta-dot { background: var(--teal); }
.blog-cta-banner--amber  .blog-cta-dot { background: var(--amber); }

.blog-cta-heading {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 14px;
  opacity: 1 !important;
  animation: none !important;
}

.blog-cta-subtext {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
}

.blog-cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}

.blog-cta-btn {
  white-space: nowrap;
  font-size: 15px;
  padding: 14px 28px;
}

.blog-cta-footnote {
  font-size: 12px;
  color: var(--subtle);
  line-height: 1.5;
  max-width: 220px;
}


/* ── SERVICE PILLAR PAGE ── */
.sp-page--purple { --sp-accent: var(--purple); --sp-accent-glow: rgba(139,127,245,.12); --sp-accent-border: rgba(139,127,245,.22); }
.sp-page--teal   { --sp-accent: var(--teal);   --sp-accent-glow: rgba(29,184,122,.1);   --sp-accent-border: rgba(29,184,122,.2); }
.sp-page--amber  { --sp-accent: var(--amber);  --sp-accent-glow: rgba(240,164,41,.1);   --sp-accent-border: rgba(240,164,41,.2); }

.sp-page section { padding: 90px 5%; }
.sp-page section:nth-child(even) { background: var(--bg2); }

.sp-section-heading { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; letter-spacing: -2px; line-height: 1.08; color: var(--white); margin-bottom: 16px; opacity: 1 !important; animation: none !important; }
.sp-section-sub { font-size: 16px; color: var(--muted); line-height: 1.65; max-width: 500px; margin-bottom: 48px; }
.sp-s-label { color: var(--sp-accent) !important; }

.sp-hero { background: var(--bg) !important; padding-top: 140px !important; }

.sp-hero-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--sp-accent); background: var(--sp-accent-glow); border: 0.5px solid var(--sp-accent-border); border-radius: 100px; padding: 5px 14px; margin-bottom: 28px; }
.sp-hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sp-accent); animation: pulse 2s ease-in-out infinite; }

.sp-hero-heading { font-size: clamp(36px, 5.5vw, 68px); font-weight: 800; letter-spacing: -3px; line-height: 1.04; color: var(--white); margin-bottom: 20px; opacity: 1 !important; animation: none !important; text-align: left; }
.sp-hero-sub { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 580px; margin-bottom: 36px; }
.sp-hero-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; opacity: 1 !important; animation: none !important; }

.sp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 520px; }
.sp-stat { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; }
.sp-stat-val { font-size: 24px; font-weight: 800; letter-spacing: -1px; color: var(--white); line-height: 1; margin-bottom: 4px; }
.sp-stat-label { font-size: 12px; color: var(--subtle); }

.sp-delivers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (max-width: 640px) { .sp-delivers-grid { grid-template-columns: 1fr; } }
.sp-deliver-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; transition: border-color .2s; }
.sp-deliver-item:hover { border-color: var(--sp-accent-border); }
.sp-deliver-check { width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0; margin-top: 1px; background: var(--sp-accent-glow); border: 0.5px solid var(--sp-accent-border); display: flex; align-items: center; justify-content: center; }
.sp-deliver-check svg { width: 11px; height: 11px; stroke: var(--sp-accent); stroke-width: 2.5; fill: none; }
.sp-deliver-title { font-size: 14px; font-weight: 700; letter-spacing: -.2px; color: var(--white); margin-bottom: 3px; }
.sp-deliver-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

.sp-how-steps { display: flex; flex-direction: column; max-width: 680px; }
.sp-how-step { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 24px 0; border-top: 1px solid var(--border); align-items: flex-start; }
.sp-how-step:first-child { border-top: none; padding-top: 0; }
.sp-step-num { width: 38px; height: 38px; border-radius: 50%; background: var(--sp-accent-glow); border: 0.5px solid var(--sp-accent-border); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: var(--sp-accent); flex-shrink: 0; }
.sp-step-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--subtle); margin-bottom: 5px; }
.sp-step-title { font-size: 16px; font-weight: 800; letter-spacing: -.4px; color: var(--white); margin-bottom: 6px; }
.sp-step-text { font-size: 14px; color: var(--muted); line-height: 1.65; }

.sp-who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 760px) { .sp-who-grid { grid-template-columns: 1fr; } }
.sp-who-card { padding: 22px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; transition: border-color .2s; }
.sp-who-card:hover { border-color: var(--sp-accent-border); }
.sp-who-icon { font-size: 20px; margin-bottom: 12px; display: block; }
.sp-who-title { font-size: 15px; font-weight: 800; letter-spacing: -.3px; color: var(--white); margin-bottom: 8px; }
.sp-who-text { font-size: 14px; color: var(--muted); line-height: 1.6; }

.sp-price-box { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; padding: 36px 40px; background: var(--sp-accent-glow); border: 1px solid var(--sp-accent-border); border-radius: 18px; }
@media (max-width: 640px) { .sp-price-box { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; } }
.sp-price-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--sp-accent); margin-bottom: 12px; }
.sp-price-heading { font-size: clamp(20px, 2.5vw, 30px); font-weight: 800; letter-spacing: -1px; color: var(--white); margin-bottom: 10px; line-height: 1.15; opacity: 1 !important; animation: none !important; }
.sp-price-sub { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 420px; }
.sp-price-right { text-align: right; flex-shrink: 0; }
.sp-price-amount { font-size: 48px; font-weight: 800; letter-spacing: -2px; color: var(--white); line-height: 1; }
.sp-price-per { font-size: 14px; color: var(--muted); margin-top: 6px; }
.sp-price-compare { font-size: 12px; color: var(--subtle); text-decoration: line-through; margin-top: 4px; }

.sp-testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 640px) { .sp-testi-grid { grid-template-columns: 1fr; } }
.sp-testi-card { padding: 24px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; display: flex; flex-direction: column; gap: 16px; }
.sp-testi-quote { font-size: 15px; color: var(--muted); line-height: 1.7; font-style: italic; flex: 1; }
.sp-testi-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.sp-testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--sp-accent-glow); border: 0.5px solid var(--sp-accent-border); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: var(--sp-accent); flex-shrink: 0; }
.sp-testi-name { font-size: 13px; font-weight: 700; color: var(--white); }
.sp-testi-role { font-size: 12px; color: var(--subtle); margin-top: 2px; }

.sp-faq-list { display: flex; flex-direction: column; max-width: 720px; }
.sp-faq-item { padding: 20px 0; border-top: 1px solid var(--border); }
.sp-faq-item:last-child { border-bottom: 1px solid var(--border); }
.sp-faq-q { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: -.2px; }
.sp-faq-a { font-size: 14px; color: var(--muted); line-height: 1.7; }

.sp-cta { background: var(--bg2) !important; }
.sp-cta-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; padding: 48px; background: var(--sp-accent-glow); border: 1px solid var(--sp-accent-border); border-radius: 20px; max-width: 700px; }
.sp-cta-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--teal); }
.sp-cta-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: pulse 2s ease-in-out infinite; }
.sp-cta-heading { font-size: clamp(24px, 3vw, 38px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; color: var(--white); opacity: 1 !important; animation: none !important; }
.sp-cta-sub { font-size: 15px; color: var(--muted); line-height: 1.65; max-width: 480px; }
.sp-cta-note { font-size: 12px; color: var(--subtle); line-height: 1.5; }

@media (max-width: 480px) { .sp-stats { grid-template-columns: 1fr; max-width: 100%; } .sp-hero-heading { letter-spacing: -2px; } .sp-cta-inner { padding: 28px 24px; } }

/* ────────────────────────────────────────
   NAV DROPDOWN
   ──────────────────────────────────────── */

/* ── DROPDOWN PARENT ── */
.nav-links li.menu-item-has-children {
  position: relative;
}

/* Chevron icoon achter "Services" */
.nav-links li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s;
  vertical-align: middle;
  opacity: .6;
}

.nav-links li.menu-item-has-children:hover > a::after,
.nav-links li.menu-item-has-children.is-open > a::after {
  transform: rotate(-135deg) translateY(-2px);
  opacity: 1;
}

/* ── DROPDOWN PANEL ── */
.nav-links li.menu-item-has-children > ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background: rgba(20,20,20,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 18px 6px 6px;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 1100;

  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
}

/* Kleine pijltje bovenaan het dropdown panel */
.nav-links li.menu-item-has-children > ul.sub-menu::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: rgba(20,20,20,.98);
  border-top: 1px solid var(--border2);
  border-left: 1px solid var(--border2);
}

/* Zichtbaar bij hover of .is-open */
.nav-links li.menu-item-has-children:hover > ul.sub-menu,
.nav-links li.menu-item-has-children.is-open > ul.sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* ── DROPDOWN ITEMS ── */
.nav-links li.menu-item-has-children > ul.sub-menu li {
  margin: 0;
  padding: 0;
}

.nav-links li.menu-item-has-children > ul.sub-menu li a {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--off);
  text-decoration: none;
  transition: background .15s, color .15s;
  white-space: normal;
  line-height: 1.3;
}

.nav-links li.menu-item-has-children > ul.sub-menu li a:hover {
  background: rgba(255,255,255,.06);
  color: var(--white);
}

/* Kleur-dot per service item */
.nav-links .sub-menu li a::before {
  content: attr(data-tag);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--subtle);
  margin-bottom: 1px;
}

/* ── DIVIDER IN DROPDOWN ── */
.nav-links .sub-menu .menu-item-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 8px;
  pointer-events: none;
}

/* ── MOBIEL – dropdown als uitklapbaar blok ── */
@media (max-width: 900px) {
  .nav-links li.menu-item-has-children > ul.sub-menu {
    position: static;
    transform: none;
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    padding: 0 0 0 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease, opacity .2s;
    opacity: 0;
  }

  .nav-links li.menu-item-has-children.is-open > ul.sub-menu {
    max-height: 300px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li.menu-item-has-children > ul.sub-menu::before {
    display: none;
  }
}

/* ── HAMBURGER (mobiel) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--muted);
  border-radius: 2px;
  transition: all .2s;
}

.nav-hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(13,13,13,.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
    flex-direction: column;
    align-items: flex-start;
    transform: none;
  }

  .nav-links.is-open { display: flex; }

  .nav-links ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 2px;
  }

  .nav-links li { width: 100%; }

  .nav-links a,
  .nav-links li a { width: 100%; }

  .nav-right { gap: 8px; }
  .nav-cta { padding: 7px 14px; font-size: 13px; }
}
