/* ══════════════════════════════════════════════════════════
   Leedz — Vastgoedfotografie marktplaats
   Demo-basis. Self-contained, geen externe libs.
   ══════════════════════════════════════════════════════════ */

:root {
  --ink:        #0f1722;   /* diep slate */
  --ink-soft:   #2a3543;
  --muted:      #6b7785;
  --line:       #e6e9ee;
  --bg:         #ffffff;
  --bg-alt:     #f6f8fb;
  --gold:       #e8a13a;   /* warm accent */
  --gold-dark:  #c9842a;
  --teal:       #1f6f6b;   /* secundair */
  --teal-soft:  #e7f1f0;
  --gold-soft:  #fbf1df;
  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 10px 40px rgba(15,23,34,.08);
  --shadow-lg:  0 24px 70px rgba(15,23,34,.16);
  --maxw:       1140px;
  --font:       -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.2rem; font-weight: 700; }

.section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin: 0 auto 52px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 12px; }

/* ─── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .98rem;
  padding: 13px 24px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold  { background: var(--gold); color: #1a1205; box-shadow: 0 8px 22px rgba(232,161,58,.35); }
.btn-gold:hover  { background: var(--gold-dark); }
.btn-ink   { background: var(--ink); color: #fff; }
.btn-ink:hover   { background: var(--ink-soft); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }
.btn-light:hover { background: rgba(255,255,255,.22); }

/* ─── Nav ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.35rem; letter-spacing: -.03em; }
.logo .dot { color: var(--gold); }
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  display: grid; place-items: center; color: var(--gold); font-weight: 900; font-size: 1.1rem;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: .95rem; font-weight: 600; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 1.5rem; }

/* ─── Hero ────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(232,161,58,.14), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(31,111,107,.10), transparent 60%),
    var(--bg);
  padding: 84px 0 110px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
.hero h1 .hl { color: var(--gold-dark); }
.hero p.lead { font-size: 1.18rem; color: var(--ink-soft); margin: 22px 0 30px; max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-trust { display: flex; gap: 26px; flex-wrap: wrap; color: var(--muted); font-size: .9rem; font-weight: 600; }
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust .ok { color: var(--teal); font-weight: 900; }

/* hero visual */
.hero-visual { position: relative; }
.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  box-shadow: var(--shadow-lg); padding: 22px; transform: rotate(-1.2deg);
}
.hero-card .photo {
  aspect-ratio: 4/3; border-radius: 14px;
  background:
    linear-gradient(135deg, #233042, #16202c),
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 12px, transparent 12px 24px);
  position: relative; overflow: hidden; display: grid; place-items: center;
}
.hero-card .photo::after {
  content: "🏡"; font-size: 3.4rem; filter: grayscale(.1) drop-shadow(0 6px 14px rgba(0,0,0,.4));
}
.hero-card .badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: #1a1205; font-weight: 800; font-size: .72rem;
  padding: 6px 12px; border-radius: 999px; letter-spacing: .03em;
}
.hero-card .meta { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.hero-card .meta .who { display: flex; align-items: center; gap: 10px; }
.hero-card .meta .avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,var(--teal),#2c9a93); }
.hero-card .meta .who b { font-size: .92rem; }
.hero-card .meta .who small { color: var(--muted); display: block; font-size: .78rem; }
.hero-card .stars { color: var(--gold); font-size: .9rem; }
.float-chip {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow); padding: 12px 16px;
  font-size: .85rem; font-weight: 700; display: flex; align-items: center; gap: 9px;
}
.float-chip .ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; font-size: 1rem; }
.chip-1 { bottom: -64px; left: 50%; transform: translateX(-50%); }
.chip-1 .ic { background: var(--teal-soft); }
.chip-2 { top: 30px; right: -8px; }
.chip-2 .ic { background: var(--gold-soft); }

/* ─── Audience split ──────────────────────────────────── */
.split { background: var(--bg-alt); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.aud-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 34px; position: relative; overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.aud-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.aud-card .tag {
  display: inline-block; font-size: .75rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px; margin-bottom: 16px;
}
.aud-card.makelaar .tag { background: var(--gold-soft); color: var(--gold-dark); }
.aud-card.fotograaf .tag { background: var(--teal-soft); color: var(--teal); }
.aud-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.aud-card p { color: var(--muted); margin-bottom: 20px; }
.aud-list { list-style: none; margin-bottom: 26px; }
.aud-list li { display: flex; gap: 11px; padding: 7px 0; font-weight: 600; color: var(--ink-soft); }
.aud-list li::before { content: "✓"; font-weight: 900; }
.aud-card.makelaar .aud-list li::before { color: var(--gold-dark); }
.aud-card.fotograaf .aud-list li::before { color: var(--teal); }

/* ─── How it works ────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { text-align: center; padding: 10px; }
.step .num {
  width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 16px;
  background: var(--ink); color: var(--gold); font-weight: 900; font-size: 1.4rem;
  display: grid; place-items: center;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .96rem; }
.tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 42px; }
.tab {
  padding: 10px 22px; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; font-weight: 700; cursor: pointer; font-size: .95rem; color: var(--ink-soft);
  transition: all .15s ease;
}
.tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ─── Pricing strip ───────────────────────────────────── */
.pricing { background: var(--ink); color: #fff; }
.pricing .section-head p { color: rgba(255,255,255,.6); }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.price-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 32px 28px;
}
.price-card.featured { background: #fff; color: var(--ink); border-color: var(--gold); }
.price-card .plan { font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.price-card.featured .plan { color: var(--gold-dark); }
.price-card .amt { font-size: 2.4rem; font-weight: 800; margin: 10px 0 4px; }
.price-card .amt small { font-size: .95rem; font-weight: 600; color: var(--muted); }
.price-card.featured .amt small { color: var(--muted); }
.price-card ul { list-style: none; margin: 18px 0 0; }
.price-card li { padding: 6px 0; font-size: .94rem; opacity: .92; }
.price-card li::before { content: "— "; color: var(--gold); }
.ribbon {
  display: inline-block; background: var(--gold); color: #1a1205; font-size: .72rem;
  font-weight: 800; padding: 4px 11px; border-radius: 999px; margin-bottom: 14px;
}

/* ─── Signup / forms ──────────────────────────────────── */
.signup { background: var(--bg-alt); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 34px; box-shadow: var(--shadow);
}
.form-card.makelaar { border-top: 4px solid var(--gold); }
.form-card.fotograaf { border-top: 4px solid var(--teal); }
.form-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.form-card .sub { color: var(--muted); margin-bottom: 24px; font-size: .96rem; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 6px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .96rem; color: var(--ink); background: #fff; transition: border .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.form-card.fotograaf .field input:focus,
.form-card.fotograaf .field select:focus,
.form-card.fotograaf .field textarea:focus { border-color: var(--teal); }
.field textarea { resize: vertical; min-height: 88px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp { position: absolute; left: -9999px; }                    /* honeypot */
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .check {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--teal-soft); color: var(--teal); display: grid; place-items: center;
  font-size: 2rem; font-weight: 900;
}
.form-card.success .form-body { display: none; }

/* ─── Footer ──────────────────────────────────────────── */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 38px; }
.footer .logo { color: #fff; margin-bottom: 14px; }
.footer p { font-size: .92rem; max-width: 320px; }
.footer h4 { color: #fff; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; }
.footer li { padding: 5px 0; font-size: .93rem; }
.footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; }
.demo-flag {
  background: var(--gold); color: #1a1205; text-align: center; font-weight: 700;
  font-size: .82rem; padding: 7px 12px; letter-spacing: .02em;
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 880px) {
  .hero-grid, .split-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .steps, .price-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 18px 24px; gap: 14px;
  }
  .section { padding: 64px 0; }
}
