/* ===================================================
   RQ Data Solutions — style.css
   Design: sharp editorial, dark professional
   Fonts: Syne (headings) + DM Sans (body)
   =================================================== */

:root {
  --bg: #0a0a0f;
  --bg2: #0f0f17;
  --bg3: #13131e;
  --surface: #16161f;
  --surface2: #1c1c28;
  --border: rgba(255,255,255,.07);
  --border2: rgba(255,255,255,.12);

  --text: #f0f0f5;
  --text2: #9191a8;
  --text3: #5c5c72;

  --accent: #6e56ff;
  --accent2: #8b73ff;
  --accent-light: rgba(110,86,255,.15);
  --accent-glow: rgba(110,86,255,.25);

  --green: #22c55e;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.5);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.2rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent2);
  border-color: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  border-color: var(--border2);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent2);
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--text2);
}
.btn-ghost:hover { color: var(--text); }

.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* ── HEADER / NAV ── */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

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

.logo-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent2);
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -.01em;
}


.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.main-nav a {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: .88rem;
  color: var(--text2);
  transition: all .15s;
}
.main-nav a:hover {
  color: var(--text);
  background: var(--surface);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: 1px solid var(--border2);
  border-radius: 8px;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  transition: all .2s;
}

.mobile-nav {
  display: none;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.mobile-nav a {
  display: block;
  padding: 10px 0;
  color: var(--text2);
  font-size: .95rem;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-actions {
  display: flex;
  gap: 10px;
  padding-top: 14px;
  flex-wrap: wrap;
}
.mobile-nav.open { display: block; }

/* ── HERO ── */
.hero {
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(110,86,255,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--accent2);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero-title {
  margin-bottom: 20px;
  color: var(--text);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text2);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-promise {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--text2);
  max-width: 520px;
  padding: 14px 18px;
  background: rgba(34,197,94,.06);
  border: 1px solid rgba(34,197,94,.15);
  border-radius: 12px;
  margin-bottom: 60px;
}
.hero-promise svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.hero-promise strong { color: var(--text); }

.hero-visual {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.stats-row {
  display: flex;
  align-items: center;
  padding: 28px 0;
  gap: 0;
}

.stat-item {
  flex: 1;
  padding: 0 32px;
  text-align: center;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: .8rem;
  color: var(--text3);
}

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

/* HERO LAYOUT MET LOGO NAAST DE TEKST */
.hero-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  flex: 1 1 60%;
  max-width: 700px;
}

.hero-logo-side {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
}

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-alt { background: var(--bg2); }

.section-header {
  margin-bottom: 56px;
  max-width: 600px;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 12px;
}

.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text2); font-size: 1rem; line-height: 1.7; }

/* ── PROBLEMS GRID ── */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color .2s;
}
.problem-card:hover { border-color: var(--border2); }

.problem-icon { font-size: 1.8rem; margin-bottom: 14px; }
.problem-card h3 { font-size: 1rem; margin-bottom: 8px; }
.problem-card p { font-size: .88rem; color: var(--text2); line-height: 1.6; }

/* ── SOLUTION GRID ── */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.solution-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color .2s;
  position: relative;
  overflow: hidden;
}
.solution-card:hover { border-color: rgba(110,86,255,.4); }
.solution-card:hover .solution-num { color: var(--accent); }

.solution-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--border2);
  line-height: 1;
  margin-bottom: 16px;
  transition: color .2s;
}

.solution-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.solution-card > p { font-size: .9rem; color: var(--text2); margin-bottom: 20px; line-height: 1.6; }

.check-list { display: flex; flex-direction: column; gap: 8px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .85rem;
  color: var(--text2);
}
.check-list li::before {
  content: '✓';
  color: var(--accent2);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── AUDIENCE GRID ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color .2s;
}
.audience-card:hover { border-color: var(--border2); }

.audience-icon { font-size: 1.6rem; margin-bottom: 12px; }
.audience-card h3 { font-size: 1rem; margin-bottom: 8px; }
.audience-card p { font-size: .85rem; color: var(--text2); margin-bottom: 14px; }

.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags span {
  font-size: .72rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text3);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.cta-banner strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.1rem; margin-bottom: 4px; }
.cta-banner p { font-size: .88rem; color: var(--text2); margin: 0; }

/* ── STEPS ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 720px;
}

.steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--border) 100%);
}

.step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.step:last-child { border-bottom: none; }

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--accent2);
  flex-shrink: 0;
  z-index: 1;
}

.step-content h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step-content p { font-size: .9rem; color: var(--text2); line-height: 1.6; }

/* ── PRICING PREVIEW ── */
.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-preview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s;
}
.price-preview-card.featured {
  border-color: rgba(110,86,255,.5);
  background: linear-gradient(160deg, rgba(110,86,255,.06) 0%, var(--surface) 100%);
}

.pp-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent2);
}

.price-preview-card h3 { font-size: 1.3rem; margin: 0; }
.pp-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.price-preview-card p {
  font-size: .88rem;
  color: var(--text2);
  flex: 1;
  line-height: 1.6;
}

.pricing-link {
  text-align: center;
  margin-top: 32px;
}
.pricing-link a {
  color: var(--accent2);
  font-size: .9rem;
}
.pricing-link a:hover { text-decoration: underline; }

/* ── FAQ ── */
.faq-list { max-width: 720px; display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(110,86,255,.35); }

.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--text3);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent2);
}

.faq-item p {
  padding: 0 22px 18px;
  font-size: .9rem;
  color: var(--text2);
  line-height: 1.7;
}

/* ── CTA SECTION ── */
.cta-section { background: var(--bg2); }

.cta-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-block h2 { margin-bottom: 14px; }
.cta-block > p { color: var(--text2); margin-bottom: 32px; line-height: 1.7; }

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-meta { font-size: .8rem; color: var(--text3); }

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p {
  font-size: .85rem;
  color: var(--text3);
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 8px;
}
.footer-kvk { font-size: .78rem; color: var(--text3); }

.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: var(--text3);
  padding: 4px 0;
  transition: color .15s;
}
.footer-col a:hover { color: var(--text2); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text3);
}
.footer-bottom a { color: var(--text3); }
.footer-bottom a:hover { color: var(--text2); }

/* ── FORM STYLES ── */
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field label {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text2);
  margin-bottom: 6px;
  letter-spacing: .02em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  color: var(--text);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text3); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(110,86,255,.15);
}
.field select { cursor: pointer; }
.field textarea { resize: vertical; min-height: 120px; }

.field-note {
  font-size: .78rem;
  color: var(--text3);
  margin-top: 5px;
}

/* Alert */
.alert {
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .88rem;
  line-height: 1.5;
  margin-top: 14px;
  display: none;
}
.alert.success {
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
  color: #86efac;
  display: block;
}
.alert.error {
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.2);
  color: #fca5a5;
  display: block;
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
}
.page-header .section-label { margin-bottom: 10px; }
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.page-header p { color: var(--text2); font-size: 1.05rem; max-width: 560px; line-height: 1.7; }

/* ── PRICING PAGE ── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.pricing-card.popular {
  border-color: rgba(110,86,255,.5);
}
.pricing-card.popular::before {
  content: 'Meest gekozen';
  position: absolute;
  top: 0; right: 0;
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-bottom-left-radius: 10px;
}

.pricing-card-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 8px;
}
.pricing-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.pricing-card .price {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin: 16px 0;
  line-height: 1;
}
.pricing-card .price small {
  font-size: .85rem;
  font-weight: 400;
  color: var(--text3);
}
.pricing-card .price-desc {
  font-size: .85rem;
  color: var(--text2);
  margin-bottom: 24px;
  line-height: 1.6;
}
.pricing-card .check-list { margin-bottom: 28px; flex: 1; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* Support block */
.support-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.support-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.support-card p { font-size: .9rem; color: var(--text2); margin-bottom: 16px; line-height: 1.6; }
.support-card .price { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; }
.support-card small { font-size: .82rem; color: var(--text3); }
.support-card .check-list { margin-bottom: 24px; }

/* ── INTAKE / OFFERTE FORM ── */
.form-page {
  padding: 48px 0 96px;
}

.form-page-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.form-sidebar h2 { font-size: 1.8rem; margin-bottom: 14px; }
.form-sidebar > p { color: var(--text2); font-size: .95rem; line-height: 1.7; margin-bottom: 32px; }

.sidebar-perks { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.sidebar-perk {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.perk-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-light);
  border: 1px solid rgba(110,86,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.sidebar-perk strong { display: block; font-size: .9rem; margin-bottom: 2px; }
.sidebar-perk p { font-size: .83rem; color: var(--text2); margin: 0; }

.sidebar-contact { font-size: .85rem; color: var(--text3); }
.sidebar-contact a { color: var(--accent2); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.form-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.form-card > p {
  font-size: .85rem;
  color: var(--text2);
  margin-bottom: 28px;
}

/* Multi-step form */
.form-step { display: none; }
.form-step.active { display: block; }

.step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
}
.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  color: var(--text3);
  transition: all .3s;
  flex-shrink: 0;
}
.step-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.step-dot.done {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent2);
}
.step-line {
  flex: 1;
  height: 1px;
  background: var(--border2);
}
.step-line.done { background: var(--accent); }

.step-label {
  font-size: .78rem;
  color: var(--text3);
  margin-bottom: 20px;
  font-style: italic;
}

.form-nav {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: flex-end;
}

/* ── CASES PAGE ── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color .2s;
}
.case-card:hover { border-color: rgba(110,86,255,.4); }

.case-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 14px;
}

.case-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.case-card p { font-size: .88rem; color: var(--text2); line-height: 1.7; margin-bottom: 20px; }

.case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.case-result {
  background: var(--surface2);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}
.case-result strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  color: var(--accent2);
  margin-bottom: 3px;
}
.case-result span { font-size: .72rem; color: var(--text3); }

/* ── TEMPLATES PAGE ── */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.template-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.template-card .price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.template-card .price-badge.free { color: var(--green); border-color: rgba(34,197,94,.25); background: rgba(34,197,94,.06); }

.template-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.template-card p { font-size: .88rem; color: var(--text2); margin-bottom: 16px; line-height: 1.6; }
.template-card .check-list { margin-bottom: 24px; }
.template-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── RADIO / SELECT CUSTOM ── */
.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .15s;
}
.radio-option:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-light);
}
.radio-option input { accent-color: var(--accent); width: 16px; height: 16px; }
.radio-option span { font-size: .9rem; }

/* ── AFBEELDINGEN ── */
.section-media {
  margin-top: 28px;
}

.section-image {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 18px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}

/* Hero afbeelding */
.hero-visual .section-image {
  max-width: 400px;
  margin-top: 32px;
  margin-bottom: 8px;
}

/* Kleinere afbeelding in normale secties */
.section-media.small .section-image {
  max-width: 650px;
}

/* Links uitlijnen */
.section-media.left .section-image {
  margin-left: 0;
  margin-right: auto;
}

/* Rechts uitlijnen */
.section-media.right .section-image {
  margin-left: auto;
  margin-right: 0;
}

/* Extra grote afbeelding */
.section-media.large .section-image {
  max-width: 1100px;
}

/* Vaste hoogte als je dat wilt */
.section-image.fixed-height {
  height: 420px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-preview-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .form-page-inner { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .templates-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .support-block { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { flex: 1 1 40%; }
  .stat-divider { display: none; }

  .hero-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-logo-side {
    flex: none;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .hero-logo-img {
    max-width: 180px;
  }

  .section-image,
  .hero-visual .section-image,
  .section-media.small .section-image,
  .section-media.large .section-image {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .main-nav, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .problems-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .case-results { grid-template-columns: repeat(2, 1fr); }

  .section-image.fixed-height {
    height: 260px;
  }
}
.lang-toggle {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border2);
  cursor: pointer;
  transition: all .2s ease;
  color: var(--text);
}

.lang-btn:hover {
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

.lang-icon {
  font-size: 14px;
}

.lang-text {
  font-size: 0.8rem;
  font-weight: 500;
}

.lang-arrow {
  font-size: 10px;
  color: var(--text3);
}

.lang-menu {
  position: absolute;
  top: 110%;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 10px;
  overflow: hidden;
  display: none;
  min-width: 80px;
  z-index: 200;
}

.lang-menu.open {
  display: block;
}

.lang-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text2);
}

.lang-menu a:hover {
  background: var(--bg2);
  color: var(--accent2);
}

/* Dropdown */
.lang-menu {
  position: absolute;
  top: 110%;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 10px;
  overflow: hidden;
  display: none;
  min-width: 80px;
}

.lang-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text2);
}

.lang-menu a:hover {
  background: var(--bg2);
  color: var(--accent2);
}
/* MOBILE LANGUAGE SWITCH */
.mobile-lang {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.mobile-lang span {
  font-size: 0.75rem;
  color: var(--text3);
  display: block;
  margin-bottom: 8px;
}

.mobile-lang-buttons {
  display: flex;
  gap: 10px;
}

.mobile-lang-buttons a {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border2);
  font-size: 0.9rem;
}

.mobile-lang-buttons a:hover {
  border-color: var(--accent);
  color: var(--accent2);
}