/* ============================================================
   innere-welt.de – Design System v3
   Warm, weich, ruhig — für Frauen 30–60 auf spirituellem Weg.
   Basis: warmes Elfenbein · Akzent: Terracotta-Rosé · Salbeigrün
   Weiche Schatten, große Radien, Bogen-/Moon-Gate-Formen,
   Fraunces (Headlines) + Nunito Sans (Text)
   ============================================================ */

:root {
  --bg:             #fbf5ee;
  --bg-alt:         #f6ebe0;
  --bg-alt-2:       #efe3d6;
  --card:           #fffcf8;
  --paper:          #ffffff;
  --ink:            #473a30;
  --ink-soft:       #6b5b4d;
  --muted:          #94816f;
  --muted-dim:      #b9a998;
  --rose:           #c17c68;
  --rose-hover:     #a8654f;
  --rose-light:     #f5ded3;
  --rose-line:      #e3bcaa;
  --sage:           #7f9574;
  --sage-hover:     #6a7f60;
  --sage-light:     #e6ebdd;
  --sage-line:      #c3d0b6;
  --gold:           #cf9f5c;
  --gold-light:     #f3e4c8;
  --line:           #ecdfd0;
  --radius:         22px;
  --radius-sm:      14px;
  --radius-lg:      32px;
  --radius-pill:    999px;
  --shadow:         0 10px 30px -8px rgba(90,63,46,.16);
  --shadow-sm:      0 4px 14px -4px rgba(90,63,46,.14);
  --shadow-lg:      0 24px 60px -16px rgba(90,63,46,.22);
  --transition:     .25s ease;
  --font-head:      'Fraunces', Georgia, serif;
  --font-sans:      'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--rose); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose-hover); }
ul { list-style: none; }
::selection { background: var(--rose-light); color: var(--ink); }

/* ── Typography ───────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -.005em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 500; }
h3 { font-size: clamp(1.25rem, 2.1vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 700; font-family: var(--font-sans); }
p  { margin-bottom: 1rem; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.2rem; line-height: 1.75; color: var(--muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--rose);
}
.eyebrow svg { width: 15px; height: 15px; stroke: var(--rose); }

/* ── Layout ───────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
.container--wide   { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 5.5rem 0; position: relative; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7.5rem 0; }
.section--alt { background: var(--bg-alt); }
.section-title { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-title h2 { margin-bottom: .9rem; }
.section-title p { color: var(--muted); font-size: 1.05rem; }

/* sanfter Wellen-Übergang zu Sections mit --bg-alt */
.section--alt::before {
  content: '';
  position: absolute; top: -1px; left: 0; right: 0;
  height: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0 30C180 55 360 5 540 22 720 39 900 55 1080 38 1260 21 1350 12 1440 18V60H0Z' fill='%23fbf5ee'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

/* ── Grid ─────────────────────────────────────── */
.grid { display: grid; gap: 1.75rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ── Buttons – weich, rund, warme Fläche ──────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--rose);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--rose-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold {
  background: var(--sage);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { background: var(--sage-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--rose); color: var(--rose-hover); background: var(--rose-light); }
.btn-outline {
  background: transparent;
  border-color: var(--rose-line);
  color: var(--rose);
}
.btn-outline:hover { background: var(--rose-light); color: var(--rose-hover); border-color: var(--rose); }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: .6rem 1.25rem; font-size: .85rem; }
.btn:has(small) { flex-wrap: wrap; }
.btn small { flex-basis: 100%; text-align: center; font-size: .6em; font-weight: 400; line-height: 1.5; margin-top: 2px; opacity: .85; }

/* ── Header ───────────────────────────────────── */
.ad-disclosure {
  background: var(--bg-alt-2);
  padding: 9px 0;
  text-align: center;
  font-size: .78rem;
  color: var(--ink-soft);
}
.ad-disclosure a { color: var(--ink); text-decoration: underline; }

.site-header {
  background: rgba(251,245,238,.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1.5rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}
.site-logo:hover { color: var(--ink); }
.logo-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 32% 28%, var(--gold-light) 0%, var(--rose-light) 55%, var(--sage-light) 100%);
  flex-shrink: 0;
}
.logo-mark svg { width: 20px; height: 20px; stroke: var(--rose-hover); stroke-width: 1.6; }
.logo-mark--sm { width: 32px; height: 32px; }
.logo-mark--sm svg { width: 16px; height: 16px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav > li { position: relative; }
.site-nav a {
  color: var(--ink-soft);
  font-size: .93rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.site-nav a:hover { color: var(--rose); }
.site-nav .nav-cta {
  background: var(--rose);
  color: var(--paper) !important;
  padding: .65rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.site-nav .nav-cta:hover { background: var(--rose-hover); }

.has-dropdown .dropdown-arrow { width: 13px; height: 13px; transition: transform var(--transition); }
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: -1rem;
  min-width: 250px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: .6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all var(--transition);
}
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { padding: .65rem .8rem; border-radius: 10px; display: block; font-weight: 500; }
.dropdown-menu li a:hover { background: var(--rose-light); color: var(--rose-hover); }

/* ── Breadcrumb ───────────────────────────────── */
.breadcrumb-bar { border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.breadcrumb { display: flex; align-items: center; gap: .4rem; padding: .8rem 0; font-size: .82rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb-sep { width: 13px; height: 13px; opacity: .5; }

/* ── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 50% at 88% 8%, rgba(193,124,104,.16) 0%, transparent 65%),
    radial-gradient(ellipse 50% 45% at 6% 95%, rgba(127,149,116,.14) 0%, transparent 65%),
    var(--bg);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content h1 { margin: 1.1rem 0 1.4rem; }
.hero__content h1 span {
  color: var(--rose-hover);
  font-style: italic;
  position: relative;
}
.hero__actions { display: flex; gap: 1rem; margin-top: 2.1rem; flex-wrap: wrap; }

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero__card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.hero__card:nth-child(2) { margin-left: 1.5rem; }
.hero__card:nth-child(3) { margin-left: 3rem; }
.hero__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--rose-line); }
.hero__card-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__card:nth-child(2) .hero__card-icon { background: var(--sage-light); }
.hero__card:nth-child(3) .hero__card-icon { background: var(--gold-light); }
.hero__card-icon svg { width: 22px; height: 22px; stroke: var(--rose-hover); stroke-width: 1.5; fill: none; }
.hero__card:nth-child(2) .hero__card-icon svg { stroke: var(--sage-hover); }
.hero__card:nth-child(3) .hero__card-icon svg { stroke: var(--gold); }
.hero__card-title { font-weight: 700; font-size: .96rem; color: var(--ink); }
.hero__card-sub { font-size: .82rem; color: var(--muted); margin-top: .15rem; }

/* ── Cards / Icons ────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card p { color: var(--muted); font-size: .93rem; }

.card-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  background: var(--rose-light);
}
.card-icon svg { width: 25px; height: 25px; stroke: var(--rose-hover); stroke-width: 1.5; fill: none; }
.card-icon--gold { background: var(--sage-light); }
.card-icon--gold svg { stroke: var(--sage-hover); }

/* ── Themensäulen ─────────────────────────────── */
.pillar-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.1rem;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pillar-card__num {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted-dim);
  letter-spacing: .12em;
  margin-bottom: .5rem;
  text-transform: uppercase;
}
.pillar-card h3 { margin-bottom: .7rem; }
.pillar-card p { color: var(--muted); font-size: .92rem; margin-bottom: 1.3rem; }
.pillar-card__link { font-size: .88rem; font-weight: 700; color: var(--rose); margin-top: auto; display: inline-flex; align-items: center; gap: .35rem; }
.pillar-card__link svg { width: 15px; height: 15px; transition: transform var(--transition); }
.pillar-card:hover .pillar-card__link svg { transform: translateX(3px); }

/* ── Quiz-Teaser ──────────────────────────────── */
.quiz-teaser {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  background: linear-gradient(160deg, var(--card), var(--rose-light) 130%);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.quiz-teaser__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: center; }
.quiz-teaser__types { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.quiz-type-chip {
  display: flex; align-items: center; gap: .5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: .5rem 1.05rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.quiz-type-chip svg { width: 15px; height: 15px; stroke: var(--rose); }
.quiz-teaser__panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.quiz-teaser__panel-row {
  display: flex; align-items: center; gap: .8rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .88rem;
  color: var(--muted);
}
.quiz-teaser__panel-row:last-child { border-bottom: none; }
.quiz-teaser__panel-row svg { width: 18px; height: 18px; stroke: var(--sage-hover); flex-shrink: 0; }
.quiz-teaser__panel-row strong { color: var(--ink); }

/* ── Trustbox (Andreas Hoiboom) – Moon-Gate-Rahmen ─ */
.trustbox {
  display: flex;
  gap: 2.25rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.trustbox__avatar {
  width: 128px; height: 156px;
  border-radius: 64px 64px 14px 14px;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px var(--rose-line), var(--shadow);
}
.trustbox__avatar img { width: 100%; height: 100%; object-fit: cover; }
.trustbox__name { font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; }
.trustbox__role { color: var(--rose); font-size: .86rem; font-weight: 700; margin-bottom: .8rem; }
.trustbox__text { color: var(--muted); font-size: .96rem; }

/* ── Affiliate-Hinweis-Block ──────────────────── */
.affiliate-note {
  max-width: 680px; margin: 0 auto; text-align: center;
}
.affiliate-note .card-icon { margin: 0 auto 1rem; }
.affiliate-note h2 { font-size: 1.25rem; margin-bottom: .7rem; }
.affiliate-note p { color: var(--muted); font-size: .93rem; }

/* ── CTA-Section ──────────────────────────────── */
.cta-section {
  padding: 5.5rem 0;
  background: linear-gradient(160deg, var(--sage-light), var(--rose-light));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-section__inner { text-align: center; max-width: 620px; margin: 0 auto; }
.cta-section__inner h2 { margin-bottom: 1rem; }
.cta-section__inner p { color: var(--ink-soft); margin-bottom: 2rem; }

/* ── FAQ ──────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 1.03rem; color: var(--ink);
}
.faq-question svg { width: 19px; height: 19px; stroke: var(--rose); flex-shrink: 0; transition: transform var(--transition); }
.faq-question.open svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition); color: var(--muted); font-size: .94rem; }
.faq-answer.open { max-height: 400px; padding-bottom: 1.4rem; }

/* ── Footer ───────────────────────────────────── */
.site-footer { background: var(--bg-alt-2); border-top: 1px solid var(--line); padding: 4rem 0 0; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-about p { color: var(--muted); font-size: .85rem; margin-top: 1rem; }
.footer-logo { display: flex; align-items: center; gap: .55rem; font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--ink); }
.footer-nav h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--rose); margin-bottom: 1rem; font-weight: 700; }
.footer-nav li { margin-bottom: .6rem; }
.footer-nav a { color: var(--muted); font-size: .9rem; }
.footer-nav a:hover { color: var(--rose); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; border-top: 1px solid var(--line);
  font-size: .82rem; color: var(--muted); flex-wrap: wrap; gap: 1rem;
}
.footer-legal { display: flex; gap: 1.25rem; }
.footer-affiliate { border-top: 1px solid var(--line); padding: 1rem 0; background: var(--bg-alt-2); }
.footer-affiliate p { margin: 0; font-size: .78rem; color: var(--muted-dim); text-align: center; }

/* ── Artikel / Themen-Hub-Seiten ──────────────── */
.article-header { padding: 3.5rem 0 2.5rem; }
.article-header h1 { margin: 1rem 0 1.3rem; max-width: 780px; }
.article-header .lead { max-width: 680px; }

.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { margin: 2.75rem 0 1.1rem; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin: 1.9rem 0 .8rem; }
.article-body p { font-size: 1.02rem; }
.article-body ul, .article-body ol { margin: 0 0 1.3rem 0; }

.tldr-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--rose);
  border-radius: var(--radius);
  padding: 1.6rem 1.9rem;
  margin: 1.75rem 0 0;
  box-shadow: var(--shadow-sm);
}
.tldr-box__label {
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--rose); margin-bottom: .6rem; display: block;
}
.tldr-box p { font-size: .98rem; color: var(--ink-soft); }

.check-list { display: flex; flex-direction: column; gap: .9rem; margin: 1.3rem 0; }
.check-list li { display: flex; align-items: flex-start; gap: .85rem; font-size: .98rem; color: var(--ink-soft); }
.check-list svg { width: 19px; height: 19px; stroke: var(--sage-hover); stroke-width: 2; flex-shrink: 0; margin-top: .2rem; }

.steps-list { display: flex; flex-direction: column; gap: 1.5rem; margin: 1.5rem 0; }
.steps-list li { display: flex; gap: 1.2rem; }
.steps-list__num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--rose-light); color: var(--rose-hover);
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.steps-list__body strong { display: block; color: var(--ink); margin-bottom: .25rem; font-size: 1rem; }
.steps-list__body p { font-size: .94rem; color: var(--muted); margin: 0; }

.callout {
  display: flex; gap: 1rem;
  background: var(--sage-light);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin: 2rem 0;
}
.callout svg { width: 22px; height: 22px; stroke: var(--sage-hover); flex-shrink: 0; margin-top: .1rem; }
.callout p { font-size: .93rem; color: var(--ink-soft); margin: 0; }
.callout strong { color: var(--ink); }

.article-cross { padding: 1rem 0 0; }
.article-cross-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem;
}
.article-cross-card {
  display: flex; align-items: center; gap: .8rem;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1rem 1.15rem; font-weight: 700; font-size: .92rem; color: var(--ink);
  transition: all var(--transition);
}
.article-cross-card:hover { border-color: var(--rose-line); transform: translateY(-2px); box-shadow: var(--shadow-sm); color: var(--ink); }
.article-cross-card svg { width: 20px; height: 20px; stroke: var(--rose-hover); flex-shrink: 0; }

/* ── Quiz ─────────────────────────────────────── */
.iw-quiz { max-width: 680px; margin: 0 auto; }
.iw-quiz__progress { display: flex; gap: .4rem; margin-bottom: 2.5rem; }
.iw-quiz__progress-dot { flex: 1; height: 6px; border-radius: 999px; background: var(--line); transition: background var(--transition); }
.iw-quiz__progress-dot.done { background: var(--sage); }
.iw-quiz__progress-dot.active { background: var(--rose); }

.iw-quiz__step { display: none; }
.iw-quiz__step.active { display: block; animation: iwFadeIn .3s ease; }
@keyframes iwFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.iw-quiz__count { text-align: center; font-family: var(--font-head); font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--rose); margin-bottom: .6rem; }
.iw-quiz__question { margin-bottom: 1.9rem; text-align: center; font-size: clamp(1.25rem, 2.4vw, 1.6rem); }

.iw-quiz__options { display: flex; flex-direction: column; gap: .75rem; }
.iw-quiz__option {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.4rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: .96rem;
  color: var(--ink-soft);
  transition: all var(--transition);
  width: 100%;
}
.iw-quiz__option:hover { border-color: var(--rose-line); background: var(--rose-light); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.iw-quiz__option.selected { border-color: var(--rose); background: var(--rose-light); color: var(--ink); font-weight: 600; }
.iw-quiz__option-letter {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  color: var(--rose-hover);
  flex-shrink: 0;
}

.iw-quiz__back { margin-top: 1.75rem; text-align: center; }
.iw-quiz__back button { background: none; border: none; color: var(--muted); font-size: .88rem; cursor: pointer; text-decoration: underline; }
.iw-quiz__back button:hover { color: var(--ink); }

.iw-quiz__results { display: none; }
.iw-quiz__results.active { display: block; animation: iwFadeIn .4s ease; }

.iw-quiz__result-primary {
  background: linear-gradient(160deg, var(--card), var(--rose-light) 140%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
.iw-quiz__result-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--rose-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.iw-quiz__result-icon svg { width: 30px; height: 30px; stroke: var(--rose-hover); stroke-width: 1.5; }
.iw-quiz__result-eyebrow { display: block; margin-bottom: .6rem; }
.iw-quiz__result-articles { display: flex; flex-direction: column; gap: .75rem; margin: 1.75rem 0 .5rem; text-align: left; }

.iw-quiz__result-secondary {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}
.iw-quiz__result-secondary p { font-size: .9rem; color: var(--muted); margin: 0; }
.iw-quiz__result-secondary a { font-weight: 700; }

.iw-quiz__restart { text-align: center; }

/* ── Utilities ────────────────────────────────── */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .quiz-teaser__inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trustbox { flex-direction: column; align-items: center; text-align: center; }
  .hero__card:nth-child(2), .hero__card:nth-child(3) { margin-left: 0; }
}
@media (max-width: 760px) {
  .menu-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height var(--transition);
  }
  .site-nav.open { max-height: 600px; }
  .site-nav > li { width: 100%; padding: 0 1.5rem; }
  .site-nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; display: none; border: none; box-shadow: none; background: none; padding: 0 0 .5rem 1rem; }
  .has-dropdown.open .dropdown-menu { display: block; }
  .site-nav .nav-cta { margin: 1rem 0; text-align: center; justify-content: center; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
