/* =========================================================
   Natascha Ljubic – nataschaljubic.at
   Corporate Design: Petrol #334862 · Gold #C8A44E
   Lato (Headings) + DM Sans (Body)
   ========================================================= */

:root {
  /* Farben */
  --petrol:      #334862;
  --petrol-dark: #0F1B2D;
  --petrol-soft: #4A6480;
  --gold:        #C8A44E;
  --gold-dark:   #B08F3A;
  --gold-soft:   #F4ECD8;
  --ink:         #1D1E20;
  --ink-soft:    #55606C;
  --cream:       #FAF8F4;
  --paper:       #FFFFFF;
  --mist:        #EFF1F7;
  --line:        #E4E7EC;
  --line-warm:   #E7E2D8;

  --font-head: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1160px;
  --read: 780px;
  --radius: 6px;
  --radius-lg: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--petrol); text-underline-offset: 3px; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--petrol); line-height: 1.16; font-weight: 700; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }
p { margin: 0 0 1.1em; }

.eyebrow {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .18em;
  font-size: .78rem; font-weight: 700; color: var(--gold-dark); margin: 0 0 .9rem;
}
.lead { font-size: 1.2rem; color: var(--ink-soft); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }
.read { max-width: var(--read); margin-left: auto; margin-right: auto; }
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section--tight { padding: clamp(2.2rem, 5vw, 3.5rem) 0; }
.center { text-align: center; }
.section-head { max-width: 640px; margin: 0 auto 2.6rem; text-align: center; }
.section-head p.lead { margin-bottom: 0; }
.divider-gold { width: 54px; height: 3px; background: var(--gold); border: 0; margin: 1.2rem auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  padding: .85rem 1.7rem; border-radius: var(--radius);
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: background .18s, color .18s, border-color .18s, transform .05s;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: var(--petrol-dark); }
.btn--gold:hover { background: var(--gold-dark); color: #fff; }
.btn--petrol { background: var(--petrol); color: #fff; }
.btn--petrol:hover { background: var(--petrol-dark); }
.btn--ghost { background: transparent; color: var(--petrol); border-color: var(--petrol); }
.btn--ghost:hover { background: var(--petrol); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost-light:hover { background: #fff; color: var(--petrol); }
.btn--lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

/* ---------- Kopfzeile / Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 14px -10px rgba(15,27,45,.35);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 70px; }
.brand { display: flex; align-items: center; gap: .65rem; line-height: 1.15; text-decoration: none; flex-shrink: 0; }
.brand-mark { width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--petrol-dark);
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; letter-spacing: .01em;
  box-shadow: 0 6px 14px -6px rgba(200,164,78,.7); }
.brand-txt { display: flex; flex-direction: column; }
.brand b { font-family: var(--font-head); font-weight: 800; font-size: 1.06rem; color: var(--petrol); letter-spacing: -.005em; }
.brand small { font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; margin-top: 1px; }
@media (max-width: 420px){ .brand small { display:none; } .brand-mark { width:38px; height:38px; font-size:1.05rem; } }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--ink-soft); text-decoration: none; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--petrol); }
.header-cta { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; color: var(--petrol); }
.nav-toggle svg { width: 26px; height: 26px; }
@media (max-width: 940px) {
  .nav, .header-cta .phone { display: none; }
  .nav-toggle { display: block; }
}
/* Mobile-Menü */
.mobile-nav { display: none; background: #fff; border-bottom: 1px solid var(--line); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: .85rem 1.5rem; font-family: var(--font-head); font-weight: 600; color: var(--petrol); text-decoration: none; border-top: 1px solid var(--mist); }
.mobile-nav .btn { margin: 1rem 1.5rem; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-dark) 100%); color: #fff; overflow: hidden; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--gold); }
.hero .grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; padding: clamp(2.5rem,6vw,4.5rem) 0; }
.hero .lead { color: #C9D4E0; max-width: 34rem; }
.badge-pill {
  display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-head);
  font-size: .8rem; font-weight: 700; padding: .4rem .9rem; border-radius: 100px;
  background: rgba(200,164,78,.18); color: var(--gold); margin-bottom: 1.4rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 1.4rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.hero-tags span { display: inline-flex; align-items: center; gap: .4rem; font-size: .9rem; color: #AEBED0; }
.hero-tags svg { width: 15px; height: 15px; color: var(--gold); }
.hero-photo { position: relative; }
.hero-photo img { border-radius: var(--radius-lg) var(--radius-lg) 0 0; width: 100%; max-height: 520px; object-fit: cover; object-position: center top; box-shadow: 0 30px 70px -30px rgba(0,0,0,.5); }
.hero-badge {
  position: absolute; background: #fff; color: var(--ink); border-radius: var(--radius);
  box-shadow: 0 16px 40px -18px rgba(0,0,0,.5); padding: .7rem .9rem; display: flex; align-items: center; gap: .6rem;
}
.hero-badge .num { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--petrol); }
.hero-badge small { color: var(--ink-soft); font-size: .72rem; display: block; line-height: 1.2; }
.hero-badge.tl { left: -14px; bottom: 40px; }
.hero-badge.br { right: -10px; bottom: 16px; }
@media (max-width: 860px) {
  .hero .grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-tags { justify-content: center; }
  .hero-photo { max-width: 340px; margin: 0 auto; }
  .hero-badge { display: none; }
}

/* ---------- Stats ---------- */
.stats { background: var(--cream); border-bottom: 1px solid var(--line-warm); }
.stats .grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat .val { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem,4vw,2.4rem); color: var(--petrol); }
.stat .lbl { font-size: .9rem; color: var(--ink-soft); }
@media (max-width: 620px) { .stats .grid { grid-template-columns: repeat(2,1fr); } }

/* ---------- Logos ---------- */
.logos { padding: 2.5rem 0; background: #fff; border-bottom: 1px solid var(--line); }
.logos p { text-align: center; font-family: var(--font-head); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: #9AA3AE; margin: 0 0 1.4rem; }
.logos .row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem 3rem; }
.logos img { height: 42px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .7; transition: filter .2s, opacity .2s; }
.logos img:hover { filter: grayscale(0); opacity: 1; }

/* ---------- Karten-Raster ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.7rem; transition: transform .18s, box-shadow .18s, border-color .18s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -30px rgba(29,30,32,.5); border-color: var(--gold); }
.card .ic { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 1rem; background: rgba(51,72,98,.08); color: var(--petrol); }
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin: 0 0 .5rem; }
.card p { margin: 0; font-size: .96rem; color: var(--ink-soft); }
.card.dark { background: linear-gradient(135deg, var(--petrol), var(--petrol-dark)); border: 0; color: #fff; }
.card.dark h3 { color: #fff; }
.card.dark p { color: #C9D4E0; }
.card.dark .ic { background: rgba(200,164,78,.2); color: var(--gold); }
.card .price { font-family: var(--font-head); font-weight: 700; color: var(--gold-dark); }
.card.dark .price { color: var(--gold); }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1.1rem; }
.card-foot a { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--petrol); text-decoration: none; }
.card.dark .card-foot a { color: #fff; }

/* „3 Wege"-Karten mit Nummer */
.way { position: relative; display: flex; flex-direction: column; }
.way .step-n { font-family: var(--font-head); font-weight: 700; font-size: 2.2rem; color: var(--gold); line-height: 1; }
.way h3 { margin: .5rem 0 .4rem; }
.way ul { list-style: none; padding: 0; margin: .8rem 0 1.2rem; }
.way li { position: relative; padding-left: 1.5rem; font-size: .95rem; color: var(--ink-soft); margin-bottom: .4rem; }
.way li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 700; }
.way .btn { margin-top: auto; }

/* ---------- Testimonials ---------- */
.tstar { color: var(--gold); letter-spacing: 2px; }
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem; }
.testi p { font-style: italic; color: var(--ink); }
.testi .who { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.testi .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: top; }
.testi .who .ph { width: 48px; height: 48px; border-radius: 50%; background: var(--petrol); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.testi .who b { display: block; font-family: var(--font-head); color: var(--petrol); font-size: .95rem; }
.testi .who small { color: var(--ink-soft); font-size: .82rem; }

/* ---------- Pain points bg ---------- */
.bg-cream { background: var(--cream); }
.bg-mist  { background: var(--mist); }

/* ---------- Lead-Magnet-Banner ---------- */
.leadband { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: #fff; }
.leadband h2 { color: #fff; }
.leadband .read { text-align: center; }
.leadband p { color: #fff8e9; }
.leadband .btn { background: #fff; color: var(--petrol); }
.leadband .btn:hover { background: var(--cream); }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--petrol-dark); color: #fff; }
.newsletter h2 { color: #fff; }
.newsletter .lead { color: #B8C4D2; }
.nl-form { display: flex; gap: .6rem; max-width: 480px; margin: 1.4rem auto 0; flex-wrap: wrap; }
.nl-form input { flex: 1 1 220px; padding: .85rem 1rem; border-radius: var(--radius); border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; font-family: var(--font-body); }
.nl-form input::placeholder { color: #9FB0C2; }
.newsletter small { display: block; color: #8FA0B2; font-size: .8rem; margin-top: .8rem; }
.newsletter a { color: var(--gold); }

/* ---------- Final CTA ---------- */
.cta-final { background: linear-gradient(135deg, var(--petrol), var(--petrol-dark)); color: #fff; text-align: center; }
.cta-final h2 { color: #fff; }
.cta-final .lead { color: #C9D4E0; max-width: 40rem; margin: 0 auto 1.8rem; }
.cta-final small { display: block; color: #9FB0C2; margin-top: 1rem; font-size: .88rem; }

/* ---------- Zielgruppen ---------- */
.aud .ic { background: rgba(200,164,78,.15); color: var(--gold-dark); }

/* ---------- Split (Foto + Text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: 0 24px 50px -30px rgba(29,30,32,.5); width: 100%; object-fit: cover; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 1.8rem; } }
.checklist { list-style: none; padding: 0; margin: 1.2rem 0; }
.checklist li { position: relative; padding-left: 1.8rem; margin-bottom: .6rem; color: var(--ink-soft); }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 700; }

/* ---------- Timeline (Über mich) ---------- */
.timeline { max-width: 720px; margin: 0 auto; }
.tl-item { display: flex; gap: 1.4rem; }
.tl-item .dot { display: flex; flex-direction: column; align-items: center; }
.tl-item .dot span { width: 46px; height: 46px; border-radius: 50%; background: var(--petrol); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: .9rem; flex-shrink: 0; }
.tl-item .dot .line { width: 2px; flex: 1; background: var(--gold); min-height: 28px; margin: .4rem 0; }
.tl-item .body { padding-bottom: 1.8rem; }
.tl-item .body .yr { font-family: var(--font-head); font-weight: 700; color: var(--gold-dark); font-size: .9rem; }
.tl-item .body p { margin: .2rem 0 0; font-size: .96rem; color: var(--ink-soft); }

/* ---------- Formulare ---------- */
.field { margin-bottom: 1rem; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .9rem; display: block; margin-bottom: .35rem; color: var(--petrol); }
.field input, .field textarea {
  width: 100%; padding: .8rem 1rem; font-family: var(--font-body); font-size: 1rem;
  border: 1.5px solid var(--line); border-radius: var(--radius); background: #fff;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; box-shadow: 0 24px 60px -40px rgba(29,30,32,.5); }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; color: var(--ink-soft); margin: .6rem 0 1rem; }
.consent input { margin-top: .25rem; }

/* ---------- Prompt-Karte (Prompt-Bibliothek) ---------- */
.prompt { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin: 1.4rem 0; box-shadow: 0 12px 34px -26px rgba(29,30,32,.45); }
.prompt-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem .8rem .7rem 1.2rem; background: var(--mist); border-bottom: 1px solid var(--line); }
.prompt-bar .label { font-family: var(--font-head); font-weight: 700; font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; color: var(--petrol); }
.copy-btn { display: inline-flex; align-items: center; gap: .45rem; cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: .84rem; background: var(--gold); color: var(--petrol-dark); border: 0; border-radius: var(--radius); padding: .5rem .95rem; transition: background .18s, color .18s; }
.copy-btn:hover { background: var(--gold-dark); color: #fff; }
.copy-btn.copied { background: var(--petrol); color: #fff; }
.copy-btn svg { width: 15px; height: 15px; fill: currentColor; }
.prompt pre { margin: 0; padding: 1.3rem 1.4rem; white-space: pre-wrap; word-wrap: break-word; font-family: "DM Sans", monospace; font-size: .95rem; line-height: 1.65; color: var(--ink); }
.ph { color: var(--gold-dark); font-weight: 700; background: var(--gold-soft); padding: 0 .25em; border-radius: 3px; }

/* ---------- Callout ---------- */
.callout { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 1.5rem 1.6rem; margin: 1.6rem 0; }
.callout.tip { background: var(--gold-soft); border-color: #EBDFC1; border-left-color: var(--gold-dark); }
.callout h3 { margin-top: 0; }

/* ---------- Prose (Blog/Recht) ---------- */
.prose { max-width: var(--read); margin: 0 auto; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }
.prose ul { padding-left: 1.3rem; }
.prose li { margin-bottom: .4rem; }
.prose a { color: var(--petrol); }

/* ---------- Fußzeile ---------- */
.site-footer { background: var(--petrol-dark); color: #AEB8C4; padding: 3.5rem 0 2rem; font-size: .92rem; }
.site-footer a { color: #D3DAE3; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; }
.site-footer h4 { color: var(--gold); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 1rem; }
.site-footer .brandname { font-family: var(--font-head); font-weight: 700; color: var(--gold); font-size: 1.15rem; margin-bottom: .5rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.socials { display: flex; gap: .6rem; margin: 1rem 0; }
.socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(200,164,78,.18); display: grid; place-items: center; color: #fff; }
.socials a:hover { background: var(--gold); color: var(--petrol-dark); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .82rem; color: #7E8896; }
.foot-bottom a { color: #7E8896; }
.foot-bottom .links { display: flex; gap: 1.2rem; }
@media (max-width: 760px) { .site-footer .cols { grid-template-columns: 1fr; gap: 1.8rem; } }

/* ---------- Cookie-Banner ---------- */
.cookie { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 80; max-width: 620px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 24px 60px -20px rgba(15,27,45,.4); padding: 1.3rem 1.5rem; display: none; }
.cookie.show { display: block; }
.cookie p { font-size: .9rem; margin: 0 0 1rem; color: var(--ink-soft); }
.cookie a { color: var(--petrol); }
.cookie .row { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie .btn { padding: .6rem 1.2rem; font-size: .9rem; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit; transition: transform .18s, box-shadow .18s, border-color .18s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -30px rgba(29,30,32,.5); border-color: var(--gold); }
.blog-card .top { height: 96px; background: linear-gradient(135deg, var(--petrol), var(--petrol-dark)); display: flex; align-items: flex-end; padding: .9rem 1.1rem; }
.blog-card .body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.blog-card h3 { font-size: 1.12rem; margin: 0 0 .5rem; color: var(--petrol); }
.blog-card p { font-size: .92rem; color: var(--ink-soft); margin: 0 0 1rem; }
.blog-card .readmore { margin-top: auto; font-family: var(--font-head); font-weight: 700; font-size: .88rem; color: var(--gold-dark); }
.cat-chip { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 100px; background: var(--gold-soft); color: var(--gold-dark); }
.cat-chip.on-dark { background: rgba(200,164,78,.22); color: var(--gold); }
.article-meta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; color: var(--ink-soft); font-size: .9rem; margin: .6rem 0 1.5rem; }
.breadcrumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1rem; }
.breadcrumb a { color: var(--petrol); text-decoration: none; }
.article-hero { background: linear-gradient(135deg, var(--petrol), var(--petrol-dark)); color: #fff; padding: clamp(2.5rem,6vw,3.5rem) 0; }
.article-hero h1 { color: #fff; max-width: 22ch; }
.article-hero .breadcrumb, .article-hero .breadcrumb a { color: #C9D4E0; }
.article-hero .article-meta { color: #AEBED0; margin-bottom: 0; }
.prose h2 { color: var(--petrol); border-bottom: 2px solid var(--gold-soft); padding-bottom: .3rem; }
.prose h3 { color: var(--petrol); }
.prose ul li::marker { color: var(--gold-dark); }
.prose blockquote { border-left: 4px solid var(--gold); background: var(--gold-soft); margin: 1.4rem 0; padding: 1rem 1.3rem; border-radius: 0 6px 6px 0; font-style: italic; }
.prose pre { background: var(--petrol-dark); color: #E8ECF2; padding: 1.1rem 1.3rem; border-radius: 8px; overflow-x: auto; font-size: .9rem; }
.prose code { background: var(--mist); padding: .1em .4em; border-radius: 4px; font-size: .92em; }
.prose pre code { background: none; padding: 0; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
@media (max-width: 720px) { .related-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq details { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:1.1rem 1.3rem; margin-bottom:.8rem; }
.faq summary { font-family:var(--font-head); font-weight:700; color:var(--petrol); cursor:pointer; list-style:none; display:flex; justify-content:space-between; gap:1rem; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; color:var(--gold-dark); font-size:1.4rem; line-height:1; }
.faq details[open] summary::after { content:"–"; }
.faq details p { margin:.8rem 0 0; color:var(--ink-soft); }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }
