/* ============================================================
   ABOFINDER.AT – Haupt-Stylesheet
   Premium Sport-Streaming Vergleichsportal Österreich
   ============================================================ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --clr-bg: #ffffff;
  --clr-bg-alt: #f7f8fa;
  --clr-bg-dark: #0a0e1a;
  --clr-surface: #ffffff;
  --clr-border: #e8eaed;

  --clr-accent: #c8ff00;
  --clr-accent-dark: #a8d900;
  --clr-accent-glow: rgba(200, 255, 0, 0.25);

  --clr-text: #0a0e1a;
  --clr-text-muted: #6b7280;
  --clr-text-light: #9ca3af;

  --clr-primary: #0a0e1a;
  --clr-card-bg: #ffffff;
  --clr-card-border: #e8eaed;
  --clr-card-shadow: rgba(10,14,26,0.08);

  --clr-highlight: #0a0e1a;
  --clr-highlight-text: #ffffff;

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-accent: 0 8px 32px rgba(200,255,0,0.3);

  --transition: 0.22s ease;
  --transition-slow: 0.4s ease;

  --max-width: 1200px;
  --header-h: 72px;
}

/* ── Dark Mode ───────────────────────────────────────────────── */
[data-theme="dark"] {
  --clr-bg: #0a0e1a;
  --clr-bg-alt: #111827;
  --clr-surface: #111827;
  --clr-border: #1f2937;
  --clr-text: #f9fafb;
  --clr-text-muted: #9ca3af;
  --clr-text-light: #6b7280;
  --clr-card-bg: #111827;
  --clr-card-border: #1f2937;
  --clr-card-shadow: rgba(0,0,0,0.4);
  --clr-highlight: #c8ff00;
  --clr-highlight-text: #0a0e1a;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  min-height: 100vh;
  transition: background var(--transition-slow), color var(--transition-slow);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--clr-bg-alt); }
::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-text-muted); }

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }
p { font-size: 1rem; }

/* ── Layout Utilities ────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section--alt { background: var(--clr-bg-alt); }

/* ── HEADER ──────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition), background var(--transition-slow);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--clr-text);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg { width: 20px; height: 20px; fill: var(--clr-accent); }
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--clr-accent); }

.header-nav { display: flex; align-items: center; gap: 0.25rem; }
.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.header-nav a:hover { color: var(--clr-text); background: var(--clr-bg-alt); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn-dark-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition), border-color var(--transition);
}
.btn-dark-toggle:hover { background: var(--clr-border); }

.btn-cta-small {
  padding: 0.55rem 1.1rem;
  background: var(--clr-text);
  color: var(--clr-bg);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity var(--transition), transform var(--transition);
}
.btn-cta-small:hover { opacity: 0.85; transform: translateY(-1px); }

.burger {
  display: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-sm);
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO SECTION ────────────────────────────────────────────── */
.hero {
  background: var(--clr-bg-dark);
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% -10%, rgba(200,255,0,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 5% 80%, rgba(200,255,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200,255,0,0.15);
  border: 1px solid rgba(200,255,0,0.3);
  color: var(--clr-accent);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.hero h1 .accent { color: var(--clr-accent); }

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 500px;
}

.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  background: var(--clr-accent);
  color: #0a0e1a;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,255,0,0.45);
  background: #d4ff33;
}
.btn-primary svg { width: 18px; height: 18px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), border-color var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.35); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; }

.hero-card-stack { position: relative; width: 100%; max-width: 380px; }

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}
.hero-card + .hero-card {
  margin-top: 0.85rem;
  opacity: 0.65;
  transform: scale(0.97);
}
.hero-card + .hero-card + .hero-card {
  margin-top: 0.5rem;
  opacity: 0.35;
  transform: scale(0.94);
}

.hcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}
.hcard-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}
.hcard-badge {
  background: var(--clr-accent);
  color: #0a0e1a;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
}
.hcard-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.hcard-price span { font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.5); }
.hcard-sports {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}
.hcard-sport-tag {
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  color: rgba(255,255,255,0.7);
}

/* ── FINDER TOOL SECTION ─────────────────────────────────────── */
.finder-section { padding: 4rem 0; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--clr-accent);
  color: #0a0e1a;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--clr-text-muted); max-width: 520px; margin: 0 auto; }

/* Filter UI */
.filter-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
}

.filter-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 0.85rem;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1.5px solid var(--clr-border);
  background: var(--clr-bg);
  color: var(--clr-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}
.chip:hover {
  border-color: var(--clr-accent);
  color: var(--clr-text);
  background: var(--clr-accent-glow);
}
.chip.active {
  background: var(--clr-text);
  border-color: var(--clr-text);
  color: var(--clr-bg);
}
[data-theme="dark"] .chip.active {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #0a0e1a;
}
.chip-icon { font-size: 1rem; }

.filter-search-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.search-wrapper {
  position: relative;
  flex: 1;
  min-width: 220px;
}
.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-text-muted);
  pointer-events: none;
  font-size: 1rem;
}
.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.search-input:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px var(--clr-accent-glow);
}
.search-input::placeholder { color: var(--clr-text-light); }

.btn-reset-filter {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--clr-border);
  background: var(--clr-bg);
  color: var(--clr-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-reset-filter:hover { border-color: var(--clr-text); color: var(--clr-text); }

/* Result count */
.results-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.results-count { font-size: 0.9rem; color: var(--clr-text-muted); }
.results-count strong { color: var(--clr-text); font-weight: 600; }

.sort-select {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 0.85rem;
}
.sort-select:focus { outline: none; border-color: var(--clr-accent); }

/* ── PROVIDER CARDS GRID ─────────────────────────────────────── */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.provider-card {
  background: var(--clr-card-bg);
  border: 1.5px solid var(--clr-card-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.provider-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-accent);
}
.provider-card.highlight {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 1px var(--clr-accent), var(--shadow-md);
}
.provider-card.highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clr-accent);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.card-highlight-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--clr-accent);
  color: #0a0e1a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.card-logo-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
}

.card-info { flex: 1; min-width: 0; }
.card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.card-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}
.stars { color: #f59e0b; font-size: 0.8rem; }

.card-price-block { margin-bottom: 1.25rem; }
.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
}
.price-currency { font-size: 1.1rem; font-weight: 600; }
.price-period { font-size: 0.85rem; color: var(--clr-text-muted); margin-left: 0.1rem; }
.price-free { color: #22c55e; font-size: 0.9rem; font-weight: 600; margin-top: 0.25rem; }

.price-trial {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: #22c55e;
  font-weight: 500;
}
.price-trial::before { content: '✓'; }

.card-divider {
  height: 1px;
  background: var(--clr-border);
  margin: 1rem 0;
}

.card-features-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
  margin-bottom: 0.6rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  background: var(--clr-bg-alt);
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
}
.tag.match {
  background: rgba(200,255,0,0.15);
  border-color: rgba(200,255,0,0.4);
  color: var(--clr-text);
}
[data-theme="dark"] .tag.match { color: var(--clr-accent); }

.card-competitions {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}
.card-competitions strong { color: var(--clr-text); font-weight: 600; }

.card-meta-row {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}
.card-meta-item { display: flex; align-items: center; gap: 0.3rem; }

.btn-card-cta {
  width: 100%;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  background: var(--clr-text);
  color: var(--clr-bg);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
}
.btn-card-cta:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-card-cta.free {
  background: #22c55e;
  color: #fff;
}
[data-theme="dark"] .btn-card-cta {
  background: var(--clr-accent);
  color: #0a0e1a;
}

/* No results */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--clr-text-muted);
  display: none;
}
.no-results.visible { display: block; }
.no-results-icon { font-size: 3rem; margin-bottom: 1rem; }
.no-results h3 { color: var(--clr-text); margin-bottom: 0.5rem; }

/* ── COMPARISON TABLE SECTION ────────────────────────────────── */
.compare-section { padding: 4rem 0; }

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  background: var(--clr-surface);
}
.compare-table th {
  background: var(--clr-bg-alt);
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
  border-bottom: 1px solid var(--clr-border);
  white-space: nowrap;
}
.compare-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.9rem;
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--clr-bg-alt); }
.check-yes { color: #22c55e; font-size: 1.1rem; }
.check-no { color: var(--clr-text-light); font-size: 1rem; }
.table-provider-name { font-weight: 600; }
.table-price-cell {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--clr-text);
}

/* ── SEO TEXT SECTION ────────────────────────────────────────── */
.seo-section { padding: 5rem 0; }
.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}
.seo-block {}
.seo-block h3 { margin-bottom: 1rem; }
.seo-block p { color: var(--clr-text-muted); line-height: 1.8; }
.seo-block p + p { margin-top: 0.75rem; }

/* ── FAQ SECTION ─────────────────────────────────────────────── */
.faq-section { padding: 5rem 0; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 0;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--clr-surface);
  box-shadow: var(--shadow-sm);
}

.faq-item {
  border-bottom: 1px solid var(--clr-border);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-text);
  background: none;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--clr-bg-alt); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #0a0e1a;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
}

/* ── ABOUT SECTION ───────────────────────────────────────────── */
.about-section {
  background: var(--clr-bg-dark);
  color: #fff;
  padding: 5rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200,255,0,0.12);
  border: 1px solid rgba(200,255,0,0.25);
  color: var(--clr-accent);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.about-section h2 { color: #fff; margin-bottom: 1rem; }
.about-text { color: rgba(255,255,255,0.65); line-height: 1.8; }
.about-text + .about-text { margin-top: 0.85rem; }

.trust-items { display: flex; flex-direction: column; gap: 1.25rem; }
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.trust-icon {
  width: 42px;
  height: 42px;
  background: rgba(200,255,0,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.trust-title { font-weight: 600; font-size: 0.95rem; color: #fff; margin-bottom: 0.2rem; }
.trust-desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; }

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom a { color: var(--clr-accent); }

.consent-link-footer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.consent-link-footer:hover { color: rgba(255,255,255,0.7); }

/* ── LEGAL PAGES ─────────────────────────────────────────────── */
.legal-page { padding: 5rem 0; }
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h1 { margin-bottom: 0.5rem; }
.legal-date { color: var(--clr-text-muted); font-size: 0.875rem; margin-bottom: 2.5rem; }
.legal-content h2 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.legal-content p, .legal-content ul { color: var(--clr-text-muted); line-height: 1.8; margin-bottom: 0.75rem; }
.legal-content ul { padding-left: 1.5rem; list-style: disc; }
.legal-content li { margin-bottom: 0.4rem; }
.legal-content a { color: var(--clr-text); text-decoration: underline; }

/* ── COOKIE CONSENT BANNER ───────────────────────────────────── */
#consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 1rem 1rem;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
#consent-banner.consent-visible {
  transform: translateY(0);
  pointer-events: all;
}
#consent-banner.consent-hiding {
  transform: translateY(110%);
  pointer-events: none;
}

.consent-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 -4px 6px rgba(0,0,0,0.04), 0 20px 60px rgba(0,0,0,0.18);
  border: 1px solid var(--clr-border);
  overflow: hidden;
}
[data-theme="dark"] .consent-inner { background: #111827; border-color: #1f2937; }

.consent-content {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem 0;
}
.consent-icon { font-size: 1.75rem; flex-shrink: 0; line-height: 1; margin-top: 0.2rem; }
.consent-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 0.35rem; }
.consent-desc { font-size: 0.85rem; color: var(--clr-text-muted); line-height: 1.6; }
.consent-link { color: var(--clr-text); text-decoration: underline; }
.consent-link:hover { opacity: 0.7; }

.consent-details { margin-top: 1rem; }
.consent-category {
  padding: 0.85rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.6rem;
}
.consent-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  margin-bottom: 0.3rem;
}
.consent-toggle input[type="checkbox"] { display: none; }
.toggle-slider {
  width: 38px;
  height: 22px;
  background: var(--clr-border);
  border-radius: 100px;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s;
}
.toggle-slider::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.consent-toggle input:checked + .toggle-slider { background: var(--clr-accent); }
.consent-toggle input:checked + .toggle-slider::after { transform: translateX(16px); }
.consent-toggle input:disabled + .toggle-slider { background: #22c55e; opacity: 0.7; }
.category-name { font-size: 0.875rem; font-weight: 600; }
.category-desc { font-size: 0.78rem; color: var(--clr-text-muted); }

.consent-actions {
  display: flex;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.consent-save-row { padding: 0 1.5rem 1rem; display: flex; justify-content: flex-end; }

.consent-btn {
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.consent-btn-settings {
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  background: transparent;
  margin-right: auto;
}
.consent-btn-settings:hover { border-color: var(--clr-text); color: var(--clr-text); }
.consent-btn-necessary {
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  background: transparent;
}
.consent-btn-necessary:hover { background: var(--clr-bg-alt); }
.consent-btn-accept {
  background: var(--clr-text);
  color: var(--clr-bg);
}
.consent-btn-accept:hover { opacity: 0.85; }
[data-theme="dark"] .consent-btn-accept {
  background: var(--clr-accent);
  color: #0a0e1a;
}
.consent-btn-save {
  background: #22c55e;
  color: white;
}
.consent-btn-save:hover { opacity: 0.9; }

/* ── MOBILE NAVIGATION ───────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-nav.open { pointer-events: all; opacity: 1; }
.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--clr-surface);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 1rem;
  color: var(--clr-text);
  transition: background var(--transition);
}
.mobile-nav a:hover { background: var(--clr-bg-alt); }
.mobile-nav-close {
  margin-left: auto;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--clr-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}
.animate-in:nth-child(1) { animation-delay: 0s; }
.animate-in:nth-child(2) { animation-delay: 0.08s; }
.animate-in:nth-child(3) { animation-delay: 0.16s; }
.animate-in:nth-child(4) { animation-delay: 0.24s; }
.animate-in:nth-child(5) { animation-delay: 0.32s; }
.animate-in:nth-child(6) { animation-delay: 0.40s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .header-nav { display: none; }
  .btn-cta-small { display: none; }
  .burger { display: flex; }

  .hero { padding: 4rem 0 3rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }

  .filter-card { padding: 1.25rem; border-radius: var(--radius-lg); }

  .providers-grid { grid-template-columns: 1fr; }

  .faq-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .consent-content { flex-direction: column; }
  .consent-actions { justify-content: stretch; }
  .consent-btn { flex: 1; text-align: center; }
  .consent-btn-settings { flex: none; margin-right: 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-cta-group { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .filter-chips { gap: 0.35rem; }
  .chip { font-size: 0.8rem; padding: 0.4rem 0.75rem; }
}

/* ── PRINT ───────────────────────────────────────────────────── */
@media print {
  .site-header, .cookie-banner, .hero-cta-group { display: none !important; }
}
