/* ============================================================
   Notarisupdate — landing page
   Brand: eKo notaris — navy #03356B, lime #B9CC00, font Ubuntu
   ============================================================ */

:root {
  --navy: #03356B;
  --navy-dark: #022449;
  --navy-deep: #011a36;
  --lime: #B9CC00;
  --lime-dark: #9db000;
  --ink: #1c2530;
  --muted: #5a6b7d;
  --line: #e3e9f0;
  --bg-soft: #f5f8fb;
  --white: #ffffff;
  --radius: 14px;
  --shadow-sm: 0 1px 3px rgba(3, 53, 107, 0.08);
  --shadow-md: 0 8px 30px rgba(3, 53, 107, 0.12);
  --shadow-lg: 0 20px 60px rgba(2, 26, 54, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { line-height: 1.2; color: var(--navy); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 500; }

a { color: var(--navy); }

.accent { color: var(--lime); }
.accent-navy { color: var(--navy); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--lime);
  color: var(--navy-deep);
  box-shadow: 0 4px 20px rgba(185, 204, 0, 0.35);
}
.btn-primary:hover {
  background: #c8dc0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(185, 204, 0, 0.45);
}
.btn-ghost {
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn-nav {
  background: var(--navy);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.92rem;
}
.btn-nav:hover { background: var(--navy-dark); }
.btn-lg { padding: 18px 42px; font-size: 1.1rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.2rem;
  color: var(--navy);
}
.logo-text strong { font-weight: 700; }
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--navy);
  color: var(--lime);
  font-weight: 700;
  font-size: 1.15rem;
}
.logo-mark-sm { width: 28px; height: 28px; font-size: 0.95rem; border-radius: 7px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--ink);
}
.nav-links a:hover:not(.btn) { color: var(--navy); text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 55%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 204, 0, 0.16) 0%, transparent 70%);
}
.hero-inner { position: relative; max-width: 780px; }
.hero-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid rgba(185, 204, 0, 0.4);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 28px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--lime);
}
.stat-label { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); }

/* ---------- Probleem ---------- */
.probleem {
  background: var(--bg-soft);
  padding: 88px 0;
}
.probleem-inner {
  max-width: 760px;
  text-align: center;
}
.probleem-badge, .section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(3, 53, 107, 0.08);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.section-badge-light {
  color: var(--lime);
  background: rgba(185, 204, 0, 0.14);
}
.probleem h2 { margin-bottom: 18px; }
.probleem h2 .accent-navy {
  background: linear-gradient(transparent 62%, rgba(185, 204, 0, 0.45) 62%);
}
.probleem-text {
  font-size: 1.12rem;
  color: var(--muted);
}

/* ---------- Oplossing / features ---------- */
.oplossing { padding: 96px 0; }
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-sub {
  margin-top: 14px;
  font-size: 1.08rem;
  color: var(--muted);
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(185, 204, 0, 0.6);
}
.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 0.95rem; color: var(--muted); }

/* ---------- Voorbeeld / e-mail preview ---------- */
.voorbeeld {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 96px 0;
}
.voorbeeld h2 { color: var(--white); }
.voorbeeld .section-sub { color: rgba(255, 255, 255, 0.75); }
.email-preview {
  max-width: 680px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.email-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #dde4ec;
  padding: 11px 16px;
}
.email-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #b8c2cf;
}
.email-chrome-title {
  margin-left: 10px;
  font-size: 0.8rem;
  color: #5a6b7d;
}
.email-body { background: var(--white); padding: 28px 30px 24px; }
.email-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 6px;
}
.email-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  color: var(--navy);
}
.email-logo strong { font-weight: 700; }
.email-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--lime);
  font-weight: 700;
  font-size: 0.9rem;
}
.email-date { font-size: 0.82rem; color: var(--muted); }
.email-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.email-item-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}
.score-hi { background: var(--lime); color: var(--navy-deep); }
.score-mid { background: rgba(3, 53, 107, 0.1); color: var(--navy); }
.email-item-bron {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.email-item h4 { font-size: 1.02rem; margin-bottom: 6px; }
.email-item p { font-size: 0.9rem; color: var(--muted); margin-bottom: 8px; }
.email-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.email-fade {
  padding-top: 18px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Vergelijking ---------- */
.vergelijking { padding: 96px 0; }
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 560px;
}
.compare th, .compare td {
  padding: 16px 22px;
  text-align: left;
  font-size: 0.98rem;
}
.compare thead th {
  background: var(--bg-soft);
  color: var(--navy);
  font-weight: 700;
  border-bottom: 2px solid var(--line);
}
.th-sub { font-weight: 400; color: var(--muted); font-size: 0.85rem; }
.compare tbody tr { border-bottom: 1px solid var(--line); }
.compare tbody tr:last-child { border-bottom: none; }
.compare tbody td:first-child { font-weight: 500; color: var(--navy); }
.col-nu { background: rgba(185, 204, 0, 0.08); }
.compare thead .col-nu { background: rgba(185, 204, 0, 0.18); }
.col-nu-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--lime);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 0.9rem;
}
.mark-yes { color: #3d7a1f; font-weight: 700; }
.mark-no { color: #b23a3a; font-weight: 500; }

/* ---------- Over ons ---------- */
.over-ons {
  background: var(--navy);
  padding: 88px 0;
}
.over-inner {
  max-width: 720px;
  text-align: center;
}
.over-ons h2 { color: var(--white); margin-bottom: 18px; }
.over-ons p {
  font-size: 1.12rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}
.over-ons strong { color: var(--lime); font-weight: 500; }

/* ---------- Contact ---------- */
.contact {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(185, 204, 0, 0.12) 0%, transparent 60%),
    var(--bg-soft);
}
.contact-inner {
  max-width: 640px;
  text-align: center;
}
.contact h2 { margin-bottom: 14px; }
.contact h2 .accent {
  color: var(--navy);
  background: linear-gradient(transparent 62%, rgba(185, 204, 0, 0.5) 62%);
}
.contact-sub { color: var(--muted); font-size: 1.08rem; margin-bottom: 32px; }
.contact-details {
  margin-top: 30px;
  font-size: 1.05rem;
}
.contact-details a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
}
.contact-details a:hover { text-decoration: underline; text-underline-offset: 4px; }
.contact-sep { margin: 0 12px; color: var(--muted); }
.contact-motto {
  margin-top: 26px;
  font-style: italic;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 44px 0;
}
.footer-inner { text-align: center; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.footer-brand strong { font-weight: 700; }
.footer-line { font-size: 0.92rem; margin-bottom: 8px; }
.footer-line a { color: var(--lime); text-decoration: none; }
.footer-line a:hover { text-decoration: underline; }
.footer-copy { font-size: 0.8rem; color: rgba(255, 255, 255, 0.45); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .nav-links a:not(.btn) { display: none; }
}

@media (max-width: 560px) {
  .hero { padding: 72px 0 64px; }
  .hero-stats { gap: 28px; }
  .features { grid-template-columns: 1fr; }
  .oplossing, .voorbeeld, .vergelijking { padding: 72px 0; }
  .email-body { padding: 20px 18px; }
  .contact { padding: 76px 0; }
  .contact-sep { display: none; }
  .contact-details a { display: block; margin: 6px 0; }
}
