/* =====================================================================
   DealM8 — Design System (mockup)
   Palette: Navy #1C2B4A | Teal #1F8A82 | Ink #1A1D24 | Surface #F6F3EE
   Font: Plus Jakarta Sans
   ===================================================================== */

:root {
  --navy: #1C2B4A;
  --navy-700: #243759;
  --navy-100: #E4E8F0;
  --teal: #1F8A82;
  --teal-700: #176E68;
  --teal-100: #DCEEEC;
  --ink: #1A1D24;
  --ink-600: #4A4F5B;
  --ink-400: #7A8090;
  --surface: #F6F3EE;
  --surface-2: #FBF9F4;
  --white: #FFFFFF;
  --line: #E5E2DA;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(28,43,74,.06), 0 2px 6px rgba(28,43,74,.04);
  --shadow-md: 0 4px 12px rgba(28,43,74,.08), 0 12px 32px rgba(28,43,74,.06);
  --shadow-lg: 0 12px 32px rgba(28,43,74,.12), 0 24px 64px rgba(28,43,74,.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans','Segoe UI',Arial,sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--teal-700); text-decoration: none; }
a:hover { color: var(--teal); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { color: var(--navy); margin: 0 0 .4em; letter-spacing: -.01em; line-height: 1.15; font-weight: 800; }
h1 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--ink-600); }
.lead { font-size: 1.18rem; color: var(--ink-600); }
.eyebrow {
  display: inline-block; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-700); font-weight: 700; margin-bottom: 14px;
}
.muted { color: var(--ink-400); }

/* ---------- Top announcement bar ---------- */
.topbar {
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 9px 24px; font-size: 14px; text-align: center; flex-wrap: wrap;
}
.topbar-msg { color: rgba(255,255,255,.82); }
.topbar-cta { color: #fff; font-weight: 700; white-space: nowrap; }
.topbar-cta:hover { color: #7CE0D9; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1180px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--navy); line-height: 0; }
.nav-logo svg, .nav-logo img { height: 56px; width: auto; display: block; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--navy); font-weight: 600; font-size: 15px; }
.nav-links a.active { color: var(--teal-700); }
.nav-cta { margin-left: 8px; }

/* hamburger (hidden on desktop) */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin: -8px 0 -8px 0; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; font-weight: 700; font-size: 15px;
  border: 1.5px solid transparent; cursor: pointer; transition: all .15s ease;
  font-family: inherit;
}
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-700); color: white; }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: white; }
.btn-ghost { color: var(--navy); }
.btn-ghost:hover { color: var(--teal-700); }
.btn-lg { padding: 14px 26px; font-size: 16px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 96px;
  background:
    radial-gradient(900px 480px at 80% -10%, rgba(31,138,130,.10), transparent 60%),
    radial-gradient(700px 400px at -10% 30%, rgba(28,43,74,.05), transparent 60%),
    var(--surface-2);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.hero h1 { line-height: 1.1; }
.hero .lead { font-size: 1.25rem; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-stat strong { display: block; color: var(--navy); font-size: 1.5rem; }
.hero-stat span { font-size: 14px; color: var(--ink-400); }
.hero-visual { position: relative; }

/* ---------- Hero portrait (founder) ---------- */
.hero-portrait {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 1 / 1; max-width: 460px; margin-left: auto;
  background: var(--surface-2);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-portrait .badge {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(28, 43, 74, .92); color: #fff;
  padding: 9px 16px; border-radius: 999px; font-size: 13px; font-weight: 700;
  backdrop-filter: blur(6px); box-shadow: var(--shadow-sm);
}
.hero-portrait .badge span { color: #7CE0D9; font-weight: 600; }
@media (max-width: 980px) {
  .hero-portrait { max-width: 360px; margin: 0 auto; }
}

/* ---------- Speech bubble device (visual motif) ---------- */
.bubble {
  position: absolute; background: var(--teal); border-radius: 28px; color: white;
  padding: 18px 22px; font-weight: 600; font-size: 15px; box-shadow: var(--shadow-md);
}
.bubble:after {
  content: ""; position: absolute; bottom: -14px; left: 28px;
  border: 14px solid transparent; border-top-color: var(--teal); border-bottom: 0; border-left: 0;
}
.bubble.navy { background: var(--navy); }
.bubble.navy:after { border-top-color: var(--navy); }

/* ---------- Section ---------- */
section { padding: 96px 0; }
.section-title { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-title p { font-size: 1.1rem; }
.section-surface { background: var(--surface); }
.section-navy { background: var(--navy); color: white; }
.section-navy h2, .section-navy h3 { color: white; }
.section-navy p { color: rgba(255,255,255,.78); }
.section-navy .eyebrow { color: #7CE0D9; }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.card {
  background: white; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 15px; }

.card-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--teal-100);
  color: var(--teal-700); display: flex; align-items: center; justify-content: center;
  font-weight: 800; margin-bottom: 16px;
}

.module-card { padding: 24px; }
.module-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.module-card .card-icon { width: 38px; height: 38px; border-radius: 10px; font-size: 14px; margin-bottom: 12px; }
.module-omvat {
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line);
  font-size: 12px; color: var(--ink-400); letter-spacing: .01em;
}
.module-omvat b { color: var(--teal-700); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: 11px; }

/* ---------- Pain-strip ---------- */
.pain-card { background: var(--surface-2); border-color: var(--line); }
.pain-card .label { display: inline-block; color: var(--navy); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.pain-card strong { color: var(--ink); display: block; margin-bottom: 8px; font-size: 17px; }

/* ---------- Klantinzicht portal sketch ---------- */
.portal {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.portal-bar {
  background: linear-gradient(180deg, #F0EDE6, #E8E4DA);
  padding: 10px 14px; display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--line);
}
.portal-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: #D0CCC0; }
.portal-bar .url {
  margin-left: 12px; background: white; border: 1px solid var(--line); border-radius: 8px;
  padding: 6px 12px; font-size: 13px; color: var(--ink-400); flex: 1;
}
.portal-body { padding: 22px; background: var(--surface-2); }
.portal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.portal-tile {
  background: white; border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px;
}
.portal-tile h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-400); margin: 0 0 8px; font-weight: 700; }
.portal-tile .big { font-size: 24px; font-weight: 800; color: var(--navy); }
.portal-tile .row {
  display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px;
  border-top: 1px dashed var(--line);
}
.portal-tile .row:first-of-type { border-top: 0; }
.portal-tile .pill {
  display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: 11px; font-weight: 700;
}
.pill-green { background: #E1F5E9; color: #1F7A3F; }
.pill-amber { background: #FFF0D6; color: #8A5A14; }
.pill-grey  { background: #ECECEC; color: #5C5C5C; }
.pill-teal  { background: var(--teal-100); color: var(--teal-700); }

/* ---------- Founders / interview ---------- */
.quote {
  background: white; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-sm); position: relative;
}
.quote:before {
  content: "\201C"; position: absolute; top: -22px; left: 20px;
  color: var(--teal); font-size: 80px; line-height: 1; font-weight: 800;
}
.quote p { font-size: 1.05rem; color: var(--ink); margin-bottom: 14px; }
.quote .by { font-size: 14px; color: var(--ink-400); font-weight: 600; }

.qa-block { display: grid; grid-template-columns: 200px 1fr; gap: 32px; padding: 32px 0; border-top: 1px solid var(--line); }
.qa-block:first-of-type { border-top: 0; }
.qa-question { color: var(--navy); font-weight: 700; font-size: 1.05rem; }
.qa-answer p:first-child { margin-top: 0; }
.qa-answer p { color: var(--ink); }

/* ---------- Avatar ---------- */
.avatar {
  position: relative;
  width: 56px; height: 56px; border-radius: 50%; background: var(--teal-100); color: var(--teal-700);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px;
  overflow: hidden; flex-shrink: 0;
}
.avatar img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.avatar-lg { width: 96px; height: 96px; font-size: 28px; }

/* ---------- Portrait (interview hero) ---------- */
.portrait-frame {
  position: relative; aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden;
  background: var(--teal-100);
  box-shadow: var(--shadow-md);
  border: 6px solid white;
}
.portrait-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1;
  object-fit: cover; object-position: center center;
}
.portrait-frame .accent {
  position: absolute; inset: -6px; border-radius: 50%; pointer-events: none;
  box-shadow: 0 0 0 4px var(--teal); opacity: .35;
}

/* ---------- Video block ---------- */
.video-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--navy);
  aspect-ratio: 16 / 9;
}
.video-frame video {
  width: 100%; height: 100%; display: block; background: var(--navy);
}
.video-caption {
  margin-top: 14px; text-align: center; font-size: 13px; color: var(--ink-400);
}

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
details > summary {
  list-style: none; cursor: pointer; padding: 22px 0; font-weight: 700; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; font-size: 1.05rem;
}
details > summary::-webkit-details-marker { display: none; }
details > summary:after { content: "+"; color: var(--teal); font-size: 22px; font-weight: 800; transition: transform .15s ease; }
details[open] > summary:after { content: "−"; }
details p { padding: 0 0 22px; margin: 0; color: var(--ink-600); }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--navy);
  border-radius: var(--r-xl); padding: 56px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  color: white;
}
.cta-strip h2 { color: white; margin: 0 0 8px; }
.cta-strip p { color: rgba(255,255,255,.78); margin: 0; }

/* ---------- Form ---------- */
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { font-weight: 600; color: var(--navy); font-size: 14px; display: block; margin-bottom: 6px; }
.form input, .form textarea, .form select {
  width: 100%; padding: 12px 14px; border-radius: var(--r-md); border: 1px solid var(--line);
  font-family: inherit; font-size: 15px; background: white; color: var(--ink);
}
.form textarea { min-height: 130px; resize: vertical; }
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-100);
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy); color: rgba(255,255,255,.78); padding: 64px 0 28px; margin-top: 0;
}
footer h4 { color: white; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
footer a { color: rgba(255,255,255,.78); display: block; padding: 4px 0; font-size: 15px; }
footer a:hover { color: white; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; font-size: 13px; color: rgba(255,255,255,.6); }
.footer-logo svg, .footer-logo img { height: 60px; width: auto; display: block; }

/* ---------- Marketplace specifics ---------- */
.buyer-types { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.buyer-card { background: white; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; }
.buyer-card h3 { font-size: 1rem; margin-bottom: 6px; }
.buyer-card p { font-size: 14px; margin: 0; }

/* ---------- SVG icons ---------- */
.svg-sprite { display: none; }
.icon-tile {
  width: 48px; height: 48px; border-radius: 12px; background: var(--teal-100);
  color: var(--teal-700); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.icon-tile svg { width: 24px; height: 24px; }
.module-card .icon-tile { width: 42px; height: 42px; border-radius: 10px; margin-bottom: 12px; }
.module-card .icon-tile svg { width: 20px; height: 20px; }

/* ---------- Process flow ---------- */
.flow {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px;
  position: relative;
}
.flow-step {
  text-align: center; padding: 0 6px; position: relative;
}
.flow-step .flow-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: white; border: 2px solid var(--teal);
  color: var(--teal-700);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; position: relative; z-index: 2;
  box-shadow: 0 4px 12px rgba(31, 138, 130, 0.12);
}
.flow-step .flow-icon svg { width: 26px; height: 26px; }
.flow-step h4 {
  font-size: 14px; color: var(--navy); margin: 0 0 4px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .04em;
}
.flow-step p { font-size: 13px; color: var(--ink-600); margin: 0; line-height: 1.5; }
.flow-step:not(:last-child)::after {
  content: ""; position: absolute; top: 32px; left: calc(50% + 32px); right: calc(-50% + 32px);
  border-top: 2px dashed var(--teal); opacity: .4; z-index: 1;
}
@media (max-width: 980px) {
  .flow { grid-template-columns: repeat(3, 1fr); gap: 28px 4px; }
  .flow-step:nth-child(3n)::after { display: none; }
}
@media (max-width: 600px) {
  .flow { grid-template-columns: repeat(2, 1fr); }
  .flow-step:nth-child(2n)::after { display: none; }
}

/* ---------- 4-portal architecture ---------- */
.portals-arch {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 880px; margin: 0 auto;
}
.portal-arch-card {
  background: white; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px; display: flex; gap: 16px; align-items: flex-start;
  box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease;
}
.portal-arch-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.portal-arch-card .pa-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0;
}
.portal-arch-card .pa-icon svg { width: 24px; height: 24px; stroke: white; }
.portal-arch-card .pa-icon.adv { background: var(--navy); }
.portal-arch-card .pa-icon.ver { background: var(--teal); }
.portal-arch-card .pa-icon.kop { background: #5B59B8; }
.portal-arch-card .pa-icon.beh { background: var(--ink-400); }
.portal-arch-card h4 { font-size: 1.05rem; margin: 0 0 6px; color: var(--navy); }
.portal-arch-card p { font-size: 14px; margin: 0; color: var(--ink-600); line-height: 1.55; }
@media (max-width: 720px) { .portals-arch { grid-template-columns: 1fr; } }

/* ---------- Photo block ---------- */
.photo-block {
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  position: relative; aspect-ratio: 16/9; background: var(--surface-2);
}
.photo-block img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-caption {
  margin-top: 16px; text-align: center; font-size: 13px; color: var(--ink-400);
  max-width: 720px; margin-left: auto; margin-right: auto;
}

/* ---------- Decorative speech bubble ---------- */
.deco-bubble {
  position: absolute; pointer-events: none;
  border-radius: 24px; opacity: .5;
}
.deco-bubble.teal { background: var(--teal-100); }
.deco-bubble.navy { background: var(--navy-100); }
.deco-bubble::after {
  content: ""; position: absolute; bottom: -12px; left: 24px;
  border: 12px solid transparent; border-bottom: 0; border-left: 0;
}
.deco-bubble.teal::after { border-top-color: var(--teal-100); }
.deco-bubble.navy::after { border-top-color: var(--navy-100); }

/* ---------- Product mockups ---------- */
.pm-title { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.pm-title h4 { margin:0; color:var(--navy); font-size:1rem; }
.pm-title .tag-soft { font-size:11px; font-weight:700; color:var(--teal-700); background:var(--teal-100); padding:3px 9px; border-radius:999px; }

.pm-table { width:100%; border-collapse:collapse; font-size:13px; }
.pm-table th { text-align:left; font-size:11px; text-transform:uppercase; letter-spacing:.03em; color:var(--ink-400); font-weight:700; padding:8px 8px; border-bottom:1px solid var(--line); }
.pm-table td { padding:10px 8px; border-bottom:1px solid var(--line); color:var(--ink-600); }
.pm-table tr:last-child td { border-bottom:0; }
.pm-table tr.best td { background:#E8F7EE; }
.pm-table td.amt { font-weight:800; color:var(--navy); }
.pm-table td.name { font-weight:700; color:var(--navy); }

.val-bars { display:flex; align-items:flex-end; gap:14px; height:160px; }
.val-bar { flex:1; display:flex; flex-direction:column; align-items:center; justify-content:flex-end; }
.val-bar .v { font-weight:800; color:var(--navy); font-size:14px; margin-bottom:6px; }
.val-bar .bar { width:100%; border-radius:8px 8px 0 0; }
.val-bar .lbl { font-size:12px; color:var(--ink-400); margin-top:8px; font-weight:600; }

.ai-note { background:var(--teal-100); color:var(--teal-700); border-radius:10px; padding:12px 14px; font-size:13px; line-height:1.5; display:flex; gap:8px; margin-top:14px; }
.ai-note b { color:var(--teal-700); }
.ai-note .spark { flex-shrink:0; font-size:15px; }

.im-row { display:flex; align-items:center; gap:10px; padding:7px 0; border-bottom:1px dashed var(--line); font-size:13px; }
.im-row:last-child { border-bottom:0; }
.im-dot { width:9px; height:9px; border-radius:50%; flex-shrink:0; }
.im-row .n { color:var(--ink-400); width:20px; font-weight:700; text-align:right; }
.im-row .t { color:var(--ink); flex:1; }
.im-section-label { font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:var(--ink-400); font-weight:700; margin:14px 0 4px; }
.im-section-label:first-child { margin-top:0; }

.mp-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.mp-card { background:white; border:1px solid var(--line); border-radius:14px; padding:16px; }
.mp-card .sector { font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:var(--teal-700); font-weight:700; }
.mp-card h5 { margin:6px 0 8px; color:var(--navy); font-size:15px; line-height:1.3; }
.mp-card .mp-stats { display:flex; gap:14px; font-size:13px; color:var(--ink-600); margin-bottom:10px; }
.mp-card .mp-stats b { color:var(--navy); display:block; font-size:15px; }
@media (max-width:760px){ .mp-grid{ grid-template-columns:1fr; } }

/* ---------- Blog ---------- */
.blog-card {
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none; color: inherit;
}
.blog-card h3 { color: var(--navy); font-size: 1.1rem; line-height: 1.3; margin: 4px 0; }
.blog-card p { font-size: 15px; flex: 1; margin: 0; }
.blog-tag {
  display: inline-block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-700); font-weight: 700;
  background: var(--teal-100); padding: 4px 10px; border-radius: 999px;
  align-self: flex-start;
}
.blog-meta { font-size: 13px; color: var(--ink-400); font-weight: 600; }

/* ---------- Blog article ---------- */
.article-hero { padding: 64px 0 32px; background: var(--surface-2); }
.article-hero .blog-tag { margin-bottom: 18px; }
.article-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); max-width: 760px; }
.article-hero .lead { margin-top: 12px; max-width: 720px; }
.article-hero .meta {
  margin-top: 24px; display: flex; align-items: center; gap: 14px;
  padding-top: 22px; border-top: 1px solid var(--line);
}
.article-hero .meta .who { font-weight: 700; color: var(--navy); }
.article-hero .meta .what { font-size: 14px; color: var(--ink-400); }

.article-body { padding: 48px 0 96px; }
.article-body h2 { font-size: 1.45rem; margin-top: 36px; }
.article-body h3 { font-size: 1.1rem; margin-top: 22px; color: var(--navy); }
.article-body p { font-size: 17px; color: var(--ink); margin-bottom: 14px; line-height: 1.7; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 22px; color: var(--ink); }
.article-body li { margin-bottom: 6px; line-height: 1.65; }
.article-body blockquote {
  margin: 28px 0; padding: 18px 22px; border-left: 4px solid var(--teal);
  background: var(--surface-2); color: var(--ink); font-style: italic;
}

.article-cta {
  margin-top: 40px; padding: 28px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.article-cta h3 { margin: 0 0 4px; }
.article-cta p { margin: 0; }
@media (max-width: 720px) {
  .article-cta { grid-template-columns: 1fr; }
}

.read-more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
@media (max-width: 980px) { .read-more-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .read-more-grid { grid-template-columns: 1fr; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-5, .grid-2 { grid-template-columns: 1fr 1fr; }
  .buyer-types { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .qa-block { grid-template-columns: 1fr; gap: 12px; }
  .cta-strip { grid-template-columns: 1fr; padding: 32px; }

  /* mobile nav: hamburger + dropdown */
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 6px 24px 16px; box-shadow: var(--shadow-md);
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links a { padding: 14px 2px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-links a:last-child { border-bottom: 0; }
}
@media (max-width: 600px) {
  section { padding: 64px 0; }
  .grid-3, .grid-4, .grid-5, .grid-2 { grid-template-columns: 1fr; }
  .buyer-types { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-logo svg, .nav-logo img { height: 48px; }
  .topbar { font-size: 12.5px; padding: 8px 16px; gap: 10px; }
}
