/* ============================================================
   Manuless — styles.css
   Premium dark theme · Sora + Inter · gradient violet→cyan
   (bijgewerkt: 2026-06-26)
   ============================================================ */

:root {
  /* palette */
  --bg:        #0a0c12;
  --bg-2:      #0e1119;
  --surface:   #11141b;
  --surface-2: #161a24;
  --border:    #232838;
  --border-2:  #2c3245;
  --text:      #eef1f7;
  --muted:     #9aa3b6;
  --muted-2:   #6c7488;

  --accent:    #7c5cff;
  --accent-2:  #22d3ee;
  --accent-3:  #5eead4;
  --grad:      linear-gradient(110deg, #7c5cff 0%, #22d3ee 100%);
  --grad-soft: linear-gradient(110deg, rgba(124,92,255,.16), rgba(34,211,238,.16));

  --red:   #ff6b6b;
  --green: #34d399;

  --radius:   14px;
  --radius-lg: 22px;
  --shadow:   0 24px 60px -24px rgba(0,0,0,.7);
  --shadow-glow: 0 0 0 1px rgba(124,92,255,.25), 0 24px 70px -20px rgba(124,92,255,.35);

  --maxw: 1140px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: 'Sora', sans-serif; font-weight: 700; line-height: 1.12; letter-spacing: -.02em; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }
.section { padding: 110px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%); }

/* ---------- decorative orbs ---------- */
.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.orb-1 { width: 520px; height: 520px; background: #7c5cff; top: -160px; right: -120px; opacity: .28; }
.orb-2 { width: 460px; height: 460px; background: #22d3ee; top: 40%; left: -180px; opacity: .14; }
.orb-3 { width: 420px; height: 420px; background: #5eead4; bottom: -160px; right: 10%; opacity: .10; }
main, .nav, .footer { position: relative; z-index: 1; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  padding: 11px 0;
  transition: background .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,12,18,.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: 'Sora'; font-weight: 700; font-size: 1.25rem; letter-spacing: -.02em; }
.brand-mark {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px;
  background: var(--grad); color: #fff;
  box-shadow: 0 6px 18px -6px rgba(124,92,255,.7);
}
.brand-name { background: linear-gradient(90deg,#fff,#cdd3e0); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--muted); font-size: .95rem; font-weight: 500; transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background: var(--grad); transition: width .25s var(--ease); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.lang-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Sora'; font-weight: 600; font-size: .8rem; letter-spacing: .06em;
  padding: 6px 13px; border-radius: 8px;
  background: transparent; color: var(--muted); border: 1px solid var(--border-2);
  cursor: pointer; transition: color .2s, border-color .2s, background .2s;
}
.lang-toggle:hover { color: var(--text); border-color: var(--accent); background: rgba(124,92,255,.08); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px; padding: 0 24px;
  max-height: 0; overflow: hidden; transition: max-height .35s var(--ease), padding .35s var(--ease);
  background: rgba(10,12,18,.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { max-height: 420px; padding: 12px 24px 22px; }
.mobile-menu a { padding: 12px 4px; color: var(--muted); font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-menu a.btn { margin-top: 12px; border: 0; justify-content: center; }
.lang-toggle-mobile { margin-top: 8px; align-self: flex-start; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Sora'; font-weight: 600; font-size: .98rem;
  padding: 13px 24px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s;
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: .9rem; }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--grad); color: #0a0c12; box-shadow: 0 12px 30px -10px rgba(124,92,255,.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(124,92,255,.75); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--text); border-color: var(--border-2); }
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: var(--accent); transform: translateY(-2px); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 70px 0 60px; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 500; color: var(--muted);
  background: var(--grad-soft); border: 1px solid var(--border-2);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 24px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-3); box-shadow: 0 0 0 4px rgba(94,234,212,.18); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 800; margin-bottom: 22px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.lead { font-size: 1.18rem; color: var(--muted); max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-note { font-size: .9rem; color: var(--muted-2); }

/* hero visual */
.hero-visual { display: flex; justify-content: center; }
.flow-card {
  width: 100%; max-width: 380px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow); padding: 18px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-12px) } }
.flow-card-head { display: flex; align-items: center; gap: 9px; font-size: .82rem; color: var(--muted); font-family: 'Sora'; letter-spacing: .01em; margin-bottom: 8px; }
.led { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: blink 1.6s infinite; }
.flow-svg { width: 100%; height: auto; }
.flow-lines { stroke: #313850; }
.pulse-dot { fill: var(--accent); filter: drop-shadow(0 0 5px var(--accent)); }
.pulse-dot.out { fill: var(--accent-2); filter: drop-shadow(0 0 5px var(--accent-2)); }
.flow-nodes rect { fill: var(--bg-2); stroke: var(--border-2); stroke-width: 1.5; }
.flow-nodes .hub rect { fill: rgba(124,92,255,.14); stroke: var(--accent); }
.flow-nodes text { font-size: 15px; text-anchor: middle; dominant-baseline: middle; }
.flow-nodes .hub text { font-size: 17px; }
.flow-card-foot { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: var(--muted-2); margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--border); }
.flow-card-foot .ms { color: var(--accent-3); font-family: 'Sora'; }

/* trust strip */
.trust {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-top: 64px; padding: 22px 28px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 14px; }
.trust-item strong { font-family: 'Sora'; font-size: 1.25rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.trust-item span { font-size: .85rem; color: var(--muted); }
.trust-divider { width: 1px; height: 38px; background: var(--border); }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.kicker {
  display: inline-block; font-family: 'Sora'; font-weight: 600; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .14em; color: var(--accent-2); margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 18px; }
.section-sub { font-size: 1.12rem; color: var(--muted); }

/* ============================================================
   COMPARE (before/after)
   ============================================================ */
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; max-width: 980px; margin: 0 auto; }
.compare-col { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.compare-col.after { border-color: rgba(124,92,255,.35); box-shadow: var(--shadow-glow); }
.compare-col h3 { font-size: 1.2rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.compare-col ul li { padding: 10px 0 10px 28px; position: relative; color: var(--muted); border-bottom: 1px solid var(--border); font-size: .98rem; }
.compare-col ul li:last-child { border-bottom: 0; }
.before ul li::before { content: "✕"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.after ul li { color: var(--text); }
.after ul li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.tag { font-family: 'Sora'; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; padding: 4px 10px; border-radius: 100px; }
.tag-red { background: rgba(255,107,107,.14); color: var(--red); }
.tag-green { background: rgba(52,211,153,.14); color: var(--green); }
.compare-arrow { color: var(--accent); }
.compare-reveal-labels,
.compare-reveal-handle { display: none; }

/* ============================================================
   CARDS (diensten)
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.card::before { content:""; position:absolute; inset:0; background: var(--grad-soft); opacity:0; transition: opacity .3s; }
.card:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; }
.card-icon { font-size: 1.9rem; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 14px; background: var(--grad-soft); border: 1px solid var(--border-2); margin-bottom: 20px; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }

/* ============================================================
   STEPS (werkwijze)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; margin-bottom: 56px; list-style: none; padding-left: 0; }
.step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 26px; position: relative; transition: transform .25s var(--ease), border-color .25s;
}
.step:hover { transform: translateY(-6px); border-color: var(--accent); }
.step-num { font-family: 'Sora'; font-weight: 800; font-size: 2.4rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: 14px; }
.step h3 { font-size: 1.22rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .96rem; }

.deliverables { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; max-width: 920px; margin: 0 auto; }
.deliverables h3 { font-size: 1.35rem; margin-bottom: 24px; text-align: center; }
.deliverables-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
.deliverables-list li { padding-left: 30px; position: relative; color: var(--muted); }
.deliverables-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; background: var(--grad); color: #0a0c12; border-radius: 50%; display: grid; place-items: center; font-size: .7rem; font-weight: 800; }

/* ============================================================
   SECTORS
   ============================================================ */
.sectors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.sector {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 26px; position: relative; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.sector:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: var(--shadow); }
.sector.featured { border-color: rgba(124,92,255,.4); box-shadow: var(--shadow-glow); }
.sector-badge { position: absolute; top: 16px; right: 16px; font-family: 'Sora'; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; background: var(--grad); color: #0a0c12; padding: 4px 10px; border-radius: 100px; font-weight: 700; }
.sector-icon { font-size: 2.2rem; margin-bottom: 16px; }
.sector h3 { font-size: 1.2rem; margin-bottom: 10px; }
.sector p { color: var(--muted); font-size: .94rem; }
.sector-more { background: var(--grad-soft); border-style: dashed; border-color: var(--border-2); }

/* ============================================================
   WHY
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why { padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: border-color .25s, transform .25s var(--ease); }
.why:hover { border-color: var(--accent); transform: translateY(-4px); }
.why-icon { font-size: 1.8rem; margin-bottom: 16px; }
.why h3 { font-size: 1.12rem; margin-bottom: 10px; }
.why p { color: var(--muted); font-size: .95rem; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-carousel { position: relative; }
.pricing-carousel-controls { display: none; }
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px 30px; position: relative; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: var(--shadow); }
.price-card.featured { border-color: rgba(124,92,255,.45); box-shadow: var(--shadow-glow); transform: scale(1.03); }
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-family: 'Sora'; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; background: var(--grad); color: #0a0c12; padding: 6px 16px; border-radius: 100px; white-space: nowrap; box-shadow: 0 8px 20px -6px rgba(124,92,255,.6); }
.price-head { padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--border); }
.price-head h3 { font-size: 1.3rem; margin-bottom: 12px; }
.price-tag { font-size: 1rem; color: var(--muted); margin-bottom: 12px; }
.price-tag strong { font-family: 'Sora'; font-size: 2rem; font-weight: 800; color: var(--text); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.price-desc { color: var(--muted); font-size: .95rem; }
.price-feats { flex: 1; margin-bottom: 26px; }
.price-feats li { padding: 9px 0 9px 28px; position: relative; color: var(--muted); font-size: .95rem; border-bottom: 1px solid var(--border); }
.price-feats li:last-child { border-bottom: 0; }
.price-feats li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-3); font-weight: 700; }
.price-note { text-align: center; color: var(--muted); max-width: 640px; margin: 40px auto 0; font-size: .98rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 4px 24px; transition: border-color .25s, background .25s;
}
.faq details[open] { border-color: var(--border-2); background: var(--surface-2); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-family: 'Sora'; font-weight: 600; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--accent); transition: transform .25s var(--ease); flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 0 20px; font-size: 1rem; }

/* ============================================================
   CTA / INTAKE
   ============================================================ */
.section-cta { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.cta-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.cta-copy h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 18px; }
.cta-points { display: flex; flex-direction: column; gap: 8px; margin: 22px 0 32px; }
.cta-points li { color: var(--text); font-weight: 500; }

.calendly-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.calendly-block h3 { font-size: 1.2rem; margin: 0; }
.booking-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.booking-chip { background: rgba(124,92,255,.12); border: 1px solid rgba(124,92,255,.3); color: var(--accent); font-size: .8rem; font-weight: 600; padding: 4px 12px; border-radius: 999px; }
.booking-desc { color: var(--text-muted); font-size: .95rem; margin: 0; line-height: 1.55; }

/* form */
.cta-form-wrap { position: sticky; top: 100px; }
.intake-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.intake-form h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form-intro { color: var(--muted); font-size: .95rem; margin-bottom: 24px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: .85rem; font-weight: 500; color: var(--muted); font-family: 'Sora'; }
.field input, .field select, .field textarea {
  background: var(--bg-2); border: 1px solid var(--border-2); border-radius: 10px;
  padding: 12px 14px; color: var(--text); font-family: inherit; font-size: .97rem; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(124,92,255,.18); }
.field input.invalid, .field textarea.invalid { border-color: var(--red); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.intake-form .btn { margin-top: 8px; }
.form-status { margin-top: 14px; font-size: .95rem; font-weight: 500; text-align: center; min-height: 1.2em; }
.form-status.ok { color: var(--green); }
.form-status.err { color: var(--red); }
.form-fineprint { margin-top: 14px; font-size: .8rem; color: var(--muted-2); text-align: center; }

/* ---- form success overlay ---- */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 24px;
  text-align: center;
}
.form-success.visible {
  display: flex;
  animation: fadeInUp .45s ease both;
}
.form-success__title { font-size: 1.25rem; font-weight: 700; color: var(--text); margin: 0; }
.form-success__sub   { font-size: .95rem; color: var(--muted); margin: 0; }

.checkmark { width: 72px; height: 72px; }
.checkmark__circle {
  stroke: var(--green);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: strokeDraw .6s cubic-bezier(.65,0,.45,1) .15s forwards;
}
.checkmark__check {
  stroke: var(--green);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: strokeDraw .4s cubic-bezier(.65,0,.45,1) .65s forwards;
}
@keyframes strokeDraw { to { stroke-dashoffset: 0; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); padding: 64px 0 32px; background: var(--bg-2); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-tagline { font-family: 'Sora'; font-weight: 600; color: var(--accent-3); margin: 14px 0 6px; }
.footer-desc { color: var(--muted); font-size: .95rem; max-width: 320px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); padding: 6px 0; font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: .85rem; flex-wrap: wrap; gap: 10px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 4px 20px; padding-top: 16px; }
.footer-legal a { font-size: .75rem; color: var(--muted-2); opacity: .5; transition: opacity .2s; text-decoration: none; }
.footer-legal a:hover { opacity: .8; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* --- global: balanced headings (even line breaks) ----------- */
h1, h2, h3 {
  text-wrap: balance;
}

/* --- global: safe area insets (notch / home indicator) ------ */
body {
  padding-bottom: env(safe-area-inset-bottom);
}
.nav {
  padding-top: max(11px, env(safe-area-inset-top));
}

/* ============================================================
   1023px — tablet landscape + small desktops
   ============================================================ */
@media (max-width: 1023px) {
  .container { padding: 0 32px; }
  .section   { padding: 88px 0; }

  /* hero: 2-col comfortable at tablet landscape */
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* all card-style grids: 2×2 on tablet */
  .cards    { grid-template-columns: repeat(2, 1fr); }
  .steps    { grid-template-columns: repeat(2, 1fr); }
  .sectors  { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* pricing: 2-col on tablet (~460px per card — comfortable) */
  .pricing { grid-template-columns: repeat(2, 1fr); max-width: none; }
  /* featured card: no scale distortion in 2-col layout */
  .price-card.featured         { transform: none; }
  .price-card.featured:hover   { transform: translateY(-6px); }

  /* deliverables: single-column list */
  .deliverables-list { grid-template-columns: 1fr; }

  /* CTA / intake: stack vertically, form above calendly */
  .cta-wrap      { grid-template-columns: 1fr; gap: 36px; }
  .cta-form-wrap { position: static; order: 1; }
}

/* ============================================================
   900px — hamburger nav threshold
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }   /* CTA button lives in mobile menu */
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
  }
  .mobile-menu { display: flex; }
}

/* ============================================================
   767px — mobile
   ============================================================ */
@media (max-width: 767px) {
  /* lang toggle moves into the mobile menu */
  .nav-actions { display: none; }

  .section      { padding: 68px 0; }
  .section-head { margin-bottom: 44px; }

  .hero        { padding: 52px 0 44px; }
  .hero-inner  { grid-template-columns: 1fr; gap: 28px; }
  /* flow card visual above copy on mobile */
  .hero-visual { order: -1; }
  .flow-card   { max-width: 340px; margin: 0 auto; }

  /* compare: mobile before/after reveal */
  .compare[data-compare-reveal] {
    --compare-split: 0%;
    position: relative;
    display: block;
    max-width: 480px;
    min-height: var(--compare-reveal-height, 370px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
  }

  .compare[data-compare-reveal] .compare-arrow {
    display: none;
  }

  .compare[data-compare-reveal] .compare-col {
    width: 100%;
    min-height: var(--compare-reveal-height, 370px);
    padding: 32px 24px 28px;
  }

  .compare[data-compare-reveal] .compare-col h3 .tag {
    display: none;
  }

  .compare[data-compare-reveal] .compare-col.before {
    clip-path: inset(0 0 0 var(--compare-split));
  }

  .compare[data-compare-reveal] .compare-col.after {
    position: absolute;
    inset: 0;
    z-index: 2;
    clip-path: inset(0 calc(100% - var(--compare-split)) 0 0);
  }

  .compare[data-compare-reveal].is-hinting .compare-col.before,
  .compare[data-compare-reveal].is-hinting .compare-col.after {
    transition: clip-path .42s cubic-bezier(.22,1,.36,1);
  }

  .compare-reveal-labels {
    position: absolute;
    z-index: 5;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }

  .compare-reveal-labels .tag {
    transition: opacity .18s var(--ease), transform .18s var(--ease);
  }

  .compare[data-compare-reveal].is-near-start .compare-reveal-labels .tag-green,
  .compare[data-compare-reveal].is-near-end .compare-reveal-labels .tag-red {
    opacity: 0;
    transform: translateY(-4px);
  }

  .compare-reveal-handle {
    position: absolute;
    z-index: 6;
    top: 0;
    bottom: 0;
    left: var(--compare-split);
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    cursor: ew-resize;
    touch-action: none;
  }

  .compare[data-compare-reveal].is-hinting .compare-reveal-handle {
    transition: left .42s cubic-bezier(.22,1,.36,1);
  }

  .compare-reveal-handle:focus-visible {
    outline: none;
  }

  .compare-reveal-handle:focus-visible .compare-reveal-grip {
    box-shadow: 0 0 0 4px rgba(34,211,238,.22), 0 8px 22px rgba(124,92,255,.45);
  }

  .compare-reveal-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--accent-2));
    box-shadow: 0 0 18px rgba(124,92,255,.55);
  }

  .compare-reveal-grip {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #0a0c12;
    background: var(--grad);
    box-shadow: 0 8px 22px rgba(124,92,255,.45);
  }

  /* trust strip: 2×2 grid */
  .trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
    text-align: center;
  }
  .trust-divider { display: none; }
  .trust-item    { flex: none; padding: 8px 4px; }

  /* pricing: 1-col (2-col too cramped below 768px) */
  .pricing {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .price-card.featured         { transform: none; }
  .price-card.featured:hover   { transform: translateY(-6px); }

  /* FAQ: generous tap targets */
  .faq summary { padding: 18px 0; font-size: 1rem; }

  /* mobile menu links: ≥44px tap area */
  .mobile-menu a { padding: 16px 8px; font-size: 1rem; }

  /* calendly: shorter on mobile */
  .calendly-inline-widget { height: 560px !important; min-width: auto !important; }
}

/* ============================================================
   640px — mid mobile
   ============================================================ */
@media (max-width: 640px) {
  .footer-inner  { grid-template-columns: 1fr; }
  .footer-cols   { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* safe area inset for footer on notch devices */
  .footer        { padding-bottom: max(32px, env(safe-area-inset-bottom)); }
}

/* ============================================================
   520px — small mobile
   ============================================================ */
@media (max-width: 520px) {
  body { font-size: 16px; }

  .section      { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }

  /* all card/step/sector/why grids: 1-col */
  .cards, .steps, .sectors, .why-grid { grid-template-columns: 1fr; }

  /* form fields: 1-col */
  .field-row { grid-template-columns: 1fr; }

  /* hero headings: fluid with lower floor */
  .hero h1      { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { width: 100%; }

  /* tighter padding on panels */
  .intake-form  { padding: 22px; }
  .deliverables { padding: 24px; }

  /* lift max-width constraint on pricing */
  .pricing   { max-width: none; }
  .flow-card { max-width: 100%; }
}

/* ============================================================
   480px — smaller mobile
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section   { padding: 52px 0; }
  .hero      { padding: 40px 0 36px; }

  /* scale orbs ~35% smaller — reduce visual noise on small screens */
  .orb-1 { width: 240px; height: 240px; }
  .orb-2 { width: 200px; height: 200px; }
  .orb-3 { width: 180px; height: 180px; }

  /* calendly: tighter on small phones */
  .calendly-block              { overflow: hidden; }
  .calendly-inline-widget      { height: 500px !important; }

  /* ensure full mobile menu can open */
  .mobile-menu.open { max-height: 480px; }
}

/* ============================================================
   360px — tiny (Samsung Galaxy S-series and similar)
   ============================================================ */
@media (max-width: 360px) {
  .container { padding: 0 14px; }

  .eyebrow { flex-wrap: wrap; text-align: center; justify-content: center; }
  .hero h1  { font-size: 1.9rem; letter-spacing: -0.01em; }

  /* trust: 1-col on very narrow screens */
  .trust {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .trust-item { padding: 8px 0; }

  /* calendly: minimum usable height */
  .calendly-inline-widget { height: 480px !important; }
}

/* ============================================================
   touch: disable hover effects, add press feedback
   ============================================================ */
@media (hover: none) {
  .card:hover              { transform: none; border-color: var(--border); box-shadow: none; }
  .card:hover::before      { opacity: 0; }
  .step:hover              { transform: none; border-color: var(--border); }
  .sector:hover            { transform: none; border-color: var(--border); box-shadow: none; }
  /* preserve featured-sector visual distinction on touch */
  .sector.featured         { border-color: rgba(124,92,255,.4); box-shadow: var(--shadow-glow); }
  .sector.featured:hover   { border-color: rgba(124,92,255,.4); box-shadow: var(--shadow-glow); transform: none; }
  .why:hover               { transform: none; border-color: var(--border); }
  .price-card:hover        { transform: none; border-color: var(--border); box-shadow: none; }
  /* preserve featured-card visual distinction on touch */
  .price-card.featured     { border-color: rgba(124,92,255,.45); box-shadow: var(--shadow-glow); }
  .price-card.featured:hover { transform: none; }
  .btn-primary:hover       { transform: none; box-shadow: 0 12px 30px -10px rgba(124,92,255,.6); }
  .btn-ghost:hover         { transform: none; border-color: var(--border-2); background: rgba(255,255,255,.04); }

  /* press feedback for touch */
  .btn-primary:active  { transform: scale(0.97); opacity: .92; transition-duration: .08s; }
  .btn-ghost:active    { transform: scale(0.97); background: rgba(255,255,255,.08); transition-duration: .08s; }
  .card:active         { transform: translateY(-3px); border-color: var(--border-2); }
  .sector:active       { transform: translateY(-3px); border-color: var(--border-2); }
  .why:active          { transform: translateY(-3px); border-color: var(--accent); }
  .step:active         { transform: translateY(-3px); border-color: var(--accent); }
  .mobile-menu a:active { color: var(--text); background: rgba(124,92,255,.08); border-radius: 6px; }
  .faq summary:active  { color: var(--accent-2); }
}

/* ============================================================
   coarse pointer: larger touch targets
   ============================================================ */
@media (pointer: coarse) {
  .field input, .field select, .field textarea { min-height: 48px; }
  .faq summary  { min-height: 52px; }
  .lang-toggle  { min-height: 44px; padding: 10px 14px; }
}

/* --- 44px minimum for form inputs (all devices) ------------- */
.field input, .field select {
  min-height: 44px;
}

/* ============================================================
   reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   ENHANCEMENTS — 2026-06-26
   1. Hero CTA subtle pulse
   2. Problem before/after reveal (mobile)
   3. Service cards collapsible (mobile)
   4. Werkwijze vertical timeline (mobile)
   5. Sectoren compact (mobile)
   6. Waarom compact 2×2 (mobile)
   7. Pricing carousel (mobile + tablet)
   8. Sticky bottom CTA bar (mobile + tablet)
   ============================================================ */

/* ---- 1. Hero CTA pulse ---- */
@keyframes hero-cta-pulse {
  0%,100% { box-shadow: 0 12px 30px -10px rgba(124,92,255,.6); }
  50%      { box-shadow: 0 14px 42px -8px rgba(124,92,255,.85), 0 0 0 5px rgba(124,92,255,.12); }
}
.hero-actions .btn-primary {
  animation: hero-cta-pulse 3.2s ease-in-out infinite;
}
.hero-actions .btn-primary:hover,
.hero-actions .btn-primary:focus-visible {
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero-actions .btn-primary { animation: none; }
}

/* ---- 3. Service cards: collapsible on mobile ---- */
@media (max-width: 767px) {
  .card { padding: 18px 20px; cursor: pointer; }
  .card-icon {
    width: 44px; height: 44px; font-size: 1.5rem;
    border-radius: 10px; margin-bottom: 12px;
  }
  .card h3 {
    font-size: 1.05rem; margin-bottom: 0;
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px;
  }
  .card h3::after {
    content: '+';
    font-size: 1.35rem; font-weight: 400; color: var(--accent);
    flex-shrink: 0;
    transition: transform .25s var(--ease);
  }
  .card.is-open h3::after { transform: rotate(45deg); }
  .card p {
    overflow: hidden;
    max-height: 0; opacity: 0; margin-top: 0;
    transition: max-height .32s var(--ease), opacity .25s, margin-top .25s;
    font-size: .94rem;
  }
  .card.is-open p {
    max-height: 220px; opacity: 1; margin-top: 10px;
  }
}

/* ---- 4. Werkwijze: vertical timeline on mobile ---- */
@media (max-width: 767px) {
  .steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 52px;
    position: relative;
    margin-bottom: 36px;
  }
  /* connecting line */
  .steps::before {
    content: '';
    position: absolute;
    left: 19px; top: 24px; bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent) 0%, rgba(34,211,238,.25) 100%);
  }
  .step {
    background: transparent;
    border: none; border-radius: 0;
    padding: 0 0 24px 0;
    position: relative;
  }
  .step:last-child { padding-bottom: 0; }
  .step:hover { transform: none; border-color: transparent; }

  /* circle indicator on the line */
  .step::before {
    content: '';
    position: absolute;
    left: -39px; top: 5px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--accent); border: 2px solid var(--bg);
    box-shadow: 0 0 0 4px rgba(124,92,255,.22);
  }
  .step:last-child::before { background: var(--accent-2); box-shadow: 0 0 0 4px rgba(34,211,238,.2); }

  .step-num { font-size: 1.6rem; margin-bottom: 4px; display: block; }
  .step h3  { font-size: 1.08rem; margin-bottom: 5px; }
  .step p   { font-size: .91rem; }
}

/* ---- 5. Sectoren: compact on mobile ---- */
@media (max-width: 767px) {
  .sector { padding: 18px 18px; }
  .sector-icon  { font-size: 1.65rem; margin-bottom: 8px; }
  .sector h3    { font-size: 1.05rem; margin-bottom: 5px; }
  .sector p     { font-size: .87rem; }
  .sector-badge { font-size: .6rem; top: 12px; right: 12px; padding: 3px 8px; }
}

/* ---- 6. Waarom Manuless: compact 2×2 on mobile ---- */
@media (max-width: 767px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why      { padding: 16px 14px; }
  .why-icon { font-size: 1.45rem; margin-bottom: 8px; }
  .why h3   { font-size: .95rem; margin-bottom: 5px; }
  .why p    { font-size: .83rem; }
}
/* reset 520px 1-col override for why-grid */
@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ---- 7. Pricing carousel: center snap on mobile + tablet ---- */
@media (max-width: 1023px) {
  .pricing-carousel {
    --pricing-card-width: calc((100vw - 86px) / 2);
    --pricing-edge-offset: 32px;
  }

  .pricing-carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin: -10px 0 12px;
  }

  .pricing-nav {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    background: rgba(255,255,255,.045);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: transform .14s var(--ease), border-color .2s, background .2s, opacity .2s;
  }

  .pricing-nav:hover,
  .pricing-nav:focus-visible {
    background: rgba(124,92,255,.12);
    border-color: var(--border-2);
    outline: none;
  }

  .pricing-nav:active {
    transform: scale(.94);
  }

  .pricing-nav:disabled {
    opacity: .38;
    cursor: default;
    pointer-events: none;
  }

  .pricing {
    display: flex;
    grid-template-columns: none;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: visible;
    max-width: none;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    margin-left: -32px;
    margin-right: -32px;
    padding: 8px calc(50% - (var(--pricing-card-width) / 2) + var(--pricing-edge-offset)) 24px;
    cursor: grab;
  }

  .pricing:active {
    cursor: grabbing;
  }

  .pricing:focus-visible {
    outline: 2px solid rgba(34,211,238,.75);
    outline-offset: 6px;
  }

  .pricing::-webkit-scrollbar {
    display: none;
  }

  .pricing > article {
    flex: 0 0 var(--pricing-card-width);
    min-width: var(--pricing-card-width);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}

@media (max-width: 767px) {
  .pricing-carousel {
    --pricing-card-width: min(480px, calc(100vw - 64px));
    --pricing-edge-offset: 24px;
  }

  .pricing-carousel-controls {
    justify-content: center;
    margin-top: -12px;
  }

  .pricing {
    gap: 12px;
    margin-left: -24px;
    margin-right: -24px;
  }
}

@media (max-width: 480px) {
  .pricing-carousel {
    --pricing-card-width: calc(100vw - 36px);
    --pricing-edge-offset: 18px;
  }

  .pricing { margin-left: -18px; margin-right: -18px; }
}

@media (max-width: 360px) {
  .pricing-carousel {
    --pricing-card-width: calc(100vw - 28px);
    --pricing-edge-offset: 14px;
  }

  .pricing {
    margin-left: -14px;
    margin-right: -14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing {
    scroll-behavior: auto;
  }

  .pricing-nav {
    transition: none;
  }
}

/* ---- 8. Sticky bottom CTA bar ---- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 45;
  display: flex; justify-content: center;
  padding: 12px 20px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(10,12,18,.88);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .32s cubic-bezier(.22,.61,.36,1), opacity .28s;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad); color: #0a0c12;
  font-family: 'Sora'; font-weight: 700; font-size: .92rem;
  padding: 11px 24px; border-radius: 100px;
  box-shadow: 0 6px 20px -6px rgba(124,92,255,.65);
  transition: transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.sticky-cta-link:active { transform: scale(.97); }

/* only show sticky bar on mobile/tablet */
@media (min-width: 1024px) {
  .sticky-cta { display: none !important; }
}
