/* ============================================================
   Slim Sparen — design system (reverse-engineered from slimsparen.eu)
   Reused by: brokers-vergelijken.html + slimsparen-pitch.html
   Palette + type extracted live from the production site, June 2026.
   ============================================================ */

:root{
  /* Core palette (verified via computed styles on slimsparen.eu) */
  --cream:        #F5F3EF;   /* page background */
  --cream-2:      #EFEAE2;   /* alt section background */
  --ink:          #1D4A59;   /* dark teal — headings */
  --ink-soft:     #2A5A6B;
  --teal:         #3C8299;   /* mid teal — buttons, accents, cards */
  --teal-dark:    #2E6B7E;
  --teal-light:   #D1EAEF;   /* light teal — pills, soft fills */
  --teal-bg:      #A9CDD7;   /* hero tint */
  --coral:        #E94C3C;   /* primary CTA */
  --coral-2:      #DE5233;   /* eyebrow accents / hover */
  --coral-soft:   #F6D9D2;
  --body:         #5C6670;   /* body copy grey */
  --body-soft:    #8A929B;
  --line:         #E2DCD2;   /* hairlines */
  --white:        #FFFFFF;
  --gold:         #C9A24B;   /* rating stars / highlights */

  --serif: "Playfair Display", "scotch-display", Georgia, serif;  /* closest free match to the site's Scotch Display */
  --sans:  "Inter", Helvetica, Arial, sans-serif;

  --maxw: 1180px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 18px 50px -22px rgba(29,74,89,.35);
  --shadow-soft: 0 10px 30px -18px rgba(29,74,89,.30);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--body);
  background:var(--cream);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

h1,h2,h3,h4{font-family:var(--serif);color:var(--ink);font-weight:700;line-height:1.12;margin:0 0 .4em}
h1{font-size:clamp(2.6rem,5.4vw,4.2rem);letter-spacing:-.01em}
h2{font-size:clamp(2rem,3.6vw,3.05rem)}
h3{font-size:1.4rem}
h4{font-size:1.12rem}
p{margin:0 0 1.1em}
a{color:var(--teal);text-decoration:none}
strong{color:var(--ink-soft)}

.container{max-width:var(--maxw);margin:0 auto;padding:0 28px}
.section{padding:84px 0}
.section--tight{padding:54px 0}
.section--cream2{background:var(--cream-2)}
.section--ink{background:var(--ink);color:#CFE0E6}
.section--ink h2,.section--ink h3{color:#fff}
.center{text-align:center}
.measure{max-width:680px}
.measure.center{margin-left:auto;margin-right:auto}

/* Eyebrow label: circle bullet + uppercase coral text (site signature) */
.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-family:var(--sans);font-weight:700;font-size:.82rem;
  letter-spacing:.14em;text-transform:uppercase;color:var(--coral-2);
  margin:0 0 18px;
}
.eyebrow::before{
  content:"";width:16px;height:16px;border-radius:50%;
  border:4px solid var(--coral-2);background:transparent;flex:0 0 auto;
}
.eyebrow--light{color:#9FD0DC}
.eyebrow--light::before{border-color:#9FD0DC}
.center .eyebrow{justify-content:center}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--sans);font-weight:700;font-size:1rem;
  padding:15px 30px;border-radius:6px;border:0;cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align:center;line-height:1.1;
}
.btn:hover{transform:translateY(-2px)}
.btn--coral{background:var(--coral);color:#fff;box-shadow:0 10px 24px -12px rgba(233,76,60,.7)}
.btn--coral:hover{background:#df4030}
.btn--teal{background:var(--teal);color:#EAF6F9}
.btn--teal:hover{background:var(--teal-dark)}
.btn--ghost{background:transparent;color:var(--ink);border:1.5px solid var(--ink)}
.btn--ghost:hover{background:var(--ink);color:#fff}
.btn--white{background:#fff;color:var(--coral-2)}
.btn--lg{padding:18px 38px;font-size:1.08rem}
.btn--pill{border-radius:100px}

/* Pills / tags */
.pill{
  display:inline-flex;align-items:center;gap:7px;
  font-size:.78rem;font-weight:700;letter-spacing:.02em;
  padding:6px 14px;border-radius:100px;background:var(--teal-light);color:var(--ink);
}
.pill--coral{background:var(--coral-soft);color:var(--coral-2)}
.pill--ghost{background:transparent;border:1px solid var(--line);color:var(--body)}

/* Cards */
.card{
  background:#fff;border-radius:var(--radius-lg);padding:30px;
  box-shadow:var(--shadow-soft);border:1px solid #efe9df;
}
.card--teal{
  background:linear-gradient(160deg,var(--teal) 0%,var(--teal-dark) 100%);
  color:#EAF6F9;border:0;
}
.card--teal h3,.card--teal h4{color:#fff}

/* Stars */
.stars{color:var(--gold);letter-spacing:2px;font-size:.95rem}

/* Generic grid */
.grid{display:grid;gap:24px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
@media(max-width:900px){.grid-3,.grid-4{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr}}

/* Stat number */
.stat{font-family:var(--serif);font-size:2.6rem;color:var(--ink);font-weight:700;line-height:1}
.stat--coral{color:var(--coral)}
.stat__label{font-size:.9rem;color:var(--body-soft);margin-top:6px}

/* hairline divider */
.hr{height:1px;background:var(--line);border:0;margin:0}

/* small print */
.fineprint{font-size:.82rem;color:var(--body-soft);line-height:1.6}

/* Header (shared) */
.site-header{
  position:sticky;top:0;z-index:50;background:rgba(245,243,239,.92);
  backdrop-filter:saturate(150%) blur(8px);border-bottom:1px solid var(--line);
}
.site-header__inner{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:14px 28px;max-width:var(--maxw);margin:0 auto}
.site-header__logo img{height:54px;width:auto;display:block}
.site-nav{display:flex;align-items:center;gap:26px}
.site-nav a{color:var(--ink);font-weight:600;font-size:.96rem}
.site-nav a:hover{color:var(--coral-2)}
@media(max-width:820px){.site-nav{display:none}}
