/* =============================================================
   FIT IN FINANCE — LANDING PAGE (lokaal)
   ============================================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --color-primary: #1B2A4A;
  --color-primary-light: #2D4470;
  --color-accent: #2A9D8F;
  --color-accent-light: #5BBFB5;
  --color-accent-wash: #E8F6F4;
  --color-cta: #E8985A;
  --color-cta-light: #F2C89E;
  --color-cta-wash: #FDF4EB;
  --color-bg: #F8F7F4;
  --color-bg-alt: #F2F1EE;
  --color-white: #FFFFFF;
  --color-text-heading: #1E1E1C;
  --color-text-body: #4A4945;
  --color-text-muted: #8A8880;
  --color-border: #D1CFC9;
  --color-success: #3B8F6E;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem; color: var(--color-text-body);
  line-height: 1.65; background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV (zelfde als faq.html) */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(248,247,244,.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,.08); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 80px;
}
.nav-logo img { display: block; height: 70px; width: auto; }
.nav-links {
  display: flex; align-items: center;
  list-style: none; gap: 6px;
  flex: 1; justify-content: center;
}
.nav-links li a {
  font-size: .88rem; font-weight: 500;
  color: var(--color-primary); text-decoration: none;
  padding: 6px 10px; border-radius: 6px;
  transition: background .2s, color .2s;
}
.nav-links li a:hover { background: var(--color-accent-wash); color: var(--color-accent); text-decoration: none; }
.nav-cta {
  background: var(--color-accent) !important;
  color: white !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--color-accent-light) !important; }

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--color-primary); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* CONTAINER & GENERIEK */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-narrow { max-width: 780px; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: .78rem; font-weight: 600;
  color: var(--color-accent); text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 12px;
}
.section-title {
  font-size: 1.75rem; font-weight: 600;
  color: var(--color-text-heading); line-height: 1.25;
  margin-bottom: 16px;
}
.section-title + p {
  font-size: 1.05rem; color: var(--color-text-muted);
  max-width: 640px; line-height: 1.65;
}

/* HERO */
.hero {
  padding: 130px 0 60px;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 56px; align-items: center;
}
.hero-content h1 {
  font-size: 2.35rem; font-weight: 600;
  color: var(--color-text-heading);
  line-height: 1.2; margin: 10px 0 18px;
}
.hero-content h1 em {
  color: var(--color-accent); font-style: normal;
}
.hero-content p.hero-lead {
  font-size: 1.08rem; color: var(--color-text-body);
  line-height: 1.65; margin-bottom: 28px; max-width: 520px;
}
.hero-highlight {
  display: block;
  background: var(--color-accent-wash);
  border-left: 3px solid var(--color-accent);
  padding: 14px 18px; border-radius: 8px;
  font-size: .97rem; color: var(--color-text-heading);
  margin-bottom: 28px; max-width: 520px;
  font-weight: 500;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 8px;
  font-weight: 600; font-size: .97rem;
  text-decoration: none;
  transition: background .25s, color .25s, border-color .25s;
  cursor: pointer; border: 1.5px solid transparent;
}
.btn-cta {
  background: var(--color-cta); color: white;
}
.btn-cta:hover { background: var(--color-cta-light); color: white; text-decoration: none; }
.btn-secondary {
  background: transparent; color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary); color: white; text-decoration: none;
}
.hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(27,42,74,.22);
}
.hero-image img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* TRUST BAR */
.trust {
  background: var(--color-bg-alt);
  padding: 26px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 36px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; font-weight: 500;
  color: var(--color-text-body);
}
.trust-item svg {
  width: 20px; height: 20px; flex-shrink: 0;
  stroke: var(--color-accent);
}

/* CONTENT BLOCKS */
.content-block h2 {
  font-size: 1.55rem; font-weight: 600;
  color: var(--color-text-heading);
  line-height: 1.3; margin-bottom: 18px;
}
.content-block h3 {
  font-size: 1.2rem; font-weight: 600;
  color: var(--color-primary);
  margin: 24px 0 10px;
}
.content-block p {
  font-size: 1rem; color: var(--color-text-body);
  line-height: 1.7; margin-bottom: 14px;
}
.content-block ul.feature-list {
  list-style: none; margin: 8px 0 20px;
}
.content-block ul.feature-list li {
  position: relative; padding-left: 30px;
  margin-bottom: 12px; line-height: 1.6;
  font-size: .98rem;
}
.content-block ul.feature-list li::before {
  content: ""; position: absolute;
  left: 0; top: 6px; width: 18px; height: 18px;
  background: var(--color-accent-wash);
  border-radius: 50%;
}
.content-block ul.feature-list li::after {
  content: ""; position: absolute;
  left: 5px; top: 10px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(-45deg);
}
.content-block ul.feature-list li strong { color: var(--color-text-heading); }

/* PRIJS TABEL */
.price-table {
  width: 100%; border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
  margin: 22px 0 12px;
}
.price-table th,
.price-table td {
  text-align: left; padding: 14px 20px;
  font-size: .95rem;
  border-bottom: 1px solid var(--color-border);
}
.price-table th {
  background: var(--color-bg-alt);
  color: var(--color-primary);
  font-weight: 600; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .5px;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td.price-col {
  font-weight: 600; color: var(--color-text-heading);
  text-align: right;
  white-space: nowrap;
}
.price-note {
  font-size: .85rem; color: var(--color-text-muted);
  font-style: italic;
}

/* HERKENT-U-ZICH BLOCK */
.recognize {
  background: var(--color-accent-wash);
  border-radius: 16px;
  padding: 40px 44px;
  margin-top: 28px;
}
.recognize h2 { margin-bottom: 14px; }
.recognize p { margin-bottom: 14px; }
.recognize p:last-child { margin-bottom: 0; }

/* REVIEWS */
.reviews { background: var(--color-bg-alt); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 40px;
}
.review-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px 26px;
  display: flex; flex-direction: column;
}
.review-stars {
  color: var(--color-cta); font-size: 1.05rem;
  margin-bottom: 14px; letter-spacing: 1px;
}
.review-quote {
  font-size: .96rem; font-style: italic;
  color: var(--color-text-body);
  line-height: 1.65; margin-bottom: 18px;
  flex: 1;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--color-border);
}
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; color: white; font-size: 1rem;
}
.avatar-teal { background: var(--color-accent); }
.avatar-amber { background: var(--color-cta); }
.avatar-navy { background: var(--color-primary); }
.review-name {
  font-weight: 600; color: var(--color-text-heading);
  font-size: .93rem;
}
.review-company {
  font-size: .82rem; color: var(--color-text-muted);
}

/* FAQ — accordion stijl uit faq.html */
.local-faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--color-white);
  transition: box-shadow .3s;
}
.faq-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.faq-question {
  width: 100%; padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: .98rem; font-weight: 600;
  color: var(--color-text-heading); text-align: left; gap: 16px;
}
.faq-question:hover { color: var(--color-accent); }
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform .3s;
  color: var(--color-accent);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}
.faq-answer p { font-size: .93rem; color: var(--color-text-body); line-height: 1.65; }

/* CTA banner (navy) */
.cta-banner {
  background: var(--color-primary);
  color: white;
  padding: 64px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(42,157,143,.18), transparent 70%);
  pointer-events: none;
}
.cta-banner::before { top: -180px; left: -120px; }
.cta-banner::after {
  background: radial-gradient(circle, rgba(232,152,90,.14), transparent 70%);
  bottom: -200px; right: -100px;
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: 1.65rem; font-weight: 600;
  color: white; margin-bottom: 14px;
}
.cta-banner p {
  font-size: 1rem; color: rgba(255,255,255,.75);
  max-width: 540px; margin: 0 auto 28px; line-height: 1.6;
}
.cta-banner .btn-cta { font-size: 1rem; padding: 15px 32px; }

/* WERKGEBIED — links naar andere landingspagina's */
.werkgebied { background: var(--color-bg); padding: 64px 0; }
.werkgebied-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-top: 28px;
}
.werkgebied-card {
  display: flex; flex-direction: column;
  padding: 22px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.werkgebied-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,42,74,.08);
  text-decoration: none;
}
.werkgebied-label {
  font-size: .75rem; color: var(--color-text-muted);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 4px;
}
.werkgebied-name {
  font-size: 1.05rem; font-weight: 600;
  color: var(--color-primary);
}

/* FOOTER */
.footer {
  background: var(--color-primary);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 28px 0;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo img { opacity: .82; height: 70px; width: auto; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-copy a { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-copy a:hover { color: rgba(255,255,255,.85); text-decoration: underline; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: .8rem; color: rgba(255,255,255,.45); text-decoration: none; }
.footer-links a:hover { color: rgba(255,255,255,.82); }

/* ANIMATIONS */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content h1 { font-size: 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .werkgebied-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--color-white);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    padding: 16px; gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block; width: 100%;
    padding: 12px 16px; border-radius: 8px;
  }
  .nav-links li:last-child a {
    background: var(--color-accent);
    color: white; text-align: center;
    margin-top: 8px;
  }
  .hero { padding: 120px 0 50px; }
  .hero-content h1 { font-size: 1.7rem; }
  .section { padding: 54px 0; }
  .section-title { font-size: 1.5rem; }
  .recognize { padding: 28px 24px; }
  .werkgebied-grid { grid-template-columns: 1fr; }
  .trust-grid { gap: 18px; }
  .trust-item { font-size: .82rem; }
}/* Landingspagina's v1.0 — 2026-04-15 */
