/* ============================================================
   ATOS NATURAL — Shared Stylesheet
   Fonts: Playfair Display (headings) + Inter (body/UI)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;500;600&display=swap');

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

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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #1E2023;
  background: #F7F4EF;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Tokens ── */
:root {
  --forst:   #1D3D2A;
  --feld:    #3A6B47;
  --gold:    #D4860F;
  --gold-dk: #B5710C;
  --cream:   #F7F4EF;
  --linen:   #EDE9E0;
  --dark:    #1E2023;
  --mid:     #5C6570;
  --border:  #D8D5CD;
  --white:   #FFFFFF;
  --radius:  8px;
  --radius-lg: 14px;
  --shadow:  0 2px 12px rgba(0,0,0,0.07);
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
h4, h5, h6, .label-caps { font-family: 'Inter', sans-serif; }

.label-caps {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
}

/* ── Layout ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  background: var(--forst);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 64px; gap: 24px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 900; color: var(--white);
  letter-spacing: 0.04em; white-space: nowrap;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.btn-nav {
  background: var(--gold); color: var(--white) !important;
  padding: 9px 20px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600 !important;
  transition: background .2s !important; white-space: nowrap;
  border: none; cursor: pointer;
}
.btn-nav:hover { background: var(--gold-dk) !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.8); margin: 4px 0; border-radius: 2px; }

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--forst); padding: 16px 20px 24px; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: block; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all .2s; border: none; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,134,15,0.3); }
.btn-secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-secondary:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); }
.btn-outline-dark { background: transparent; color: var(--forst); border: 1.5px solid var(--forst); }
.btn-outline-dark:hover { background: var(--forst); color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  background: var(--forst);
  padding: 80px 0 72px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; right: -120px; top: -120px;
  width: 520px; height: 520px; border-radius: 50%;
  background: rgba(212,134,15,0.08); pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; left: -60px; bottom: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(58,107,71,0.25); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { margin-bottom: 14px; }
.hero h1 { font-size: clamp(36px, 5vw, 54px); color: var(--white); margin-bottom: 18px; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(58,107,71,0.4);
  display: flex; align-items: center; justify-content: center;
}
.hero-img-placeholder {
  text-align: center; color: rgba(255,255,255,0.35); font-size: 13px; line-height: 1.8; padding: 24px;
}
.hero-img-placeholder svg { margin: 0 auto 12px; opacity: 0.4; }

.hero-stat-bar {
  display: flex; gap: 0; margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px;
}
.hero-stat {
  flex: 1; padding-right: 32px; margin-right: 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--gold); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-img { aspect-ratio: 16/7; }
  .hero-stat-bar { gap: 0; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-inner {
  display: flex; align-items: center;
  justify-content: center; gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 28px;
}
.trust-divider { width: 1px; height: 36px; background: var(--border); }
.cert-logo {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--linen); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700; color: var(--forst); letter-spacing: 0.03em;
}
.trust-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--dark); }
.trust-text span { font-size: 11px; color: var(--mid); }
.trust-note {
  width: 100%; text-align: center; padding-top: 10px;
  font-size: 11px; color: var(--mid); font-style: italic;
  border-top: 1px solid var(--border); margin-top: 10px;
}

/* ============================================================
   USP SECTION
   ============================================================ */
.usp-section { background: var(--linen); padding: 72px 0; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-size: clamp(28px, 4vw, 38px); color: var(--forst); margin-top: 10px; }
.section-header p { font-size: 16px; color: var(--mid); margin-top: 12px; max-width: 540px; margin-left: auto; margin-right: auto; }

.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.usp-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 32px 28px;
  transition: transform .2s, box-shadow .2s;
}
.usp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.usp-icon {
  width: 52px; height: 52px; background: rgba(29,61,42,0.08);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.usp-icon svg { width: 26px; height: 26px; stroke: var(--forst); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.usp-card h3 { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 600; color: var(--forst); margin-bottom: 10px; }
.usp-card p { font-size: 14px; color: var(--mid); line-height: 1.7; }

@media (max-width: 768px) { .usp-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRODUCT TEASER
   ============================================================ */
.teaser-section { background: var(--cream); padding: 72px 0; }
.teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 0; }
.teaser-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--white);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.teaser-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.teaser-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.05em;
}
.teaser-img.green { background: var(--feld); }
.teaser-img.amber { background: #5C4A1D; }
.teaser-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.teaser-tag {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--feld); background: rgba(58,107,71,0.09); padding: 3px 10px;
  border-radius: 20px; margin-bottom: 12px;
}
.teaser-card h3 { font-size: 20px; color: var(--forst); margin-bottom: 10px; }
.teaser-card p { font-size: 14px; color: var(--mid); line-height: 1.7; flex: 1; }
.teaser-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 14px; font-weight: 600; color: var(--gold);
  transition: gap .2s;
}
.teaser-link:hover { gap: 10px; }

@media (max-width: 768px) { .teaser-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background: var(--forst); padding: 80px 0; text-align: center; }
.cta-section h2 { font-size: clamp(26px, 4vw, 38px); color: var(--white); margin-top: 10px; margin-bottom: 16px; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto 36px; line-height: 1.7; }
.cta-form {
  display: flex; gap: 12px; max-width: 480px;
  margin: 0 auto 24px; flex-wrap: wrap;
}
.cta-input {
  flex: 1; min-width: 200px; height: 50px; padding: 0 16px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius); color: var(--white); font-family: 'Inter', sans-serif;
  font-size: 14px; outline: none; transition: border-color .2s;
}
.cta-input::placeholder { color: rgba(255,255,255,0.4); }
.cta-input:focus { border-color: rgba(255,255,255,0.6); }
.cta-meta { font-size: 13px; color: rgba(255,255,255,0.5); }
.cta-meta a { color: rgba(255,255,255,0.7); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #121F18; padding: 40px 0 24px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .nav-logo { font-size: 18px; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); max-width: 240px; line-height: 1.6; }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-col ul li + li { margin-top: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; padding-top: 20px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ============================================================
   PRODUCT PAGE — HERO
   ============================================================ */
.prod-hero { background: var(--forst); padding: 60px 0 52px; }
.prod-hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; }
.prod-hero .label-caps { margin-bottom: 12px; }
.prod-hero h1 { font-size: clamp(28px, 4vw, 42px); color: var(--white); margin-bottom: 16px; }
.prod-hero p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 520px; line-height: 1.7; }
.prod-hero-badges { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 4px; }
.prod-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.8);
}
.prod-badge svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; }

@media (max-width: 768px) { .prod-hero-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 0; position: sticky; top: 64px; z-index: 90;
}
.filter-inner { display: flex; align-items: center; gap: 10px; height: 54px; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.filter-inner::-webkit-scrollbar { height: 0; }
.filter-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--mid); white-space: nowrap; margin-right: 4px; }
.filter-chip {
  white-space: nowrap; padding: 6px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 500; border: 1px solid var(--border);
  background: var(--cream); color: var(--dark); cursor: pointer; transition: all .15s;
}
.filter-chip:hover { border-color: var(--feld); color: var(--feld); }
.filter-chip.active { background: var(--forst); color: var(--white); border-color: var(--forst); }
.filter-count { margin-left: auto; white-space: nowrap; font-size: 13px; color: var(--mid); }

/* ============================================================
   PRODUCT TABLE
   ============================================================ */
.table-section { background: var(--cream); padding: 48px 0 56px; }
.table-section > .container > h2 { font-size: 26px; color: var(--forst); margin-bottom: 6px; margin-top: 12px; }
.table-section > .container > p { font-size: 14px; color: var(--mid); margin-bottom: 28px; }
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow); }
.prod-table { width: 100%; border-collapse: collapse; min-width: 680px; background: var(--white); }
.prod-table thead tr { background: var(--forst); }
.prod-table th {
  padding: 13px 16px; text-align: left;
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.prod-table tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.prod-table tbody tr:last-child { border-bottom: none; }
.prod-table tbody tr:nth-child(even) { background: var(--cream); }
.prod-table tbody tr:hover { background: #dff0e5; }
.prod-table td { padding: 12px 16px; font-size: 13px; color: var(--dark); vertical-align: middle; }
.prod-table td:first-child { font-weight: 600; color: var(--forst); }
.prod-table .note-row td { color: var(--mid); font-style: italic; font-weight: 400; font-size: 12px; }
.badge { display: inline-block; padding: 2px 9px; border-radius: 12px; font-size: 10px; font-weight: 600; letter-spacing: 0.03em; margin: 1px 2px; white-space: nowrap; }
.badge-bio   { background: #D6EDDA; color: #1D5C2A; }
.badge-dem   { background: #D0E8F2; color: #0B3D5C; }
.badge-bl    { background: #DCF0D6; color: #1E5018; }
.badge-konv  { background: var(--linen); color: #4A5660; }
.table-action { font-size: 12px; font-weight: 600; color: var(--gold); cursor: pointer; white-space: nowrap; transition: color .15s; }
.table-action:hover { color: var(--gold-dk); }
.table-footnote { font-size: 12px; color: var(--mid); margin-top: 14px; font-style: italic; }

/* ============================================================
   GEBINDE SECTION
   ============================================================ */
.gebinde-section { background: var(--white); padding: 56px 0; }
.gebinde-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; }
.geb-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 20px; text-align: center; background: var(--cream);
  transition: transform .2s, box-shadow .2s;
}
.geb-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.geb-card.featured { border-color: var(--gold); background: rgba(212,134,15,0.05); }
.geb-icon {
  width: 52px; height: 52px; margin: 0 auto 14px;
  background: rgba(29,61,42,0.08); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.geb-card.featured .geb-icon { background: rgba(212,134,15,0.12); }
.geb-icon svg { width: 26px; height: 26px; stroke: var(--forst); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.geb-card.featured .geb-icon svg { stroke: var(--gold); }
.geb-name { font-size: 14px; font-weight: 600; color: var(--forst); margin-bottom: 4px; }
.geb-card.featured .geb-name { color: var(--gold); }
.geb-volume { font-size: 13px; color: var(--mid); margin-bottom: 6px; }
.geb-target { font-size: 11px; color: var(--mid); line-height: 1.5; }

@media (max-width: 900px) { .gebinde-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gebinde-grid { grid-template-columns: 1fr; } }

/* ============================================================
   QUALITY SECTION
   ============================================================ */
.quality-section { background: var(--linen); padding: 56px 0; }
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 32px; }
.quality-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 28px;
}
.quality-card ul { margin-top: 12px; }
.quality-card ul li {
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--dark);
  display: flex; align-items: flex-start; gap: 10px;
}
.quality-card ul li:last-child { border-bottom: none; }
.quality-card ul li::before { content: '✓'; color: var(--feld); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.quality-card h3 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; color: var(--forst); }

@media (max-width: 768px) { .quality-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CATEGORY TABS (Page B)
   ============================================================ */
.cat-nav { background: var(--white); border-bottom: 1px solid var(--border); padding: 0; position: sticky; top: 64px; z-index: 90; }
.cat-nav-inner { display: flex; gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cat-nav-inner::-webkit-scrollbar { height: 0; }
.cat-tab-btn {
  padding: 16px 22px; font-size: 14px; font-weight: 500; color: var(--mid);
  border: none; background: none; cursor: pointer; white-space: nowrap;
  border-bottom: 3px solid transparent; margin-bottom: -1px;
  transition: color .15s, border-color .15s;
}
.cat-tab-btn:hover { color: var(--dark); }
.cat-tab-btn.active { color: var(--forst); border-bottom-color: var(--gold); font-weight: 600; }

/* ============================================================
   CATEGORY CARDS (Page B)
   ============================================================ */
.cat-section { background: var(--linen); padding: 56px 0; }
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cat-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-card-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.cat-card-ico {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.cat-card-ico svg { width: 22px; height: 22px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ico-green { background: rgba(29,61,42,0.09); } .ico-green svg { stroke: var(--forst); }
.ico-amber { background: rgba(212,134,15,0.12); } .ico-amber svg { stroke: var(--gold); }
.ico-purple { background: rgba(92,50,80,0.09); } .ico-purple svg { stroke: #5C3250; }
.ico-brown  { background: rgba(92,74,29,0.09); }  .ico-brown svg  { stroke: #5C4A1D; }
.cat-card-head h3 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; color: var(--forst); margin-bottom: 4px; }
.cat-card-head p { font-size: 12px; color: var(--mid); }
.cat-card ul { margin-bottom: 16px; }
.cat-card ul li {
  font-size: 13px; color: var(--dark); padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 8px;
}
.cat-card ul li:last-child { border-bottom: none; }
.cat-card ul li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-weight: 600; }
.cat-link { font-size: 13px; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; transition: gap .15s; }
.cat-link:hover { gap: 10px; }

@media (max-width: 768px) { .cat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS STEPS (Page B)
   ============================================================ */
.process-section { background: var(--cream); padding: 56px 0; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 32px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px;
  background: var(--border); z-index: 0;
}
.process-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 2px solid var(--border);
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700;
  color: var(--mid); transition: all .2s;
}
.process-step.active .step-num { background: var(--gold); border-color: var(--gold); color: var(--white); }
.step-title { font-size: 14px; font-weight: 600; color: var(--forst); margin-bottom: 6px; }
.step-desc { font-size: 12px; color: var(--mid); line-height: 1.6; }

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .process-steps::before { display: none; }
}

/* ============================================================
   STICKY CTA BAR
   ============================================================ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--forst); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 32px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; transform: translateY(100%); transition: transform .3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text strong { font-size: 14px; font-weight: 600; color: var(--white); }
.sticky-cta-text span { font-size: 12px; color: rgba(255,255,255,0.6); margin-left: 12px; }

@media (max-width: 600px) {
  .sticky-cta-text span { display: none; }
  .sticky-cta { padding: 10px 16px; }
}

/* ============================================================
   INTRO TEXT SECTION
   ============================================================ */
.intro-section { background: var(--white); padding: 60px 0; }
.intro-grid { display: grid; grid-template-columns: 5fr 3fr; gap: 56px; align-items: start; }
.intro-text h2 { font-size: clamp(26px, 3vw, 34px); color: var(--forst); margin-bottom: 20px; margin-top: 10px; }
.intro-text p { font-size: 15px; color: var(--dark); line-height: 1.8; margin-bottom: 16px; }
.intro-text p:last-child { margin-bottom: 0; }
.intro-aside {
  background: var(--linen); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 24px; position: sticky; top: 120px;
}
.intro-aside h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--forst); margin-bottom: 14px; }
.aside-item { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--dark); }
.aside-item:last-child { border-bottom: none; }
.aside-check { color: var(--feld); font-weight: 700; flex-shrink: 0; }

@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; } .intro-aside { position: static; } }

/* ============================================================
   PAGE BREADCRUMB
   ============================================================ */
.breadcrumb { background: var(--linen); padding: 10px 0; border-bottom: 1px solid var(--border); }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--mid); }
.breadcrumb-inner a { color: var(--mid); transition: color .15s; }
.breadcrumb-inner a:hover { color: var(--forst); }
.breadcrumb-inner span { color: var(--dark); font-weight: 500; }
.bc-sep { color: var(--border); }

/* ============================================================
   ACCESSIBILITY & PRINT
   ============================================================ */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition-duration: 0.01ms !important; } }
@media print { .nav, .sticky-cta, .filter-bar, .cat-nav { display: none; } }
