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

:root {
  --primary: #1B4332;
  --primary-light: #2D6A4F;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #A8880F;
  --bg-dark: #0A0A0A;
  --bg-card: #111111;
  --bg-card2: #161616;
  --text-main: #F5F0E8;
  --text-muted: #9A9082;
  --text-gold: #D4AF37;
  --border: rgba(212,175,55,0.15);
  --border-hover: rgba(212,175,55,0.4);
  --shadow-gold: 0 0 40px rgba(212,175,55,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --sp: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* ======================== TYPOGRAPHY ======================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-muted); line-height: 1.8; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

.gold { color: var(--gold); }
.text-center { text-align: center; }

/* ======================== LAYOUT ======================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ======================== HEADER / NAV ======================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
header.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span { color: var(--gold); }
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
nav { display: flex; align-items: center; gap: 8px; }
nav a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
nav a:hover, nav a.active { color: var(--text-main); background: rgba(212,175,55,0.08); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--bg-dark) !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(212,175,55,0.3) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-main); border-radius: 2px; transition: 0.3s; }

/* ======================== HERO ======================== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,0.7) 0%, rgba(10,10,10,0.8) 60%, rgba(212,175,55,0.05) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border-hover);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before { content: '◆'; font-size: 0.6rem; }
.hero h1 { margin-bottom: 24px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(245,240,232,0.75);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat span { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; display: block; }

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(212,175,55,0.25);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.4);
  color: var(--bg-dark);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--text-main);
}
.btn-outline:hover {
  background: rgba(212,175,55,0.08);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 0.87rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ======================== SECTION HEADERS ======================== */
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-title em { color: var(--gold); font-style: normal; }
.section-desc { font-size: 1.05rem; max-width: 600px; margin: 0 auto 48px; }

/* ======================== CARDS ======================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px; height: 52px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 12px; color: var(--text-main); font-size: 1.25rem; }
.card p { font-size: 0.93rem; }

/* ======================== GRIDS ======================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ======================== GEMSTONE CARDS ======================== */
.gem-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.gem-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gem-card:hover img { transform: scale(1.08); }
.gem-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 24px;
  transition: all 0.3s;
}
.gem-card:hover .gem-card-overlay { background: linear-gradient(to top, rgba(27,67,50,0.95) 0%, rgba(0,0,0,0.4) 60%, transparent 100%); }
.gem-badge {
  display: inline-block;
  background: rgba(212,175,55,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  width: fit-content;
}
.gem-card-overlay h3 { color: white; margin-bottom: 8px; font-size: 1.3rem; }
.gem-card-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.gem-card-overlay .btn { font-size: 0.82rem; padding: 9px 18px; }

/* ======================== SIMULATOR ======================== */
.simulator {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.simulator-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--text-main);
}
.sim-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.sim-inputs { display: flex; flex-direction: column; gap: 20px; }
.sim-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.sim-field input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: rgba(212,175,55,0.2);
  border-radius: 2px;
  outline: none;
  margin-bottom: 6px;
}
.sim-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(212,175,55,0.5);
}
.sim-field input[type="number"], .sim-field select {
  width: 100%;
  background: rgba(212,175,55,0.05);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.sim-field input:focus, .sim-field select:focus { border-color: var(--gold); }
.range-val {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  text-align: right;
}
.sim-results {
  background: rgba(27,67,50,0.2);
  border: 1px solid rgba(27,67,50,0.6);
  border-radius: var(--radius);
  padding: 28px;
}
.sim-result-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(212,175,55,0.08);
}
.sim-result-item:last-child { border-bottom: none; }
.sim-result-item label { font-size: 0.88rem; color: var(--text-muted); }
.sim-result-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
}
.sim-result-item strong.big { font-size: 1.8rem; }
.sim-cta { margin-top: 24px; width: 100%; justify-content: center; }

/* ======================== COMPARE TABLE (Stadt page inline) ======================== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 20px;
}
.compare-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  background: var(--bg-card2);
  border-bottom: 2px solid var(--border-hover);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(212,175,55,0.03); }
.compare-row.highlight-row { background: rgba(27,67,50,0.15); }
.compare-col {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}
.compare-header .compare-col {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 700;
}
.compare-immo { border-left: 1px solid var(--border); justify-content: center; text-align: center; }
.compare-gem {
  border-left: 1px solid var(--border);
  justify-content: center; text-align: center;
  background: rgba(212,175,55,0.04);
}
.compare-immo-val { border-left: 1px solid var(--border); justify-content: center; text-align: center; color: #f87171; }
.compare-gem-val {
  border-left: 1px solid var(--border);
  justify-content: center; text-align: center;
  color: #4ade80;
  background: rgba(74,222,128,0.04);
  font-weight: 600;
}
.compare-header .compare-gem { color: var(--gold); }

/* ======================== OLD COMPARE TABLE (vergleich page) ======================== */
table.compare-table-old { width: 100%; border-collapse: collapse; }
table.compare-table-old th {
  background: var(--bg-card);
  padding: 20px 24px;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  border-bottom: 2px solid var(--border-hover);
  color: var(--text-main);
}
table.compare-table-old th.featured {
  background: linear-gradient(135deg, rgba(27,67,50,0.5), rgba(212,175,55,0.1));
  color: var(--gold);
  border-bottom-color: var(--gold);
}
table.compare-table-old td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-muted);
  vertical-align: middle;
}
table.compare-table-old tr:last-child td { border-bottom: none; }
table.compare-table-old td.featured { background: rgba(212,175,55,0.04); }
.check { color: #4ade80; font-size: 1.1rem; }
.cross { color: #f87171; }
.star { color: var(--gold); }
.winner-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ======================== FAQ ======================== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--border-hover); }
.faq-q {
  width: 100%; text-align: left;
  background: var(--bg-card);
  border: none; cursor: pointer;
  padding: 20px 24px;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(212,175,55,0.05); }
.faq-icon { color: var(--gold); font-size: 1.3rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  background: rgba(27,67,50,0.08);
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 20px 24px; font-size: 0.93rem; color: var(--text-muted); line-height: 1.8; }

/* ======================== STICKY FOOTER ======================== */
.sticky-footer-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: linear-gradient(90deg, var(--primary) 0%, #0A1628 50%, #1a0a00 100%);
  border-top: 1px solid var(--gold);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.6);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
}
.sticky-footer-bar.visible { transform: translateY(0); }
.sticky-footer-text strong { color: var(--gold); }
.sticky-footer-text p { font-size: 0.88rem; color: rgba(245,240,232,0.8); }
.sticky-footer-text span { color: var(--gold); font-weight: 600; }
.sticky-footer-actions { display: flex; gap: 12px; flex-shrink: 0; align-items: center; }
.sticky-close {
  background: none; border: none; color: var(--text-muted);
  cursor: pointer; font-size: 1.2rem; padding: 4px 8px; border-radius: 4px;
  transition: color 0.2s;
}
.sticky-close:hover { color: var(--text-main); }

/* ======================== EXIT POPUP ======================== */
.exit-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.exit-overlay.active { opacity: 1; pointer-events: all; }
.exit-popup {
  background: var(--bg-card2);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 560px;
  width: calc(100% - 48px);
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 60px rgba(212,175,55,0.1);
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.4s;
}
.exit-overlay.active .exit-popup { transform: scale(1); }
.exit-popup-gem {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: block;
}
.exit-popup h2 {
  font-size: 1.8rem; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text-main), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.exit-popup p { margin-bottom: 28px; font-size: 0.95rem; }
.exit-popup-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.5rem; cursor: pointer;
  transition: color 0.2s;
}
.exit-popup-close:hover { color: var(--text-main); }
.exit-popup .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.exit-skip { font-size: 0.82rem; color: var(--text-muted); cursor: pointer; text-decoration: underline; }
.exit-skip:hover { color: var(--text-main); }

/* ======================== INLINE TALLY FORM ======================== */
.tally-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
}
.tally-container h2 { margin-bottom: 8px; }
.tally-container .section-desc { margin-bottom: 32px; }

/* ======================== BREADCRUMB ======================== */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--border-hover); }

/* Breadcrumbs alternative style */
.breadcrumbs {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.82rem; color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--border-hover); }

/* ======================== PAGE HERO (inner pages) ======================== */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top left, rgba(27,67,50,0.3) 0%, var(--bg-dark) 60%);
  border-bottom: 1px solid var(--border);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ======================== FEATURES / AVANTAGES ======================== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.feature-img img { width: 100%; height: 440px; object-fit: cover; display: block; }
.feature-img::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-hover);
  pointer-events: none;
}
.feature-content { display: flex; flex-direction: column; gap: 20px; }
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-list-item {
  display: flex; gap: 14px; align-items: flex-start;
}
.feature-list-item .icon {
  width: 36px; height: 36px;
  background: rgba(212,175,55,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
}
.feature-list-item p { font-size: 0.9rem; margin: 0; padding-top: 6px; }

/* ======================== STATS BAND ======================== */
.stats-band {
  background: linear-gradient(135deg, rgba(27,67,50,0.3), rgba(212,175,55,0.05));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.stats-band .grid-4 { align-items: center; }
.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item span { font-size: 0.88rem; color: var(--text-muted); }

/* ======================== TESTIMONIALS ======================== */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}
.testimonial-author strong { font-size: 0.9rem; color: var(--text-main); display: block; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ======================== FOOTER ======================== */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  margin-bottom: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand p { font-size: 0.9rem; margin: 16px 0 24px; max-width: 300px; }
.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-main); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; margin: 0; }
.footer-disclaimer {
  background: rgba(212,175,55,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 32px;
}
.footer-disclaimer p { font-size: 0.78rem; color: rgba(154,144,130,0.7); line-height: 1.6; }

/* ======================== REVEAL ANIMATIONS ======================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }
.reveal-on-scroll.delay-1 { transition-delay: 0.1s; }
.reveal-on-scroll.delay-2 { transition-delay: 0.2s; }
.reveal-on-scroll.delay-3 { transition-delay: 0.3s; }
.reveal-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ======================== MISC ======================== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
  margin: 0;
}
.tag {
  display: inline-block;
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.alert-box {
  background: rgba(27,67,50,0.3);
  border: 1px solid rgba(74,222,128,0.2);
  border-left: 4px solid #4ade80;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex; gap: 12px; align-items: flex-start;
}
.alert-box p { font-size: 0.88rem; margin: 0; color: rgba(245,240,232,0.8); }

/* ======================== BLOG STYLES ======================== */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.blog-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.blog-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.blog-card:hover::before { opacity: 1; }
.blog-card-top { display: flex; justify-content: space-between; align-items: center; }
.blog-card-tag {
  display: inline-block;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.blog-card-read { font-size: 0.78rem; color: var(--text-muted); }
.blog-card h3 {
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.4;
  margin: 0;
}
.blog-card h3 a { color: var(--text-main); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: 0.88rem; flex: 1; }
.blog-card-stats {
  background: rgba(27,67,50,0.2);
  border-radius: 8px;
  padding: 10px 14px;
}
.mini-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
}
.mini-stat span { font-size: 0.78rem; color: var(--text-muted); }
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.blog-read-more {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
}
.blog-read-more:hover { color: var(--gold-light); }

/* Blog Featured */
.blog-featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  align-items: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.blog-featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}
.blog-featured-content h2 { font-size: 1.8rem; margin-bottom: 12px; color: var(--text-main); }
.blog-featured-content h2 a { color: var(--text-main); }
.blog-featured-content h2 a:hover { color: var(--gold); }
.featured-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.feat-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
}
.feat-stat span { font-size: 0.8rem; color: var(--text-muted); }
.blog-featured-badge {
  text-align: center;
  padding: 32px;
  background: rgba(27,67,50,0.2);
  border: 1px solid rgba(27,67,50,0.5);
  border-radius: var(--radius);
}
.featured-gem-icon { font-size: 3rem; display: block; margin-bottom: 12px; }
.featured-big-stat {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.featured-big-label { font-size: 0.82rem; color: var(--text-muted); }
.blog-meta-item { display: flex; gap: 6px; align-items: center; font-size: 0.85rem; color: var(--text-muted); }

/* Filter pills */
.filter-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s;
}
.filter-pill:hover, .filter-pill.active {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* ======================== ARTICLE (BLOG POST) STYLES ======================== */
.art-hero-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 20px;
}
.art-hero-content h1 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--text-main); margin-bottom: 16px; }
.art-hero-content h1 em { color: var(--gold); font-style: normal; }
.art-intro { font-size: 1.05rem; color: rgba(245,240,232,0.8); line-height: 1.8; }
.art-stat-box {
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 12px;
  text-align: center;
}
.art-stat-box strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.art-stat-box span { font-size: 0.8rem; color: var(--text-muted); }

/* Article layout */
.art-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.art-main { min-width: 0; }
.art-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 40px;
}
.art-toc h3 { font-size: 1rem; margin-bottom: 16px; color: var(--gold); }
.art-toc ol { padding-left: 20px; }
.art-toc li { margin-bottom: 8px; }
.art-toc a { color: var(--text-muted); font-size: 0.9rem; }
.art-toc a:hover { color: var(--gold); }
.art-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.art-section:last-child { border-bottom: none; }
.art-section h2 { font-size: 1.6rem; margin-bottom: 20px; color: var(--text-main); }
.art-section h3 { font-size: 1.3rem; margin-bottom: 12px; }
.art-section p { font-size: 0.97rem; line-height: 1.9; margin-bottom: 16px; }

/* Sidebar */
.art-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.sidebar-cta {
  background: linear-gradient(135deg, rgba(27,67,50,0.4), rgba(212,175,55,0.08));
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.sidebar-cta .art-stat-gem { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.sidebar-cta h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--text-main); }
.sidebar-cta p { font-size: 0.88rem; }
.sidebar-sim {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.sidebar-sim h3 { font-size: 1rem; margin-bottom: 4px; color: var(--text-main); }
.sidebar-nav {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.sidebar-nav h3 { font-size: 1rem; margin-bottom: 16px; color: var(--gold); }
.sidebar-link {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--gold); }
.sidebar-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.sidebar-stat-row:last-child { border-bottom: none; }
.sidebar-stat-row strong { font-size: 0.9rem; }

/* ======================== STADT PAGE STYLES ======================== */
.gem-link-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  transition: all 0.25s;
}
.gem-link-card:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.06);
  transform: translateY(-2px);
  color: var(--text-main);
}
.gem-link-icon { font-size: 1.6rem; display: block; }
.gem-link-card strong { font-size: 0.9rem; color: var(--text-main); font-family: 'Playfair Display', serif; }
.gem-link-card span { font-size: 0.78rem; color: var(--gold); font-weight: 600; }

/* ======================== STADT GRID ======================== */
.stadt-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.stadt-pill {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
}
.stadt-pill:hover, .stadt-pill.active {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* ======================== MOBILE ======================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-row { gap: 48px; }
  .art-layout { grid-template-columns: 1fr; }
  .art-sidebar { position: static; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-badge { display: none; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .sim-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 24px; }
  .sticky-footer-bar { flex-direction: column; text-align: center; gap: 12px; }
  .art-hero-grid { grid-template-columns: 1fr; }
  nav { display: none; }
  nav.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: rgba(10,10,10,0.98);
    padding: 100px 32px 32px;
    z-index: 999;
    align-items: flex-start; gap: 8px;
  }
  nav.open a { font-size: 1.3rem; padding: 12px 0; }
  .hamburger { display: flex; z-index: 1001; }
  .tally-container { padding: 28px 20px; }
  .exit-popup { padding: 32px 24px; }
  .page-hero { padding: 120px 0 60px; }
  .compare-header, .compare-row { grid-template-columns: 1fr 1fr 1fr; }
  .compare-col { padding: 10px 12px; font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .simulator { padding: 24px 16px; }
  .blog-featured { padding: 28px 20px; }
}