/* Conq marketing site — design system matches the existing app
   (Inter / Space Grotesk / JetBrains Mono, violet accent, soft cards) */

:root {
  --bg: #F7F8FB;
  --text: #12141C;
  --text-secondary: #5A6272;
  --text-tertiary: #8A93A3;
  --border: #E7E9F0;
  --border-strong: #E4E7EF;
  --accent: #6D5EF5;
  --accent-dark: #5847E0;
  --accent-tint: rgba(109, 94, 245, 0.12);
  --red: #DC2648;
  --red-tint: rgba(220, 38, 72, 0.1);
  --amber: #B4740E;
  --amber-tint: rgba(180, 116, 14, 0.1);
  --green: #16A34A;
  --green-tint: rgba(22, 163, 74, 0.1);
  --font-body: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  background-image: radial-gradient(circle at 12% -5%, rgba(109, 94, 245, 0.10) 0%, transparent 45%);
  background-repeat: no-repeat;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

img, svg { max-width: 100%; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.wrap-content { max-width: 720px; margin: 0 auto; padding: 0 32px; }

/* ---------- navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(247, 248, 251, 0.85);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.logo:hover { color: var(--text); }
.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-word {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-secondary);
}
.nav-link.current { color: var(--text); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle svg { display: block; }

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 32px 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-link { padding: 10px 0; width: 100%; }
  .nav-links .btn { margin-top: 8px; }
  .nav-toggle { display: block; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  border-radius: 11px;
  padding: 13px 24px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(109, 94, 245, 0.28);
}
.btn-primary:hover { color: #fff; filter: brightness(1.04); }
.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover { color: var(--text); border-color: var(--accent); }
.btn-small { padding: 10px 18px; font-size: 14px; border-radius: 10px; }
.btn-white {
  background: #fff;
  color: var(--accent-dark);
  font-weight: 700;
}
.btn-white:hover { color: var(--accent-dark); filter: brightness(0.98); }
.btn-block { display: flex; width: 100%; }

/* ---------- eyebrow / headings ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow-muted { color: var(--text-tertiary); }

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; color: var(--text); margin: 0; }

.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 { font-size: 27px; font-weight: 700; letter-spacing: -0.01em; }
.section-head p { font-size: 15.5px; color: var(--text-secondary); line-height: 1.6; max-width: 560px; margin: 12px auto 0; }

section { padding: 0 0 96px; }

/* ---------- hero ---------- */
.hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 32px 8px;
  text-align: center;
}
.hero h1 { font-size: 46px; font-weight: 700; line-height: 1.14; margin: 0 0 18px; }
.hero p.lead {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.page-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 32px 16px;
  text-align: center;
}
.page-hero h1 { font-size: 38px; font-weight: 700; line-height: 1.16; margin: 0 0 14px; }
.page-hero p { font-size: 16px; color: var(--text-secondary); line-height: 1.6; max-width: 560px; margin: 0 auto; }

/* ---------- card ---------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
}
.card-shadow { box-shadow: 0 24px 64px rgba(18, 20, 28, 0.08); }

/* ---------- product mockup (dashboard) ---------- */
.mockup-wrap { max-width: 880px; margin: 0 auto 100px; padding: 0 32px; }
.mockup {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 24px 64px rgba(18, 20, 28, 0.08);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.stat-tile { background: var(--bg); border-radius: 12px; padding: 16px 14px; }
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.stat-value { font-family: var(--font-display); font-size: 22px; font-weight: 700; }

.glimpse-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 8px;
  border-bottom: 1px solid #EEF0F5;
}
.glimpse-row:last-child { border-bottom: none; }
.glimpse-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.glimpse-main { flex: 1; }
.glimpse-partij { font-size: 14px; font-weight: 600; }
.glimpse-type { font-size: 12px; color: var(--text-tertiary); }
.glimpse-deadline { font-size: 12.5px; color: var(--text-tertiary); font-family: var(--font-mono); }
.badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 14px;
  white-space: nowrap;
}
.badge-red { background: var(--red-tint); color: var(--red); }
.badge-amber { background: var(--amber-tint); color: var(--amber); }
.badge-green { background: var(--green-tint); color: var(--green); }

/* ---------- feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.icon-tile {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--accent-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }

/* ---------- steps ---------- */
.step-card {
  border-radius: 16px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--border);
}
.step-card.dashed {
  border: 1.5px dashed #C9C2F7;
  background: rgba(109, 94, 245, 0.03);
}
.step-number {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(109, 94, 245, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
}

/* ---------- detail fields (verantwoording) ---------- */
.detail-fields .detail-row {
  padding: 16px 6px;
  border-bottom: 1px solid #EEF0F5;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 16px;
  align-items: start;
}
.detail-fields .detail-row:last-child { border-bottom: none; }
.detail-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  padding-top: 2px;
}
.detail-value { font-size: 14.5px; font-weight: 600; margin-bottom: 4px; }
.detail-reason { font-size: 13px; color: var(--text-tertiary); line-height: 1.5; }
.detail-confidence {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-tint);
  padding: 4px 10px;
  border-radius: 14px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .detail-fields .detail-row { grid-template-columns: 1fr; gap: 6px; }
  .detail-confidence { justify-self: start; }
}

/* ---------- pricing ---------- */
.pricing-wrap { max-width: 480px; margin: 0 auto; padding: 0 32px 96px; text-align: center; }
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 20px 60px rgba(18, 20, 28, 0.08);
}
.price-row { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-bottom: 6px; }
.price-amount { font-family: var(--font-display); font-size: 48px; font-weight: 700; letter-spacing: -0.02em; }
.price-period { font-size: 15px; color: var(--text-tertiary); }
.price-note { font-size: 13.5px; color: var(--text-tertiary); margin-bottom: 26px; }
.price-footnote { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ---------- faq ---------- */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}
.faq-question-text { font-size: 15px; font-weight: 600; color: var(--text); }
.faq-toggle-icon { font-size: 18px; color: var(--text-tertiary); flex-shrink: 0; }
.faq-answer {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ---------- slot cta ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  padding: 64px 32px;
  text-align: center;
}
.cta-band h2 { font-size: 28px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 24px; color: #fff; }

/* ---------- footer ---------- */
footer { background: var(--bg); }
.footer-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 32px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand-desc { font-size: 13.5px; color: var(--text-tertiary); line-height: 1.6; margin-top: 12px; }
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13.5px; color: var(--text-secondary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 32px;
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .feature-grid.cols-3 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .page-hero h1 { font-size: 30px; }
  section { padding-bottom: 64px; }
}

/* ---------- content pages (legal) ---------- */
.legal-content { padding: 0 0 96px; }
.legal-content h2 { font-size: 20px; margin: 36px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.legal-content ul { padding-left: 20px; }
.legal-updated { font-size: 13px; color: var(--text-tertiary); margin-bottom: 8px; }

/* ---------- contact form ---------- */
.contact-wrap { max-width: 560px; margin: 0 auto; padding: 0 32px 96px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14.5px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: #fff;
  color: var(--text);
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.contact-alt {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
}
