/* ==========================================================================
   Finalytic.css — Externe stylesheet
   Alle inline en embedded styles uit index.html zijn verwerkt
   ========================================================================== */


/* ----------------------------------------------------
   ROOT VARIABELEN
---------------------------------------------------- */
:root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --card-bg: #10172f;
  --accent: #3b82f6;
  --accent-strong: #2563eb;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: #1f2937;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.75);
  --shadow-subtle: 0 18px 40px rgba(15, 23, 42, 0.65);
}

/* Verberg de file input */
.hidden-file-input {
  display: none !important;
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

/* Styling voor de upload zone */
.file-upload-zone {
  border: 2px dashed #CCC;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  background: #F8F9FA;
  transition: all 0.3s;
}

.file-upload-zone:hover {
  border-color: #F57C00;
  background: #FFF8F0;
}

.file-upload-label {
  display: block;
  font-size: 1.2em;
  font-weight: 600;
  color: #003366;
  margin-bottom: 8px;
}

.file-upload-note {
  display: block;
  font-size: 0.9em;
  color: #666;
}

/* ----------------------------------------------------
   RESET & GLOBAL STYLES
---------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1d2538 0, #050816 55%, #020617 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 16px 64px;
}


/* ----------------------------------------------------
   HEADER & NAVIGATIE
---------------------------------------------------- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: radial-gradient(circle at top left,
              rgba(59, 130, 246, 0.18), transparent 60%),
              rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 12px;
  z-index: 20;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: conic-gradient(from 180deg, #3b82f6, #22c55e, #f59e0b, #3b82f6);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark-inner {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: radial-gradient(circle at 25% 0%,
              rgba(248, 250, 252, 0.25), transparent 55%),
              #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #e5e7eb;
  letter-spacing: 0.05em;
}

.logo-text-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-text-sub {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.9;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: var(--muted);
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.18s ease,
              color 0.18s ease,
              transform 0.12s ease;
}

.nav a:hover {
  background: rgba(148, 163, 184, 0.12);
  color: #e5e7eb;
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--accent);
  color: #f9fafb;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.7);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.65);
}

.nav-cta:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}


/* ----------------------------------------------------
   SECTION LAYOUT
---------------------------------------------------- */
main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 16px;
}

section {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left,
              rgba(59, 130, 246, 0.16), transparent 55%),
              radial-gradient(circle at bottom right,
              rgba(15, 23, 42, 0.9), #020617 80%);
  border: 1px solid rgba(30, 64, 175, 0.45);
  box-shadow: var(--shadow-soft);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
}

section:not(:first-of-type) {
  background: radial-gradient(circle at top,
              rgba(30, 64, 175, 0.18), transparent 60%),
              radial-gradient(circle at bottom right,
              rgba(15, 23, 42, 0.9), #020617 80%);
  border-color: rgba(31, 41, 55, 0.9);
  box-shadow: var(--shadow-subtle);
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.section-title {
  font-size: 22px;
  margin-bottom: 6px;
}

.section-intro {
  font-size: 14px;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 20px;
}


/* ----------------------------------------------------
   INLINE → CLASSES
---------------------------------------------------- */
.h3-small {
  font-size: 16px;
  margin-bottom: 8px;
}

.h3-small-top {
  font-size: 16px;
  margin: 18px 0 8px;
}


/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 10px;
}

.hero-kicker-pill {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e, #16a34a);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.hero-title {
  font-size: clamp(28px, 4vw, 34px);
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-title span {
  background: linear-gradient(to right, #93c5fd, #22c55e, #facc15);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 18px;
}

.hero-list {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  list-style: none;
  font-size: 13px;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d1d5db;
}

.hero-list-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #4ade80;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

/* Tweede rij CTA onder de voorbeeldknoppen */
.hero-cta-row-main {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}


/* ----------------------------------------------------
   BUTTONS
---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease,
              box-shadow 0.15s ease,
              background 0.15s ease,
              border-color 0.15s ease;
  white-space: nowrap;
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(248, 250, 252, 0.7);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.9);
}


/* ----------------------------------------------------
   HERO VISUAL (PRIJZENBLOK)
---------------------------------------------------- */
.hero-visual {
  border-radius: 24px;
  background: radial-gradient(circle at top left,
              rgba(129, 140, 248, 0.3), transparent 60%),
              linear-gradient(135deg, #020617, #020617 40%, #020617 100%);
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 14px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
  overflow: hidden;
  min-height: 240px;
  font-size: 10px;
  /* vak prijzen iets kleiner tonen */
  transform: scale(0.9);
  transform-origin: top right;
}

.hero-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  color: var(--muted);
}

.hero-visual-dots {
  display: inline-flex;
  gap: 4px;
}

.hero-visual-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ef4444;
}

.hero-visual-dot:nth-child(2) {
  background: #f59e0b;
}

.hero-visual-dot:nth-child(3) {
  background: #22c55e;
}

.hero-visual-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
  font-size: 11px;
}

.hero-visual-main {
  background: radial-gradient(circle at top,
              rgba(56, 189, 248, 0.16), transparent 60%),
              #020617;
  border-radius: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(30, 64, 175, 0.6);
  font-size: 11px;
}

.hero-visual-main-title {
  font-size: 11px;
  margin-bottom: 8px;
  color: #e5e7eb;
}

.hero-visual-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 6px;
}

.hero-visual-table th,
.hero-visual-table td {
  padding: 4px 6px;
  font-size: 10px;
  text-align: left;
  border-bottom: 1px solid rgba(51, 65, 85, 0.7);
}

.hero-visual-table th {
  color: var(--muted);
  font-weight: 500;
}

.hero-visual-table tr:last-child td {
  border-bottom: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #e5e7eb;
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}


/* ----------------------------------------------------
   SECTION BLOCKS & LISTS
---------------------------------------------------- */
.section-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 20px;
}

.list-check {
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 13px;
}

.list-check li {
  display: flex;
  gap: 8px;
}

.list-check-bullet {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  background: rgba(37, 99, 235, 0.18);
  color: #93c5fd;
  margin-top: 3px;
}


/* ----------------------------------------------------
   CARDS
---------------------------------------------------- */
.card {
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(31, 41, 55, 0.95);
  padding: 12px 13px;
  font-size: 13px;
margin-top:24px;
}

.card-title {
  font-size: 14px;
  margin-bottom: 4px;
}

.card-text {
  font-size: 12px;
  color: var(--muted);
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}


/* ----------------------------------------------------
   FAQ
---------------------------------------------------- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  font-size: 13px;
}

.faq-q {
  font-weight: 500;
  margin-bottom: 4px;
}

.faq-a {
  font-size: 12px;
  color: var(--muted);
}


/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
footer {
  margin-top: 28px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding-top: 14px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: #e5e7eb;
}


/* ----------------------------------------------------
   RESPONSIVE BREAKPOINTS
---------------------------------------------------- */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero,
  .section-block,
  .cards-2,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    margin-top: 18px;
    transform-origin: top left;
  }

  section {
    padding: 22px 18px;
  }
}

@media (max-width: 600px) {
  .page {
    padding-inline: 12px;
  }

  .hero-title {
    font-size: 24px;
  }
}


[id] {
  scroll-margin-top: 120px;
}

.powered-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.powered-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.logo-powered {
  font-size: 11px;
  margin-top: 2px;
  color: var(--muted);
  opacity: 0.9;
}

.powered-link-header {
  font-weight: 700;
  font-size: 12px;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.powered-link-header:hover {
  opacity: 1;
  text-decoration: underline;
}


/* Formulier lay-out */
.card form {
  margin-top: 8px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.form-group label {
  font-size: 12px;
  color: var(--muted);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="file"] {
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  background: rgba(15, 23, 42, 0.95);
  color: var(--text);
  font-size: 13px;
  outline: none;
}

.form-group input[type="file"] {
  padding: 6px 8px;
  cursor: pointer;
}

/* Focus-stijl in Finalytic-accentkleur */
.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.7);
}


/* Rij met zip-checkbox en knop */
#controlsRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

#zipToggleContainer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

#zipToggle {
  width: 14px;
  height: 14px;
  cursor: pointer;
}

#togglestijl {
  cursor: pointer;
}

/* Container voor de knop rechts */
#leftauto {
  display: flex;
  justify-content: flex-end;
}

#status {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

/* Eventueel wat minder ruimte onderin in de kaart */
.card .hero-cta-row {
  margin-top: 14px;
}


/* ============================================================
   FOUTMELDINGEN / VALIDATIE IN FINALYTIC STIJL
   ============================================================ */

/* Rand en gloed bij fout */
.form-error,
input.error {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.08) !important;
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.4) !important;
}

/* Tekstje onder een invoerveld */
.error-message {
  font-size: 11px;
  color: #f87171;
  margin-top: -6px;
  margin-bottom: 6px;
}

/* Checkbox-fout */
#zipToggle.error + label {
  color: #ef4444 !important;
}

/* Formulier-foutstatus op de card */
.card-error {
  border-color: rgba(239, 68, 68, 0.45) !important;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.25) !important;
}

.spinner {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(148, 163, 184, 0.4);
  border-top-color: var(--accent);
  display: inline-block;
  animation: spin 0.8s linear infinite;
  margin-right: 6px;
  vertical-align: text-bottom;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#fileInfo {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(31, 41, 55, 0.9);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
#fileInfo {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-lg);#fie
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(31, 41, 55, 0.9);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* Scrollbaar bestandoverzicht (uitgebreid) */
.file-info-scroll {
  max-height: 160px;
  overflow-y: auto;
  padding-right: 4px;
  margin-bottom: 6px;
}

/* Header boven het bestandoverzicht met inklap-knop */
.file-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.file-info-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
}

.file-info-toggle {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 2px 4px;
}

.file-info-toggle-icon {
  transition: transform 0.2s ease;
}

/* Paneel dat ingeklapt/uitgeklapt kan worden */
.file-info-panel {
  max-height: 260px;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.file-info-panel.collapsed {
  max-height: 0;
}

/* Tabel met bestanden */
.file-info-table {
  width: 100%;
  border-collapse: collapse;
}

.file-info-table th,
.file-info-table td {
  padding: 4px 6px;
  font-size: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(31, 41, 55, 0.8);
}

.file-info-table th {
  color: var(--muted);
  font-weight: 500;
}

.file-info-table tbody tr:nth-child(odd) {
  background: rgba(15, 23, 42, 0.8);
}


/* Kolom voor selectievakje */
.file-select-col {
  width: 32px;
  text-align: center;
}

/* Checkbox in de tabel */
.file-select-checkbox {
  cursor: pointer;
}

/* Knop onder de tabel om geselecteerde bestanden te verwijderen */
.file-remove-button {
  margin-top: 6px;
  padding: 6px 10px;
  font-size: 11px;
  border-radius: 999px;
  border: 1px solid rgba(248, 113, 113, 0.7);
  background: rgba(127, 29, 29, 0.9);
  color: #fee2e2;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.file-remove-button:hover {
  background: rgba(185, 28, 28, 0.95);
  border-color: rgba(254, 202, 202, 0.9);
}








/* Cel met icoon + bestandsnaam */
.file-cell-name {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Generieke file-icon + varianten op extensie */
.file-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: rgba(148, 163, 184, 0.35);
  flex-shrink: 0;
}

.file-icon--xml,
.file-icon--audit {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
}

.file-icon--bank {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.file-icon--other {
  background: linear-gradient(135deg, #eab308, #f97316);
}

/* Onvoldoende ondersteunde extensies visueel markeren */
.file-row-invalid td {
  color: #fecaca;
}

.file-info-warning {
  margin-top: 4px;
  font-size: 11px;
  color: #f97373;
}

/* Samenvattingsregel onder tabel */
.file-info-summary {
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
  margin-top: 4px;
}





/* Scrollbaar venster voor bestandslijst */
.file-info-scroll {
  max-height: 160px;       /* hoogte van het venster */
  overflow-y: auto;
  padding-right: 4px;
  margin-bottom: 6px;
}





/* Tabel met bestandsnamen en groottes */
.file-info-table {
  width: 100%;
  border-collapse: collapse;
}

.file-info-table th,
.file-info-table td {
  padding: 4px 6px;
  font-size: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(31, 41, 55, 0.8);
}

.file-info-table th {
  color: var(--muted);
  font-weight: 500;
}

.file-info-table tbody tr:nth-child(odd) {
  background: rgba(15, 23, 42, 0.8);
}

.file-info-summary {
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
}

.faq-link {
  color: var(--accent);
  text-decoration: underline;
}

.faq-link:hover {
  color: var(--accent-strong);
}


/* CONTACT: buitenkader uit, alleen de kaart zelf zichtbaar */
#contact {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Kaart voor contact, zelfde look als andere sections */
.contact-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 26px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top,
              rgba(30, 64, 175, 0.18), transparent 60%),
              radial-gradient(circle at bottom right,
              rgba(15, 23, 42, 0.9), #020617 80%);
  border: 1px solid rgba(31, 41, 55, 0.9);
  box-shadow: var(--shadow-subtle);
}


/* Primaire call-to-action knop */
.btn-primary {
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 22px rgba(37, 99, 235, 0.55);
  transform: translateY(0);
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #4d8ef7, #1d4fd8);
  box-shadow: 0 0 32px rgba(59, 130, 246, 0.65);
  transform: translateY(-2px);
}


/* Geef de sectie-labels in de contactsectie iets ruimte links */
#contact .section-label {
  padding-left: 10px;
}


/* Stappenplan-lijst */
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: stepcounter;
}

.steps-list li {
  margin-bottom: 12px;
  padding-bottom: 10px;
  position: relative;
}

.steps-list li strong::before {
  counter-increment: stepcounter;
  content: counter(stepcounter) ". ";
  color: var(--accent);
  font-weight: 700;
  margin-right: 4px;
}

.steps-list p {
  margin: 4px 0 0 0;
  line-height: 1.32;
  color: var(--text);
  max-width: 95%;
}

.steps-list li:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.03);
}


/* 2-koloms layout voor het formulier */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 26px;
}

.form-grid .form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--muted);
}

.form-grid .form-group input {
  width: 100%;
}

.form-grid .form-group input[type="file"] {
  padding: 6px;
}

.form-grid .form-group:nth-last-child(1) {
  grid-column: span 2;
}

/* Mobiel: automatisch terug naar 1 kolom */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}


/* Upload card prominenter maken */
.card-upload {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 32px;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  transform: translateY(0);
  transition: all 0.25s ease;
}

.card-upload:hover {
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.45);
  transform: translateY(-3px);
}


/* Prominente upload-zone */
.file-upload-zone {
  border: 2px dashed rgba(59,130,246,0.55);
  background: rgba(59,130,246,0.10);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.25s ease;
  cursor: pointer;
}

.file-upload-zone:hover {
  background: rgba(59,130,246,0.18);
  border-color: rgba(59,130,246,0.85);
  box-shadow: 0 0 16px rgba(59,130,246,0.35);
}

.file-upload-label {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.file-upload-note {
  font-size: 13px;
  color: var(--muted);
}

.file-upload-zone input[type="file"] {
  margin-top: 12px;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
  width: 100%;
}


/* Maak alle inputvelden duidelijker en beter zichtbaar */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="number"] {
  background: rgba(255,255,255,0.15);
  border: 1.6px solid rgba(255,255,255,0.28);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 15px;
  color: #fff;
  width: 100%;
  transition: all 0.22s ease;
}

.form-group input:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.20);
}

.form-group input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.25);
  box-shadow: 0 0 6px rgba(59,130,246,0.55);
  outline: none;
}

.form-group label {
  color: var(--text);
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}


/* Prominente CTA-knoppen voor homepage hero */
.btn-hero {
  font-size: 18px;
  font-weight: 600;
  padding: 16px 34px;
  border-radius: 14px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all .25s ease;
}

.btn-hero-primary {
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

.btn-hero-primary:hover {
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.55);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.45);
  box-shadow: 0 6px 18px rgba(255,255,255,0.2);
  transform: translateY(-2px);
}


/* --- Hero visual header --- */
.hero-visual-header {
  display: flex;
  align-items: center;
  justify-content: flex-start !important;
  padding-left: 12px;
}

/* Titel 'Prijzen' prominenter maken */
.hero-visual-tag {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}

/* Dotjes uitschakelen */
.hero-visual-dots,
.hero-visual-dot {
  display: none !important;
}


/* Contact-sectie uitlijnen met FAQ */
#contact.section-container {
  max-width: 1100px;
  margin: auto;
  padding-left: 50px;
  padding-right: 0;
}


/* Scrollende FAQ-container */
.faq-scroll {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) rgba(255,255,255,0.12);
}

.faq-scroll::-webkit-scrollbar {
  width: 8px;
}

.faq-scroll::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}

.faq-scroll::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}


/* 2 kolommen alleen voor het stappenplan */
.steps-grid {
  display: grid;
  grid-template-columns: 240px auto;
  gap: 12px 32px;
  margin-top: 16px;
  align-items: start;
}

.steps-grid .step-question,
.steps-grid .step-answer {
  font-size: 0.90rem;
  line-height: 1.55;
}
/* Hero-knoppen: voorbeeld Excel en PDF naast elkaar */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-cta-row .btn-hero {
  flex: 1 1 0;
  min-width: 190px;
  text-align: center;
}

/* Grote CTA-knop breder maken */
.hero-cta-row-main {
  display: flex;
  justify-content: flex-start; /* of center als je hem wilt centreren */
  margin-top: 12px;
}

.hero-cta-row-main .btn-hero-primary {
  flex: 0 0 420px;          /* gewenste breedte */
  max-width: 100%;
  text-align: center;
}
.hero-cta-row-main {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.hero-cta-row-main .btn-hero-primary {
    flex: 1;
}
#leftauto {
  display: flex;
  justify-content: center;
  width: 100%;
}
.form-span-2 {
    grid-column: span 2;
}
