/* ===================================================
   REICHSTE DEUTSCHE - Sahin Group Invest
   Rouge #CC0000 | Noir #1a1a1a | Blanc #FFFFFF
=================================================== */

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

:root {
  --red: #CC0000;
  --red-dark: #990000;
  --red-light: #ff1a1a;
  --black: #1a1a1a;
  --black-light: #333333;
  --gray: #666666;
  --gray-light: #999999;
  --gray-bg: #f5f5f5;
  --gray-border: #e5e5e5;
  --white: #ffffff;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.22s ease;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 72px;
}

a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.01em;
}

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.badge--red { background: #fff0f0; color: var(--red); }
.badge--black { background: var(--black); color: var(--white); }
.badge--gray { background: var(--gray-bg); color: var(--gray); }
.tag { display: inline-block; padding: 2px 8px; background: var(--gray-bg); color: var(--gray); font-size: 11px; border-radius: 2px; font-weight: 500; }

/* ===== REVEAL ON SCROLL ===== */
.reveal-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--black);
  white-space: nowrap;
}

.header-logo .logo-icon {
  background: var(--red);
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
}

.header-logo:hover { color: var(--red); }

.header-nav { display: flex; align-items: center; gap: 2px; }
.header-nav > a {
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.header-nav > a:hover, .header-nav > a.active { background: #fff0f0; color: var(--red); }

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}

.nav-drop-trigger {
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  cursor: pointer;
  display: block;
}

.nav-dropdown:hover .nav-drop-trigger,
.nav-dropdown.open .nav-drop-trigger { background: #fff0f0; color: var(--red); }

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  display: none;
  z-index: 2000;
}

.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown.open .nav-drop-menu { display: block; }

.nav-drop-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  border-radius: 4px;
  transition: background var(--transition);
}

.nav-drop-menu a:hover { background: var(--gray-bg); color: var(--red); }

.nav-drop-divider { height: 1px; background: var(--gray-border); margin: 6px 0; }

.header-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  white-space: nowrap;
}
.header-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

.burger { display: none; cursor: pointer; padding: 8px; background: none; border: none; }
.burger span { display: block; width: 22px; height: 2px; background: var(--black); margin: 5px 0; transition: all var(--transition); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.pexels.com/photos/20438975/pexels-photo-20438975.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--red); margin-bottom: 16px;
}

.hero-eyebrow::after { content: ''; display: block; width: 40px; height: 2px; background: var(--red); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--red); }

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stat { text-align: left; }
.hero-stat .stat-value {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 12px; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 600; margin-top: 2px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  font-size: 14px; font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--black-light); color: var(--white); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ===== TICKER BAND ===== */
.ticker-band {
  background: var(--red);
  padding: 8px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}

.ticker-item .up { color: #90ff90; }
.ticker-item .down { color: #ffaaaa; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTION HEADER ===== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
}

.section-title span { color: var(--red); }

.section-title .line {
  display: block;
  width: 48px; height: 4px;
  background: var(--red);
  margin-top: 8px;
}

/* ===== RANKING TABLE ===== */
.ranking-section { padding: 64px 0; }

.ranking-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-btn {
  padding: 7px 16px;
  font-size: 13px; font-weight: 600;
  border: 2px solid var(--gray-border);
  background: var(--white); color: var(--gray);
  border-radius: 3px; cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--red); background: var(--red); color: var(--white); }

.ranking-table-wrap { overflow-x: auto; }

.ranking-table {
  width: 100%;
  border-collapse: collapse;
}

.ranking-table th {
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  text-align: left;
  border: none;
  white-space: nowrap;
}

.ranking-table tbody tr {
  border-bottom: 1px solid var(--gray-border);
  transition: background var(--transition);
  cursor: pointer;
}

.ranking-table tbody tr:hover { background: #fff8f8; }

.ranking-table td {
  padding: 16px;
  font-size: 14px;
  color: var(--black);
  vertical-align: middle;
}

.rank-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-light);
  min-width: 36px;
}

.rank-num.top3 { color: var(--red); }

.person-cell { display: flex; align-items: center; gap: 12px; }

.person-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gray-bg);
  border: 2px solid var(--gray-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 16px; font-weight: 800;
  color: var(--black);
  flex-shrink: 0;
  overflow: hidden;
}

.person-info .person-name {
  font-size: 15px; font-weight: 700;
  color: var(--black);
}
.person-info .person-sector {
  font-size: 12px; color: var(--gray);
}

.vermoegen-cell {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--black);
  white-space: nowrap;
}

.change-cell {
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.change-cell.up { color: #00a854; }
.change-cell.down { color: var(--red); }

.mini-chart-cell { min-width: 90px; }

/* ===== FEATURED CARD ===== */
.featured-section { padding: 48px 0; background: var(--gray-bg); }

.featured-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; }

.featured-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  display: flex; flex-direction: column;
}
.featured-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.featured-card--large { flex-direction: row; }

.featured-card-img {
  width: 100%; height: 220px;
  object-fit: cover;
}
.featured-card--large .featured-card-img { width: 260px; height: 100%; flex-shrink: 0; }

.featured-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.featured-card-rank {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 900;
  color: rgba(204,0,0,0.08);
  line-height: 1;
  margin-bottom: -8px;
}

.featured-card-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 800;
  color: var(--black);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.featured-card-sub { font-size: 13px; color: var(--gray); margin-bottom: 16px; }

.featured-card-vermoegen {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.featured-card-vermoegen-label { font-size: 12px; color: var(--gray); text-transform: uppercase; font-weight: 600; letter-spacing: 0.08em; }

.featured-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }

.featured-card-cta {
  margin-top: auto;
  padding-top: 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--red);
  border-top: 1px solid var(--gray-border);
}

/* ===== PROFIL PAGE ===== */
.profil-hero {
  background: var(--black);
  padding: 48px 0 0;
  position: relative;
  overflow: hidden;
}

.profil-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.pexels.com/photos/36685848/pexels-photo-36685848.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200');
  background-size: cover; background-position: center;
  opacity: 0.1;
}

.profil-hero-content { position: relative; z-index: 2; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: 0.3; }

.profil-top { display: flex; gap: 32px; align-items: flex-start; padding-bottom: 40px; }

.profil-avatar-wrap {
  flex-shrink: 0;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--black-light);
  border: 3px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 36px; font-weight: 900;
  color: var(--white);
}

.profil-meta h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.profil-meta-row {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  margin-bottom: 16px;
}

.profil-meta-item { font-size: 13px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; }

.profil-vermoegen-bar {
  background: var(--black-light);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.profil-stats-bar {
  display: flex; gap: 0;
}

.profil-stat {
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.profil-stat:last-child { border-right: none; }

.profil-stat-value {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.profil-stat-value.red { color: var(--red); }

.profil-stat-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* ===== CONTENT GRID ===== */
.profil-content { padding: 48px 0; }
.profil-grid { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.profil-main > * + * { margin-top: 32px; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.card-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-border);
  display: flex; align-items: center; gap: 10px;
}

.card-title::before {
  content: '';
  display: block;
  width: 4px; height: 20px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ===== CHART ===== */
.chart-container { position: relative; width: 100%; }

canvas { max-width: 100%; }

/* ===== ALLOCATION ===== */
.allocation-list { display: flex; flex-direction: column; gap: 12px; }

.allocation-item { display: flex; align-items: center; gap: 12px; }

.allocation-label { font-size: 13px; font-weight: 600; color: var(--black); min-width: 80px; }

.allocation-bar-wrap { flex: 1; height: 8px; background: var(--gray-bg); border-radius: 4px; overflow: hidden; }

.allocation-bar { height: 100%; border-radius: 4px; transition: width 1s ease; }
.bar-red { background: var(--red); }
.bar-black { background: var(--black); }
.bar-gray { background: var(--gray); }
.bar-orange { background: #ff6600; }
.bar-blue { background: #0055cc; }

.allocation-pct { font-size: 13px; font-weight: 700; color: var(--black); min-width: 40px; text-align: right; }

/* ===== INVESTITIONEN LIST ===== */
.inv-list { display: flex; flex-direction: column; gap: 10px; }

.inv-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--gray-bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
  font-size: 14px; font-weight: 500;
}

.inv-item-icon { font-size: 18px; }

/* ===== SIMULATEURS PAGE ===== */
.simulateurs-hero {
  background: var(--black);
  padding: 64px 0;
  text-align: center;
}

.simulateurs-hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
}
.simulateurs-hero h1 span { color: var(--red); }
.simulateurs-hero p { color: rgba(255,255,255,0.65); font-size: 17px; margin-top: 16px; }

.sim-tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--gray-border);
  overflow-x: auto;
  margin-bottom: 32px;
}

.sim-tab {
  padding: 14px 24px;
  font-size: 14px; font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--transition);
  background: none;
  border-top: none; border-left: none; border-right: none;
  font-family: var(--font-main);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.sim-tab:hover { color: var(--red); }
.sim-tab.active { color: var(--red); border-bottom-color: var(--red); }

.sim-panel { display: none; }
.sim-panel.active { display: block; }

.sim-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.sim-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 13px; font-weight: 700;
  color: var(--black); text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input, .form-select {
  padding: 12px 16px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--red);
}

.range-wrap { display: flex; align-items: center; gap: 12px; }
input[type=range] {
  flex: 1;
  -webkit-appearance: none;
  height: 4px;
  background: var(--gray-border);
  border-radius: 2px;
  outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  background: var(--red);
  border-radius: 50%;
  cursor: pointer;
}
.range-val {
  font-size: 14px; font-weight: 700; color: var(--red);
  min-width: 80px; text-align: right;
}

.sim-results {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}

.sim-result-main {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sim-result-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); }

.sim-result-value {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px); font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin: 8px 0;
}

.sim-result-sub { font-size: 14px; color: rgba(255,255,255,0.55); }

.sim-result-breakdown { display: flex; flex-direction: column; gap: 8px; }

.sim-breakdown-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}

.sim-breakdown-item .label { color: rgba(255,255,255,0.55); }
.sim-breakdown-item .value { color: var(--white); font-weight: 700; }
.sim-breakdown-item .value.positive { color: #00d084; }

.sim-cta {
  background: var(--red);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.sim-cta p { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 10px; }
.sim-cta a { display: inline-block; padding: 10px 20px; background: var(--white); color: var(--red); font-weight: 700; font-size: 13px; border-radius: var(--radius); text-transform: uppercase; }
.sim-cta a:hover { background: #fff0f0; }

/* ===== COMPARATEUR ===== */
.comparateur-section { padding: 64px 0; }

.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.compare-card {
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition);
}

.compare-card:hover, .compare-card.selected { border-color: var(--red); }

.compare-select-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 12px; }

.compare-person-display { text-align: center; padding: 20px 0; }

.compare-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gray-bg);
  border: 3px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 26px; font-weight: 900;
  color: var(--black);
  margin: 0 auto 12px;
}

.compare-person-name { font-family: var(--font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; }
.compare-person-val { font-size: 28px; font-weight: 800; color: var(--red); font-family: var(--font-display); }

.compare-results-table { width: 100%; border-collapse: collapse; margin-top: 24px; }

.compare-results-table th {
  background: var(--black);
  color: var(--white);
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
}
.compare-results-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-border);
  font-size: 14px;
}
.compare-results-table .winner { color: var(--red); font-weight: 700; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 64px 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.contact-info h2 {
  font-size: 40px; font-weight: 800; text-transform: uppercase;
  color: var(--black); margin-bottom: 16px;
}

.contact-info p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 24px; }

.contact-reasons { display: flex; flex-direction: column; gap: 12px; }

.contact-reason {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px;
  background: var(--gray-bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
}

.contact-reason-icon { font-size: 20px; flex-shrink: 0; }
.contact-reason-title { font-size: 14px; font-weight: 700; color: var(--black); }
.contact-reason-text { font-size: 13px; color: var(--gray); }

.tally-embed-wrap {
  background: var(--white);
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 500px;
}

/* ===== STICKY FOOTER CTA ===== */
.sticky-footer-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--black);
  border-top: 3px solid var(--red);
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

.sticky-footer-text { font-size: 14px; font-weight: 600; color: var(--white); }
.sticky-footer-text strong { color: var(--red); }
.sticky-footer-sub { font-size: 12px; color: rgba(255,255,255,0.55); }
.sticky-footer-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.sticky-close { background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer; font-size: 20px; padding: 4px; transition: color var(--transition); }
.sticky-close:hover { color: var(--white); }

/* ===== EXIT POPUP ===== */
.exit-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.exit-overlay.show { opacity: 1; pointer-events: all; }

.exit-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px; width: calc(100% - 40px);
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.3s ease;
  position: relative;
}

.exit-overlay.show .exit-popup { transform: scale(1); }

.exit-popup-header {
  background: var(--black);
  padding: 32px 32px 24px;
  position: relative;
}

.exit-popup-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--red); margin-bottom: 8px; }
.exit-popup-header h2 { font-size: 28px; font-weight: 900; color: var(--white); text-transform: uppercase; }
.exit-popup-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.1); border: none; color: var(--white); cursor: pointer; width: 32px; height: 32px; border-radius: 50%; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.exit-popup-close:hover { background: rgba(255,255,255,0.2); }

.exit-popup-body { padding: 28px 32px; }
.exit-popup-body p { color: var(--gray); font-size: 15px; margin-bottom: 20px; line-height: 1.7; }

.exit-popup-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.exit-feature { font-size: 14px; color: var(--black); font-weight: 500; padding: 6px 0; }

.exit-popup-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.exit-popup-cta a { flex: 1; text-align: center; padding: 14px; font-weight: 700; font-size: 14px; border-radius: var(--radius); min-width: 120px; }
.exit-cta-main { background: var(--red); color: var(--white) !important; }
.exit-cta-main:hover { background: var(--red-dark); color: var(--white) !important; }
.exit-cta-sec { background: var(--gray-bg); color: var(--black) !important; }
.exit-cta-sec:hover { background: var(--gray-border); color: var(--black) !important; }
.exit-cta-dismiss { background: transparent; color: var(--gray-light) !important; font-size: 12px !important; padding: 10px !important; }

/* ===== FOOTER ===== */
.site-footer { background: var(--black); color: rgba(255,255,255,0.65); padding: 56px 0 0; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }

.footer-brand { }
.footer-brand .logo { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.footer-brand .logo span { color: var(--red); }
.footer-brand p { font-size: 13px; line-height: 1.8; }

.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}

.footer-bottom p { font-size: 12px; }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.3); max-width: 500px; text-align: right; }

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 0;
  background: var(--white);
}

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.about-content h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 900; text-transform: uppercase; margin-bottom: 20px; }
.about-content h2 span { color: var(--red); }
.about-content p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }

.about-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.about-number { border-left: 3px solid var(--red); padding-left: 16px; }
.about-number .num { font-family: var(--font-display); font-size: 40px; font-weight: 900; color: var(--black); line-height: 1; }
.about-number .lbl { font-size: 12px; color: var(--gray); text-transform: uppercase; font-weight: 600; letter-spacing: 0.06em; }

.about-image { position: relative; }
.about-image img { border-radius: var(--radius-lg); width: 100%; height: 400px; object-fit: cover; }
.about-image-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--red);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
}
.about-image-badge .big { font-family: var(--font-display); font-size: 36px; font-weight: 900; line-height: 1; }
.about-image-badge .sm { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* ===== SEARCH ===== */
.search-bar-wrap {
  background: var(--white);
  border: 2px solid var(--gray-border);
  border-radius: var(--radius);
  display: flex; align-items: center;
  overflow: hidden;
  max-width: 500px;
}

.search-bar-wrap input {
  border: none;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-main);
  flex: 1;
  outline: none;
  color: var(--black);
}

.search-bar-wrap button {
  background: var(--red);
  border: none;
  padding: 12px 16px;
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
  transition: background var(--transition);
}

.search-bar-wrap button:hover { background: var(--red-dark); }

/* ===== PAGE LEGAL ===== */
.legal-content { padding: 64px 0; max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-size: 40px; margin-bottom: 32px; text-transform: uppercase; }
.legal-content h2 { font-size: 22px; margin-top: 32px; margin-bottom: 12px; }
.legal-content p, .legal-content li { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 8px; }
.legal-content ul { padding-left: 20px; }

/* ===== PULSE ANIMATION ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ===== WIKI LINK ===== */
.wiki-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #f0f9ff;
  color: #0284c7;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition);
}
.wiki-link:hover { background: #e0f2fe; color: #0369a1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .featured-card--large { flex-direction: column; }
  .featured-card--large .featured-card-img { width: 100%; height: 220px; }
  .profil-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sim-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { padding-bottom: 80px; }
  .header-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    padding: 12px;
    border-top: 1px solid var(--gray-border);
    border-bottom: 3px solid var(--red);
    box-shadow: var(--shadow-md);
    z-index: 999;
    gap: 4px;
    max-height: 80vh;
    overflow-y: auto;
  }
  .header-nav.open { display: flex; }
  .nav-drop-menu { position: static; box-shadow: none; border: none; background: var(--gray-bg); margin-top: 4px; display: block; }
  .burger { display: flex; flex-direction: column; justify-content: center; }
  .header-inner { position: relative; }
  .hero-content { padding: 48px 0; }
  .hero-stats { gap: 20px; }
  .hero-stat .stat-value { font-size: 28px; }
  .ranking-table thead { display: none; }
  .ranking-table tbody tr { display: flex; flex-wrap: wrap; padding: 12px 16px; gap: 8px; }
  .ranking-table td { padding: 4px 0; border: none; }
  .ranking-table td[data-hide-mobile] { display: none; }
  .featured-grid { grid-template-columns: 1fr; }
  .about-image-badge { bottom: 10px; right: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .profil-top { flex-direction: column; }
  .profil-stats-bar { flex-wrap: wrap; }
  .profil-stat { min-width: 50%; }
  .sticky-footer-text .hide-mobile { display: none; }
  .sticky-footer-cta { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .exit-popup-cta { flex-direction: column; }
  .profil-stat { min-width: 100%; }
  .profil-stats-bar { overflow-x: auto; flex-wrap: nowrap; }
}