:root {
  --navy: #17163a;
  --navy-soft: #23214f;
  --indigo: #5b4fe5;
  --indigo-soft: #eeecfd;
  --orange: #ff6b35;
  --orange-soft: #ffe6da;
  --ink: #17163a;
  --ink-soft: #635f7a;
  --paper: #fbfaf8;
  --panel: #ffffff;
  --line: #e7e4f0;
  --mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
  --sans: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

a { color: inherit; }

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

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

/* ---------- Topbar ---------- */
.topbar {
  background: var(--panel);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 11px 0;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--ink);
  font-family: 'Manrope', var(--sans);
}
.logo img {
  display: block;
  width: auto;
  max-width: none;
  flex-shrink: 0;
}

.logo--stacked { gap: 16px; }
.logo--stacked span { display: flex; flex-direction: column; gap: 3px; }
.logo--stacked b { font: 800 34px/.88 Manrope, var(--sans); letter-spacing: -0.012em; color: var(--ink); }
.logo--stacked i { font: 600 21px/.88 Manrope, var(--sans); font-style: normal; color: var(--indigo); }
.logo--stacked em { font-style: normal; color: var(--orange); }

.logo--row { gap: 9px; }
.logo--row span { font: 700 15px/1 Manrope, var(--sans); color: var(--ink); }
.logo--row em { font: 600 15px/1 Manrope, var(--sans); font-style: normal; color: var(--orange); }

.brand-wordmark--row {
  font: 700 15px/1 Manrope, var(--sans);
  color: var(--ink);
}
.brand-wordmark--row em {
  font: 600 15px/1 Manrope, var(--sans);
  font-style: normal;
  color: var(--orange);
}

.logo--reverse b,
.logo--reverse.logo--row span,
.logo--reverse i { color: var(--paper); }
.logo--reverse em { color: var(--orange); }
.logo--on-indigo em { color: var(--paper); }

/* Header: compact gestapeld op desktop — de volle lockup is te groot naast de nav. */
.logo--header { gap: 10px; }
.logo--header .logo-mark { height: 28px; }
.logo--header .logo-wordmark--stacked { display: flex; flex-direction: column; gap: 2px; }
.logo--header .logo-wordmark--stacked b { font: 800 18px/.88 Manrope, var(--sans); letter-spacing: -0.012em; color: var(--ink); }
.logo--header .logo-wordmark--stacked i { font: 600 11.5px/.88 Manrope, var(--sans); font-style: normal; color: var(--indigo); }
.logo--header .logo-wordmark--stacked em { font-style: normal; color: var(--orange); }
.logo--header .logo-wordmark--row { display: none; font: 700 15px/1 Manrope, var(--sans); color: var(--ink); }
.logo--header .logo-wordmark--row em { font: 600 15px/1 Manrope, var(--sans); font-style: normal; color: var(--orange); }

@media (max-width: 860px) {
  .logo--header { gap: 9px; }
  .logo--header .logo-mark { height: 20px; }
  .logo--header .logo-wordmark--stacked { display: none; }
  .logo--header .logo-wordmark--row { display: block; }
}

@media (max-width: 520px) {
  .topbar-inner { gap: 12px; padding: 12px 0; }
  .nav-start { display: none; }
  .nav-tools { padding-left: 0; border-left: none; gap: 10px; }
  .logo--header .logo-wordmark--row,
  .logo--header .logo-wordmark--row em { font-size: 13px; }
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 22px;
  min-width: 0;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }

.nav-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.nav-start {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.nav-start:hover { color: var(--indigo); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  background: #fff;
  flex-shrink: 0;
}
.lang-switch a {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 100px;
  text-decoration: none;
  color: var(--ink-soft);
}
.lang-switch a.active {
  background: var(--ink);
  color: #fff;
}
.lang-switch a:not(.active):hover { color: var(--ink); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-tools { border-left: none; padding-left: 0; margin-left: auto; }
}

/* Account-icoon: bewust anders dan de rest van de nav (rond, los van de
   tekstlinks) zodat het als eigen, herkenbaar aanknopingspunt oogt. */
.nav-account-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.12s, border-color 0.15s, box-shadow 0.15s;
}

.nav-account-btn.guest {
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  background: #fff;
}
.nav-account-btn.guest:hover { border-color: var(--indigo); color: var(--indigo); }

.nav-account-btn.logged-in {
  background: linear-gradient(135deg, var(--indigo), var(--orange));
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}
.nav-account-btn.logged-in:hover { transform: scale(1.07); }

.btn {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 9px;
  border: 1.5px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.12s, box-shadow 0.12s, background 0.15s, border-color 0.15s;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-orange:hover { background: #f0592a; transform: translateY(-1px); }

.btn-ghost-light {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost-light:hover { border-color: var(--indigo); }

.btn-primary {
  background: var(--indigo);
  color: #fff;
}
.btn-primary:hover { background: #4a3fd1; transform: translateY(-1px); }

.btn-outline {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--indigo); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, #f2f0fc 0%, var(--paper) 100%);
  color: var(--ink);
  padding: 56px 0 72px;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-soft);
  border: 1px solid #d9d5f8;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(28px, 6vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  word-wrap: break-word;
}

h1 .highlight { color: var(--orange); }

.hero-sub {
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 460px;
  margin: 0 0 24px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }

.hero-meta {
  display: flex;
  gap: 18px 22px;
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}

.hero-meta strong { color: var(--ink); }

.hero-visual {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 8px 4px 0;
}

.hero-stack {
  position: relative;
  padding-bottom: 132px;
}

.hero-mock {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px 18px;
  box-shadow: 0 16px 40px rgba(23, 22, 58, 0.11);
  width: 82%;
}

.hero-mock--back {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 78%;
  transform: rotate(1deg);
  box-shadow: 0 10px 28px rgba(23, 22, 58, 0.08);
}

.hero-mock--front {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 10px 14px 12px;
  transform: rotate(-0.8deg);
}
.hero-mock--front .hero-mock-bar { margin-bottom: 6px; }
.hero-mock--front .hero-mail-meta { padding: 5px 0; margin-bottom: 8px; }
.hero-mock--front .hero-mail-body { margin: 0 0 10px; }
.hero-mock--front .hero-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
}
.hero-mock--front .hero-sig-photo {
  width: 44px;
  min-width: 44px;
}
.hero-mock--front .hero-sig-name { font-size: 14px; }
.hero-mock--front .hero-sig-title { margin: 1px 0 5px; }
.hero-mock--front .demo-mark { width: 22px; height: 22px; }
.hero-mock--front .demo-brand span { font-size: 8px; }

.hero-mock-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.hero-mock-bar span {
  width: 9px; height: 9px; border-radius: 50%;
  background: #e2e0f0;
}

.hero-mail-meta {
  font-size: 12px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  margin-bottom: 12px;
}
.hero-mail-meta div { margin-bottom: 4px; }
.hero-mail-meta div:last-child { margin-bottom: 0; }
.hero-mail-meta span {
  display: inline-block;
  width: 78px;
  color: var(--ink-soft);
  font-weight: 600;
}

.hero-mail-body {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0 0 16px;
  line-height: 1.45;
}

.hero-sig { border-collapse: collapse; width: 100%; }
.hero-sig-photo {
  width: 52px;
  min-width: 52px;
  padding-right: 10px;
  vertical-align: top;
}
.hero-sig-text { vertical-align: top; border-left: 3px solid #2f4f45; padding-left: 12px; }
.hero-sig-logo {
  width: 40px;
  min-width: 40px;
  vertical-align: middle;
  padding-left: 8px;
}
.hero-avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  max-width: 52px;
  max-height: 52px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #ddd8ce;
}
.hero-sig-name { font-size: 15px; font-weight: 700; color: var(--ink); }
.hero-sig-title { font-size: 12px; color: #888; margin: 2px 0 7px; }
.hero-sig-line { font-size: 12px; color: var(--ink); margin-bottom: 2px; }
.hero-sig-link { color: var(--indigo); }

@media (max-width: 900px) {
  .hero-visual { padding: 4px 0 0; }
  .hero-stack { padding-bottom: 108px; }
  .hero-mock { width: 88%; }
  .hero-mock--back { width: 84%; transform: rotate(0.6deg); }
  .hero-mock--front { transform: rotate(-0.5deg); }
}

/* ---------- Sections ---------- */
section { padding: 88px 0; }

.section-tag {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}

.section-sub {
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 0 44px;
}

.section-header { text-align: center; }
.section-header .section-sub { margin-left: auto; margin-right: auto; }

/* Feature grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.card {
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--indigo-soft);
  color: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 16.5px;
  margin: 0 0 8px;
  font-weight: 700;
}

.card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
}

/* Templates showcase */
.template-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.tpl-card {
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tpl-label {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1.5px solid var(--line);
}

.tpl-preview {
  background: var(--paper);
  padding: 22px 18px 20px;
  min-height: 168px;
  display: flex;
  align-items: flex-start;
  flex: 1;
}

.template-showcase-note {
  margin: 22px 0 0;
  text-align: center;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--indigo);
}

/* Demo signatures (Raamwerk Interieur) */
.demo-sig {
  font-size: 12px;
  line-height: 1.35;
  color: var(--ink);
  width: 100%;
}
.demo-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #2f4f45;
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 8px;
}
.demo-brand span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.demo-mark {
  width: 28px;
  height: 28px;
  display: block;
}
.demo-sig-banner {
  display: flex;
  align-items: center;
  background: #2f4f45;
  color: #f4efe6;
  padding: 8px 10px;
  border-radius: 8px 8px 0 0;
  margin: -6px -6px 10px;
}
.demo-sig-banner .demo-brand {
  margin: 0;
  padding: 0;
  flex-direction: row;
  gap: 8px;
  color: #f4efe6;
}
.demo-sig-banner .demo-brand span {
  font-size: 12px;
  letter-spacing: 0.04em;
}
.demo-sig-banner .demo-mark { width: 22px; height: 22px; }
.demo-sig--banner {
  background: #eef3f0;
  border-radius: 10px;
  padding: 6px 6px 10px;
}
.demo-sig-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.demo-photo {
  width: 48px;
  height: 48px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  background: #ddd8ce;
}
.demo-sig-text {
  border-left: 3px solid #2f4f45;
  padding-left: 12px;
  min-width: 0;
  flex: 1;
}
.demo-sig--stacked {
  text-align: center;
}
.demo-sig--stacked .demo-brand {
  margin: 0 auto 10px;
  padding: 0;
  flex-direction: row;
  gap: 8px;
}
.demo-sig--stacked .demo-brand span {
  font-size: 13px;
  letter-spacing: 0.04em;
}
.demo-sig--stacked .demo-sig-row {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.demo-sig--stacked .demo-sig-text {
  border-left: none;
  border-top: 3px solid #2f4f45;
  padding: 8px 0 0;
}
.demo-name { font-weight: 700; font-size: 13.5px; }
.demo-role { color: #6b6a78; font-size: 11.5px; margin: 1px 0 5px; }
.demo-line { font-size: 11.5px; margin-bottom: 1px; }
.demo-web { color: #2f4f45; font-weight: 600; }

.demo-sig--messy {
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px dashed #d7d2c8;
}
.demo-sig--messy-a {
  font-family: Georgia, "Times New Roman", serif;
  background: #fafafa;
}
.demo-sig--messy-a .demo-name { font-size: 15px; font-weight: 400; }
.demo-sig--messy-a .demo-web { color: #0000ee; text-decoration: underline; font-weight: 400; }
.demo-sig--messy-b {
  display: flex;
  gap: 10px;
  background: #fff8d6;
  border-style: solid;
  border-color: #e2c36d;
}
.demo-sig--messy-b .demo-name { color: #c1121f; font-size: 12px; letter-spacing: 0.04em; }
.demo-sig--messy-b .demo-sig-text { border-left-color: #c1121f; }
.demo-sig--messy-c {
  text-align: center;
  background: #fff0f6;
  font-family: "Trebuchet MS", sans-serif;
}
.demo-sig--messy-c .demo-sig-text { border-left: none; padding-left: 0; }
.demo-sig--messy-c .demo-name { color: #c2185b; }
.demo-sig--messy-c .demo-web { color: #e91e8c; }

.section-team {
  background: #f4f0e8;
  border-top: 1px solid var(--line);
}

.team-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 800px) { .team-compare { grid-template-columns: 1fr; } }

.team-compare-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 0 0 14px;
  text-align: center;
}
.team-compare-col--after .team-compare-label { color: #2f4f45; }
.team-compare-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.team-compare-col--after .demo-sig {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

.how-screen {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 10px 12px;
  margin-bottom: 16px;
  height: 150px;
  min-height: 150px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(23, 22, 58, 0.05);
}
.how-screen-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}
.how-screen-bar span {
  width: 7px; height: 7px; border-radius: 50%;
  background: #e2e0f0;
}
.how-field {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  padding: 5px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.how-field b { color: var(--ink); font-weight: 600; }
.how-field--photo {
  align-items: center;
  border-bottom: 0;
  padding-top: 8px;
  justify-content: flex-start;
  gap: 6px;
}
.how-field--photo img {
  width: 28px; height: 28px; border-radius: 50%; object-fit: cover; aspect-ratio: 1 / 1;
}
.how-field--photo .demo-mark {
  width: 22px; height: 22px; color: #2f4f45; margin-left: 6px;
}
.how-screen--copy .demo-brand { padding-left: 4px; }
.how-screen--copy .demo-mark { width: 22px; height: 22px; }
.how-thumbs {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.how-thumbs span {
  flex: 1;
  height: 42px;
  border-radius: 8px;
  background: #e7e4f0;
  border: 1.5px solid transparent;
}
.how-thumbs span.is-on { border-color: var(--indigo); background: var(--indigo-soft); }
.how-dots { display: flex; gap: 8px; }
.how-dots i {
  width: 16px; height: 16px; border-radius: 50%;
  background: #2f4f45;
}
.how-dots i:nth-child(2) { background: #c45c3e; }
.how-dots i:nth-child(3) { background: #5b4fe5; }
.how-screen--copy .demo-sig { transform: scale(0.86); transform-origin: top left; width: 116%; }
.how-screen--copy .demo-photo { width: 36px; height: 36px; }
.how-copy-btn {
  margin-top: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 6px;
  border-radius: 8px;
}
.how-outlook-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.how-outlook-box {
  border: 1.5px dashed var(--indigo);
  background: var(--indigo-soft);
  border-radius: 8px;
  padding: 18px 10px;
  font-size: 12px;
  color: var(--ink);
  text-align: center;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

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

.step {
  position: relative;
  padding-top: 8px;
}

.step-num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  color: var(--indigo);
  background: var(--indigo-soft);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

.step h3 { font-size: 14.5px; margin: 0 0 6px; }
.step p { font-size: 13px; color: var(--ink-soft); margin: 0; }

/* Limitations / transparency box */
.limits-box {
  background: var(--panel);
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 20px;
  padding: 40px 40px 36px;
}

.limits-box h2 { color: var(--ink); }
.limits-box .section-sub { color: var(--ink-soft); }

.limits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  margin-top: 8px;
}

@media (max-width: 800px) { .limits-list { grid-template-columns: 1fr; } }

.limits-list li {
  list-style: none;
  padding-left: 26px;
  position: relative;
  font-size: 13.5px;
  color: var(--ink-soft);
}

.limits-list li::before {
  content: '●';
  color: var(--orange);
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 10px;
}

.limits-updated {
  margin-top: 26px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-soft);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 4px 22px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 26px 16px 0;
  font-weight: 700;
  font-size: 15px;
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 20px;
  color: var(--indigo);
  font-weight: 400;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.faq-item a {
  font-size: 13px;
  font-weight: 700;
  color: var(--indigo);
  text-decoration: none;
}
.faq-item a:hover { text-decoration: underline; }

/* Pricing cards */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 560px;
  margin: 36px auto 0;
}

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

.price-card {
  position: relative;
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-align: center;
}

.price-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-credits {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.price-amount {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.price-per {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* CTA band */
.cta-band {
  background: var(--indigo);
  color: #fff;
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
}

.cta-band h2 { color: #fff; }
.cta-band p { color: #dcdaf8; max-width: 480px; margin: 0 auto 28px; }

/* Footer */
footer {
  background: var(--panel);
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand { display: flex; flex-direction: column; gap: 10px; }

.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: var(--ink-soft); }
.footer-links a:hover { color: var(--ink); }

/* ---------- Generator page ---------- */
.app-shell {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: calc(100vh - 64px);
}

@media (max-width: 980px) {
  .app-shell { grid-template-columns: 1fr; }
}

.panel {
  background: var(--panel);
  border-right: 1px solid var(--line);
  padding: 32px 28px 80px;
  overflow-y: auto;
  max-height: calc(100vh - 64px);
}

@media (max-width: 980px) {
  .panel { max-height: none; border-right: none; border-bottom: 1px solid var(--line); }
}

.section-label {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin: 28px 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.section-label:first-of-type { margin-top: 0; }

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

.template-card {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 10px 8px 8px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  text-align: center;
}

.template-card:hover { border-color: #c4bfe8; }
.template-card.active { border-color: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-soft); }
.template-card svg { width: 100%; height: 36px; display: block; margin-bottom: 6px; }
.template-card span {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  display: block;
}

.more-layouts-toggle {
  display: block;
  width: 100%;
  margin: 10px 0 0;
  padding: 8px 4px;
  background: none;
  border: none;
  color: var(--indigo);
  font-size: 12.5px;
  font-weight: 700;
  font-family: var(--sans);
  cursor: pointer;
  text-align: center;
}
.more-layouts-toggle:hover { text-decoration: underline; }
.more-layouts-toggle::after {
  content: ' ▾';
  font-weight: 400;
}
.more-layouts-toggle[aria-expanded="true"]::after { content: ' ▴'; }
.extra-layouts { margin-top: 8px; }
/* .template-grid { display:grid } wint anders van het native [hidden]-gedrag. */
.extra-layouts[hidden] { display: none !important; }

.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.field-hint { font-size: 11px; color: var(--ink-soft); margin-top: 4px; }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field select {
  width: 100%;
  padding: 9px 11px;
  border: 1.5px solid var(--line);
  border-radius: 7px;
  font-size: 13.5px;
  font-family: var(--sans);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s;
}

.field input:focus,
.field select:focus { outline: none; border-color: var(--indigo); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field-row:has(#linkedinLabelWrap[hidden]) { grid-template-columns: 1fr; }

.color-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.color-row[hidden] { display: none !important; }
.color-row label { flex: 1; font-size: 12.5px; font-weight: 600; margin: 0; }

.swatch-wrap { position: relative; width: 34px; height: 34px; flex-shrink: 0; }
.swatch-wrap input[type="color"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 2px solid var(--line); border-radius: 8px; padding: 0; cursor: pointer; background: none;
}

.color-hex { font-family: var(--mono); font-size: 11.5px; color: var(--ink-soft); width: 64px; }

.upload-zone {
  border: 1.5px dashed var(--line);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}
.upload-zone:hover { border-color: var(--indigo); background: var(--indigo-soft); }
.upload-zone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-zone .uz-icon { font-size: 20px; margin-bottom: 4px; }
.upload-zone .uz-text { font-size: 12px; color: var(--ink-soft); }
.upload-zone.has-image { padding: 10px; }

.upload-preview { display: flex; align-items: center; gap: 10px; }
.upload-preview img { max-height: 44px; max-width: 80px; border-radius: 4px; object-fit: contain; }
.upload-preview .uz-filename { font-size: 12px; color: var(--ink-soft); text-align: left; flex: 1; }

.uz-remove {
  font-size: 11px; color: #b5443a; background: none; border: none; cursor: pointer;
  text-decoration: underline; padding: 0; position: relative; z-index: 2;
}

.toggle-row { display: flex; gap: 8px; margin-bottom: 14px; }
.toggle-btn {
  flex: 1; padding: 8px; border: 1.5px solid var(--line); border-radius: 7px; background: #fff;
  font-size: 12px; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: all 0.15s;
}
.toggle-btn.active { border-color: var(--indigo); background: var(--indigo-soft); color: var(--indigo); }

.preview-area { padding: 32px 40px; display: flex; flex-direction: column; }
.preview-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.preview-toolbar h2 { font-size: 15px; font-weight: 650; margin: 0; }
.preview-hint {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: var(--ink-soft);
}

.preview-frame.is-interactive .sig-edit {
  cursor: pointer;
  outline: 1.5px dashed transparent;
  outline-offset: 3px;
  border-radius: 4px;
  transition: outline-color 0.12s, background-color 0.12s;
}
.preview-frame.is-interactive span.sig-edit {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}
.preview-frame.is-interactive .sig-edit:hover {
  outline-color: var(--indigo);
  background-color: rgba(91, 79, 229, 0.07);
}

.field.field-flash input,
.field.field-flash textarea,
.field.field-flash select,
.upload-zone.field-flash,
.color-row.field-flash .swatch-wrap {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px var(--indigo-soft);
}
.toolbar-buttons { display: flex; gap: 8px; }

.btn-sm {
  font-family: var(--sans); font-size: 12.5px; font-weight: 600; padding: 9px 16px; border-radius: 7px;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; transition: all 0.15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-sm:hover { border-color: #c4bfe8; }
.btn-sm.primary { background: var(--indigo); border-color: var(--indigo); color: #fff; }
.btn-sm.primary:hover { background: #4a3fd1; border-color: #4a3fd1; }

.preview-frame {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 40px;
  flex: 1; display: flex; align-items: flex-start; justify-content: flex-start; overflow: auto; min-height: 280px;
}
.preview-frame.empty { align-items: center; justify-content: center; color: var(--ink-soft); font-size: 13px; }

.code-panel { margin-top: 20px; display: none; }
.code-panel.visible { display: block; }
.code-panel textarea {
  width: 100%; height: 220px; font-family: var(--mono); font-size: 11.5px; line-height: 1.5; padding: 14px;
  border-radius: 10px; border: 1px solid var(--line); background: #1c1f23; color: #d4d8dd; resize: vertical;
}

.modal-overlay {
  position: fixed; inset: 0; background: rgba(23, 22, 58, 0.55); display: none;
  align-items: center; justify-content: center; z-index: 100; padding: 24px;
}
.modal-overlay.visible { display: flex; }
.modal { background: #fff; border-radius: 14px; max-width: 560px; width: 100%; max-height: 86vh; overflow-y: auto; padding: 32px; }
.modal-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.modal h3 { margin: 0; font-size: 18px; }
.modal-close { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--ink-soft); line-height: 1; padding: 4px; }

.tab-row { display: flex; gap: 6px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.tab-btn {
  padding: 8px 4px; background: none; border: none; border-bottom: 2px solid transparent;
  font-size: 13px; font-weight: 600; color: var(--ink-soft); cursor: pointer; margin-right: 18px;
}
.tab-btn.active { color: var(--indigo); border-bottom-color: var(--indigo); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content ol { padding-left: 20px; margin: 0; }
.tab-content li { margin-bottom: 12px; font-size: 13.5px; line-height: 1.55; }
.tab-content strong { color: var(--ink); }

.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--navy); color: #fff; padding: 11px 20px; border-radius: 8px; font-size: 13px; font-weight: 600;
  opacity: 0; pointer-events: none; transition: all 0.25s; z-index: 200;
}
.toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }

.footer-nav { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
@media (max-width: 720px) {
  .footer-nav { align-items: flex-start; }
}

.legal-hero { padding: 56px 0 36px; }
.legal-hero h1 { font-size: 34px; max-width: 780px; }

section:has(.legal-page),
section:has(.contact-grid) {
  padding: 12px 0 72px;
}

.legal-page {
  max-width: 720px;
  padding-bottom: 24px;
}
.legal-page h2 {
  font-size: 18px;
  margin: 32px 0 10px;
}
.legal-page p,
.legal-page li {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.legal-page ul { padding-left: 20px; margin: 0 0 8px; }
.legal-page li { margin-bottom: 8px; }
.legal-page a { color: var(--indigo); font-weight: 600; text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }

.contact-lead { max-width: 640px; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
  gap: 28px;
  align-items: start;
  padding-bottom: 24px;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 22px; }
}

.contact-form-card,
.contact-card {
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.contact-form-card h2,
.contact-card h2 {
  font-size: 18px;
  margin: 0 0 8px;
}
.contact-form-intro,
.contact-card p {
  margin: 0 0 18px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.contact-who {
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
}
.contact-response { margin: 0 0 14px; }
.contact-mail { margin: 0 0 18px; }
.contact-card address {
  font-style: normal;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.contact-card address .brand-wordmark {
  display: inline-block;
  margin-bottom: 6px;
}
.contact-ids {
  margin: 10px 0 0 !important;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.contact-card a { color: var(--indigo); font-weight: 600; text-decoration: none; }
.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.contact-faq ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.contact-faq li { border-top: 1px solid var(--line); }
.contact-faq li a {
  display: block;
  padding: 11px 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.4;
}
.contact-faq li a:hover { color: var(--indigo); }
.contact-faq-all {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--indigo);
  text-decoration: none;
}
.contact-faq-all:hover { text-decoration: underline; }
.contact-thanks h2 { font-size: 20px; margin: 0 0 8px; }
.contact-form .btn { margin-top: 8px; }
.contact-form .field-hint a { color: var(--indigo); font-weight: 600; text-decoration: none; }

.field textarea {
  width: 100%;
  padding: 9px 11px;
  border: 1.5px solid var(--line);
  border-radius: 7px;
  font-size: 13.5px;
  font-family: var(--sans);
  background: #fff;
  color: var(--ink);
  resize: vertical;
  min-height: 140px;
}
.field textarea:focus { outline: none; border-color: var(--indigo); }

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.err-box {
  background: #fbe9e6;
  color: #a13a2c;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  margin-bottom: 16px;
}

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 4px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  cursor: pointer;
}
.terms-check input { margin-top: 3px; flex-shrink: 0; }
.terms-check a { color: var(--indigo); font-weight: 600; text-decoration: none; }
.terms-check a:hover { text-decoration: underline; }

