/* LegalNow. — juridisch advies demo */
:root {
  --navy: #0e1111;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-muted: #f4f5f7;
  --text: #0e1111;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --orange: #ff6b00;
  --orange-soft: rgba(255, 107, 0, 0.1);
  --font: 'Inter', system-ui, sans-serif;
  --container: 1140px;
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

.logo { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.03em; color: var(--navy); }
.logo__dot { color: var(--orange); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.nav { display: flex; gap: 32px; }
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav a:hover { color: var(--navy); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover { background: #1a1f1f; }
.btn--orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--orange:hover { background: #e85f00; }
.btn--outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--bg-muted); }
.btn--link {
  background: none;
  border: none;
  padding: 12px 0;
  color: var(--navy);
  font-weight: 600;
}
.btn--link:hover { color: var(--orange); }
.btn--lg { padding: 14px 28px; font-size: 0.95rem; }

/* Hero — boxed in container (uitgelijnd met header) */
.hero {
  padding: 56px 0 40px;
  background: var(--white);
}
.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
.hero__content {
  min-width: 0;
}
.hero__title {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--navy);
}
.hero__text {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 28px;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.hero__visual {
  min-width: 0;
}
.hero__visual img,
.hero__placeholder {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}
.hero__placeholder {
  background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 50%, #64748b 100%);
}
.about__visual img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about__placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 50%, #64748b 100%);
}

/* Stats */
.stats-bar {
  padding: 28px 0 36px;
  border-bottom: 1px solid var(--border);
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.stat-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.stat-item__icon img { width: 28px; height: 28px; object-fit: contain; }
.stat-item__icon--fallback svg { width: 28px; height: 28px; }
.stat-item__value {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.stat-item__label { font-size: 0.82rem; color: var(--text-muted); }

/* Sections */
.section { padding: 80px 0; }
.section--muted { background: var(--bg-muted); }
.section__title {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 40px;
}
.section__title--center { text-align: center; }

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 48px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: rgba(255, 107, 0, 0.35);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--orange);
}
.service-card__icon img { width: 40px; height: 40px; object-fit: contain; }
.service-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--navy);
}
.service-card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.service-card__arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about__content .btn { margin-top: 12px; }

/* Process */
.process__grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.process__arrow {
  display: flex;
  align-items: center;
  color: #cbd5e1;
  font-size: 1.25rem;
  padding-top: 28px;
}
.process-card {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
}
.process-card__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.process-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy);
}
.process-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Testimonials */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
.testimonial-card__quote {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 12px;
}
.testimonial-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 20px;
}
.testimonial-card cite {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  font-style: normal;
  color: var(--navy);
  margin-bottom: 8px;
}
.testimonial-card__stars {
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* Pricing */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
.price-card--featured {
  border-color: var(--navy);
  box-shadow: 0 12px 32px rgba(14, 17, 17, 0.12);
}
.price-card__ribbon {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 12px;
}
.price-card__head {
  padding: 24px 24px 16px;
}
.price-card--featured .price-card__head {
  padding-top: 20px;
}
.price-card--featured:not(:has(.price-card__ribbon)) .price-card__head {
  background: var(--navy);
  color: var(--white);
}
.price-card--featured:has(.price-card__ribbon) .price-card__head {
  padding-top: 16px;
}
.price-card--featured .price-card__name,
.price-card--featured .price-card__price {
  color: inherit;
}
.price-card--featured:has(.price-card__ribbon) .price-card__name {
  color: var(--navy);
}
.price-card--featured:has(.price-card__ribbon) .price-card__price {
  color: var(--navy);
}
.price-card__name {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.price-card__price {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.15;
}
.price-card__price span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
}
.price-card--featured:has(.price-card__ribbon) .price-card__price span {
  color: var(--text-muted);
}
.price-card__body {
  padding: 0 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.price-card__features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.price-card__features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 7px 0 7px 22px;
  position: relative;
}
.price-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}
.price-card__btn {
  display: block;
  text-align: center;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.price-card__btn--outline {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: var(--white);
}
.price-card__btn--outline:hover { background: var(--bg-muted); }
.price-card__btn--navy {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid var(--navy);
}
.price-card__btn--navy:hover { background: #1a1f1f; }

/* CTA */
.cta-banner {
  padding: 64px 0;
  background: var(--bg-muted);
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 40px 48px;
}
.cta-banner__text h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.cta-banner__text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
}
.cta-banner .logo__dot { color: var(--orange); }

/* Footer */
.footer {
  background: var(--white);
  padding: 64px 0 28px;
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.footer__brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 240px;
  line-height: 1.6;
}
.footer h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--navy);
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 0.875rem; color: var(--text-muted); }
.footer a:hover { color: var(--orange); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
}
.footer__social a:hover { border-color: var(--orange); color: var(--orange); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a:hover { color: var(--navy); }

.demo-badge {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 200;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 14px;
  background: var(--orange);
  color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.demo-badge a { color: var(--white); text-decoration: underline; margin-left: 6px; }

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .process__arrow { display: none; }
  .process__grid { flex-direction: column; align-items: center; }
}
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 32px;
  }
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero__visual {
    order: -1;
  }
  .about__grid { grid-template-columns: 1fr; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    gap: 12px;
  }
  .nav.is-open { display: flex; }
  .header__inner { position: relative; }
  .nav-toggle { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; padding: 28px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
