/* ============================================================
   ASLY Webdesign — huisstijl "Volt op inkt"
   Ink:  #0A0E16   Volt: #C8F542   Paneel: #121826
   Headings: Space Grotesk · Body: Inter · Labels: JetBrains Mono
   ============================================================ */

:root {
  --ink: #0A0E16;
  --ink-2: #0D1220;
  --panel: #121826;
  --panel-2: #171E2E;
  --line: #232C3F;
  --volt: #C8F542;
  --volt-soft: rgba(200, 245, 66, 0.12);
  --volt-ink: #1A2405;
  --text: #EDF1F7;
  --muted: #939DB0;
  --paper: #F4F6F0;
  --font-head: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }

::selection { background: var(--volt); color: var(--volt-ink); }

/* ---------- typografie ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.45rem); }

p { color: var(--muted); }

.lead { font-size: clamp(1.1rem, 2vw, 1.3rem); line-height: 1.6; }

.kicker {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--volt);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--volt);
  display: inline-block;
}

.accent { color: var(--volt); }

a { color: var(--volt); text-decoration: none; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--volt);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- layout ---------- */

.container { width: min(1160px, 92%); margin-inline: auto; }

section { padding: clamp(4rem, 9vw, 7.5rem) 0; }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.section-head p { margin-top: 1rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

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

/* ---------- actiebalk ---------- */

.promo-bar {
  background: var(--volt);
  color: var(--volt-ink);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.promo-bar a {
  color: var(--volt-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.promo-bar .promo-label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  background: var(--volt-ink);
  color: var(--volt);
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  margin-right: 0.5rem;
  white-space: nowrap;
}

/* ---------- actieprijzen ---------- */

.price-old {
  display: block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
  line-height: 1.3;
}

.deal-tag {
  display: inline-block;
  background: var(--volt-soft);
  border: 1px solid var(--volt);
  color: var(--volt);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  margin-left: 0.6rem;
  vertical-align: middle;
  white-space: nowrap;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 22, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-mono);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.logo .cursor {
  color: var(--volt);
  animation: blink 1.15s steps(1) infinite;
}

@keyframes blink { 50% { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .logo .cursor { animation: none; }
  html { scroll-behavior: auto; }
}

.main-nav { display: flex; align-items: center; gap: 2rem; }

.main-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.main-nav a[aria-current="page"] { color: var(--volt); }

.main-nav a.btn-primary, .main-nav a.btn-primary:hover { color: var(--volt-ink); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.7rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  transition: transform 0.25s, opacity 0.25s;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 4%;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.9rem 0.5rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .main-nav a:last-of-type { border-bottom: none; }
  .main-nav .btn { margin: 0.8rem 0.5rem 0.9rem; text-align: center; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ---------- knoppen ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
}

.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--volt); color: var(--volt-ink); }

.btn-primary:hover { background: #D7FF5C; }

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

.btn-ghost:hover { border-color: var(--muted); }

.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -160px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(200, 245, 66, 0.14), transparent 65%);
  pointer-events: none;
}

.hero-inner { position: relative; max-width: 780px; }

.hero h1 { margin-bottom: 1.4rem; }

.hero .lead { max-width: 580px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  margin-top: 2.6rem;
  padding: 0;
  list-style: none;
}

.hero-usps li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.93rem;
  color: var(--muted);
}

.hero-usps .tick { color: var(--volt); font-weight: 700; }

/* ---------- kaarten ---------- */

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: border-color 0.25s, transform 0.25s;
}

.card:hover { border-color: #35415C; transform: translateY(-4px); }

.card h3 { margin-bottom: 0.7rem; }

.card p { font-size: 0.98rem; }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--volt-soft);
  color: var(--volt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}

.card .card-link {
  display: inline-block;
  margin-top: 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---------- prijzen ---------- */

.pricing-grid { align-items: stretch; }

.price-card { display: flex; flex-direction: column; position: relative; }

.price-card.featured { border-color: var(--volt); }

.price-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--volt);
  color: var(--volt-ink);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card .pkg-name {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--volt);
}

.price-card .price {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  margin: 0.6rem 0 0.1rem;
  letter-spacing: -0.02em;
}

.price-card .price small { font-size: 1rem; font-weight: 500; color: var(--muted); }

.price-card .pkg-sub { font-size: 0.92rem; margin-bottom: 1.4rem; }

.price-card ul {
  list-style: none;
  margin: 0 0 1.8rem;
  flex: 1;
}

.price-card li {
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: var(--muted);
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}

.price-card li .tick { color: var(--volt); font-weight: 700; }

.price-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
}

/* ---------- portfolio ---------- */

.case-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }

.case-thumb { border-bottom: 1px solid var(--line); }

.case-thumb svg { width: 100%; height: auto; }

.case-body { padding: 1.6rem 1.7rem 1.8rem; flex: 1; }

.case-body .case-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--volt);
}

.case-body h3 { margin: 0.5rem 0 0.6rem; }

.case-result {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}

.case-result .arrow { color: var(--volt); font-weight: 700; }

/* ---------- stappen / werkwijze ---------- */

.steps { counter-reset: step; }

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--volt);
}

.step h3 { margin-bottom: 0.5rem; }

@media (max-width: 600px) {
  .step { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* ---------- quotes / social proof ---------- */

.quote-card { display: flex; flex-direction: column; gap: 1.2rem; }

.quote-card blockquote {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.65;
}

.quote-card .stars { color: var(--volt); letter-spacing: 0.15em; font-size: 0.9rem; }

.quote-card .who { font-size: 0.9rem; color: var(--muted); }

.quote-card .who strong { color: var(--text); font-weight: 600; display: block; }

/* ---------- FAQ ---------- */

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  margin-bottom: 0.9rem;
}

.faq summary {
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-family: var(--font-head);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq summary::after { content: "+"; color: var(--volt); font-size: 1.4rem; font-weight: 400; }

.faq details[open] summary::after { content: "\2212"; }

.faq details p { padding: 0 1.4rem 1.2rem; font-size: 0.98rem; }

/* ---------- CTA-band ---------- */

.cta-band {
  background: var(--volt);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}

.cta-band h2 { color: var(--volt-ink); margin-bottom: 0.8rem; }

.cta-band p { color: #3A4A10; max-width: 520px; margin: 0 auto 1.8rem; }

.cta-band .btn { background: var(--ink); color: var(--text); }

.cta-band .btn:hover { background: #1A2231; }

.cta-band .cta-sub { margin-top: 1.2rem; font-size: 0.9rem; }

.cta-band .cta-sub a { color: var(--volt-ink); font-weight: 600; text-decoration: underline; }

/* ---------- formulier ---------- */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

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

.field { display: flex; flex-direction: column; gap: 0.45rem; }

.field.full { grid-column: 1 / -1; }

.field label { font-size: 0.9rem; font-weight: 600; color: var(--text); }

.field input, .field select, .field textarea {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.field textarea { resize: vertical; min-height: 140px; }

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

.form-status {
  display: none;
  margin-top: 1.2rem;
  padding: 1rem 1.3rem;
  border-radius: var(--radius-sm);
  background: var(--volt-soft);
  border: 1px solid var(--volt);
  color: var(--text);
  font-size: 0.98rem;
}

.form-status.visible { display: block; }

/* ---------- contact info ---------- */

.contact-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-line:last-child { border-bottom: none; }

.contact-line .ci {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 12px;
  background: var(--volt-soft);
  color: var(--volt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-line a { color: var(--text); font-weight: 600; }

.contact-line a:hover { color: var(--volt); }

.contact-line .cl-sub { font-size: 0.85rem; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 2rem;
  background: var(--ink-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

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

.site-footer h4 {
  font-size: 0.85rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}

.site-footer ul { list-style: none; }

.site-footer li { margin-bottom: 0.55rem; }

.site-footer a { color: var(--muted); font-size: 0.95rem; }

.site-footer a:hover { color: var(--volt); }

.footer-brand p { font-size: 0.95rem; max-width: 320px; margin-top: 0.8rem; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- floating whatsapp ---------- */

.whatsapp-fab {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s;
}

.whatsapp-fab:hover { transform: scale(1.08); }

.whatsapp-fab svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- reveal on scroll ---------- */

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

.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- pagina-hero (subpagina's) ---------- */

.page-hero { padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem); }

.page-hero .lead { max-width: 640px; margin-top: 1.2rem; }

/* ---------- over mij ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

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

.about-photo {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.about-photo svg { width: 100%; height: auto; }

.about-copy h2 { margin: 2.2rem 0 0.8rem; font-size: 1.5rem; }

.about-copy p { margin-bottom: 1rem; }

.stat-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.5rem;
  min-width: 150px;
}

.stat .stat-num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--volt);
}

.stat .stat-label { font-size: 0.85rem; color: var(--muted); }

/* ---------- tabellen ---------- */

.compare-wrap { overflow-x: auto; }

table.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 640px;
}

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

table.compare th {
  font-family: var(--font-head);
  color: var(--text);
  font-size: 1rem;
}

table.compare td { color: var(--muted); }

table.compare td .tick { color: var(--volt); font-weight: 700; }
