:root {
  --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --bg: #f5f7f3;
  --surface: #fefdfb;
  --surface-alt: #eef3ec;
  --text: #2a3530;
  --muted: #5f6d66;
  --brand: #4a7268;
  --brand-strong: #3a5c54;
  --accent: #c4a574;
  --accent-soft: rgba(196, 165, 116, 0.22);
  --border: #dde6df;
  --shadow: 0 14px 40px rgba(42, 53, 48, 0.07);
  --shadow-soft: 0 4px 20px rgba(42, 53, 48, 0.05);
  --radius: 16px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-optical-sizing: auto;
  color: var(--text);
  background: var(--bg);
  line-height: 1.72;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--max), 92vw);
  margin-inline: auto;
}

.topbar {
  background: linear-gradient(90deg, #e8f0ea 0%, #f2f6f0 50%, #eef3ec 100%);
  color: #3d534c;
  font-size: 0.875rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.topbar-icon {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
}

.topbar p {
  margin: 0;
  line-height: 1.55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(252, 255, 253, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.logo {
  font-family: var(--font-serif);
  font-weight: 600;
  color: #2a3530;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}

.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a {
  color: #2e4349;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.3rem 0.4rem;
  border-radius: 8px;
}

.nav a:hover {
  background: #edf5f0;
  text-decoration: none;
}

.button,
button.button {
  display: inline-block;
  border: 0;
  background: linear-gradient(165deg, #558a7e 0%, var(--brand) 45%, var(--brand-strong) 100%);
  color: #fafcfb;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(74, 114, 104, 0.28);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
button.button:hover {
  background: linear-gradient(165deg, #5f9488 0%, #4a7a6f 50%, var(--brand-strong) 100%);
  box-shadow: 0 6px 22px rgba(74, 114, 104, 0.32);
  transform: translateY(-1px);
  text-decoration: none;
}

.button:active,
button.button:active {
  transform: translateY(0);
}

.button.alt {
  background: var(--surface);
  color: var(--brand-strong);
  border: 1px solid #b8cfc5;
  box-shadow: var(--shadow-soft);
}

.button.alt:hover {
  background: #f6faf7;
  border-color: var(--brand);
  color: var(--brand-strong);
}

.hero {
  position: relative;
  padding: 3.5rem 0 3.2rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, var(--accent-soft) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 20%, rgba(74, 114, 104, 0.12) 0%, transparent 50%),
    linear-gradient(175deg, #fafbf8 0%, #eef4ef 48%, #e8efe8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 1;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero--premium {
  background:
    linear-gradient(150deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.88) 45%, rgba(30, 41, 59, 0.92) 100%),
    url("https://images.unsplash.com/photo-1519821172141-b5d8f2a0e12f?auto=format&fit=crop&w=1800&q=70")
      center / cover no-repeat;
}

.hero--premium .hero-eyebrow {
  color: #cbd5e1;
}

.hero--premium .hero-panel {
  background: rgba(15, 23, 42, 0.64);
  border: 1px solid rgba(125, 211, 252, 0.28);
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.45);
}

.hero--premium h1,
.hero--premium .hero-lead {
  color: #f8fafc;
}

.hero--premium .hero-lead {
  color: #dbeafe;
}

.hero--premium .pill {
  background: rgba(125, 211, 252, 0.16);
  border: 1px solid rgba(125, 211, 252, 0.35);
  color: #bae6fd;
}

.hero--premium .trust-pill {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(125, 211, 252, 0.28);
  color: #e2e8f0;
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(248, 250, 252, 0.08);
  border-color: rgba(125, 211, 252, 0.28);
}

.hero-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.hero-eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a6b63;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.8rem;
  align-items: center;
}

.hero-panel {
  position: relative;
  background: rgba(254, 253, 251, 0.92);
  border: 1px solid rgba(221, 230, 223, 0.95);
  border-radius: 20px;
  padding: 1.5rem 1.55rem 1.45rem 1.85rem;
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.35rem;
  bottom: 1.35rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--brand) 100%);
  opacity: 0.85;
}

.hero-lead {
  font-size: 1.05rem;
  color: #4a5751;
  max-width: 38rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.3rem;
}

.trust-row {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.75rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #cddfd5;
  border-radius: 999px;
  color: #3d534c;
  font-size: 0.8125rem;
  font-weight: 600;
}

.trust-pill::before {
  font-size: 0.9rem;
  line-height: 1;
  opacity: 0.92;
}

.trust-pill--star::before {
  content: "★";
  color: var(--accent);
}

.trust-pill--leaf::before {
  content: "❧";
  color: var(--brand);
  font-size: 0.85rem;
}

.trust-pill--lock::before {
  content: "◆";
  color: var(--brand-strong);
  font-size: 0.55rem;
}

.card-wellness {
  background: linear-gradient(160deg, #fefdfb 0%, #f4f8f4 55%, #eef4ef 100%);
  border-color: #cfded5;
  box-shadow: var(--shadow);
}

.wellness-label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-strong);
}

.wellness-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: #26332e;
}

.checklist {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.75rem;
  color: #4a5751;
  line-height: 1.55;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--brand) 100%);
  box-shadow: 0 0 0 3px rgba(74, 114, 104, 0.15);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(207, 222, 213, 0.9);
}

.hero-stat {
  text-align: center;
  padding: 0.5rem 0.35rem;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  border: 1px solid #dce8df;
}

.hero-stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand-strong);
  line-height: 1.2;
}

.hero-stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
  line-height: 1.35;
}

h1,
h2,
h3 {
  line-height: 1.18;
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: #24312c;
}

h1 {
  font-size: clamp(2.15rem, 4.2vw, 3.15rem);
  letter-spacing: -0.02em;
  font-weight: 600;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.05rem);
}

h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: #2f3d37;
}

p {
  margin: 0 0 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  box-shadow: var(--shadow-soft);
}

.kpi-row,
.grid-3,
.grid-2 {
  display: grid;
  gap: 1rem;
}

.kpi-row {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.section {
  padding: 2.2rem 0;
}

.section-muted {
  background: linear-gradient(180deg, #eef4ef 0%, #e8f0ea 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-light {
  background: #f8fafc;
}

.pill {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(74, 114, 104, 0.1);
  color: var(--brand-strong);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}

.list-clean {
  margin: 0;
  padding-left: 1rem;
}

.list-clean li {
  margin-bottom: 0.55rem;
}

.affiliate-box {
  border: 1px solid #caded4;
  background: #fbfdfc;
}

.price {
  font-family: var(--font-sans);
  font-weight: 700;
  color: #2f3d37;
}

.muted {
  color: var(--muted);
}

.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  margin-bottom: 0.8rem;
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.result {
  padding: 1.1rem 1.15rem;
  background: linear-gradient(145deg, #f6faf7 0%, #eef5f0 100%);
  border: 1px solid #c5d9ce;
  border-radius: var(--radius);
}

.quiz-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
}

.breadcrumb {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  background: #f9fcfa;
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

/* —— Affiliate / conversion blocks —— */

.cta-band {
  padding: 2.6rem 0;
  background: linear-gradient(118deg, #35564f 0%, var(--brand-strong) 42%, #4d7a6f 100%);
  color: #f2f8f5;
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band__copy {
  flex: 1 1 18rem;
  max-width: 36rem;
}

.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 0.65rem;
}

.cta-band p {
  margin: 0;
  color: rgba(242, 248, 245, 0.92);
  line-height: 1.65;
}

.cta-band a:not(.button) {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-band a:not(.button):hover {
  color: #fff;
  text-decoration: none;
}

.cta-band .pill {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.cta-band .button {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.cta-band .button.alt {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.cta-band .button.alt:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.cta-inline {
  margin: 1.5rem 0;
  padding: 1.35rem 1.45rem;
  border-radius: var(--radius);
  border: 1px solid #c5d9ce;
  background: linear-gradient(145deg, #f7fbf8 0%, #eef5f0 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-inline p {
  margin: 0;
  flex: 1 1 14rem;
  font-weight: 500;
  color: #3d534c;
}

.rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}

.rec-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.rec-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem 1.3rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid #c5d4cc;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.rec-card--featured {
  border-color: #b89b6a;
  box-shadow: 0 12px 36px rgba(74, 114, 104, 0.12), 0 0 0 1px rgba(196, 165, 116, 0.35);
  background: linear-gradient(165deg, #fffefb 0%, #f8faf7 100%);
}

.rec-card__badge {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0.5rem;
  padding: 0.22rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  background: rgba(74, 114, 104, 0.12);
  color: var(--brand-strong);
}

.rec-card--featured .rec-card__badge {
  background: rgba(196, 165, 116, 0.25);
  color: #6b5a3a;
}

.rec-card h3 {
  margin-bottom: 0.45rem;
}

.rec-card__for {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.rec-card__pros {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #4a5751;
  flex: 1;
}

.rec-card__pros li {
  margin-bottom: 0.4rem;
}

.rec-card__foot {
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.rec-card .price {
  margin-bottom: 0.65rem;
}

.affiliate-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.compare-section {
  margin: 0;
}

.compare-scroll {
  overflow-x: auto;
  margin-top: 0.75rem;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.compare-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.compare-table th {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--brand-strong);
  background: #f3f8f4;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table .pick {
  font-weight: 600;
  color: var(--brand-strong);
}

.compare-caption {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.6rem 0 0;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  padding: 1.35rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: #3d534c;
  background: #f4faf6;
  border-radius: 999px;
  border: 1px solid #d7e8df;
}

.trust-strip__item::before {
  content: "✓";
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
}

.faq--convert details p:last-child {
  margin-bottom: 0;
}

.faq-cta {
  margin-top: 0.75rem;
}

.faq-cta .button {
  font-size: 0.88rem;
  padding: 0.62rem 1rem;
}

.section-intro {
  max-width: 40rem;
  margin-bottom: 0.25rem;
}

.quiz-embed-card {
  border-radius: var(--radius);
  border: 1px solid #d7e7f4;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.quiz-embed-card iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
  background: #fff;
}

.quiz-embed-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}

.quiz-embed-footer p {
  margin: 0;
  color: #334155;
  font-weight: 500;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.article-card {
  background: #fff;
  border: 1px solid #dbe7f3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.article-card__body {
  padding: 1rem 1.05rem 1.1rem;
}

.article-card__body p {
  color: #475569;
}

.program-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: stretch;
  border: 1px solid #d7e7f4;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(150deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.program-card__media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.program-card__content {
  padding: 1.2rem 1.25rem;
}

.program-card__content .button {
  margin-top: 0.4rem;
}

/* —— Neowake affiliate conversion components —— */

.money-hero {
  padding: 3rem 0 2.6rem;
  background:
    linear-gradient(150deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%),
    url("https://images.unsplash.com/photo-1519821172141-b5d8f2a0e12f?auto=format&fit=crop&w=1800&q=70")
      center / cover no-repeat;
  color: #f8fafc;
}

.money-hero h1,
.money-hero p {
  color: #f8fafc;
}

.money-hero .muted {
  color: #dbeafe;
}

.money-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.1rem;
  align-items: start;
}

.money-card {
  background: #fff;
  border: 1px solid #d8e4ee;
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  padding: 1.2rem 1.25rem;
}

.money-benefits li {
  margin-bottom: 0.55rem;
}

.neowake-cta-box {
  margin: 1.2rem 0;
  border: 1px solid #cfe0eb;
  border-radius: 16px;
  background: linear-gradient(145deg, #f8fafc 0%, #edf4f8 100%);
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.neowake-cta-box h3 {
  margin-bottom: 0.35rem;
  color: #1e293b;
}

.neowake-cta-box p {
  margin-bottom: 0.7rem;
  color: #334155;
}

.neowake-cta-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.neowake-cta-box__hint {
  font-size: 0.82rem;
  color: #475569;
  font-weight: 600;
}

.neowake-cta-end {
  margin-top: 1.45rem;
}

.neowake-cta-end .neowake-cta-box {
  margin: 0;
}

@media (max-width: 920px) {
  .hero-grid,
  .kpi-row,
  .grid-3,
  .grid-2,
  .footer-grid,
  .rec-grid,
  .rec-grid--2,
  .article-grid,
  .program-card,
  .money-wrap {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .quiz-embed-card iframe {
    min-height: 560px;
  }

  .quiz-embed-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-media img {
    height: 160px;
  }
}

/* Impressum: bearbeitbare Felder (Inhalt der .legal-value ersetzen) */
.legal-field {
  margin: 1rem 0 0;
}

.legal-field:first-of-type {
  margin-top: 0.5rem;
}

.legal-field__label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brand-strong);
  margin-bottom: 0.25rem;
}

.legal-value {
  display: inline-block;
  max-width: 100%;
  padding: 0.15rem 0 0.35rem;
  border-bottom: 1px dashed var(--border);
  color: var(--text);
}

.legal-value--block {
  display: block;
  border-bottom: none;
  padding: 0.5rem 0 0;
  line-height: 1.65;
}

.legal-value--link {
  border-bottom-style: solid;
  border-color: var(--brand);
  text-decoration: none;
  color: var(--brand-strong);
}

.legal-value--link:hover {
  text-decoration: underline;
}

.small-print {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
