/* CrossCreatives — merged from HTML templates (source of truth) */

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

:root {
  --bg: #0c0c0c;
  --bg2: #141414;
  --bg3: #1c1c1c;
  --text: #f0ede8;
  --muted: #888580;
  --border: rgba(255,255,255,0.08);

  --green: #1D9E75;
  --green-bg: #0d2b20;
  --green-light: #9FE1CB;

  --blue: #378ADD;
  --blue-bg: #0d1e35;
  --blue-light: #B5D4F4;

  --amber: #d4860f;
  --amber-bg: #2a1e08;
  --amber-light: #FAC775;

  --red: #c0392b;
  --red-bg: #2a0d0d;
  --red-light: #f1948a;

  --radius: 20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

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

body.cc-home {
  font-size: 17px;
}

/* ——— NAV ——— */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(12,12,12,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

body.cc-page-aanvraag .site-nav {
  background: rgba(12,12,12,0.9);
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.02em;
  text-decoration: none;
}

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

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-links .nav-cta {
  background: var(--text) !important;
  color: var(--bg) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: opacity 0.2s !important;
}

.nav-links .nav-cta:hover { opacity: 0.85 !important; }

.nav-back {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.nav-back:hover { color: var(--text); }

/* ——— Typography (inner pages) ——— */
h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.5s 0.08s ease both;
}

h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

/* ——— Homepage hero ——— */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2.5rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.04;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-bg);
  border: 1px solid rgba(29,158,117,0.3);
  color: var(--green-light);
  font-size: 13px;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  width: fit-content;
  animation: fadeUp 0.6s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.hero .hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero .hero-sub strong { color: var(--text); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-proof {
  margin-top: 4rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}

.proof-item { display: flex; flex-direction: column; }

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

.proof-label { font-size: 13px; color: var(--muted); }

/* ——— Inner page hero ——— */
.page-hero {
  padding: 9rem 2.5rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

body.cc-page-hoe-het-werkt .page-hero {
  padding: 9rem 2.5rem 4rem;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.5s ease both;
}

.page-hero .hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 1rem;
  animation: fadeUp 0.5s 0.16s ease both;
}

body.cc-page-hoe-het-werkt .page-hero .hero-sub {
  max-width: 520px;
  margin: 0 0 0 0;
}

/* ——— Sections ——— */
section { padding: 5rem 2.5rem; }

.cc-home section { padding: 6rem 2.5rem; }

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

.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.cc-inner-page .section-label { margin-bottom: 0.75rem; }

.cc-home h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 3.5rem;
}

.cc-inner-page .section-intro { margin-bottom: 3.5rem; }

/* ——— Homepage packages ——— */
#pakketten { background: var(--bg2); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.package {
  border-radius: var(--radius);
  padding: 2rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
  position: relative;
  overflow: hidden;
}

.package:hover { transform: translateY(-3px); }

.pkg-green { background: var(--green-bg); border: 1px solid rgba(29,158,117,0.2); }
.pkg-blue  { background: var(--blue-bg); border: 1px solid rgba(55,138,221,0.2); }
.pkg-amber { background: var(--amber-bg); border: 1px solid rgba(212,134,15,0.2); }

.package .pkg-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.pkg-green .pkg-tag { background: rgba(29,158,117,0.2); color: var(--green-light); }
.pkg-blue  .pkg-tag { background: rgba(55,138,221,0.2); color: var(--blue-light); }
.pkg-amber .pkg-tag { background: rgba(212,134,15,0.2); color: var(--amber-light); }

.package .pkg-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.pkg-green .pkg-name { color: var(--green-light); }
.pkg-blue  .pkg-name { color: var(--blue-light); }
.pkg-amber .pkg-name { color: var(--amber-light); }

.package .pkg-price {
  font-size: 13px;
  margin-bottom: 1.25rem;
  opacity: 0.6;
  color: var(--text);
}

.package .pkg-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(240,237,232,0.7);
  flex: 1;
  margin-bottom: 1.75rem;
}

.package .pkg-cta {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  width: fit-content;
}

.package .pkg-cta:hover { opacity: 0.85; transform: translateY(-1px); }

.pkg-green .pkg-cta { background: var(--green); color: #fff; }
.pkg-blue  .pkg-cta { background: var(--blue); color: #fff; }
.pkg-amber .pkg-cta { background: var(--amber); color: #fff; }

/* ——— Pakketten page cards ——— */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

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

.pkg-card {
  border-radius: var(--radius);
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
  position: relative;
}

.pkg-card:hover { transform: translateY(-3px); }

.pkg-card.green { background: var(--green-bg); border: 1px solid rgba(29,158,117,0.2); }
.pkg-card.blue  { background: var(--blue-bg); border: 1px solid rgba(55,138,221,0.2); }
.pkg-card.amber { background: var(--amber-bg); border: 1px solid rgba(212,134,15,0.2); }

.pkg-card .pkg-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.pkg-card.green .pkg-tag { background: rgba(29,158,117,0.2); color: var(--green-light); }
.pkg-card.blue  .pkg-tag { background: rgba(55,138,221,0.2); color: var(--blue-light); }
.pkg-card.amber .pkg-tag { background: rgba(212,134,15,0.2); color: var(--amber-light); }

.pkg-card .pkg-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.pkg-card.green .pkg-name { color: var(--green-light); }
.pkg-card.blue  .pkg-name { color: var(--blue-light); }
.pkg-card.amber .pkg-name { color: var(--amber-light); }

.pkg-tagline { font-size: 13px; color: var(--muted); margin-bottom: 1.5rem; }

.pkg-price-block {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pkg-price-main {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.pkg-card.green .pkg-price-main { color: var(--green-light); }
.pkg-card.blue  .pkg-price-main { color: var(--blue-light); }
.pkg-card.amber .pkg-price-main { color: var(--amber-light); }

.pkg-price-sub { font-size: 12px; color: var(--muted); margin-top: 0.3rem; }

.pkg-features {
  list-style: none;
  padding: 0;
  flex: 1;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 14px;
  color: rgba(240,237,232,0.75);
}

.feat-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  font-size: 10px;
}

.pkg-card.green .feat-icon { background: rgba(29,158,117,0.25); color: var(--green-light); }
.pkg-card.blue  .feat-icon { background: rgba(55,138,221,0.25); color: var(--blue-light); }
.pkg-card.amber .feat-icon { background: rgba(212,134,15,0.25); color: var(--amber-light); }

.pkg-card .pkg-cta {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  width: 100%;
  text-align: center;
}

.pkg-card .pkg-cta:hover { opacity: 0.85; transform: translateY(-1px); }

.pkg-card.green .pkg-cta { background: var(--green); color: #fff; }
.pkg-card.blue  .pkg-cta { background: var(--blue); color: #fff; }
.pkg-card.amber .pkg-cta {
  background: transparent;
  color: var(--amber-light);
  border: 1px solid rgba(212,134,15,0.35);
}

.pkg-card.amber .pkg-cta:hover { background: var(--amber-bg); }

/* ——— Vergelijking ——— */
#vergelijking { background: var(--bg2); }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 2.5rem;
}

.compare-table th,
.compare-table td {
  padding: 0.9rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table thead th {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding-top: 0;
  padding-bottom: 1rem;
}

.compare-table thead th:first-child { color: var(--muted); font-weight: 400; }

.th-green { color: var(--green-light); }
.th-blue  { color: var(--blue-light); }
.th-amber { color: var(--amber-light); }

.compare-table td:first-child { color: var(--muted); font-size: 13.5px; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }

.check { color: var(--green); font-size: 15px; }
.cross { color: var(--muted); font-size: 15px; }
.val   { color: var(--text); font-weight: 500; }
.val-muted { color: var(--muted); }

.compare-table .group-header td {
  background: var(--bg3);
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
}

/* ——— Addons ——— */
#addons { background: var(--bg); }

.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2.5rem;
}

.addon { background: var(--bg); padding: 1.75rem 1.5rem; }

.addon-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.addon-name { font-size: 15px; font-weight: 500; margin-bottom: 0.4rem; }
.addon-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ——— FAQ ——— */
#faq { background: var(--bg2); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.15s;
}

.faq-q:hover { background: rgba(255,255,255,0.03); }

.faq-icon {
  font-size: 18px;
  color: var(--muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-a { max-height: 500px; padding: 0 1.5rem 1.25rem; }

.page-content-area { color: var(--muted); font-size: 14px; line-height: 1.7; }
.page-content-area p { margin-bottom: 1rem; }
.page-content-area a { color: var(--green-light); }

/* ——— Backlog (home) ——— */
.backlog-block { display: block; max-width: 640px; }

.backlog-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.backlog-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 14.5px;
  color: rgba(240,237,232,0.75);
}

.bl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ——— Steps grid (home) ——— */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 0.5rem;
}

.step {
  background: var(--bg);
  padding: 2rem 1.75rem;
  position: relative;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
  user-select: none;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.step-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

.step-accent {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.acc-green { background: var(--green); }
.acc-blue  { background: var(--blue); }
.acc-amber { background: var(--amber); }
.acc-white { background: var(--text); }

/* ——— Hoe het werkt: tabs & flow ——— */
.pkg-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.pkg-tab {
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.pkg-tab:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

.pkg-tab.active-green {
  background: var(--green-bg);
  border-color: rgba(29,158,117,0.4);
  color: var(--green-light);
}

.pkg-tab.active-blue {
  background: var(--blue-bg);
  border-color: rgba(55,138,221,0.4);
  color: var(--blue-light);
}

.pkg-tab.active-amber {
  background: var(--amber-bg);
  border-color: rgba(212,134,15,0.4);
  color: var(--amber-light);
}

.flow { display: none; flex-direction: column; gap: 0; }
.flow.active { display: flex; }

.step-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 2rem;
  position: relative;
}

.step-left { display: flex; flex-direction: column; align-items: center; }

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-line { width: 1px; flex: 1; min-height: 2rem; margin: 4px 0; }

.flow-green .step-circle {
  background: var(--green-bg);
  border: 1px solid rgba(29,158,117,0.35);
  color: var(--green-light);
}

.flow-green .step-line { background: rgba(29,158,117,0.15); }

.flow-blue .step-circle {
  background: var(--blue-bg);
  border: 1px solid rgba(55,138,221,0.35);
  color: var(--blue-light);
}

.flow-blue .step-line { background: rgba(55,138,221,0.15); }

.flow-amber .step-circle {
  background: var(--amber-bg);
  border: 1px solid rgba(212,134,15,0.35);
  color: var(--amber-light);
}

.flow-amber .step-line { background: rgba(212,134,15,0.15); }

.flow .step-content { padding: 0 0 3rem; }
.flow .step-row:last-child .step-content { padding-bottom: 0; }
.flow .step-row:last-child .step-line { display: none; }

.flow .step-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.flow-green .step-tag { color: var(--green); }
.flow-blue  .step-tag { color: var(--blue); }
.flow-amber .step-tag { color: var(--amber); }

.flow .step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.flow .step-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

.step-detail {
  margin-top: 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 13.5px;
  color: rgba(240,237,232,0.6);
  max-width: 560px;
}

.step-detail strong { color: var(--text); font-weight: 500; }

/* ——— Verschil ——— */
#verschil { background: var(--bg2); }

.verschil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

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

.verschil-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.verschil-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.verschil-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.verschil-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 14px;
  line-height: 1.5;
}

.v-icon-bad  { color: #555; flex-shrink: 0; margin-top: 1px; }
.v-icon-good { color: var(--green); flex-shrink: 0; margin-top: 1px; }

.verschil-list li span:last-child { color: var(--muted); }
.verschil-card.good .verschil-list li span:last-child { color: rgba(240,237,232,0.8); }

/* ——— CTA ——— */
.cta-section {
  background: var(--green-bg);
  border-top: 1px solid rgba(29,158,117,0.15);
  border-bottom: 1px solid rgba(29,158,117,0.15);
  text-align: center;
}

.cta-section h2 { margin-bottom: 0.75rem; }
.cta-section p { color: var(--muted); margin-bottom: 2rem; }

.cta-strip {
  background: var(--green-bg);
  border-top: 1px solid rgba(29,158,117,0.15);
  border-bottom: 1px solid rgba(29,158,117,0.15);
  padding: 5rem 2.5rem;
  text-align: center;
}

.cta-strip h2 { margin-bottom: 0.75rem; }
.cta-strip p { color: var(--muted); margin-bottom: 2rem; }

/* ——— Buttons ——— */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.btn:hover { transform: translateY(-1px); opacity: 0.9; }

.btn-primary { background: var(--green); color: #fff; }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover { border-color: rgba(255,255,255,0.2); }

.cta-strip .btn-ghost,
.cc-cta-buttons .btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  margin-left: 0.75rem;
}

/* ——— Aanvraag form ——— */
.page-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
}

.form-header { margin-bottom: 3rem; animation: fadeUp 0.5s ease both; }

body.cc-page-aanvraag .eyebrow {
  background: var(--green-bg);
  border: 1px solid rgba(29,158,117,0.3);
  color: var(--green-light);
}

body.cc-page-aanvraag .eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

body.cc-page-aanvraag {
  --cc-form-radius: 16px;
}

body.cc-page-aanvraag h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 1rem;
  animation: fadeUp 0.5s ease both;
}

.form-intro {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.form-intro strong { color: var(--text); font-weight: 500; }

.progress-bar {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 3rem;
  animation: fadeUp 0.5s 0.1s ease both;
}

.prog-step {
  height: 3px;
  border-radius: 2px;
  flex: 1;
  background: var(--border);
  transition: background 0.3s;
}

.prog-step.done { background: var(--green); }
.prog-step.active { background: rgba(29,158,117,0.4); }

.form-section { display: none; animation: fadeUp 0.35s ease both; }
.form-section.active { display: block; }

.form-section .section-heading { margin-bottom: 2rem; }

.section-num {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.form-section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.section-desc { font-size: 14px; color: var(--muted); }

.field { margin-bottom: 1.75rem; }

.field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.field .hint {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

input[type=text],
input[type=url],
input[type=email],
textarea,
select {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--cc-form-radius, var(--radius-sm));
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(29,158,117,0.5);
  background: var(--bg3);
}

input::placeholder,
textarea::placeholder { color: var(--muted); }

textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

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='%23888580' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.type-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.6rem; }

.type-option { position: relative; }

.type-option input { position: absolute; opacity: 0; width: 0; height: 0; }

.type-option label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}

.type-option input:checked + label {
  border-color: rgba(29,158,117,0.5);
  background: var(--green-bg);
  color: var(--green-light);
}

.type-icon { font-size: 16px; }

.url-list { display: flex; flex-direction: column; gap: 0.5rem; }

.url-row { display: flex; gap: 0.5rem; align-items: center; }

.url-row input { flex: 1; }

.url-remove {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
  padding: 0 0.25rem;
  line-height: 1;
  transition: color 0.2s;
}

.url-remove:hover { color: var(--red-light); }

.add-url {
  background: none;
  border: 1px dashed var(--border);
  color: var(--muted);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  width: 100%;
  margin-top: 0.25rem;
}

.add-url:hover { border-color: rgba(29,158,117,0.4); color: var(--green-light); }

.page-builder { display: flex; flex-direction: column; gap: 0.75rem; }

.page-entry {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--cc-form-radius, var(--radius-sm));
  overflow: hidden;
}

.page-entry-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  cursor: pointer;
}

.page-entry-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-bg);
  border: 1px solid rgba(29,158,117,0.3);
  color: var(--green-light);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-entry-name { flex: 1; font-size: 14px; font-weight: 500; }

.page-entry-toggle { color: var(--muted); font-size: 18px; transition: transform 0.2s; }
.page-entry.open .page-entry-toggle { transform: rotate(45deg); }
.page-entry-body { display: none; padding: 0 1rem 1rem; }
.page-entry.open .page-entry-body { display: block; }
.page-entry-body textarea { min-height: 100px; margin-top: 0.5rem; }

.add-page {
  background: none;
  border: 1px dashed var(--border);
  color: var(--muted);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  width: 100%;
}

.add-page:hover { border-color: rgba(29,158,117,0.4); color: var(--green-light); }

.upload-zone {
  border: 1px dashed var(--border);
  border-radius: var(--cc-form-radius, var(--radius-sm));
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.upload-zone:hover { border-color: rgba(29,158,117,0.4); background: var(--green-bg); }
.upload-zone input { display: none; }
.upload-icon { font-size: 2rem; margin-bottom: 0.5rem; opacity: 0.4; }
.upload-label { font-size: 14px; color: var(--muted); }
.upload-label strong { color: var(--text); font-weight: 500; }

.upload-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }

.upload-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 1rem;
}

.upload-item-name { flex: 1; font-size: 13px; color: var(--muted); }
.upload-item-desc { flex: 2; }
.upload-item-desc input { padding: 0.4rem 0.75rem; font-size: 13px; }

.upload-item-del {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  transition: color 0.2s;
}

.upload-item-del:hover { color: var(--red-light); }

.upsell-block {
  background: var(--blue-bg);
  border: 1px solid rgba(55,138,221,0.2);
  border-radius: var(--cc-form-radius, var(--radius-sm));
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}

.upsell-block p { font-size: 14px; color: var(--blue-light); line-height: 1.65; }
.upsell-block a { color: var(--blue-light); font-weight: 500; }

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.form-nav .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.form-nav .btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  margin-left: 0;
}

.form-nav .btn-ghost:hover { color: var(--text); }
.form-nav .btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.success-screen { display: none; text-align: center; padding: 4rem 2rem; animation: fadeUp 0.5s ease both; }
.success-screen.active { display: block; }

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-bg);
  border: 1px solid rgba(29,158,117,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.success-screen h2 {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.success-screen p { color: var(--muted); max-width: 400px; margin: 0 auto 2rem; }

.cc-form-error {
  background: var(--red-bg);
  border: 1px solid rgba(192,57,43,0.3);
  color: var(--red-light);
  padding: 1rem 1.25rem;
  border-radius: var(--cc-form-radius, var(--radius-sm));
  margin-bottom: 1.5rem;
}

/* ——— Footer ——— */
.site-footer {
  padding: 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--muted);
}

.footer-logo span { color: var(--green); }

.site-footer p { font-size: 13px; color: var(--muted); }

/* ——— Index / fallback ——— */
.cc-index main {
  max-width: 680px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
}

/* ——— Animations ——— */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

body.cc-home .reveal {
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* ——— Responsive ——— */
@media (max-width: 680px) {
  .site-nav { padding: 1rem 1.25rem; }
  .nav-links { gap: 1rem; }
  section { padding: 3.5rem 1.25rem; }
  .cc-home section { padding: 4rem 1.25rem; }
  .hero { padding: 7rem 1.25rem 4rem; }
  .hero-proof { gap: 1.5rem; }
  .page-hero { padding: 7rem 1.25rem 3.5rem; }
  body.cc-page-hoe-het-werkt .page-hero { padding: 7rem 1.25rem 3rem; }
  .compare-table th,
  .compare-table td { padding: 0.75rem 0.75rem; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .page-wrap { padding: 7rem 1.25rem 4rem; }
  .type-grid { grid-template-columns: 1fr 1fr; }
  .upload-item { flex-wrap: wrap; }
}
