/* Renovato landing — replicates the in-app landing design */
:root {
  --navy: #0F172A;
  --navy-2: #1e3a5f;
  --blue: #2563EB;
  --blue-light: #60A5FA;
  --text: #1a1a1a;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg-alt: #f8fafc;
  --bg-grey: #f1f5f9;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── Topbar ── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--line);
}
.topbar-in {
  max-width: 1180px; margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.socials { display: flex; gap: 14px; align-items: center; }
.soc { color: #475569; display: inline-flex; transition: color .15s; }
.soc:hover { color: var(--blue); }
.top-right { display: flex; align-items: center; gap: 12px; }

/* language dropdown */
.lang { position: relative; }
.lang summary {
  list-style: none; cursor: pointer; user-select: none;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: #334155;
  padding: 7px 10px; border-radius: 8px; border: 1px solid var(--line);
}
.lang summary::-webkit-details-marker { display: none; }
.lang summary:hover { background: var(--bg-alt); }
.lang .chev { font-size: 9px; color: var(--muted); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 6px);
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 8px 30px rgba(15,23,42,.12);
  min-width: 160px; padding: 6px; display: flex; flex-direction: column;
}
.lang-menu a {
  padding: 9px 12px; font-size: 14px; text-decoration: none;
  border-radius: 8px; color: var(--text);
}
.lang-menu a:hover { background: var(--bg-alt); }
.lang-menu a.cur { font-weight: 700; color: var(--blue); }

/* ── Buttons ── */
.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  border-radius: 10px; padding: 13px 26px; font-size: 15px;
  transition: transform .12s, box-shadow .12s, background .12s;
}
.btn:hover { transform: translateY(-1px); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(37,99,235,.35); }
.btn-blue:hover { background: #1d4ed8; }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 15px 34px; font-size: 16px; }

/* ── Hero ── */
.hero {
  background: var(--navy);
  color: #fff; text-align: center;
  padding: 72px 20px 88px;
}
.badge {
  display: inline-block; font-size: 12.5px; font-weight: 600;
  color: var(--blue-light); border: 1px solid rgba(96,165,250,.4);
  background: rgba(37,99,235,.12);
  padding: 6px 14px; border-radius: 30px; margin-bottom: 30px;
}
.hero-logo {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 30px;
}
.wordmark { font-size: 42px; font-weight: 800; letter-spacing: -0.05em; }
.wordmark .a, .wordmark-sm .a { color: var(--blue-light); }
.hero h1 {
  font-size: clamp(34px, 6vw, 58px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 22px;
}
.hero .accent { color: var(--blue-light); }
.hero-sub {
  max-width: 560px; margin: 0 auto 34px;
  font-size: 17px; color: #cbd5e1;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Sections ── */
.sec { padding: 80px 20px; max-width: 1180px; margin: 0 auto; text-align: center; }
.sec-alt { max-width: none; background: var(--bg-alt); }
.sec-alt > * { max-width: 1180px; margin-left: auto; margin-right: auto; }
.sec-grey { max-width: none; background: var(--bg-grey); }
.sec-grey > * { max-width: 1180px; margin-left: auto; margin-right: auto; }
.sec h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 800; letter-spacing: -0.02em; }
.sec-sub { color: var(--muted); margin: 10px auto 46px; font-size: 16px; max-width: 620px; }

/* doelgroepen cards */
.cards2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 900px; margin: 0 auto; text-align: left;
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 30px 28px; box-shadow: 0 2px 12px rgba(15,23,42,.05);
}
.card-emoji { font-size: 34px; margin-bottom: 12px; }
.card h3 { font-size: 21px; font-weight: 800; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.card ul { list-style: none; }
.card-dark { background: var(--navy); border-color: var(--navy); color: #fff; }
.card-dark p { color: #cbd5e1; }
.feat, .feat-dark {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; padding: 5px 0;
}
.feat svg { color: var(--blue); flex-shrink: 0; }
.feat-dark svg { color: var(--blue-light); flex-shrink: 0; }

/* steps */
.steps { max-width: 640px; margin: 0 auto; text-align: left; }
.step { display: flex; gap: 18px; margin-bottom: 30px; align-items: flex-start; }
.step-num {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* browser mockup */
.browser {
  max-width: 880px; margin: 0 auto; border-radius: 14px; overflow: hidden;
  background: #2b2b30; box-shadow: 0 24px 60px rgba(15,23,42,.25);
}
.browser-bar {
  display: flex; align-items: center; gap: 7px; padding: 10px 14px;
}
.browser-bar span { width: 11px; height: 11px; border-radius: 50%; }
.browser-bar span:nth-child(1) { background: #ff5f57; }
.browser-bar span:nth-child(2) { background: #febc2e; }
.browser-bar span:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1; margin-left: 8px; background: #1d1d20; color: #9a9aa0;
  font-size: 12px; padding: 5px 12px; border-radius: 6px; text-align: left;
}

/* pdf strip */
.pdf-strip { max-width: 1020px; margin: 0 auto; }

/* pricing */
.pricing {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: 940px; margin: 0 auto; text-align: center; align-items: start;
}
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 34px 26px; position: relative;
}
.price-card h3 { font-size: 18px; font-weight: 800; }
.price { font-size: 38px; font-weight: 800; letter-spacing: -0.03em; margin-top: 8px; }
.per { color: var(--muted); font-size: 13px; margin-bottom: 18px; }
.price-card ul { list-style: none; text-align: left; display: inline-block; }
.price-popular { background: var(--navy); color: #fff; border: 2px solid var(--blue); }
.price-popular .per { color: #94a3b8; }
.price-mak { background: var(--navy-2); color: #fff; border-color: var(--navy-2); }
.price-mak .per { color: #b6c6dd; }
.pop-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 5px 14px; border-radius: 20px; white-space: nowrap;
}

/* faq */
.faq { max-width: 680px; margin: 0 auto; text-align: left; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; user-select: none;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  font-weight: 700; font-size: 16px; padding: 20px 2px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.plus { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.plus::before, .plus::after {
  content: ""; position: absolute; background: var(--muted); border-radius: 2px;
  transition: transform .18s;
}
.plus::before { left: 6px; top: 0; width: 2px; height: 14px; }
.plus::after { left: 0; top: 6px; width: 14px; height: 2px; }
.faq-item[open] .plus::before { transform: rotate(90deg); }
.faq-item p { color: var(--muted); font-size: 14.5px; padding: 0 2px 20px; max-width: 620px; }

/* final cta */
.cta-final {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff; text-align: center; padding: 90px 20px;
}
.cta-final h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; letter-spacing: -0.02em; }
.cta-final p { color: #cbd5e1; margin: 12px 0 30px; font-size: 16px; }

/* footer */
footer {
  background: #0b1322; color: #94a3b8; text-align: center;
  padding: 36px 20px; font-size: 13px;
}
.foot-logo { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 14px; }
.wordmark-sm { font-size: 17px; font-weight: 800; letter-spacing: -0.04em; color: #fff; }
.foot-links { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.foot-links a { color: #94a3b8; text-decoration: none; }
.foot-links a:hover { color: #fff; }

/* responsive */
@media (max-width: 760px) {
  .cards2, .pricing { grid-template-columns: 1fr; }
  .sec { padding: 60px 18px; }
  .hero { padding: 56px 18px 70px; }
  .wordmark { font-size: 34px; }
  .socials { gap: 10px; }
}

/* a11y */
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

/* ── v2: bigger hero logo ── */
.hero-logo img { width: 64px; height: 64px; }
.wordmark { font-size: clamp(46px, 8vw, 68px); }
.hero h1 { font-size: clamp(30px, 5vw, 50px); }

/* ── v2: carousels ── */
.car-track {
  display: flex; gap: 16px; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.car-track::-webkit-scrollbar { display: none; }
.car-track > * { scroll-snap-align: center; flex-shrink: 0; }
.pdf-carousel { position: relative; max-width: 1020px; margin: 0 auto; }
.pdf-carousel .car-track > img {
  width: 300px; border-radius: 8px;
  box-shadow: 0 6px 24px rgba(15,23,42,.12);
}
.car-prev, .car-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--navy); color: #fff; font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(15,23,42,.3); transition: background .15s;
}
.car-prev:hover, .car-next:hover { background: var(--blue); }
.car-prev { left: -14px; }
.car-next { right: -14px; }
.browser { position: relative; }
.browser .car-track { gap: 0; }
.browser .car-track > img { width: 100%; }
.browser .car-prev { left: 10px; }
.browser .car-next { right: 10px; }

/* ── v2: lightbox ── */
img.lb { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 14, 25, .92);
  display: flex; align-items: center; justify-content: center;
  padding: 4vh 4vw; animation: lbfade .15s ease;
}
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5);
  cursor: default;
}
.lightbox-close {
  position: absolute; top: 18px; right: 22px;
  width: 44px; height: 44px; border: none; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; font-size: 26px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
@media (max-width: 760px) {
  .pdf-carousel .car-track > img { width: 240px; }
  .car-prev { left: 4px; } .car-next { right: 4px; }
  .hero-logo img { width: 48px; height: 48px; }
}

/* ── v3: toggle Particulier/Makelaar ── */
.see-toggle { display: flex; gap: 8px; justify-content: center; margin-bottom: 26px; }
.tog-btn {
  padding: 10px 26px; border-radius: 30px; cursor: pointer;
  border: 1px solid var(--line); background: #f1f5f9;
  font-weight: 700; font-size: 14px; color: var(--text);
  transition: background .15s, color .15s;
}
.tog-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.hidden { display: none; }

/* ── v3: dots ── */
.car-dots { display: flex; gap: 7px; justify-content: center; padding: 13px 0; }
.car-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0;
  background: #cbd5e1; cursor: pointer; transition: all .2s;
}
.car-dot.active { background: var(--blue); width: 22px; border-radius: 4px; }
.browser .car-dots { background: #2b2b30; padding: 11px 0 13px; }
.browser .car-dot { background: rgba(255,255,255,.28); }
.browser .car-dot.active { background: var(--blue-light); }

/* ── v3: crisp A4 pdf pages ── */
.pdf-carousel .car-track > img {
  width: 290px; background: #fff;
  border: 1px solid var(--line);
}
