/* ============================================================
   Westerbeek Consultancy v2 — additions for rebuilt pages
   ============================================================ */

/* hero meta strip */
.hero-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-text-muted);
}
.hero-meta .pulse { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-yellow); }
.hero-meta .pulse .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-yellow); box-shadow: 0 0 0 0 rgba(255,192,0,.8); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,192,0,.6); }
  70% { box-shadow: 0 0 0 10px rgba(255,192,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,192,0,0); }
}

.hero-sub {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: end;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--brand-border);
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   Two entries (AI / M365)
   ============================================================ */
.two-entries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 100px auto 0;
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}
.entry {
  padding: 56px 48px 56px 0;
  border-right: 1px solid var(--brand-border);
  cursor: pointer;
  transition: background .3s ease;
  position: relative;
}
.entry:last-child { border-right: 0; padding-left: 48px; padding-right: 0; }
.entry:hover { background: rgba(255,192,0,.02); }
.entry .num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--brand-yellow);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.entry h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}
.entry .accent { color: var(--brand-yellow); }
.entry > p { color: var(--brand-text-secondary); max-width: 46ch; margin: 0; line-height: 1.65; }
.entry-list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.entry-list li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--brand-text);
  padding-left: 16px;
  position: relative;
}
.entry-list li::before {
  content: "→"; position: absolute; left: 0; color: var(--brand-yellow);
}
.entry-cta {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.entry-cta span { transition: transform .2s ease; }
.entry:hover .entry-cta span { transform: translateX(4px); }

/* ============================================================
   Foundation strip
   ============================================================ */
.foundation { padding: 100px var(--pad); }
.foundation-h {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 80px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0 0 32px;
  max-width: 16ch;
}
.foundation-h .accent { color: var(--brand-yellow); }
.foundation .lead { font-size: clamp(16px, 1.3vw, 19px); max-width: 68ch; }

/* ============================================================
   Pains — recognition grid
   ============================================================ */
.pains { padding: 60px var(--pad) 80px; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 40px;
}
.section-head h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
}
.section-head h2 .accent { color: var(--brand-yellow); }
.pains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--brand-border);
  border: 1px solid var(--brand-border);
}
.pain-card {
  background: var(--brand-black);
  padding: 28px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.3vw, 19px);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.pain-card span:first-child { color: var(--brand-text); font-style: italic; }
.pain-card .arrow {
  font-family: var(--font-mono);
  color: var(--brand-text-muted);
  font-size: 18px;
  transition: transform .2s ease, color .2s ease;
}
.pain-card:hover { background: var(--brand-yellow); color: var(--brand-black); }
.pain-card:hover span:first-child { color: var(--brand-black); }
.pain-card:hover .arrow { color: var(--brand-black); transform: translateX(4px); }

/* ============================================================
   Offerings (4 cards)
   ============================================================ */
.offerings { padding: 60px var(--pad); }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.offer-card {
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  padding: 32px 28px;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: var(--radius);
  position: relative;
}
.offer-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--brand-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.offer-card:hover { border-color: var(--brand-border-hover); transform: translateY(-3px); background: var(--brand-card-hover); }
.offer-card:hover::before { transform: scaleX(1); }
.offer-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--brand-yellow);
  text-transform: uppercase;
}
.offer-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.15;
}
.offer-sub { color: var(--brand-text-secondary); margin: 0; font-size: 14px; }
.offer-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.offer-card ul li { font-size: 13px; color: var(--brand-text-secondary); }
.offer-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--brand-border);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-text-muted);
}
.offer-foot .arrow { color: var(--brand-yellow); }

/* ============================================================
   Use cases preview (3-up)
   ============================================================ */
.ucp { padding: 100px var(--pad) 60px; }
.ucp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.ucp-card {
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  padding: 28px;
  cursor: pointer;
  transition: all .3s ease;
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
}
.ucp-card:hover { transform: translateY(-3px); border-color: var(--brand-border-hover); background: var(--brand-card-hover); }
.ucp-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-yellow);
}
.ucp-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.15;
}
.ucp-card p { font-size: 14px; line-height: 1.6; color: var(--brand-text-secondary); margin: 0; }
.ucp-result {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--brand-border);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brand-yellow);
  letter-spacing: 0.05em;
}

/* ============================================================
   Proof / quote
   ============================================================ */
.proof { padding: 80px 0; background: var(--brand-surface); border-top: 1px solid var(--brand-border); border-bottom: 1px solid var(--brand-border); margin-top: 60px; }
.proof blockquote {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 24px 0 32px;
  max-width: 36ch;
  position: relative;
  padding-left: 32px;
}
.proof blockquote::before {
  content: "";
  position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 3px; background: var(--brand-yellow);
}
.proof-attr {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-text-muted);
}

/* ============================================================
   Lead magnets
   ============================================================ */
.leads { padding: 80px var(--pad) 40px; }
.leads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.lead-card {
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  padding: 40px 36px;
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 16px;
}
.lead-card-yellow {
  background: var(--brand-yellow);
  color: var(--brand-black);
  border-color: var(--brand-yellow);
}
.lead-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-text-muted);
}
.lead-card-yellow .lead-num { color: rgba(0,0,0,0.6); }
.lead-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(26px, 2.4vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.lead-card p { color: var(--brand-text-secondary); margin: 0; line-height: 1.6; }
.lead-card-yellow p { color: rgba(0,0,0,0.75); }
.lead-card .brand-btn { align-self: flex-start; margin-top: 8px; }
.lead-card .brand-btn-outline { align-self: flex-start; margin-top: 8px; }
.dark-on-yellow {
  background: var(--brand-black) !important;
  color: var(--brand-yellow) !important;
}
.dark-on-yellow:hover { background: #1a1a1a !important; }

/* ============================================================
   About preview (homepage)
   ============================================================ */
.about-preview { padding: 60px var(--pad) 100px; }
.ap-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.ap-grid h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 24px;
}
.ap-grid h2 .accent { color: var(--brand-yellow); }
.photo-placeholder {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, rgba(255,192,0,0.08), rgba(255,192,0,0.02)),
    var(--brand-card);
  border: 1px solid var(--brand-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--brand-yellow);
  position: relative;
  border-radius: var(--radius);
}
.photo-placeholder.big { aspect-ratio: 3 / 4; }
.photo-placeholder .hint {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--brand-text-muted);
  text-transform: uppercase;
  font-weight: 400;
}
.ap-cap {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-yellow);
}

/* ============================================================
   CTA strip
   ============================================================ */
.cta-strip {
  margin-top: 80px;
  padding: 80px 0;
  background: var(--brand-yellow);
  color: var(--brand-black);
}
.cta-strip .container {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-strip h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
}
.cta-strip h3 .accent { color: var(--brand-black); border-bottom: 4px solid var(--brand-black); }
.cta-strip .brand-btn {
  background: var(--brand-black);
  color: var(--brand-yellow);
}
.cta-strip .brand-btn:hover { background: #1a1a1a; }

/* ============================================================
   AI/M365 page hero (extended)
   ============================================================ */
.page-hero { padding: 80px var(--pad) 60px; border-bottom: 1px solid var(--brand-border); }
.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 112px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0 0 32px;
}
.page-hero h1 .accent { color: var(--brand-yellow); display: block; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 60px;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid var(--brand-border);
}

/* ============================================================
   Three paths (AI page)
   ============================================================ */
.three-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--brand-border);
  border: 1px solid var(--brand-border);
}
.path {
  background: var(--brand-black);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.path-n {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  color: var(--brand-yellow);
  line-height: 1;
}
.path h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
}
.path p { color: var(--brand-text-secondary); line-height: 1.6; margin: 0; font-size: 14px; }

/* ============================================================
   Big offer (assessment detail)
   ============================================================ */
.big-offer {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  padding: 40px 0;
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}
.big-offer h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 12px 0 24px;
}
.big-offer-side { display: flex; flex-direction: column; gap: 24px; }
.bos-block {
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  padding: 24px;
  border-radius: var(--radius);
}
.bos-block h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  margin: 0 0 14px;
  font-weight: 500;
}
.bos-block ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.bos-block ul li { font-size: 14px; color: var(--brand-text); }
.bos-big {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--brand-text);
}

/* ============================================================
   "Niet nu" / honest advice
   ============================================================ */
.not-now { padding: 80px var(--pad); background: var(--brand-surface); border-top: 1px solid var(--brand-border); border-bottom: 1px solid var(--brand-border); }
.not-now h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 40px;
  max-width: 22ch;
}
.not-now h2 .accent { color: var(--brand-yellow); }
.nn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--brand-border); border: 1px solid var(--brand-border); }
.nn { background: var(--brand-black); padding: 32px 28px; display: flex; flex-direction: column; gap: 16px; }
.nn-n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--brand-yellow);
  font-weight: 500;
}
.nn p { color: var(--brand-text); line-height: 1.5; margin: 0; font-size: 16px; }

/* ============================================================
   Four problems (M365 page)
   ============================================================ */
.four-probs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--brand-border);
  border: 1px solid var(--brand-border);
}
.prob { background: var(--brand-black); padding: 36px 32px; display: flex; flex-direction: column; gap: 12px; }
.prob-n {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: var(--brand-yellow);
  line-height: 1;
}
.prob h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 0;
}
.prob p { color: var(--brand-text-secondary); line-height: 1.6; margin: 0; font-size: 14px; }
.prob-fix {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--brand-border);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--brand-yellow);
}

/* ============================================================
   Approach — tall vertical layout
   ============================================================ */
.approach-tall { display: flex; flex-direction: column; gap: 24px; }
.atall-step {
  border: 1px solid var(--brand-border);
  background: var(--brand-card);
  padding: 48px;
  border-radius: var(--radius);
  position: relative;
}
.atall-n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--brand-yellow);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.atall-step h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 20px;
}
.atall-step .lead { font-size: clamp(15px, 1.2vw, 18px); max-width: 64ch; }
.atall-arrow {
  position: absolute;
  bottom: -34px; left: 48px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  background: var(--brand-yellow);
  color: var(--brand-black);
  font-size: 20px;
  font-weight: 700;
  z-index: 2;
  border-radius: 50%;
}

.how-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--brand-border); border: 1px solid var(--brand-border); }
.how { background: var(--brand-black); padding: 28px; }
.how h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.how p { color: var(--brand-text-secondary); margin: 0; font-size: 14px; line-height: 1.6; }

/* ============================================================
   Use cases page — list rows
   ============================================================ */
.uc-list { display: flex; flex-direction: column; border-top: 1px solid var(--brand-border); }
.uc-row {
  display: grid;
  grid-template-columns: 200px 1fr 220px;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--brand-border);
  align-items: start;
}
.uc-row:hover { background: rgba(255,192,0,0.02); }
.uc-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--brand-yellow);
  text-transform: uppercase;
}
.uc-row h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.uc-row p { color: var(--brand-text-secondary); margin: 0 0 12px; line-height: 1.6; }
.uc-detail { font-size: 13px; color: var(--brand-text-muted); line-height: 1.6; }
.uc-result {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--brand-yellow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.uc-result small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--brand-text-muted);
  text-transform: uppercase;
  font-weight: 400;
}

.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chips button {
  padding: 8px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-text-muted);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  background: transparent;
  transition: all .2s ease;
}
.filter-chips button:hover { color: var(--brand-text); border-color: var(--brand-border-hover); }
.filter-chips button.on { background: var(--brand-yellow); color: var(--brand-black); border-color: var(--brand-yellow); }

/* ============================================================
   About page
   ============================================================ */
.about-main { padding: 60px var(--pad); }
.about-grid { display: grid; grid-template-columns: 360px 1fr; gap: 60px; align-items: start; }
.about-photo { position: sticky; top: 80px; }
.about-quick {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--brand-border);
  border: 1px solid var(--brand-border);
}
.about-quick > div {
  background: var(--brand-black);
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.about-quick strong {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--brand-text-muted);
  text-transform: uppercase;
  font-weight: 500;
}
.about-quick span { font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--brand-text); }
.about-story h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 24px;
}
.about-story h2 .accent { color: var(--brand-yellow); }
.about-story h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--brand-border);
}
.about-story p {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  color: var(--brand-text-secondary);
  margin: 0 0 16px;
}
.about-story p strong { color: var(--brand-yellow); font-weight: 600; }
.creed { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.creed li { display: grid; grid-template-columns: 28px 1fr; gap: 16px; align-items: start; }
.creed li > span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--brand-yellow);
  font-weight: 500;
}
.creed li p { margin: 0; color: var(--brand-text); line-height: 1.5; }

/* ============================================================
   Modal (mini-scan)
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn .2s ease;
}
.modal {
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 560px;
  padding: 40px;
  position: relative;
  animation: slideUp .3s ease;
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  font-size: 28px;
  color: var(--brand-text-muted);
  line-height: 1;
  transition: color .2s ease;
}
.modal-close:hover { color: var(--brand-yellow); }
.modal-meta {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  margin-bottom: 24px;
}
.modal h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 24px;
}
.modal-opts { display: flex; flex-direction: column; gap: 8px; }
.modal-opts button {
  text-align: left;
  padding: 16px 20px;
  border: 1px solid var(--brand-border);
  background: rgba(255,255,255,0.02);
  color: var(--brand-text);
  border-radius: var(--radius);
  transition: all .2s ease;
  font-size: 14px;
}
.modal-opts button:hover { border-color: var(--brand-yellow); color: var(--brand-yellow); background: rgba(255,192,0,0.04); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   Contact extras (block big text + chips)
   ============================================================ */
.contact-block .big {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--brand-yellow);
}
.contact-block a.big:hover { color: var(--brand-text); }
.contact-block .small {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-text-muted);
}
.contact-block h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  margin: 0 0 14px;
  font-weight: 500;
}
.contact-form .field { margin-bottom: 24px; }
.contact-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-text);
  margin-bottom: 10px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--brand-border);
  color: var(--brand-text);
  font: 400 16px var(--font-sans);
  outline: none;
  transition: border-color .2s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--brand-text-muted); }
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: var(--brand-yellow); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .chips { display: flex; gap: 8px; flex-wrap: wrap; }
.contact-form .chip {
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-text-muted);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  background: transparent;
  transition: all .2s ease;
}
.contact-form .chip:hover { color: var(--brand-text); border-color: var(--brand-border-hover); }
.contact-form .chip.on { background: var(--brand-yellow); color: var(--brand-black); border-color: var(--brand-yellow); }
.contact-form .submit-row {
  margin-top: 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--brand-border);
}
.contact-form .submit-row .note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--brand-text-muted);
}
.contact-form .submit-row .sent {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--brand-yellow);
}
.contact-grid { display: grid; grid-template-columns: 1.5fr 1.2fr; gap: 80px; align-items: start; padding: 40px 0 80px; }
.contact-details { display: flex; flex-direction: column; gap: 32px; }

/* ============================================================
   Insights tweaks (override existing if needed)
   ============================================================ */
.ins-row.active { background: rgba(255,192,0,0.04); border-left: 2px solid var(--brand-yellow); padding-left: 18px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero-sub { grid-template-columns: 1fr; }
  .two-entries { grid-template-columns: 1fr; }
  .entry { padding: 40px 0; border-right: 0; border-bottom: 1px solid var(--brand-border); }
  .entry:last-child { padding-left: 0; border-bottom: 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .pains-grid, .three-paths, .four-probs, .nn-grid, .how-grid { grid-template-columns: 1fr; }
  .offer-grid, .ucp-grid { grid-template-columns: 1fr; }
  .leads-grid { grid-template-columns: 1fr; }
  .ap-grid, .big-offer, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { position: static; }
  .uc-row { grid-template-columns: 1fr; gap: 16px; }
  .ins-featured { grid-template-columns: 1fr; }
  .contact-details { gap: 24px; }
}
