/* ════════════════════════════════════════════
   ZAPSITE — Shared design system
   ════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --ink:         #0c0c0b;
  --paper:       #faf9f7;
  --warm:        #f0ece4;
  --accent:      #E07B1A;
  --accent-bg:   rgba(224,123,26,.09);
  --accent-dark: #B85E0A;
  --muted:       #8a8680;
  --border:      rgba(12,12,11,0.09);
  --serif:       'DM Serif Display', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
  --maxw:        1100px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  background-image: radial-gradient(rgba(12,12,11,.052) 1px, transparent 1px);
  background-size: 24px 24px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.8); }
}
@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 100%; }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes zapFlash {
  0%, 90%, 100% { opacity: 1; }
  95%           { opacity: .2; }
}
.reveal { opacity: 0; animation: fadeUp .7s ease forwards; }
.d1 { animation-delay: .1s; }
.d2 { animation-delay: .25s; }
.d3 { animation-delay: .4s; }
.d4 { animation-delay: .55s; }
.d5 { animation-delay: .7s; }

/* ── WORDMARK ── */
.wordmark { display: inline-flex; align-items: baseline; gap: 0; text-decoration: none; color: inherit; }
.wm-zap  { font-family: var(--serif); font-style: italic; letter-spacing: -.02em; }
.wm-site { font-family: var(--sans); font-weight: 300; color: var(--muted); }
.wm-dot  { font-family: var(--serif); color: var(--accent); animation: zapFlash 4s ease infinite; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  background: rgba(250,249,247,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: padding .3s ease, box-shadow .3s ease;
}
nav.scrolled {
  padding: 13px 40px;
  box-shadow: 0 4px 28px rgba(12,12,11,.06);
}
.nav-logo .wm-zap  { font-size: 22px; }
.nav-logo .wm-site { font-size: 16px; margin-left: 1px; }
.nav-logo .wm-dot  { font-size: 22px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--muted);
  text-decoration: none; letter-spacing: .02em; transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transition: transform .2s ease; transform-origin: left;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  font-size: 13px; font-weight: 500; color: var(--paper);
  background: var(--ink); padding: 9px 20px; border-radius: 100px;
  text-decoration: none; transition: all .2s;
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px; background: none; border: none;
}
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: all .3s ease; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--paper); z-index: 99; padding: 100px 40px 40px;
  flex-direction: column; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif); font-size: 32px; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid var(--border);
  padding-bottom: 16px; transition: color .2s;
}
.mobile-menu a:hover { color: var(--accent); }

/* ── PAGE HEADER (subpages) ── */
.page-header {
  padding: 160px 40px 80px;
  max-width: var(--maxw); margin: 0 auto;
  position: relative;
}
.page-kicker {
  font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.page-kicker::before { content: ''; display: block; width: 28px; height: 1px; background: var(--accent); }
.page-header h1 {
  font-family: var(--serif); font-size: clamp(44px, 6vw, 80px);
  line-height: 1.05; letter-spacing: -.03em; margin-bottom: 24px;
  max-width: 760px;
}
.page-header h1 em { font-style: italic; color: var(--accent); }
.page-header p {
  font-size: 17px; color: var(--muted); max-width: 540px;
  line-height: 1.7; font-weight: 300;
}

/* ── SECTION COMMON ── */
section { padding: 100px 40px; }
.container { max-width: var(--maxw); margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--accent); }
.section-title {
  font-family: var(--serif); font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1; letter-spacing: -.02em; margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-sub {
  font-size: 16px; color: var(--muted); max-width: 520px; line-height: 1.7;
}

/* Texturen op specifieke achtergronden */
.warm-bg, .pricing, .how, .contact {
  background-image: radial-gradient(rgba(12,12,11,.038) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ── BUTTONS ── */
.btn-primary {
  font-size: 14px; font-weight: 500; color: var(--paper);
  background: var(--ink); padding: 14px 28px; border-radius: 100px;
  text-decoration: none; transition: all .25s; letter-spacing: .01em;
  display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer;
  font-family: var(--sans);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(12,12,11,.15); }
.btn-secondary {
  font-size: 14px; font-weight: 400; color: var(--muted);
  text-decoration: none; transition: color .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-secondary:hover { color: var(--ink); }
.btn-ghost {
  font-size: 14px; font-weight: 500; color: var(--ink);
  background: transparent; padding: 13px 26px; border-radius: 100px;
  border: 1px solid var(--border); text-decoration: none;
  transition: all .2s;
}
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }

/* ── TICKER ── */
.ticker { background: var(--ink); padding: 13px 0; overflow: hidden; white-space: nowrap; user-select: none; }
.ticker-track { display: inline-flex; animation: ticker 26s linear infinite; }
.ticker-item {
  font-size: 11px; font-weight: 400; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(250,249,247,.3);
  padding: 0 20px; display: inline-flex; align-items: center; gap: 20px;
}
.ticker-item::after { content: '⚡'; color: var(--accent); opacity: .8; }

/* ── DARK SECTIONS (statement, about, etc.) ── */
.dark-section { background: var(--ink); color: var(--paper); }
.dark-section .section-title { color: var(--paper); }

/* ── GUARANTEE / CTA STRIP ── */
.guarantee { background: var(--accent); padding: 56px 40px; }
.guarantee-inner {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
  max-width: var(--maxw); margin: 0 auto;
}
.guarantee-check {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,.18); border: 1.5px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.guarantee-text { flex: 1; min-width: 200px; }
.guarantee-title { font-family: var(--serif); font-size: 28px; color: white; line-height: 1.15; margin-bottom: 6px; }
.guarantee-sub { font-size: 15px; color: rgba(255,255,255,.78); line-height: 1.6; max-width: 480px; }
.guarantee-btn {
  font-size: 14px; font-weight: 500;
  background: white; color: var(--accent-dark);
  padding: 14px 26px; border-radius: 100px;
  text-decoration: none; white-space: nowrap;
  transition: all .2s; flex-shrink: 0;
}
.guarantee-btn:hover { background: var(--ink); color: white; transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--ink); color: rgba(250,249,247,.35);
  padding: 56px 40px 40px;
}
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand .wordmark { margin-bottom: 16px; display: inline-flex; }
.footer-brand .wm-zap  { font-size: 24px; color: var(--paper); }
.footer-brand .wm-site { font-size: 18px; }
.footer-brand .wm-dot  { font-size: 24px; }
.footer-brand p {
  font-size: 13px; color: rgba(250,249,247,.42); line-height: 1.7;
  max-width: 280px; margin-top: 4px;
}
.footer-col h4 {
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(250,249,247,.6);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px; color: rgba(250,249,247,.42); text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--maxw); margin: 48px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(250,249,247,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(250,249,247,.32); flex-wrap: wrap; gap: 12px;
}

/* ── CONTACT FORM ── */
.contact-inner {
  max-width: 580px; background: var(--paper); border-radius: 20px;
  padding: 52px; margin: 48px auto 0;
  border: 1px solid var(--border); box-shadow: 0 8px 40px rgba(12,12,11,.04);
}
.contact-inner h3 { font-family: var(--serif); font-size: 28px; margin-bottom: 8px; }
.contact-inner > p { font-size: 14px; color: var(--muted); margin-bottom: 32px; line-height: 1.6; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 500; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border); border-radius: 8px;
  font-family: var(--sans); font-size: 14px; font-weight: 300; color: var(--ink);
  background: var(--paper); outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(224,123,26,.1);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.submit-btn {
  width: 100%; padding: 15px; background: var(--ink); color: var(--paper);
  border: none; border-radius: 100px; font-family: var(--sans); font-size: 15px;
  font-weight: 500; cursor: pointer; transition: all .25s; margin-top: 8px; letter-spacing: .02em;
}
.submit-btn:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(12,12,11,.15); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; margin-top: 48px; max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); scroll-margin-top: 100px; }
.faq-q {
  width: 100%; padding: 22px 0; text-align: left; background: none; border: none;
  font-family: var(--sans); font-size: 16px; font-weight: 400; color: var(--ink);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-q:hover { color: var(--accent-dark); }
.faq-icon { font-size: 22px; color: var(--accent); transition: transform .2s; flex-shrink: 0; line-height: 1; }
.faq-a {
  font-size: 14px; color: var(--muted); line-height: 1.75;
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s;
}
.faq-a.open { max-height: 320px; padding-bottom: 22px; }

/* ── PRICING ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px;
}
.price-card {
  background: var(--paper); border-radius: 16px; padding: 36px;
  border: 1px solid var(--border); position: relative;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(12,12,11,.08); }
.price-card.featured { background: var(--ink); border-color: var(--ink); }
.price-badge {
  position: absolute; top: 24px; right: 24px;
  font-size: 10px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  background: var(--accent); color: white; padding: 4px 10px; border-radius: 100px;
}
.price-name { font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.price-card.featured .price-name { color: rgba(250,249,247,.4); }
.price-amount { font-family: var(--serif); font-size: 56px; line-height: 1; color: var(--ink); margin-bottom: 6px; }
.price-card.featured .price-amount { color: var(--paper); }
.price-period { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.price-card.featured .price-period { color: rgba(250,249,247,.4); }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.price-feat {
  font-size: 13px; color: var(--ink);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.55;
}
.price-card.featured .price-feat { color: rgba(250,249,247,.8); }
.price-feat::before { content: '\2713'; color: var(--accent); font-weight: 600; flex-shrink: 0; }
.price-btn {
  display: block; width: 100%; padding: 13px;
  text-align: center; border-radius: 100px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  background: var(--warm); color: var(--ink);
  border: 1px solid var(--border); transition: all .2s; margin-top: auto;
}
.price-card.featured .price-btn { background: var(--accent); color: white; border-color: var(--accent); }
.price-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.price-card.featured .price-btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

/* ── HOW STEPS ── */
.how-step {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1px solid var(--border);
  transition: padding-left .25s; cursor: default;
}
.how-step:hover { padding-left: 10px; }
.how-step:first-child { padding-top: 0; }
.how-step:last-child { border-bottom: none; }
.step-num { font-family: var(--serif); font-size: 14px; color: var(--accent); flex-shrink: 0; width: 32px; padding-top: 2px; }
.step-title { font-size: 16px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  nav.scrolled { padding: 13px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 72px 20px; }
  .page-header { padding: 130px 20px 60px; }
  .guarantee { padding: 40px 20px; }
  .guarantee-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-inner { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}
