/* Caballo Natural – design tokens + globals */
:root {
  --bg: #F4EFE4;
  --bg-deep: #E6DECA;
  --bg-paper: #FBF7EC;
  --ink: #1A2624;
  --ink-soft: #404A47;
  --ink-mute: #707975;
  --line: #D6D0BC;
  --line-soft: #E8E1CE;
  --green-deep: #2A6A60;
  --green: #3C827A;
  --green-mid: #5DA095;
  --green-soft: #B5D2CC;
  --green-tint: #DAE9E5;
  --gold: #B98A3C;
  --gold-soft: #E5C98C;
  --gold-tint: #F1E4C4;
  --red-mute: #9B4D3E;
  --shadow-sm: 0 1px 2px rgba(28,38,32,0.05), 0 1px 1px rgba(28,38,32,0.04);
  --shadow-md: 0 4px 12px rgba(28,38,32,0.08), 0 2px 4px rgba(28,38,32,0.04);
  --shadow-lg: 0 24px 60px -20px rgba(28,38,32,0.25), 0 10px 24px -8px rgba(28,38,32,0.12);
  --r-sm: 4px 0 4px 0;
  --r-md: 14px 0 14px 0;
  --r-lg: 24px 0 24px 0;
  --r-pill: 26px 4px 26px 4px;
  --pad: 80px;
  --pad-tight: 40px;
  --gap: 32px;
  --maxw: 1320px;

  --ff-display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --ff-body: "Manrope", "Inter", system-ui, sans-serif;
  --ff-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

/* density mode */
.density-compact {
  --pad: 56px;
  --pad-tight: 28px;
  --gap: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 6vw, 88px); }
h2 { font-size: clamp(36px, 4.2vw, 60px); }
h3 { font-size: clamp(22px, 2vw, 30px); }
h4 { font-size: 18px; }

p { margin: 0 0 1em; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
}

.lead {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 64ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--r-pill);
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-deep);
  color: #fdfbf4;
}
.btn-primary:hover { background: var(--ink); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--bg-paper); }
.btn-gold {
  background: var(--gold);
  color: #fdfbf4;
}
.btn-gold:hover { background: #9C7330; }
.btn-ghost {
  padding: 10px 0;
  color: var(--green-deep);
}
.btn-ghost::after { content: "→"; transition: transform .2s; }
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 18px 32px; font-size: 15px; }

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 13px;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--ink-soft);
  transition: all .15s;
}
.pill:hover { background: var(--green-tint); border-color: var(--green-soft); color: var(--ink); }
.pill.selected { background: var(--green-deep); color: #fdfbf4; border-color: var(--green-deep); }
.pill.gold { background: var(--gold-tint); border-color: var(--gold-soft); color: #6E5520; }

/* Cards */
.card {
  background: var(--bg-paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  overflow: hidden;
}

/* Section helpers */
section { padding: var(--pad) 0; }
.section-tight { padding: var(--pad-tight) 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--gap);
  margin-bottom: 48px;
}
.section-head .titles { max-width: 640px; }
.section-head h2 { margin-top: 14px; }

/* ============ HEADER (new layout: search · logo · utilities, then green nav bar) ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg-paper);
  border-bottom: 1px solid var(--line-soft);
}
.header-row1 {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.header-search {
  position: relative;
  max-width: 360px;
}
.header-search input {
  width: 100%;
  padding: 12px 18px 12px 44px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
}
.header-search input:focus { outline: none; border-color: var(--green-mid); background: #fff; }
.header-search .ic {
  position: absolute;
  left: 18px; top: 50%; transform: translateY(-50%);
  color: var(--ink-mute);
  pointer-events: none;
}

.header-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-center img { height: 56px; width: auto; }

.header-utils {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.util-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--r-md);
  transition: background .12s;
}
.util-link:hover { background: var(--bg-deep); }
.util-link .icon-circle {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  color: var(--green-deep);
}

.header-row2 {
  background: var(--green-deep);
  color: #FBF7EC;
}
.header-row2 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 32px;
}
.header-row2 .nav-primary {
  display: flex;
  gap: 4px;
}
.header-row2 .nav-link {
  color: rgba(251,247,236,0.92);
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 0;
  white-space: nowrap;
}
.header-row2 .nav-link:hover { background: rgba(255,255,255,0.08); color: var(--gold-soft); }
.header-row2 .nav-link.active { background: rgba(255,255,255,0.1); color: var(--gold-soft); }

@media (max-width: 1100px) {
  .header-row1 { grid-template-columns: 1fr auto 1fr; gap: 18px; padding: 14px 20px; }
  .header-search { display: none; }
  .header-row2 .nav-link { padding: 12px 14px; font-size: 13px; }
  .util-link span { display: none; } /* hide text labels on small screens */
}

/* ============ HERO (full-bleed image with quiz card overlay) ============ */
.hero {
  position: relative;
  min-height: 640px;
  display: block;
  padding: 0;
  background: var(--green-deep);
  overflow: hidden;
  border-radius: 0 0 var(--r-lg) 0;
}
.hero .bg-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(105deg,
      rgba(14,28,22,0.78) 0%,
      rgba(14,28,22,0.55) 30%,
      rgba(14,28,22,0.25) 60%,
      rgba(14,28,22,0.15) 100%),
    url("assets/hero-pre-kraeuterwiese.png");
  background-size: cover;
  background-position: center 35%;
  filter: saturate(0.92) contrast(1.02);
}

/* ---- Hero carousel (crossfading banners) ---- */
.hero-bg-stack { position: absolute; inset: 0; z-index: 1; }
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  overflow: hidden;
}
.hero-bg.is-active { opacity: 1; }
.hero-bg-img {
  position: absolute;
  inset: -2%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: saturate(0.94) contrast(1.02);
  transform-origin: center;
  transition: transform 7.5s ease-out;
  will-change: transform;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-left-stack {
  position: relative;
  min-height: 488px;
  display: block;
}
.hero-slide {
  position: absolute;
  inset: 0 0 auto 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  position: relative;
}

/* condition variant of hero-left */
.hero-left--condition { max-width: 600px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1A2620;
  background: var(--gold-soft);
  padding: 7px 14px 7px 12px;
  border-radius: 22px 4px 22px 4px;
  margin-bottom: 20px;
}
.hero-left--condition.tone-green .hero-badge { background: var(--green-soft); }
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.tone-green .hero-badge .dot { background: var(--green-deep); }
.hero-left--condition h1 {
  font-size: clamp(40px, 4.4vw, 64px);
  font-style: italic;
  line-height: 1.04;
  color: #F8F2DE;
  margin-bottom: 22px;
}
.hero-copy {
  color: rgba(244,239,228,0.9);
  font-size: 17px;
  line-height: 1.6;
  max-width: 50ch;
  margin-bottom: 22px;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.hero-chip {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #F2EBD7;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(229,201,140,0.32);
  padding: 8px 13px;
  border-radius: 20px 3px 20px 3px;
  backdrop-filter: blur(4px);
}
.hero-cta--single .btn { flex: 0 1 auto; min-width: 0; }

/* carousel controls – vertical strip pinned to the right edge */
.hero-controls {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 4;
}
.hero-nav {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(229,201,140,0.45);
  background: rgba(20,34,28,0.5);
  backdrop-filter: blur(6px);
  color: #F2EBD7;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.hero-nav:hover { background: var(--green-deep); border-color: var(--gold-soft); transform: scale(1.06); }
.hero-dots { display: flex; flex-direction: column; align-items: center; gap: 9px; }
.hero-dot {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(242,235,215,0.30);
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  cursor: pointer;
  overflow: hidden;
  transition: height 0.4s ease, background 0.3s ease;
}
.hero-dot.is-active {
  height: 44px;
  border-radius: 6px;
  background: rgba(242,235,215,0.28);
}
.hero-dot-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: var(--gold-soft);
  border-radius: inherit;
}
.hero-dot.is-active .hero-dot-fill {
  animation: heroDotFill 7s linear forwards;
}
.hero:hover .hero-dot.is-active .hero-dot-fill { animation-play-state: paused; }
@keyframes heroDotFill { from { height: 0; } to { height: 100%; } }

@media (prefers-reduced-motion: reduce) {
  .hero-bg, .hero-bg-img, .hero-slide { transition: none; }
  .hero-dot.is-active .hero-dot-fill { animation: none; height: 100%; }
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  min-height: 640px;
  padding: 96px 32px;
}

.hero-left {
  color: #F2EBD7;
  max-width: 540px;
}
.hero-left .eyebrow {
  color: rgba(229,201,140,0.95);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-left h1 {
  color: #F8F2DE;
  font-style: italic;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1.02;
  text-wrap: balance;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.hero-left .hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-left .hero-cta .btn { flex: 1 1 0; justify-content: space-between; min-width: 260px; }
.hero-left .btn-primary {
  background: var(--gold);
  color: #1A2620;
}
.hero-left .btn-primary:hover { background: var(--gold-soft); color: var(--ink); }
.hero-left .btn-secondary {
  background: rgba(42,106,96,0.92);
  color: #F8F2DE;
  border: 1.5px solid rgba(229,201,140,0.4);
  backdrop-filter: blur(6px);
}
.hero-left .btn-secondary:hover { background: var(--green-deep); border-color: var(--gold-soft); }

/* Quiz card overlay on hero */
.hero-quiz-card {
  background: rgba(251,247,236,0.97);
  backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: 0 32px 64px -16px rgba(0,0,0,0.35);
  border: 1px solid rgba(229,201,140,0.3);
  max-width: 480px;
  margin-left: auto;
}
.hero-quiz-card .pill-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 8px;
  background: var(--gold-tint);
  border: 1px solid rgba(185,138,60,0.3);
  border-radius: var(--r-pill);
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6E5520;
  margin-bottom: 18px;
}
.hero-quiz-card .pill-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-quiz-card h2 {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(26px, 2.2vw, 32px);
  line-height: 1.05;
  color: var(--green-deep);
  margin-bottom: 12px;
  white-space: nowrap;
}
.hero-quiz-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.hero-quiz-card .quick-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.hero-quiz-card .quick-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all .12s;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--ff-body);
}
.hero-quiz-card .quick-cat:hover {
  border-color: var(--green-mid);
  background: var(--green-tint);
}
.hero-quiz-card .quick-cat .qc-icon {
  width: 18px; height: 18px;
  color: var(--green-deep);
  flex-shrink: 0;
}
.hero-quiz-card .main-btn {
  width: 100%;
  background: var(--green-deep);
  color: #FBF7EC;
  padding: 16px 24px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all .15s;
}
.hero-quiz-card .main-btn:hover { background: var(--ink); }
.hero-quiz-card .alt-link {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.hero-quiz-card .alt-link:hover { color: var(--green-deep); }

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero .container { grid-template-columns: 1fr; padding: 56px 24px; gap: 28px; }
  .hero-quiz-card { max-width: 100%; margin-left: 0; }
  .hero-left h1 { font-size: 40px; }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 32px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.header-main > a {
  flex-shrink: 0;
  display: inline-flex;
}
.header-main .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-main .logo img { height: 44px; width: auto; flex-shrink: 0; }
.header-main nav { min-width: 0; }

.layout-centered .header-main {
  flex-direction: column;
  gap: 18px;
}

.nav-primary {
  display: flex;
  gap: 2px;
  align-items: center;
  margin: 0; padding: 0;
}
.nav-primary > li { list-style: none; position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--r-md);
  transition: background .15s;
  white-space: nowrap;
}
.nav-link:hover { background: var(--bg-deep); }
.nav-link .caret { font-size: 10px; opacity: 0.6; }

.header-actions {
  flex-shrink: 0;
}

/* Responsive header collapse */
@media (max-width: 1280px) {
  .header-main { gap: 12px; padding: 18px 24px; }
  .nav-link { padding: 8px 9px; font-size: 13px; }
  .nav-primary .hide-mid { display: none; }
  .header-actions .icon-btn.hide-mid { display: none; }
}
@media (max-width: 1080px) {
  .nav-primary .hide-narrow { display: none; }
  .header-actions .hide-narrow { display: none; }
  .header-actions .btn { padding: 10px 14px; font-size: 12px; }
}
@media (max-width: 920px) {
  .nav-primary .hide-mobile { display: none; }
  .header-main .logo img { height: 36px; }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.icon-btn:hover { background: var(--bg-deep); }
.icon-btn .badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--r-pill);
  min-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.icon-btn { position: relative; }

/* Mega menu */
.megamenu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bg-paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: var(--shadow-lg);
  padding: 36px 0 44px;
  z-index: 40;
  animation: mega-in .18s ease;
}
@keyframes mega-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.megamenu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 320px;
  gap: 28px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.mega-col-title {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.mega-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 8px;
  border-radius: var(--r-md);
  transition: background .15s;
  cursor: pointer;
}
.mega-item:hover { background: var(--green-tint); }
.mega-item .thumb {
  width: 54px;
  height: 54px;
  border-radius: var(--r-md);
  object-fit: cover;
  background: var(--bg-deep);
  flex-shrink: 0;
}
.mega-item .label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.mega-item .sub {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
}

.mega-feature {
  background: var(--green-deep);
  color: #FBF8F1;
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 320px;
  background-image: linear-gradient(rgba(28,38,32,0.35), rgba(28,38,32,0.55)), var(--feature-img);
  background-size: cover;
  background-position: center;
}
.mega-feature .label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.mega-feature h3 {
  font-size: 26px;
  color: #FBF8F1;
}
.mega-feature p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}
.mega-feature .btn {
  align-self: flex-start;
  background: var(--gold);
  color: #fdfbf4;
}

/* ============ (old hero classes removed — replaced by new hero+quiz-card layout above) ============ */

/* Trust strip */
.trust-strip {
  background: var(--green-deep);
  color: #E0D9C2;
  padding: 22px 0;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.trust-strip .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-strip .dot {
  width: 4px; height: 4px; background: var(--gold); border-radius: 50%;
}

/* ============ CATEGORY GRID ============ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  background: var(--green-deep);
  border: 1px solid rgba(229,201,140,0.18);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all .3s cubic-bezier(0.2, 0.8, 0.2, 1);
  color: #F4EFE4;
  box-shadow:
    0 1px 3px rgba(14,28,22,0.08),
    0 10px 24px -8px rgba(14,28,22,0.18);
  position: relative;
}
.cat-card::before {
  /* subtle gradient overlay for depth */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, transparent 0%, transparent 60%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  box-shadow:
    0 4px 8px rgba(14,28,22,0.10),
    0 24px 48px -16px rgba(14,28,22,0.30),
    0 0 0 1px var(--gold-soft) inset,
    0 0 32px -8px rgba(229,201,140,0.40);
}
.cat-card .img-wrap {
  aspect-ratio: 4/3;
  background: var(--bg-deep);
  overflow: hidden;
  position: relative;
}
.cat-card .img-wrap::after {
  /* bottom-fade so number+badge stay legible */
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(14,28,22,0.55) 100%);
  pointer-events: none;
}
.cat-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cat-card:hover .img-wrap img { transform: scale(1.07); }

/* Big serif number index */
.cat-card .cat-index {
  position: absolute;
  top: 14px;
  left: 18px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 36px;
  line-height: 1;
  color: var(--gold-soft);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  z-index: 2;
}
/* Program count pill (bottom-right of image) */
.cat-card .cat-count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(14,28,22,0.78);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(229,201,140,0.25);
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  z-index: 2;
}
.cat-card .body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.cat-card h3 {
  font-size: 24px;
  line-height: 1.12;
  color: #F4EFE4;
  font-style: italic;
}
.cat-card .cat-short {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(244,239,228,0.72);
  margin: -4px 0 4px;
  font-family: var(--ff-body);
}
.cat-card .symptom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cat-card .symptom-tag {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(229,201,140,0.10);
  color: var(--gold-soft);
  border-radius: var(--r-pill);
  border: 1px solid rgba(229,201,140,0.22);
}
.cat-card .more { 
  font-family: var(--ff-mono); 
  font-size: 11px; 
  color: var(--gold-soft);
  letter-spacing: 0.14em;
  font-weight: 600;
}
.cat-card .cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(229,201,140,0.18);
  margin-top: auto;
}
.cat-card .cta-row .arrow { 
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: #1A2620;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.cat-card:hover .cta-row .arrow { background: var(--gold-soft); transform: rotate(-45deg) scale(1.05); }

/* Consultation special card — gold/cream variant to stand out */
.cat-card.cat-card-consult {
  background: linear-gradient(165deg, #F1E4C4 0%, #E5C98C 100%);
  border-color: rgba(185,138,60,0.4);
  color: #2A1F0E;
  box-shadow:
    0 1px 3px rgba(185,138,60,0.10),
    0 12px 32px -12px rgba(185,138,60,0.35);
}
.cat-card.cat-card-consult:hover {
  border-color: var(--gold);
  box-shadow:
    0 4px 8px rgba(185,138,60,0.20),
    0 24px 48px -16px rgba(185,138,60,0.50),
    0 0 32px -8px rgba(185,138,60,0.30);
}
.cat-card.cat-card-consult::before {
  background: linear-gradient(165deg, transparent 0%, transparent 60%, rgba(110,85,32,0.18) 100%);
}
.cat-card.cat-card-consult .cat-index { color: #6E5520; }
.cat-card.cat-card-consult .cat-count {
  background: rgba(42,31,14,0.85);
  color: var(--gold-soft);
}
.cat-card.cat-card-consult h3 {
  color: #2A1F0E;
  font-style: italic;
}
.cat-card.cat-card-consult .consult-pitch {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(42,31,14,0.85);
  margin: 0;
}
.cat-card.cat-card-consult .consult-pitch strong { color: #2A1F0E; }
.cat-card.cat-card-consult .more {
  color: var(--green-deep);
  font-weight: 700;
}
.cat-card.cat-card-consult .cta-row {
  border-top-color: rgba(185,138,60,0.35);
}
.cat-card.cat-card-consult .cta-row .arrow {
  background: var(--green-deep);
  color: var(--gold-soft);
}
.cat-card.cat-card-consult:hover .cta-row .arrow {
  background: var(--ink);
  color: var(--gold-soft);
}

/* ============ HERB SLIDER (related plants) ============ */
.herb-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 18px;
  margin: 0 -4px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-soft) transparent;
}
.herb-slider::-webkit-scrollbar { height: 8px; }
.herb-slider::-webkit-scrollbar-track { background: rgba(14,28,22,0.06); border-radius: 999px; }
.herb-slider::-webkit-scrollbar-thumb { background: rgba(185,138,60,0.55); border-radius: 999px; }
.herb-slider .herb-slide {
  flex: 0 0 clamp(220px, 24%, 300px);
  scroll-snap-align: start;
}
@media (max-width: 720px) {
  .herb-slider .herb-slide { flex-basis: 78%; }
}

/* ============ PHILOSOPHY SECTION ============ */
.philosophy {
  background: var(--bg-paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.philo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.philo-card {
  padding: 44px 32px;
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.philo-card:last-child { border-right: none; }
.philo-card .num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.philo-card h3 { font-size: 26px; }

/* ============ ABOUT TEASER ============ */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-teaser .img-wrap {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-deep);
  position: relative;
}
.about-teaser .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-teaser .credentials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.about-teaser .quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink-soft);
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  margin: 32px 0;
}

/* ============ CATEGORY DETAIL PAGE ============ */
.cat-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--bg);
  min-height: 480px;
}
.cat-hero .text-side {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cat-hero .text-side .breadcrumb {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.cat-hero .text-side .breadcrumb a:hover { color: var(--green-deep); }
.cat-hero h1 { font-size: clamp(40px, 5vw, 72px); margin-bottom: 22px; }
.cat-hero .img-side { background: var(--green-deep); overflow: hidden; }
.cat-hero .img-side img { width: 100%; height: 100%; object-fit: cover; }

.symptoms-block {
  background: var(--green-deep);
  border-top: 1px solid var(--green-deep);
  padding: 56px 0;
  color: #F4EFE4;
}
.symptoms-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
.symptoms-grid .label-col h2 { font-size: 36px; margin-bottom: 12px; color: #FBF8F1; }
.symptoms-grid .label-col .eyebrow { color: var(--gold-soft); }
.symptoms-grid .label-col p { font-size: 14px; color: rgba(244,239,228,0.78); }
.symptoms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.symptom-chip {
  padding: 10px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(229,201,140,0.28);
  border-radius: var(--r-pill);
  font-size: 14px;
  color: #F4EFE4;
  cursor: pointer;
  transition: all .15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.symptom-chip:hover { border-color: var(--gold-soft); background: rgba(229,201,140,0.18); color: #fff; }
.symptom-chip.selected {
  background: var(--gold);
  color: #1A2620;
  border-color: var(--gold-soft);
}
.symptom-chip.selected::before {
  content: "✓";
  font-size: 11px;
}

.level-bar {
  display: flex;
  gap: 0;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 4px;
  margin-bottom: 32px;
  max-width: max-content;
  flex-wrap: wrap;
}
.level-pill {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: var(--r-pill);
  cursor: pointer;
}
.level-pill.active {
  background: var(--green-deep);
  color: #FBF8F1;
}

/* ============ QUIZ MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,38,32,0.55);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fade-in .2s;
}
@keyframes fade-in { from { opacity: 0 } to { opacity: 1 } }
.modal {
  background: var(--bg-paper);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 920px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modal-in .25s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-head {
  padding: 28px 36px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal-head .step-info {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.modal-head .close {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-deep);
  font-size: 18px;
}
.modal-head .close:hover { background: var(--ink); color: #fff; }
.modal-progress {
  height: 3px;
  background: var(--line-soft);
  margin: 18px 36px 0;
}
.modal-progress .bar {
  height: 100%;
  background: var(--green-deep);
  transition: width .3s;
}
.modal-body {
  padding: 36px;
}
.modal-body h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.modal-body .modal-sub {
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 56ch;
}
.modal-foot {
  padding: 24px 36px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  bottom: 0;
  background: var(--bg-paper);
}

.level-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.level-card {
  padding: 18px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all .15s;
  display: flex; flex-direction: column; gap: 8px;
  text-align: left;
}
.level-card:hover { border-color: var(--green); }
.level-card.selected { 
  border-color: var(--green-deep); 
  background: var(--green-tint);
}
.level-card .lc-name {
  font-family: var(--ff-display);
  font-size: 22px;
}
.level-card .lc-desc {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* Quiz select dropdown */
.select-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.select-row label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.cn-select {
  position: relative;
  display: inline-block;
}
.cn-select select {
  appearance: none;
  background: #fff;
  border: 1.5px solid var(--line);
  padding: 12px 44px 12px 18px;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
  min-width: 220px;
}
.cn-select::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%; transform: translateY(-50%);
  pointer-events: none;
  color: var(--green-deep);
  font-size: 12px;
}

.symptom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

/* Quiz step 3 — collapsible symptom groups by Stufe */
.quiz-symptom-group {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: var(--bg-paper);
  padding: 6px 14px 4px;
  transition: border-color .15s, box-shadow .15s;
}
.quiz-symptom-group.is-chosen {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 1px var(--green-mid);
}
.quiz-group-head {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 2px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}
.quiz-group-flag {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-deep);
  background: var(--green-tint);
  padding: 3px 8px;
  border-radius: var(--r-pill);
}
.quiz-group-desc {
  font-size: 12px;
  color: var(--ink-mute);
  flex: 1;
  line-height: 1.3;
}
.quiz-group-count {
  flex-shrink: 0;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 11px;
  background: var(--green-deep);
  color: var(--gold-soft);
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.quiz-group-chev {
  flex-shrink: 0;
  color: var(--ink-mute);
  transform: rotate(90deg);
  transition: transform .2s;
  display: inline-flex;
}
.quiz-group-chev.open { transform: rotate(-90deg); }
.quiz-symptom-group .symptom-grid { margin-top: 10px; margin-bottom: 12px; }
.symptom-opt {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  font-size: 14px;
  transition: all .12s;
  align-items: flex-start;
}
.symptom-opt:hover { border-color: var(--green-mid); }
.symptom-opt.selected {
  border-color: var(--green-deep);
  background: var(--green-tint);
}
.symptom-opt .check {
  width: 20px; height: 20px;
  border: 1.5px solid var(--ink-mute);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  background: #fff;
}
.symptom-opt.selected .check {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
  font-size: 12px;
}

/* ============ RESULT ============ */
.result-head {
  background: var(--green-deep);
  color: #FBF8F1;
  padding: 28px 36px;
}
.result-head .eyebrow { color: var(--gold-soft); }
.result-head h2 { color: #FBF8F1; font-size: 36px; margin-top: 8px; }
.result-head .meta {
  display: flex; gap: 18px; align-items: center; margin-top: 14px;
  font-size: 13px; opacity: 0.85;
}
.result-head .meta .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

.result-body { padding: 32px 36px; }
.result-section + .result-section { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line-soft); }
.result-section h3 {
  font-size: 13px;
  font-family: var(--ff-mono);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: #fff;
  border: 1.5px solid var(--line-soft);
  border-radius: var(--r-md);
  transition: all .15s;
}
.product-row.disabled {
  opacity: 0.4;
  background: transparent;
  text-decoration: line-through;
}
.product-row.base {
  background: var(--gold-tint);
  border-color: var(--gold-soft);
}
.product-row .check {
  width: 22px; height: 22px;
  border: 1.5px solid var(--green-deep);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  background: var(--green-deep);
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  flex-shrink: 0;
}
.product-row.disabled .check { background: #fff; color: transparent; }
.product-row .name { font-weight: 600; flex: 1; }
.product-row .tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.product-row .price {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--ink);
  min-width: 80px;
  text-align: right;
}
.product-row .price.empty { color: var(--ink-mute); font-size: 13px; font-family: var(--ff-mono); }

.phase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
}
.phase-cell {
  padding: 18px;
  background: var(--bg);
  border-right: 1px solid var(--line-soft);
  position: relative;
}
.phase-cell:last-child { border-right: none; }
.phase-cell .month {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 8px;
}
.phase-cell p { font-size: 13px; margin: 0; color: var(--ink-soft); line-height: 1.5; }

.dose-block {
  padding: 18px 20px;
  background: var(--bg);
  border-radius: var(--r-md);
  font-size: 13px;
  line-height: 1.6;
}
.warn-block {
  padding: 16px 18px;
  background: #FEF7E8;
  border-left: 3px solid var(--gold);
  border-radius: var(--r-sm);
  font-size: 13px;
}
.warn-block .warn-title {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.consultation-banner {
  background: var(--green-deep);
  color: #FBF8F1;
  padding: 28px 32px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 32px 0;
}
.consultation-banner h3 { color: #FBF8F1; font-size: 26px; }
.consultation-banner p { font-size: 14px; opacity: 0.9; margin: 6px 0 0; }
.consultation-banner .icon-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.consultation-banner.in-result {
  margin: 0;
  background: #FBF1DF;
  color: var(--ink);
  border: 1px solid var(--gold-soft);
}
.consultation-banner.in-result h3 { color: var(--ink); }
.consultation-banner.in-result p { color: var(--ink-soft); opacity: 1; }
.consultation-banner.in-result .icon-circle { background: var(--green-deep); color: var(--gold-soft); }

/* ============ NEWSLETTER + FOOTER (matching screenshot design) ============ */
.footer-zone {
  background: linear-gradient(180deg, #0E2620 0%, #0A1B17 100%);
  color: #C9C2AB;
  padding-top: 0;
}
.footer-zone .newsletter-band {
  padding: 64px 0 56px;
  position: relative;
}
.footer-zone .newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.footer-zone .ne-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(229,201,140,0.3);
  background: rgba(185,138,60,0.08);
  margin-bottom: 22px;
}
.footer-zone .newsletter-band h2 {
  color: #F4EFE4;
  font-size: clamp(36px, 4vw, 52px);
  font-style: italic;
  margin-bottom: 14px;
  max-width: none;
}
.footer-zone .newsletter-band p {
  color: rgba(201,194,171,0.75);
  font-size: 15px;
  max-width: 46ch;
  margin: 0;
}
.footer-zone .newsletter-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 32px;
}
.footer-zone .newsletter-card .input-row {
  display: flex;
  gap: 10px;
  background: rgba(0,0,0,0.3);
  border-radius: var(--r-pill);
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.06);
}
.footer-zone .newsletter-card input {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: none;
  color: #F4EFE4;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.footer-zone .newsletter-card input::placeholder { color: rgba(255,255,255,0.4); }
.footer-zone .newsletter-card .sub-btn {
  background: var(--gold-soft);
  color: #1A2620;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-zone .newsletter-card .sub-btn:hover { background: var(--gold); color: #fff; }
.footer-zone .newsletter-card .note {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(201,194,171,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-zone .footer-main {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0 36px;
}
.footer-zone .footer-cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-zone .col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.footer-zone .col-title .icon-circle {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(185,138,60,0.15);
  color: var(--gold-soft);
}
.footer-zone .col-title em { font-family: var(--ff-display); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 12px; }
.footer-zone ul { list-style: none; padding: 0; margin: 0; }
.footer-zone li { margin-bottom: 10px; font-size: 14px; color: rgba(201,194,171,0.78); }
.footer-zone li a:hover { color: var(--gold-soft); }
.footer-zone .alle-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 13px;
  margin-top: 6px;
}
.footer-zone .alle-link::after { content: "→"; }

.footer-zone .brand-col img { height: 50px; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-zone .brand-col p { color: rgba(201,194,171,0.7); font-size: 14px; line-height: 1.6; max-width: 32ch; margin: 0 0 22px; }
.footer-zone .brand-col .cert-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.footer-zone .brand-col .cert {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gold-soft);
  font-weight: 600;
}
.footer-zone .brand-col .cert .badge {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(229,201,140,0.12);
  border: 1px solid rgba(229,201,140,0.3);
  display: flex; align-items: center; justify-content: center;
}
.footer-zone .brand-col .follow-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,194,171,0.6);
  margin-bottom: 12px;
}
.footer-zone .brand-col .socials {
  display: flex;
  gap: 10px;
}
.footer-zone .brand-col .socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  letter-spacing: 0.05em;
  font-family: var(--ff-mono);
  font-weight: 600;
  color: rgba(201,194,171,0.7);
}
.footer-zone .brand-col .socials a:hover { background: var(--gold); color: #fff; }

.footer-zone .contact-block .contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(201,194,171,0.85);
}
.footer-zone .contact-block .contact-row .ic {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.footer-zone .footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  color: rgba(201,194,171,0.55);
}
.footer-zone .footer-bottom .legal-links { display: flex; gap: 24px; align-items: center; }
.footer-zone .footer-bottom .legal-links a:hover { color: var(--gold-soft); }
.footer-zone .footer-bottom .legal-links .dot { width: 3px; height: 3px; background: rgba(201,194,171,0.4); border-radius: 50%; }
.footer-zone .footer-bottom .trust-icons {
  display: flex;
  gap: 10px;
}
.footer-zone .footer-bottom .trust-icons span {
  width: 32px; height: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,194,171,0.6);
}

@media (max-width: 1100px) {
  .footer-zone .footer-cols { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer-zone .newsletter-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ BERATUNG / CONSULTATION PAGE ============ */
.cons-paths {
  padding: 56px 0 96px;
}
.cons-paths .head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.cons-paths .head h2 {
  font-style: italic;
  font-size: clamp(40px, 4vw, 56px);
  color: var(--green-deep);
  margin-bottom: 16px;
}
.cons-paths .head p { font-size: 17px; color: var(--ink-soft); }

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.path-card {
  background: var(--bg-paper);
  border: 1.5px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .25s;
}
.path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.path-card.recommended {
  border: 2px solid var(--green-deep);
  position: relative;
  transform: translateY(-12px);
  box-shadow: var(--shadow-md);
}
.path-card.recommended .rec-tag {
  background: var(--green-deep);
  color: #FBF8F1;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 0;
  font-weight: 600;
}
.path-card .img-wrap {
  aspect-ratio: 4/2.6;
  overflow: hidden;
  background: var(--green-tint);
}
.path-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.path-card .body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.path-card h3 {
  font-family: var(--ff-display);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.15;
}
.path-card .desc { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 22px; min-height: 44px; }
.path-card .price {
  font-family: var(--ff-display);
  font-size: 40px;
  color: var(--green-deep);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1;
}
.path-card .price.free { font-style: italic; }
.path-card .perks { list-style: none; padding: 0; margin: 0 0 28px; }
.path-card .perks li {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink);
}
.path-card .perks li .tick {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.path-card .select-btn {
  margin-top: auto;
  width: 100%;
  padding: 14px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all .15s;
}
.path-card .select-btn:hover { border-color: var(--green-deep); }
.path-card.recommended .select-btn {
  background: var(--green-deep);
  color: #FBF8F1;
  border-color: var(--green-deep);
}
.path-card.recommended .select-btn:hover { background: var(--ink); }

/* ============ CONSULT FEATURE (single free plan) ============ */
.consult-feature {
  display: grid;
  grid-template-columns: 0.75fr 1.6fr;
  gap: 0;
  background: var(--bg-paper);
  border: 1.5px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.consult-feature .cf-media {
  position: relative;
  background: var(--green-tint);
  min-height: 380px;
}
.consult-feature .cf-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.consult-feature .cf-badge {
  position: absolute;
  top: 20px; left: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(28,38,32,0.78);
  backdrop-filter: blur(6px);
  color: var(--gold-soft);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.consult-feature .cf-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(185,138,60,0.25);
}
.consult-feature .cf-body { padding: 48px 48px 44px; display: flex; flex-direction: column; }
.consult-feature .cf-price-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 28px;
}
.consult-feature .cf-price-num {
  display: block;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--green-deep);
}
.consult-feature .cf-price-sub {
  display: block; margin-top: 8px;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
}
.consult-feature .cf-time { text-align: right; }
.consult-feature .cf-time-num {
  font-family: var(--ff-display);
  font-size: 28px; color: var(--ink); line-height: 1;
}
.consult-feature .cf-time-sub {
  margin-top: 6px;
  font-family: var(--ff-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
}
.consult-feature h3 {
  font-family: var(--ff-display);
  font-size: 26px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 14px;
}
.consult-feature .cf-perks {
  list-style: none; padding: 0; margin: 0 0 32px;
}
.consult-feature .cf-perks li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink);
}
.consult-feature .cf-perks li .tick {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.consult-feature .cf-perks li strong { color: var(--ink); font-weight: 700; }
.consult-feature .cf-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px;
  background: var(--green-tint);
  border-radius: var(--r-md);
  margin-bottom: 28px;
}
.consult-feature .cf-step { display: flex; gap: 12px; align-items: flex-start; }
.consult-feature .cf-step-num {
  font-family: var(--ff-mono);
  font-size: 12px; font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.1em;
  background: #fff;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.consult-feature .cf-step-title {
  font-weight: 700; font-size: 13px; color: var(--ink); line-height: 1.25;
}
.consult-feature .cf-step-desc {
  font-size: 12px; color: var(--ink-soft); line-height: 1.4; margin-top: 3px;
}
.consult-feature .cf-cta { width: 100%; justify-content: center; }
.consult-feature .cf-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
  font-style: italic;
}
.consult-feature .cf-section {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}
.consult-feature .cf-section-plan {
  background: var(--green-tint);
  padding: 20px 22px;
  border-radius: var(--r-md);
  border: 1px solid rgba(93,160,149,0.25);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(93,160,149,0.25);
}
.consult-feature .cf-section-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 700;
  margin-bottom: 12px;
}
.consult-feature .cf-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.consult-feature .cf-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.consult-feature .cf-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.consult-feature .cf-section-plan p {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 10px;
}
.consult-feature .cf-section-plan p:last-child { margin-bottom: 0; }

@media (max-width: 980px) {
  .consult-feature { grid-template-columns: 1fr; }
  .consult-feature .cf-media { min-height: 320px; aspect-ratio: 4/3; }
  .consult-feature .cf-body { padding: 32px 28px; }
  .consult-feature .cf-steps { grid-template-columns: 1fr; }
  .consult-feature .cf-price-num { font-size: 44px; }
}

/* ============ HORSE PHOTO UPLOAD (Step 1) ============ */
.hp-count {
  margin-left: auto;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--ink-mute);
  font-weight: 600;
}
.hp-hint {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 14px;
}
.hp-drop {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-paper);
  border: 1.5px dashed var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.hp-drop:hover, .hp-drop.is-dragging {
  border-color: var(--green-mid);
  background: var(--green-tint);
}
.hp-drop-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.hp-drop:hover .hp-drop-icon, .hp-drop.is-dragging .hp-drop-icon {
  background: #fff;
}
.hp-drop-title {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}
.hp-drop-sub {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.hp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.hp-item {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.hp-thumb {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-deep);
}
.hp-remove {
  position: absolute;
  top: 6px; right: 6px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(28,38,32,0.78);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.hp-remove:hover { background: var(--red-mute); }
.hp-kinds {
  display: flex; flex-wrap: wrap; gap: 4px;
  padding: 8px;
}
.hp-kind {
  flex: 1 1 auto;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 6px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .15s;
}
.hp-kind:hover { border-color: var(--green-mid); color: var(--green-deep); }
.hp-kind.selected {
  background: var(--green-deep);
  color: #fff;
  border-color: var(--green-deep);
}

/* ============ WHOLESALE LANDING ============ */
.ws-hero {
  background: linear-gradient(165deg, #0F2520 0%, #1A2620 35%, #2A6A60 100%);
  color: #F4EFE4;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.ws-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(229,201,140,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.ws-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ws-hero-eyebrow { color: var(--gold-soft); }
.ws-hero-left h1 {
  color: #FBF7EC;
  font-size: clamp(44px, 5.5vw, 78px);
  line-height: 1.05;
  margin: 16px 0 24px;
}
.ws-hero-left h1 em { color: var(--gold-soft); font-style: italic; }
.ws-hero-left .lead { color: rgba(244,239,228,0.85); max-width: 60ch; }
.ws-hero-left .lead strong { color: var(--gold-soft); font-weight: 600; }
.ws-hero-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.ws-hero-cta .btn-primary { background: var(--gold); color: #1A2620; }
.ws-hero-cta .btn-primary:hover { background: var(--gold-soft); }
.ws-hero-cta .btn-secondary {
  background: rgba(255,255,255,0.06);
  color: #F4EFE4;
  border: 1.5px solid rgba(229,201,140,0.4);
  backdrop-filter: blur(6px);
}
.ws-hero-cta .btn-secondary:hover { background: rgba(229,201,140,0.18); border-color: var(--gold-soft); }
.ws-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(229,201,140,0.18);
}
.ws-hero-stats .n {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 30px;
  color: var(--gold-soft);
}
.ws-hero-stats .l {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,239,228,0.7);
  margin-top: 6px;
}

.ws-hero-right { position: relative; }
.ws-hero-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(229,201,140,0.18);
}
.ws-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ws-hero-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(28,38,32,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(229,201,140,0.35);
  border-radius: var(--r-pill);
  color: var(--gold-soft);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.ws-hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(185,138,60,0.25);
}
.ws-hero-quote {
  margin-top: 24px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(229,201,140,0.2);
  border-radius: var(--r-md);
  color: rgba(244,239,228,0.92);
}
.ws-hero-quote svg { color: var(--gold-soft); opacity: 0.7; }
.ws-hero-quote p {
  margin: 8px 0 10px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
}
.ws-hero-quote-who {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.ws-section-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}
.ws-section-head h2 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  margin-top: 10px;
}
.ws-section-intro {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
  max-width: 50ch;
  justify-self: end;
}

.ws-segments { padding: 88px 0 72px; background: var(--bg-paper); border-top: 1px solid var(--line-soft); }
.ws-segments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.ws-segment-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: all .2s;
}
.ws-segment-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-md);
}
.ws-segment-icon {
  width: 44px; height: 44px;
  border-radius: 12px 0 12px 0;
  background: var(--green-tint);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.ws-segment-card h3 { font-size: 21px; line-height: 1.15; color: var(--ink); }
.ws-segment-sub {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.ws-segment-card p { color: var(--ink-soft); font-size: 13.5px; line-height: 1.5; margin: 4px 0 8px; }
.ws-segment-focus {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ws-segment-focus li {
  font-size: 12px;
  color: var(--ink);
  padding-left: 14px;
  position: relative;
}
.ws-segment-focus li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.ws-benefits { padding: 88px 0; }
.ws-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ws-benefit-card {
  padding: 28px;
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
}
.ws-benefit-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.ws-benefit-card h3 { font-size: 22px; line-height: 1.2; margin-bottom: 8px; }
.ws-benefit-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; margin: 0; }

.ws-line { padding: 88px 0; background: var(--green-deep); color: #F4EFE4; }
.ws-line .ws-section-head h2 { color: #FBF7EC; }
.ws-line .ws-section-head h2 em { color: var(--gold-soft); }
.ws-line .ws-section-head .eyebrow { color: var(--gold-soft); }
.ws-line .ws-section-intro { color: rgba(244,239,228,0.78); }
.ws-line-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ws-line-item {
  padding: 22px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(229,201,140,0.18);
  border-radius: var(--r-md);
}
.ws-line-name { font-family: var(--ff-display); font-style: italic; font-size: 22px; color: var(--gold-soft); margin-bottom: 6px; }
.ws-line-desc { font-size: 13.5px; line-height: 1.5; color: rgba(244,239,228,0.85); }
.ws-line-cta { margin-top: 40px; text-align: center; }
.ws-line-cta .btn-secondary { background: transparent; color: var(--gold-soft); border: 1px solid rgba(229,201,140,0.5); }
.ws-line-cta .btn-secondary:hover { background: var(--gold); color: #1A2620; border-color: var(--gold); }

.ws-tiers { padding: 88px 0; background: var(--bg-paper); }
.ws-tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ws-tier-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  display: flex; flex-direction: column;
}
.ws-tier-card.is-featured {
  border-color: var(--green-deep);
  box-shadow: var(--shadow-md);
}
.ws-tier-badge {
  position: absolute;
  top: -12px; left: 24px;
  padding: 5px 12px;
  background: var(--gold);
  color: #1A2620;
  border-radius: var(--r-pill);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.ws-tier-card h3 { font-size: 24px; line-height: 1.1; margin-bottom: 4px; }
.ws-tier-range {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 16px;
}
.ws-tier-discount {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 44px;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 24px;
}
.ws-tier-perks { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.ws-tier-perks li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
}
.ws-tier-perks li .tick {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.ws-tier-cta { width: 100%; justify-content: center; }
.ws-tiers-note {
  margin-top: 32px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
  font-style: italic;
}

.ws-process { padding: 88px 0; }
.ws-process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: ws-step;
}
.ws-process-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 22px 26px;
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
}
.ws-process-list.ws-process-list-compact li { padding: 16px 18px; background: transparent; border: 1px solid var(--line-soft); }
.ws-process-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
}
.ws-process-list h3, .ws-process-list h4 { font-size: 22px; margin-bottom: 6px; line-height: 1.2; }
.ws-process-list.ws-process-list-compact h4 { font-size: 17px; }
.ws-process-list p { color: var(--ink-soft); font-size: 14px; line-height: 1.5; margin: 0; }

.ws-seo { padding: 88px 0; background: var(--bg-paper); border-top: 1px solid var(--line-soft); }
.ws-seo-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}
.ws-seo-grid h2 { font-size: clamp(34px, 3.5vw, 48px); line-height: 1.1; margin-top: 12px; margin-bottom: 20px; }
.ws-seo-grid h3 { font-size: 22px; margin: 28px 0 10px; line-height: 1.2; }
.ws-seo-grid p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; margin: 0 0 12px; max-width: 70ch; }
.ws-seo-grid p strong { color: var(--ink); font-weight: 600; }
.ws-seo-aside { position: sticky; top: 100px; }
.ws-seo-aside h3 {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 12px;
}
.ws-keyword-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 32px;
}
.ws-keyword-tag {
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 12px;
  color: var(--ink-soft);
  font-family: var(--ff-mono);
}
.ws-seo-card {
  padding: 24px;
  background: var(--green-deep);
  color: #F4EFE4;
  border-radius: var(--r-lg);
}
.ws-seo-card .eyebrow { color: var(--gold-soft); }
.ws-seo-card h4 { font-size: 22px; color: #FBF7EC; margin: 8px 0 10px; font-family: var(--ff-display); font-style: italic; }
.ws-seo-card p { color: rgba(244,239,228,0.85); font-size: 14px; margin-bottom: 18px; line-height: 1.5; }
.ws-seo-card .btn-primary { background: var(--gold); color: #1A2620; }
.ws-seo-card .btn-primary:hover { background: var(--gold-soft); }

.ws-testi { padding: 88px 0; }
.ws-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ws-testi-card {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  margin: 0;
}
.ws-testi-stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 14px; }
.ws-testi-card blockquote {
  margin: 0 0 16px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
}
.ws-testi-card figcaption {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.ws-faq { padding: 88px 0; background: var(--bg-paper); border-top: 1px solid var(--line-soft); }
.ws-faq-list { max-width: 880px; margin: 0 auto; }
.ws-faq-item { border-bottom: 1px solid var(--line); }
.ws-faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 8px;
  background: transparent;
  border: none;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.ws-faq-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.ws-faq-a {
  padding: 0 8px 24px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 76ch;
}

.ws-cta-band {
  padding: 80px 0;
  background: linear-gradient(165deg, #0F2520 0%, #1A2620 100%);
  color: #F4EFE4;
}
.ws-cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.ws-cta-band h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  color: #FBF7EC;
  margin-top: 12px;
}
.ws-cta-band h2 em { color: var(--gold-soft); font-style: italic; }
.ws-cta-band p { color: rgba(244,239,228,0.82); margin-top: 14px; max-width: 60ch; line-height: 1.55; }
.ws-cta-eyebrow { color: var(--gold-soft); }
.ws-cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.ws-cta-buttons .btn-primary { background: var(--gold); color: #1A2620; }
.ws-cta-buttons .btn-primary:hover { background: var(--gold-soft); }
.ws-cta-buttons .btn-secondary {
  background: transparent; color: var(--gold-soft);
  border: 1px solid rgba(229,201,140,0.4);
}
.ws-cta-buttons .btn-secondary:hover { background: rgba(229,201,140,0.18); border-color: var(--gold-soft); }

@media (max-width: 1100px) {
  .ws-hero-grid { grid-template-columns: 1fr; }
  .ws-section-head { grid-template-columns: 1fr; gap: 20px; }
  .ws-section-intro { justify-self: start; }
  .ws-segments-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-line-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-tiers-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-testi-grid { grid-template-columns: 1fr; }
  .ws-seo-grid { grid-template-columns: 1fr; }
  .ws-seo-aside { position: static; }
  .ws-cta-inner { grid-template-columns: 1fr; }
  .ws-cta-buttons { justify-content: flex-start; }
}
@media (max-width: 720px) {
  .ws-segments-grid { grid-template-columns: 1fr; }
  .ws-benefits-grid { grid-template-columns: 1fr; }
  .ws-line-grid { grid-template-columns: 1fr; }
  .ws-tiers-grid { grid-template-columns: 1fr; }
  .ws-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .ws-process-list li { grid-template-columns: 1fr; gap: 8px; }
}

/* ============ CONSULTATION QUIZ (multi-step) ============ */
.cq-shell { padding: 48px 0 96px; }
.cq-card {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cq-head {
  padding: 28px 32px 22px;
  background: var(--green-tint);
  border-bottom: 1px solid var(--line-soft);
}
.cq-head h2 {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 38px;
  color: var(--green-deep);
  margin: 0;
  line-height: 1.05;
}
.cq-head p { color: var(--ink-soft); font-size: 14px; margin: 6px 0 0; }
.cq-step-row {
  display: flex; justify-content: space-between;
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 18px;
}
.cq-step-row .pct { color: var(--green-deep); font-weight: 700; }
.cq-progress { height: 6px; background: rgba(0,0,0,0.06); border-radius: 999px; margin-top: 8px; overflow: hidden; }
.cq-progress .bar { height: 100%; background: var(--green-deep); transition: width .3s; }

.cq-body { padding: 36px 32px; }

.cq-field { margin-bottom: 22px; }
.cq-field > label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.cq-field > label .ic {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
}
.cq-field input, .cq-field textarea, .cq-field select,
.cq-section-body input, .cq-section-body textarea, .cq-section-body select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
  transition: border-color .15s, background .15s, box-shadow .15s;
  box-shadow: inset 0 1px 0 rgba(28,38,32,0.02);
}
.cq-field input::placeholder, .cq-field textarea::placeholder,
.cq-section-body input::placeholder, .cq-section-body textarea::placeholder {
  color: var(--ink-mute);
  font-style: italic;
  opacity: 0.9;
}
.cq-field input:hover, .cq-field textarea:hover, .cq-field select:hover,
.cq-section-body input:hover, .cq-section-body textarea:hover, .cq-section-body select:hover {
  border-color: var(--green-soft);
  background: #FFFCF4;
}
.cq-field input:focus, .cq-field textarea:focus, .cq-field select:focus,
.cq-section-body input:focus, .cq-section-body textarea:focus, .cq-section-body select:focus {
  outline: none;
  background: #fff;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(93,160,149,0.15);
}
.cq-field textarea,
.cq-section-body textarea {
  min-height: 112px;
  resize: vertical;
  line-height: 1.6;
  padding: 16px 18px;
  font-family: var(--ff-body);
}

.cq-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cq-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }

.cq-section {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  background: var(--bg-paper);
  overflow: hidden;
}
.cq-section.active { border-color: var(--green-mid); box-shadow: 0 0 0 1px var(--green-mid); }
.cq-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: transparent;
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--ink);
}
.cq-section-head .ic {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cq-section-head .chev { margin-left: auto; font-size: 14px; color: var(--ink-mute); transition: transform .2s; }
.cq-section.active .cq-section-head .chev { transform: rotate(180deg); }
.cq-section-body { padding: 0 22px 22px 22px; }

.cq-section-count {
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--green-deep);
  color: #FBF8F1;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
}

.cq-tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cq-tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all .12s;
  white-space: nowrap;
}
.cq-tag-chip:hover { border-color: var(--green-mid); background: #fff; }
.cq-tag-chip.selected {
  background: var(--green-tint);
  border-color: var(--green-deep);
  color: var(--green-deep);
  font-weight: 600;
}
.cq-tag-chip .check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #FBF8F1;
  display: flex; align-items: center; justify-content: center;
}

.cq-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.cq-choice-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cq-choice-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cq-choice {
  padding: 14px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .12s;
}
.cq-choice:hover { border-color: var(--green-mid); }
.cq-choice.selected {
  background: var(--green-tint);
  border-color: var(--green-deep);
  color: var(--green-deep);
  font-weight: 600;
}

.cq-radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cq-radio {
  padding: 18px 20px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
}
.cq-radio .dot {
  width: 18px; height: 18px;
  border: 1.5px solid var(--ink-mute);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cq-radio.selected { border-color: var(--green-deep); background: var(--green-tint); }
.cq-radio.selected .dot { border-color: var(--green-deep); }
.cq-radio.selected .dot::after { content: ""; width: 10px; height: 10px; background: var(--green-deep); border-radius: 50%; }

.cq-info-banner {
  display: flex; gap: 14px;
  padding: 18px 22px;
  background: var(--green-tint);
  border-radius: var(--r-md);
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.cq-info-banner .ic {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--green-tint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cq-info-banner strong { color: var(--green-deep); }

.cq-foot {
  display: flex; justify-content: space-between;
  padding: 22px 32px;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}
.cq-foot .step-mini {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Review step */
.cq-review {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.cq-review .plan-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--green-deep);
}
.cq-review .plan-card .img { aspect-ratio: 16/9; overflow: hidden; }
.cq-review .plan-card .img img { width: 100%; height: 100%; object-fit: cover; }
.cq-review .plan-card .body { padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.cq-review .plan-card .body h3 { font-family: var(--ff-display); font-size: 26px; }
.cq-review .plan-card .price { font-family: var(--ff-display); font-size: 36px; color: var(--green-deep); font-weight: 500; }
.cq-review .perks { list-style: none; padding: 0; margin: 0; }
.cq-review .perks li { display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: 14px; }
.cq-review .perks li .tick { color: var(--green-deep); }
.cq-review .receive-card {
  background: var(--green-deep);
  color: #FBF8F1;
  border-radius: var(--r-lg);
  padding: 28px;
}
.cq-review .receive-card h3 {
  font-family: var(--ff-display);
  font-size: 26px;
  color: #FBF8F1;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(229,201,140,0.4);
  margin-bottom: 18px;
}
.cq-review .receive-card .perk {
  display: flex; gap: 14px;
  margin-bottom: 18px;
}
.cq-review .receive-card .perk .ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(229,201,140,0.18);
  color: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cq-review .receive-card .perk .title { color: var(--gold-soft); font-weight: 700; font-size: 14px; margin-bottom: 3px; }
.cq-review .receive-card .perk .desc { font-size: 13px; color: rgba(251,248,241,0.8); }
.cq-review .receive-card .delivery {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  color: rgba(251,248,241,0.7);
  display: flex; gap: 8px; align-items: center;
}

.cq-summary-card {
  background: var(--bg);
  padding: 24px;
  border-radius: var(--r-md);
  margin-top: 18px;
}
.cq-summary-card .label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.cq-summary-card .horse-info { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cq-summary-card .horse-info .row .name { font-family: var(--ff-display); font-size: 22px; color: var(--ink); }

/* Invoice */
.cq-invoice-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px; }
.cq-invoice {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
}
.cq-invoice-head {
  background: var(--green-deep);
  color: #FBF8F1;
  padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.cq-invoice-head .logo {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
}
.cq-invoice-head .invoice-tag {
  background: rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cq-invoice-body { padding: 24px 26px; }
.cq-invoice-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--line-soft); margin-bottom: 22px; }
.cq-invoice .col-label { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 8px; }
.cq-invoice .line { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
.cq-invoice .line.total { 
  border-top: 1.5px solid var(--ink); 
  margin-top: 10px; padding-top: 14px;
  font-family: var(--ff-display); font-size: 24px;
  color: var(--green-deep);
  font-weight: 500;
}
.cq-invoice .line.total .right { font-size: 30px; }
.cq-invoice .security-pill {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 18px;
  padding: 10px 14px;
  background: var(--green-tint);
  border-radius: var(--r-md);
  font-size: 12px;
  color: var(--green-deep);
}
.cq-invoice .security-pill strong { font-family: var(--ff-mono); letter-spacing: 0.1em; font-size: 11px; }

.cq-pay-card {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-top: 22px;
}
.cq-pay-method {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px;
}
.cq-pay-method-btn {
  padding: 16px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
}
.cq-pay-method-btn.selected { border-color: var(--green-deep); background: var(--green-tint); }
.cq-pay-method-btn .ic {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-soft);
}
.cq-pay-method-btn .info .title { font-weight: 700; font-size: 14px; }
.cq-pay-method-btn .info .sub { font-size: 11px; font-family: var(--ff-mono); letter-spacing: 0.1em; color: var(--green); text-transform: uppercase; }

.cq-highlights {
  background: var(--green-deep);
  border-radius: var(--r-lg);
  padding: 28px;
  color: #FBF8F1;
  position: sticky;
  top: 100px;
}
.cq-highlights h3 {
  font-family: var(--ff-display);
  font-size: 24px;
  color: #FBF8F1;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(229,201,140,0.4);
  margin-bottom: 18px;
}
.cq-highlights .item { display: flex; gap: 10px; align-items: center; padding: 6px 0; font-size: 14px; }
.cq-highlights .item .tick { color: var(--gold-soft); flex-shrink: 0; }
.cq-highlights .specialist {
  margin-top: 24px;
  background: var(--gold);
  color: #FBF8F1;
  border-radius: var(--r-md);
  padding: 20px;
}
.cq-highlights .specialist .who {
  display: flex; gap: 12px; align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 14px;
}
.cq-highlights .specialist .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.cq-highlights .specialist .name { font-weight: 700; }
.cq-highlights .specialist .role { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.8; }
.cq-highlights .specialist .quote { font-size: 13px; line-height: 1.5; font-style: italic; }
.cq-highlights .pay-btn {
  margin-top: 22px;
  width: 100%;
  padding: 18px;
  background: rgba(0,0,0,0.4);
  color: #FBF8F1;
  border-radius: var(--r-md);
  font-weight: 700;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px;
}
.cq-highlights .pay-btn:hover { background: var(--ink); }

/* Confirmation */
.cq-confirm {
  text-align: center;
  padding: 64px 32px;
}
.cq-confirm .check-circle {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-size: 36px;
}
.cq-confirm h2 {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 48px;
  color: var(--green-deep);
  margin-bottom: 14px;
}
.cq-confirm p { font-size: 16px; color: var(--ink-soft); max-width: 50ch; margin: 0 auto 36px; }
.cq-confirm .actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto 32px;
}
.cq-confirm .action-card {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  text-align: center;
}
.cq-confirm .action-card .ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.cq-confirm .action-card h4 { font-family: var(--ff-display); font-size: 20px; margin-bottom: 4px; }
.cq-confirm .action-card .meta { font-size: 12px; color: var(--ink-mute); margin-bottom: 14px; }
.cq-confirm .action-card a { color: var(--green-deep); font-weight: 700; font-size: 13px; }
.cq-confirm .next-card {
  background: var(--gold);
  color: #FBF8F1;
  padding: 28px 32px;
  border-radius: var(--r-lg);
  max-width: 640px;
  margin: 0 auto;
}
.cq-confirm .next-card h4 { color: #FBF8F1; font-family: var(--ff-display); font-size: 22px; margin-bottom: 18px; text-align: left; }
.cq-confirm .next-card .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cq-confirm .next-card .step { text-align: left; }
.cq-confirm .next-card .step .num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #FBF8F1;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
}
.cq-confirm .next-card .step p { color: rgba(251,248,241,0.92); font-size: 13px; line-height: 1.5; margin: 0; }

@media (max-width: 980px) {
  .path-grid { grid-template-columns: 1fr; }
  .path-card.recommended { transform: none; }
  .cq-row-2, .cq-row-3 { grid-template-columns: 1fr; }
  .cq-choice-grid, .cq-radio-grid { grid-template-columns: 1fr 1fr; }
  .cq-review, .cq-invoice-grid { grid-template-columns: 1fr; }
  .cq-confirm .actions { grid-template-columns: 1fr; }
  .cq-confirm .next-card .steps { grid-template-columns: 1fr; }
}
.footer {
  background: #15201A;
  color: #C9C2AB;
  padding: 72px 0 32px;
  font-size: 14px;
}
.footer h4 {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a:hover { color: var(--gold-soft); }
.footer .brand img { height: 48px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer .brand p { font-size: 13px; line-height: 1.6; max-width: 36ch; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  color: rgba(201, 194, 171, 0.7);
}
.footer-bottom .legal-links { display: flex; gap: 24px; }

/* ============ SHOP PAGE ============ */
.shop-hero {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  color: #FBF7EC;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(229,201,140,0.18) 0%, transparent 35%),
                    radial-gradient(circle at 85% 70%, rgba(185,138,60,0.22) 0%, transparent 40%);
  pointer-events: none;
}
.shop-hero .container { position: relative; }
.shop-hero .eyebrow { color: var(--gold-soft); }
.shop-hero h1 {
  color: #FBF7EC;
  font-size: clamp(48px, 6vw, 80px);
  font-style: italic;
  margin: 12px 0 18px;
  max-width: 16ch;
  line-height: 1.05;
}
.shop-hero h1 em { font-style: normal; color: var(--gold-soft); }
.shop-hero .lead { color: rgba(251,247,236,0.82); max-width: 50ch; font-size: 17px; }
.shop-hero .hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(229,201,140,0.3);
}
.shop-hero .stat .n { font-family: var(--ff-display); font-size: 48px; color: var(--gold-soft); line-height: 1; }
.shop-hero .stat .l { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(251,247,236,0.65); margin-top: 8px; }

/* Sticky shop filter bar */
.shop-filterbar {
  position: sticky;
  top: 126px;
  z-index: 30;
  background: var(--bg-paper);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  box-shadow: 0 4px 16px -8px rgba(28,38,32,0.08);
}
@media (max-width: 1100px) { .shop-filterbar { top: 110px; } }
@media (max-width: 920px)  { .shop-filterbar { top: 100px; } }
.shop-filterbar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.shop-filterbar .filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.shop-filterbar .filter-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-right: 4px;
}
.shop-chip {
  padding: 9px 16px;
  font-size: 13px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
  transition: all .12s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.shop-chip:hover { border-color: var(--green-mid); }
.shop-chip.active { background: var(--green-deep); color: #fff; border-color: var(--green-deep); }
.shop-chip.gold.active { background: var(--gold); border-color: var(--gold); }
.shop-chip .count { font-size: 11px; opacity: 0.7; }
.shop-search {
  position: relative;
  flex: 1;
  max-width: 320px;
}
.shop-search input {
  width: 100%;
  padding: 11px 18px 11px 42px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 14px;
}
.shop-search .icon-l {
  position: absolute;
  left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--ink-mute);
  pointer-events: none;
}
.shop-sort select {
  padding: 10px 36px 10px 16px;
  background: var(--bg) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23455048' stroke-width='2'><path d='m6 9 6 6 6-6'/></svg>") no-repeat right 14px center;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  appearance: none;
  cursor: pointer;
}

/* Compact line + axis dropdowns (replace chip rows) */
.shop-filterbar .filters.compact {
  gap: 14px;
  flex-wrap: wrap;
}
.shop-select {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  padding: 4px 4px 4px 18px;
  transition: border-color 160ms ease;
}
.shop-select:focus-within { border-color: var(--green-deep); }
.shop-select .filter-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
.shop-select select {
  padding: 10px 32px 10px 6px;
  background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232A6A60' stroke-width='2.2'><path d='m6 9 6 6 6-6'/></svg>") no-repeat right 12px center;
  border: 0;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green-deep);
  appearance: none;
  cursor: pointer;
  min-width: 0;
}
.shop-select select:focus { outline: none; }
@media (max-width: 760px) {
  .shop-select { width: 100%; }
  .shop-select select { flex: 1; }
}

/* Featured bundles strip */
.shop-bundles {
  background: var(--bg-paper);
  padding: 56px 0;
  border-bottom: 1px solid var(--line-soft);
}
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bundle-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s;
}
.bundle-card:hover { transform: translateY(-3px); }
.bundle-card .img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.bundle-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.bundle-card:hover .img img { transform: scale(1.06); }
.bundle-card .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30,40,33,0.65) 100%);
}
.bundle-card .badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.bundle-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  z-index: 2;
  color: #fff;
}
.bundle-card .overlay .tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 6px;
}
.bundle-card .overlay h3 {
  font-family: var(--ff-display);
  font-size: 26px;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}

/* Shop product grid */
.shop-products-section { padding: 56px 0; background: var(--bg); }
.shop-products-section.alt { background: var(--green-tint); }
.shop-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 24px;
}
.shop-section-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3vw, 40px);
  margin: 0;
}
.shop-section-head h2 .line-tag {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 6px;
}
.shop-section-head p { color: var(--ink-soft); font-size: 14px; max-width: 56ch; margin: 0; }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.shop-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .25s;
  border: 1px solid var(--line-soft);
  position: relative;
}
.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.shop-card .thumb {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-tint) 0%, var(--gold-tint) 100%);
}
.shop-card .thumb.line-fluid    { background: linear-gradient(135deg, #DAE9E5, #B5D2CC); }
.shop-card .thumb.line-pulver   { background: linear-gradient(135deg, #F4DBC4, #E5B58E); }
.shop-card .thumb.line-cobs     { background: linear-gradient(135deg, #F1E4C4, #D4B873); }
.shop-card .thumb.line-externa  { background: linear-gradient(135deg, #EDDDEE, #C6A2C7); }
.shop-card .thumb.line-dekokt   { background: linear-gradient(135deg, var(--gold-tint), var(--gold)); }
.shop-card .thumb.line-stall    { background: linear-gradient(135deg, #E0DCC7, #BFB99C); }
.shop-card .thumb.line-einzel   { background: linear-gradient(135deg, #D7E5C8, #8FAD78); }
.shop-card .thumb.line-suppl    { background: linear-gradient(135deg, #C8DDD8, #5F8C82); }

.shop-card .thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0, transparent 18px, rgba(255,255,255,0.22) 18px, rgba(255,255,255,0.22) 19px);
  pointer-events: none;
}
.shop-card .thumb-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(48px, 5vw, 72px);
  color: rgba(28,38,32,0.5);
  letter-spacing: -0.02em;
  z-index: 1;
}
.shop-card .badge-line {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: rgba(28,38,32,0.85);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  z-index: 2;
  font-weight: 600;
}
.shop-card .badge-line.dekokt { background: var(--gold); }
.shop-card .badge-line.fluid  { background: var(--green-deep); }
.shop-card .badge-line.pulver { background: var(--red-mute); }
.shop-card .badge-line.cobs   { background: #8A6E2C; }
.shop-card .badge-line.stall  { background: var(--ink); }
.shop-card .badge-line.externa { background: #6A4978; }
.shop-card .badge-line.einzel  { background: #5F8C5C; }
.shop-card .badge-line.suppl   { background: #2A6A60; }

.shop-card .wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  z-index: 2;
  cursor: pointer;
  transition: all .15s;
}
.shop-card .wishlist-btn:hover, .shop-card .wishlist-btn.active { background: var(--red-mute); color: #fff; }
.shop-card .body { padding: 18px 18px 0; flex: 1; display: flex; flex-direction: column; }
.shop-card .axis {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}
.shop-card .name {
  font-family: var(--ff-display);
  font-size: 21px;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--ink);
  min-height: 48px;
}
.shop-card .unit {
  font-size: 12px;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.shop-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 18px;
  margin-top: auto;
  border-top: 1px solid var(--line-soft);
}
.shop-card .price-row .price {
  font-family: var(--ff-display);
  font-size: 26px;
  color: var(--green-deep);
  font-weight: 500;
}
.shop-card .price-row .price .small { font-size: 12px; color: var(--ink-mute); margin-left: 4px; font-family: var(--ff-body); font-weight: normal; }
.shop-card .price-row .price.empty { color: var(--ink-mute); font-size: 13px; font-family: var(--ff-mono); }
.shop-card .add-btn {
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  background: var(--green-deep);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.shop-card .add-btn:hover { background: var(--gold); transform: rotate(-12deg); }

/* Color CTA bands */
.color-band {
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.color-band.dark {
  background: linear-gradient(135deg, var(--green-deep), var(--ink));
  color: #FBF7EC;
}
.color-band.dark h2 { color: #FBF7EC; }
.color-band.dark p  { color: rgba(251,247,236,0.8); }
.color-band.gold {
  background: linear-gradient(135deg, var(--gold) 0%, #D4A65E 100%);
  color: #1A2620;
}
.color-band.gold h2 { color: #1A2620; }
.color-band.gold p { color: rgba(26,38,32,0.8); }
.color-band.tint {
  background: var(--green-tint);
  border-top: 1px solid var(--green-soft);
  border-bottom: 1px solid var(--green-soft);
}
.color-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(229,201,140,0.15) 0%, transparent 40%);
  pointer-events: none;
}
.color-band .container { position: relative; }
.color-band .cb-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Value props row */
.value-props {
  background: var(--bg-paper);
  border-bottom: 1px solid var(--line-soft);
  padding: 28px 0;
}
.value-props .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-props .vp {
  display: flex; align-items: center; gap: 14px;
}
.value-props .vp .ic {
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  background: var(--green-tint);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-props .vp .info .t { font-weight: 700; font-size: 14px; }
.value-props .vp .info .d { font-size: 12px; color: var(--ink-mute); }

@media (max-width: 1024px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .bundle-grid { grid-template-columns: 1fr 1fr; }
  .shop-hero .hero-stats { grid-template-columns: 1fr 1fr; }
  .color-band .cb-grid { grid-template-columns: 1fr; }
  .value-props .row { grid-template-columns: 1fr 1fr; }
}
.products-hero {
  padding: 88px 0 56px;
  background: var(--bg-paper);
  border-bottom: 1px solid var(--line-soft);
}
.products-hero h1 { max-width: 18ch; margin-bottom: 18px; }
.products-hero .lead { margin-bottom: 32px; }
.products-filter {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.product-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--line-soft);
}
.product-section:last-child { border-bottom: none; }
.product-section .ps-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 28px; gap: 24px;
}
.product-section .ps-head h2 { font-size: 36px; }
.product-section .ps-head .sub { color: var(--ink-soft); font-size: 14px; margin-top: 4px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 20px;
  transition: all .2s;
  display: flex; flex-direction: column;
  gap: 12px;
}
.product-card:hover {
  border-color: var(--green-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.product-card .pc-thumb {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--green-tint), var(--gold-tint));
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  color: var(--green-deep);
  font-style: italic;
  font-size: 36px;
  opacity: 0.85;
  position: relative;
  overflow: hidden;
}
.product-card .pc-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(255,255,255,0.18) 14px, rgba(255,255,255,0.18) 15px);
}
.product-card .pc-line {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.product-card .pc-name {
  font-family: var(--ff-display);
  font-size: 22px;
  line-height: 1.15;
}
.product-card .pc-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  margin-top: auto;
}
.product-card .pc-price {
  font-family: var(--ff-display);
  font-size: 22px;
}
.product-card .pc-price.empty { color: var(--ink-mute); font-size: 13px; font-family: var(--ff-mono); }

/* ============ PAGE HEADS (Über, Philosophie etc) ============ */
.page-hero {
  padding: 80px 0;
  background: var(--bg-paper);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(48px, 5vw, 76px); max-width: 18ch; margin-bottom: 22px; }
.page-hero .lead { max-width: 60ch; }

.page-body { padding: 80px 0; }
.page-body .col-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.page-body .col-2 .side {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.page-body .prose p { font-size: 17px; line-height: 1.65; color: var(--ink-soft); }
.page-body .prose h2 { font-size: 36px; margin: 40px 0 18px; }
.page-body .prose h3 { font-size: 24px; margin: 28px 0 10px; }
.page-body .prose ul { padding-left: 18px; }
.page-body .prose li { font-size: 16px; color: var(--ink-soft); margin-bottom: 6px; }

/* Symptom / disease guide cards */
.symptom-card {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  transition: border-color .15s;
  scroll-margin-top: 180px;
}
.symptom-card:hover { border-color: var(--green-soft); }
.symptom-card .sc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.symptom-card .sc-head h3 {
  font-size: 28px;
  line-height: 1.15;
  color: var(--ink);
  font-family: var(--ff-display);
}
.symptom-card .sc-aka {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}
.symptom-card .sc-axis {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-tint);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.symptom-card .sc-short {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 70ch;
}
.symptom-card .sc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.symptom-card .sc-block { }
.symptom-card .sc-block.sc-rec {
  background: var(--gold-tint);
  border: 1px solid rgba(185,138,60,0.35);
  border-radius: var(--r-md);
  padding: 16px 18px;
  grid-column: 1 / -1;
}
.symptom-card .sc-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 8px;
}
.symptom-card .sc-block p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.symptom-card .sc-block em { font-style: italic; color: var(--ink); }
.symptom-card .sc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.symptom-card .sc-chip {
  font-size: 12px;
  padding: 4px 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--ink);
}
@media (max-width: 820px) {
  .symptom-card .sc-grid { grid-template-columns: 1fr; }
}

/* Category knowledge cards (SEO links to symptoms guide) */
.cat-knowledge {
  background: var(--bg-paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.cat-knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ck-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: inherit;
  transition: all .15s;
}
.ck-card:hover {
  border-color: var(--green-deep);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.ck-card .ck-head h3 {
  font-size: 22px;
  font-family: var(--ff-display);
  line-height: 1.15;
  color: var(--ink);
}
.ck-card .ck-aka {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.ck-card .ck-short {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.ck-card .ck-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.ck-card .ck-tag { color: var(--ink-mute); }
.ck-card .ck-link { color: var(--green-deep); font-weight: 700; }
.ck-card:hover .ck-link { color: var(--gold); }
@media (max-width: 980px) {
  .cat-knowledge-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cat-knowledge-grid { grid-template-columns: 1fr; }
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin: 40px 0;
}
.method-card {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 28px;
}
.method-card .glyph {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.method-card h3 { font-size: 26px; margin-bottom: 8px; }
.method-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ============ FAQ – Cobs & Problem Portraits ============ */
.topic-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.topic-head h2 { font-size: 36px; margin-top: 8px; }
.topic-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 28px;
}
.topic-tab {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: transparent;
  border: none;
  border-radius: var(--r-pill);
  font-family: var(--ff-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}
.topic-tab:hover { color: var(--green-deep); }
.topic-tab.active {
  background: var(--green-deep);
  color: var(--gold-soft);
}
.topic-tab-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 18px;
  padding: 0 6px;
  background: rgba(0,0,0,0.06);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 700;
  color: inherit;
}
.topic-tab.active .topic-tab-count { background: rgba(255,255,255,0.18); color: var(--gold-soft); }

.topic-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-soft) transparent;
  padding: 6px 4px 18px;
  scroll-padding-inline: 4px;
}
.topic-carousel::-webkit-scrollbar { height: 8px; }
.topic-carousel::-webkit-scrollbar-thumb { background: var(--gold-soft); border-radius: 4px; }
.topic-carousel::-webkit-scrollbar-track { background: var(--line-soft); border-radius: 4px; }
.topic-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.topic-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-deep);
  overflow: hidden;
}
.topic-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  z-index: 2;
}
.topic-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.topic-card h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink);
}
.topic-card p { color: var(--ink-soft); font-size: 13.5px; line-height: 1.5; margin: 0; }
.topic-carousel-hint {
  margin-top: 6px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
  text-align: center;
}

.cobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cobs-card {
  display: flex; flex-direction: column;
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cobs-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-deep);
  overflow: hidden;
}
.cobs-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  z-index: 2;
}
.cobs-img-fallback, .problem-img-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.cifb-stripes {
  position: absolute; inset: 0;
}
.cifb-stripes[data-tone="green"] {
  background: repeating-linear-gradient(135deg, #DAE9E5 0 14px, rgba(42,106,96,0.10) 14px 15px), #DAE9E5;
}
.cifb-stripes[data-tone="gold"] {
  background: repeating-linear-gradient(135deg, #F1E4C4 0 14px, rgba(185,138,60,0.12) 14px 15px), #F1E4C4;
}
.cifb-stripes[data-tone="paper"] {
  background: repeating-linear-gradient(135deg, #E6DECA 0 14px, rgba(26,38,36,0.06) 14px 15px), #E6DECA;
}
.cifb-label {
  position: relative; z-index: 2;
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 10px 16px;
  text-align: center;
  max-width: 80%;
}
.cifb-mono {
  font-family: var(--ff-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
}
.cifb-name {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  margin-top: 4px;
  line-height: 1.15;
}
.cobs-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; }
.cobs-mono {
  font-family: var(--ff-mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 600;
}
.cobs-card h3 { font-family: var(--ff-display); font-size: 26px; line-height: 1.15; color: var(--ink); }
.cobs-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; margin: 0; }
.cobs-facts { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 6px; }
.cobs-facts li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--ink-soft); line-height: 1.45;
}
.cobs-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  margin-top: 8px;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.problem-card {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.problem-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-deep);
  overflow: hidden;
}
.problem-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  z-index: 2;
}
.problem-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.problem-card h3 {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--ink);
  line-height: 1.15;
}
.problem-aka {
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--ink-mute); font-style: normal !important; margin: 0;
}
.problem-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; margin: 0; }
.problem-program {
  margin-top: auto;
  padding: 10px 14px;
  background: var(--green-tint);
  color: var(--green-deep);
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 500;
}
.problem-program strong { color: var(--green-deep); font-weight: 700; }

/* FAQ Category tabs */
.faq-cats {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}
.faq-cat {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-family: var(--ff-mono);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .15s;
}
.faq-cat:hover { border-color: var(--green-mid); color: var(--green-deep); }
.faq-cat.active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--gold-soft);
}
.faq-cat-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 18px;
  padding: 0 6px;
  background: rgba(0,0,0,0.06);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 700;
  color: inherit;
}
.faq-cat.active .faq-cat-count { background: rgba(255,255,255,0.18); color: #fff; }

@media (max-width: 980px) {
  .cobs-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 8px;
  text-align: left;
  font-family: var(--ff-display);
  font-size: 22px;
  width: 100%;
  cursor: pointer;
}
.faq-q .toggle { 
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--green-deep);
  flex-shrink: 0;
}
.faq-a {
  padding: 0 8px 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 64ch;
}

/* Newsletter */
.newsletter {
  background: var(--green-deep);
  color: #F2EBD7;
  padding: 80px 0;
}
.newsletter h2 { color: #FBF8F1; max-width: 18ch; }
.newsletter p { color: rgba(242,235,215,0.85); max-width: 50ch; }
.newsletter .form {
  display: flex; gap: 10px; max-width: 480px; margin-top: 28px;
}
.newsletter input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 14px;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.5); }

/* Testimonials */
.tstm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tstm-card {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tstm-card .quote-mark {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 56px;
  color: var(--gold);
  line-height: 0.5;
  height: 24px;
}
.tstm-card .text { font-family: var(--ff-display); font-size: 22px; line-height: 1.3; font-style: italic; color: var(--ink); }
.tstm-card .who {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  margin-top: auto;
}
.tstm-card .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.tstm-card .who .info { font-size: 13px; }
.tstm-card .who .name { font-weight: 700; color: var(--ink); }
.tstm-card .who .meta { color: var(--ink-mute); }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  display: flex; flex-direction: column;
  gap: 14px;
  cursor: pointer;
}
.blog-card .b-thumb {
  aspect-ratio: 4/3;
  background: var(--bg-deep);
  border-radius: var(--r-md);
  overflow: hidden;
}
.blog-card .b-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .b-thumb img { transform: scale(1.05); }
.blog-card .b-meta {
  display: flex; gap: 14px; font-size: 11px;
  font-family: var(--ff-mono); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green);
}
.blog-card h3 { font-size: 22px; line-height: 1.2; }
.blog-card .b-excerpt { color: var(--ink-soft); font-size: 14px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info .row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.contact-info .row .icon { width: 36px; height: 36px; background: var(--green-tint); color: var(--green-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info .row .info { font-size: 14px; }
.contact-info .row .label { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px; }
.contact-form .field { margin-bottom: 16px; }
.contact-form label {
  display: block; font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green); margin-bottom: 6px;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* Consultation page */
.cons-hero {
  background: var(--green-deep);
  color: #F2EBD7;
  padding: 88px 0;
}
.cons-hero h1 { color: #FBF8F1; }
.cons-hero .lead { color: rgba(242,235,215,0.85); }
.cons-hero .stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.cons-hero .stat-num { font-family: var(--ff-display); font-size: 56px; color: var(--gold-soft); }
.cons-hero .stat-label { font-size: 13px; opacity: 0.85; }

/* Mobile-ish (we're prototyping at desktop scale) */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 360px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .megamenu-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .symptoms-grid { grid-template-columns: 1fr; }
  .cat-hero { grid-template-columns: 1fr; }
}

/* ============================================================
   TCVM GLOSSAR  (scoped: .glossar-page)
============================================================ */
.glossar-page {
  --gl-green:       #2A6A60;
  --gl-green-dark:  #1F5446;
  --gl-green-deep:  #163E33;
  --gl-green-soft:  #DAE9E5;
  --gl-gold:        #C6A059;
  --gl-gold-dark:   #A8843F;
  --gl-gold-soft:   #F1E6CC;
  --gl-cream:       #F8F3E8;
  --gl-cream-warm:  #FBF7EE;
  --gl-card:        #FFFFFF;
  --gl-ink:         #2A2A28;
  --gl-ink-soft:    #6E685D;
  --gl-line:        #E7DECE;
  --gl-radius:      var(--r-lg);
  --gl-radius-sm:   var(--r-md);
  --gl-shadow:      0 10px 40px rgba(31,84,70,0.07);
  background: var(--gl-cream);
  color: var(--gl-ink);
}

/* ── Hero ── */
.glossar-page .glossar-hero {
  position: relative;
  padding: 84px 40px 64px;
  text-align: center;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(42,106,96,0.06) 0%, transparent 60%),
    var(--gl-cream-warm);
  overflow: hidden;
}
.glossar-page .glossar-hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gl-line), transparent);
}
.glossar-page .hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gl-gold-soft); color: var(--gl-gold-dark);
  padding: 7px 18px; border-radius: var(--r-pill);
  font-family: var(--ff-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 26px;
}
.glossar-page .hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gl-gold);
}
.glossar-page .glossar-hero h1 {
  font-family: var(--ff-display); font-weight: 500; font-style: italic;
  font-size: clamp(2.5rem, 5.5vw, 4rem); line-height: 1.08;
  color: var(--gl-green-deep); margin-bottom: 20px; letter-spacing: -0.5px;
}
.glossar-page .glossar-hero h1 .accent { color: var(--gl-gold-dark); }
.glossar-page .glossar-hero p {
  font-size: 1.08rem; color: var(--gl-ink-soft); max-width: 620px; margin: 0 auto; font-weight: 400;
}

/* ── Filter bar (non-sticky to avoid header overlap) ── */
.glossar-page .glossar-nav {
  background: var(--gl-cream-warm);
  border-bottom: 1px solid var(--gl-line);
  padding: 0 40px;
}
.glossar-page .nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px; padding: 18px 0;
}
.glossar-page .search-box { flex: 1; min-width: 240px; position: relative; }
.glossar-page .search-box input {
  width: 100%; padding: 13px 16px 13px 46px;
  border: 1.5px solid var(--gl-line); border-radius: var(--gl-radius-sm);
  font-family: var(--ff-body); font-size: 0.95rem; font-weight: 500;
  background: var(--gl-card); color: var(--gl-ink); transition: all .25s ease; outline: none;
}
.glossar-page .search-box input::placeholder { color: #A89F8E; font-weight: 400; }
.glossar-page .search-box input:focus {
  border-color: var(--gl-green); box-shadow: 0 0 0 4px rgba(42,106,96,0.08);
}
.glossar-page .search-box svg {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; stroke: var(--gl-ink-soft); pointer-events: none;
}
.glossar-page .filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.glossar-page .filter-pill {
  padding: 9px 18px; border: 1.5px solid var(--gl-line); border-radius: var(--r-pill);
  font-family: var(--ff-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--gl-ink-soft); background: transparent;
  cursor: pointer; transition: all .22s ease; white-space: nowrap;
}
.glossar-page .filter-pill:hover { border-color: var(--gl-green); color: var(--gl-green); }
.glossar-page .filter-pill.active { background: var(--gl-green); border-color: var(--gl-green); color: #fff; }

/* ── Alphabet bar ── */
.glossar-page .alpha-bar {
  max-width: 1180px; margin: 26px auto 0; padding: 0 40px;
  display: flex; flex-wrap: wrap; gap: 3px; justify-content: center;
}
.glossar-page .alpha-btn {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border: none; border-radius: var(--r-md); font-family: var(--ff-display); font-size: 1.15rem; font-weight: 600;
  color: var(--gl-line); background: transparent; cursor: default; transition: all .2s ease;
}
.glossar-page .alpha-btn.has-entries { color: var(--gl-green); cursor: pointer; }
.glossar-page .alpha-btn.has-entries:hover { background: var(--gl-green); color: #fff; transform: translateY(-1px); }

/* ── Content ── */
.glossar-page .glossar-content { max-width: 1180px; margin: 0 auto; padding: 36px 40px 120px; }
.glossar-page .result-count {
  font-family: var(--ff-mono); font-size: 0.78rem; letter-spacing: 0.5px;
  color: var(--gl-ink-soft); margin-bottom: 28px; text-transform: uppercase;
}
.glossar-page .result-count strong { color: var(--gl-green); }

.glossar-page .letter-section { margin-bottom: 52px; }
.glossar-page .letter-heading {
  display: flex; align-items: center; gap: 18px; margin-bottom: 22px; scroll-margin-top: 120px;
}
.glossar-page .letter-heading .letter {
  font-family: var(--ff-display); font-size: 2rem; font-weight: 600; font-style: italic;
  color: var(--gl-green); min-width: 38px;
}
.glossar-page .letter-heading .line { flex: 1; height: 1px; background: var(--gl-line); }
.glossar-page .letter-heading .count {
  font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gl-ink-soft); white-space: nowrap;
}

/* ── Term cards ── */
.glossar-page .terms-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(338px, 1fr)); gap: 18px;
}
.glossar-page .term-card {
  background: var(--gl-card); border: 1px solid var(--gl-line); border-radius: var(--gl-radius);
  padding: 26px 26px 24px; transition: all .3s cubic-bezier(.2,.7,.3,1); position: relative; overflow: hidden;
}
.glossar-page .term-card::before {
  content: ''; position: absolute; left: 0; top: 22px; bottom: 22px; width: 3px;
  background: var(--gl-gold); border-radius: 0 3px 3px 0;
  transform: scaleY(0); transform-origin: center; transition: transform .3s ease;
}
.glossar-page .term-card:hover { border-color: var(--gl-gold-soft); box-shadow: var(--gl-shadow); transform: translateY(-3px); }
.glossar-page .term-card:hover::before { transform: scaleY(1); }
.glossar-page .term-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.glossar-page .term-name {
  font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; color: var(--gl-green-deep); line-height: 1.1;
}
.glossar-page .term-abbr {
  font-family: var(--ff-mono); font-size: 0.72rem; font-weight: 700; color: var(--gl-gold-dark);
  background: var(--gl-gold-soft); padding: 3px 10px; border-radius: var(--r-sm); letter-spacing: 0.5px; white-space: nowrap;
}
.glossar-page .term-desc { font-size: 0.93rem; color: var(--gl-ink-soft); line-height: 1.68; font-weight: 400; }
.glossar-page .term-foot { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.glossar-page .term-tag {
  font-family: var(--ff-mono); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.6px;
  text-transform: uppercase; padding: 4px 9px; border-radius: var(--r-sm);
  border: 1px solid var(--gl-line); color: var(--gl-ink-soft); background: var(--gl-cream-warm);
}
.glossar-page .term-tag.cat-grundlagen { border-color: rgba(42,106,96,0.25);  color: var(--gl-green);    background: var(--gl-green-soft); }
.glossar-page .term-tag.cat-diagnostik { border-color: rgba(168,132,63,0.3);  color: var(--gl-gold-dark); background: var(--gl-gold-soft); }
.glossar-page .term-tag.cat-therapie   { border-color: rgba(176,90,70,0.25);  color: #A8533F;            background: #F6E7E2; }
.glossar-page .term-tag.cat-substanzen { border-color: rgba(110,72,160,0.22); color: #6E48A0;            background: #EFE9F5; }
.glossar-page .term-tag.cat-organe     { border-color: rgba(46,110,166,0.22); color: #2E6EA6;            background: #E6EEF6; }
.glossar-page .term-tag.cat-akupunktur { border-color: rgba(160,112,32,0.25); color: #9A6E1E;            background: #F4EBD8; }
.glossar-page .term-ref {
  margin-left: auto; display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--ff-mono); font-size: 0.68rem; color: var(--gl-gold-dark); white-space: nowrap;
}
.glossar-page .term-ref svg { stroke: var(--gl-gold-dark); }
.glossar-page mark { background: var(--gl-gold-soft); color: var(--gl-green-deep); border-radius: var(--r-sm); padding: 0 2px; }

/* ── Empty state ── */
.glossar-page .empty-state { text-align: center; padding: 90px 20px; }
.glossar-page .empty-state .icon {
  width: 64px; height: 64px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
  background: var(--gl-green-soft); border-radius: var(--r-lg);
}
.glossar-page .empty-state .icon svg { width: 28px; height: 28px; stroke: var(--gl-green); }
.glossar-page .empty-state h3 {
  font-family: var(--ff-display); font-style: italic; font-size: 1.6rem; color: var(--gl-green-deep); margin-bottom: 8px;
}
.glossar-page .empty-state p { font-size: 0.92rem; color: var(--gl-ink-soft); }

/* ── Back to top ── */
.glossar-page .glossar-backtop {
  position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; border-radius: var(--r-pill);
  background: var(--gl-green); color: #fff; border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(42,106,96,0.3);
  opacity: 0; transform: translateY(16px); transition: all .3s ease; z-index: 49;
  display: flex; align-items: center; justify-content: center;
}
.glossar-page .glossar-backtop svg { width: 20px; height: 20px; stroke: #fff; }
.glossar-page .glossar-backtop.visible { opacity: 1; transform: translateY(0); }
.glossar-page .glossar-backtop:hover { background: var(--gl-green-dark); transform: translateY(-2px); }

@media (max-width: 768px) {
  .glossar-page .glossar-hero { padding: 60px 20px 44px; }
  .glossar-page .glossar-nav { padding: 0 16px; }
  .glossar-page .nav-inner { gap: 12px; padding: 14px 0; }
  .glossar-page .glossar-content { padding: 28px 16px 90px; }
  .glossar-page .alpha-bar { padding: 0 16px; }
  .glossar-page .terms-grid { grid-template-columns: 1fr; }
  .glossar-page .filter-pills { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .glossar-page .term-ref { margin-left: 0; }
}
