/* Living in NL — shared styles */
:root {
  --ink: #1a2b3a;
  --slate: #4a5d6e;
  --mist: #f5f7f9;
  --line: #e1e7ec;
  --brand: #e8642f;      /* warm orange, matches your icons */
  --brand-dark: #c44e1e;
  --sea: #1f6f8b;        /* dutch-water teal accent */
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 20px rgba(26,43,58,0.08);
  --maxw: 1080px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { line-height: 1.2; font-weight: 700; letter-spacing: -0.01em; }
a { color: var(--sea); text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-weight: 800; font-size: 1.15rem; color: var(--ink); letter-spacing: -0.02em; }
.brand span { color: var(--brand); }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--slate); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--brand); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--ink); }

/* Buttons */
.btn {
  display: inline-block; background: var(--brand); color: var(--white);
  padding: 12px 22px; border-radius: 999px; font-weight: 600;
  border: 0; cursor: pointer; font-size: 0.98rem; transition: background .2s;
}
.btn:hover { background: var(--brand-dark); color: var(--white); }
.btn.ghost { background: transparent; color: var(--brand); border: 1.5px solid var(--brand); }
.btn.ghost:hover { background: var(--brand); color: var(--white); }

/* Hero */
.hero { padding: 70px 0 50px; background: linear-gradient(160deg, var(--mist), var(--white)); }
.hero h1 { font-size: clamp(1.9rem, 5vw, 3rem); max-width: 16ch; }
.hero p.lead { font-size: 1.15rem; color: var(--slate); margin: 18px 0 28px; max-width: 52ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Sections */
.section { padding: 56px 0; }
.section.alt { background: var(--mist); }
.eyebrow { color: var(--brand); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 0.8rem; }
.section h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin: 8px 0 10px; }
.section .sub { color: var(--slate); max-width: 60ch; margin-bottom: 30px; }

/* Cards grid */
.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(26,43,58,0.12); }
.card .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--mist);
  display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 14px; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--slate); font-size: 0.95rem; margin-bottom: 14px; }

/* Steps */
.steps { counter-reset: step; display: grid; gap: 16px; }
.step { display: flex; gap: 16px; align-items: flex-start; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.step .num { flex: none; width: 36px; height: 36px; border-radius: 50%; background: var(--sea);
  color: var(--white); display: grid; place-items: center; font-weight: 700; }
.step h3 { font-size: 1.05rem; margin-bottom: 4px; }
.step p { color: var(--slate); font-size: 0.93rem; }

/* Reminder form */
.reminder { background: linear-gradient(160deg, var(--sea), #15576e); color: var(--white); }
.reminder h2 { color: var(--white); }
.reminder .sub { color: rgba(255,255,255,0.85); }
.form-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
  max-width: 520px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--ink); margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 1rem; font-family: inherit; color: var(--ink); background: var(--white);
}
.field input:focus, .field select:focus { outline: 2px solid var(--brand); border-color: var(--brand); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--slate); }
.consent input { width: auto; margin-top: 4px; }
.form-note { font-size: 0.82rem; color: var(--slate); margin-top: 14px; }

/* Comparison table */
.compare { width: 100%; border-collapse: collapse; background: var(--white);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.compare th, .compare td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.compare th { background: var(--ink); color: var(--white); font-size: 0.9rem; }
.compare tr:last-child td { border-bottom: 0; }
.compare .deal { color: var(--brand); font-weight: 700; }

/* Footer */
footer.site { background: var(--ink); color: rgba(255,255,255,0.8); padding: 44px 0 28px; margin-top: 40px; }
footer.site a { color: rgba(255,255,255,0.8); }
footer.site a:hover { color: var(--white); }
.foot-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); margin-bottom: 28px; }
.foot-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 10px; }
.foot-grid ul { list-style: none; }
.foot-grid li { margin-bottom: 7px; font-size: 0.9rem; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 18px; font-size: 0.82rem;
  color: rgba(255,255,255,0.55); }
.disclaimer { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 10px; line-height: 1.5; }

/* Mobile */
@media (max-width: 760px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; background: var(--white); border-bottom: 1px solid var(--line);
    padding: 16px 20px; gap: 14px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 48px 0 36px; }
  .compare { display: block; overflow-x: auto; white-space: nowrap; }
}

/* Daisycon widget container */
.widget-embed { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow); min-height: 200px; }
.widget-embed .dc-tool { width: 100%; }
