/* =============================================================================
   Website-Analyse — Völkl Webdesign
   Editorial Consulting Report — Dark Luxury Aesthetic
   Responsive typography: all font-sizes use clamp(), min 16px (1rem)
   ============================================================================= */

/* --- Völkl Webdesign Brand Fonts --- */
@font-face {
  font-family: 'Eudoxus Sans';
  src: url('https://cdn.prod.website-files.com/6800e40be89e6290bab03f6f/68d543993e3e7ddb6ac9aa72_EudoxusSans-Light-BF659b6cb2036b5.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eudoxus Sans';
  src: url('https://cdn.prod.website-files.com/6800e40be89e6290bab03f6f/68d5428d09728958058e9d35_EudoxusSans-Bold-BF659b6cb1408e5.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eudoxus Sans';
  src: url('https://cdn.prod.website-files.com/6800e40be89e6290bab03f6f/68d5428d7a5b196cf2f45e5e_EudoxusSans-ExtraBold-BF659b6cb1b96c9.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('https://cdn.prod.website-files.com/6800e40be89e6290bab03f6f/68e61072e5f8b7e0c4512f82_montserrat-latin-300-normal.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('https://cdn.prod.website-files.com/6800e40be89e6290bab03f6f/68e610a236a630b0e0d790d4_montserrat-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('https://cdn.prod.website-files.com/6800e40be89e6290bab03f6f/68e610c1ad218fdbd59ae63f_montserrat-latin-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('https://cdn.prod.website-files.com/6800e40be89e6290bab03f6f/68e610e4599cc04ef8caf1a7_montserrat-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('https://cdn.prod.website-files.com/6800e40be89e6290bab03f6f/68e61106db0dc57ecde14648_montserrat-latin-800-normal.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Caveat';
  src: url('https://cdn.prod.website-files.com/6800e40be89e6290bab03f6f/696fde850680c8eb260f75e8_Caveat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --- Custom Properties (Völkl Webdesign CI) --- */
:root {
  /* Brand colors from voelkl-webdesign.de */
  --c-bg: #1A2829;
  --c-surface: #223536;
  --c-surface-2: #2A4243;
  --c-surface-3: #344E50;
  --c-border: rgba(245,235,225,0.08);
  --c-border-strong: rgba(245,235,225,0.16);
  --c-text: #F5EBE1;
  --c-text-muted: #D1DEE2;
  --c-text-dim: #91BBBE;
  --c-accent: #ED8762;
  --c-accent-light: #FAB791;
  --c-accent-glow: rgba(237,135,98,0.15);
  --c-green: #6DDF96;
  --c-green-dim: rgba(109,223,150,0.12);
  --c-yellow: #D4A94C;
  --c-yellow-dim: rgba(212,169,76,0.12);
  --c-red: #D45C5C;
  --c-red-dim: rgba(212,92,92,0.12);
  --c-white: #FFFFFF;
  --font-heading: 'Eudoxus Sans', Verdana, sans-serif;
  --font-sans: 'Montserrat', Verdana, sans-serif;
  --font-accent: 'Caveat', Georgia, sans-serif;
  --max-w: 1200px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: clamp(16px, calc(14px + 0.4vw), 20px);
  scrollbar-width: thin;
  scrollbar-color: var(--c-surface-3) var(--c-bg);
}

body {
  font-family: var(--font-sans);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--c-accent-light); }

::selection {
  background: var(--c-accent);
  color: var(--c-bg);
}

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Scroll Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger .reveal:nth-child(6) { transition-delay: 400ms; }

/* --- Grain Overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* =============================================================================
   HEADER
   ============================================================================= */
.site-header {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(12px);
  background: rgba(26,40,41,0.8);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header__title {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.9rem + 0.2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.site-header__logo {
  height: 56px;
  width: auto;
}

/* =============================================================================
   HERO
   ============================================================================= */
.hero {
  position: relative;
  padding: 100px 0 80px;
  text-align: center;
  overflow: hidden;
}

/* Radial glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(237,135,98,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Fine grid lines */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 60% 80% at center, black 20%, transparent 70%);
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.9rem + 0.2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 24px;
  padding: 6px 20px;
  border: 1px solid rgba(237,135,98,0.25);
  border-radius: 100px;
  background: rgba(237,135,98,0.06);
}

.hero__domain {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4rem + 2vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--c-white);
}

.hero__subtitle {
  font-size: clamp(1rem, 1rem + 0.2vw, 1.3rem);
  color: var(--c-text-muted);
  margin-bottom: 6px;
  font-weight: 300;
}

.hero__date {
  font-size: clamp(1rem, 0.9rem + 0.2vw, 1.1rem);
  color: var(--c-text-dim);
  margin-bottom: 64px;
}

/* --- Score Tiles --- */
.scores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.score-tile {
  position: relative;
  text-align: center;
  padding: 24px 8px 20px;
  border-radius: 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: transform 0.5s var(--ease-out), border-color 0.4s ease;
}
.score-tile:hover {
  transform: translateY(-6px);
  border-color: var(--c-border-strong);
}

.score-circle {
  position: relative;
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.score-circle svg {
  position: absolute;
  inset: 0;
  width: 88px;
  height: 88px;
  transform: rotate(-90deg);
}
.score-circle__bg {
  fill: none;
  stroke: var(--c-surface-3);
  stroke-width: 5;
}
.score-circle__fill {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  transition: stroke-dashoffset 2s var(--ease-out);
  /* no drop-shadow */
}

.score-circle__value {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.8rem);
  font-weight: 400;
}

.score-tile__label {
  font-size: clamp(1rem, 0.9rem + 0.2vw, 1.1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  margin-bottom: 4px;
}
.score-tile__rating {
  font-size: clamp(1rem, 0.9rem + 0.2vw, 1.05rem);
  color: var(--c-text-dim);
  font-weight: 400;
}

/* Score colors */
.score--green .score-circle__fill { stroke: var(--c-green); }
.score--green .score-circle__value { color: var(--c-green); }
.score--yellow .score-circle__fill { stroke: var(--c-yellow); }
.score--yellow .score-circle__value { color: var(--c-yellow); }
.score--red .score-circle__fill { stroke: var(--c-red); }
.score--red .score-circle__value { color: var(--c-red); }

/* Score tile equal heights */
.scores { align-items: stretch; }

/* =============================================================================
   STICKY NAV
   ============================================================================= */
.section-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26,40,41,0.85);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--c-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.section-nav__list {
  display: flex;
  list-style: none;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  gap: 0;
}
.section-nav__link {
  display: block;
  padding: 16px 18px;
  font-size: clamp(1rem, 0.9rem + 0.2vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-text-dim);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.section-nav__link:hover {
  color: var(--c-text);
  text-decoration: none;
}
.section-nav__link.active {
  color: var(--c-accent);
  border-bottom-color: var(--c-accent);
}

/* =============================================================================
   SECTIONS
   ============================================================================= */
.section {
  padding: 72px 0;
  position: relative;
}
.section--alt {
  background: var(--c-surface);
}

/* Decorative section divider */
.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border-strong), transparent);
}
.section--alt + .section::before,
.section + .section--alt::before {
  display: none;
}

.section-header {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.9rem + 0.2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  padding: 8px 20px;
  border: 1px solid rgba(237,135,98,0.2);
  border-radius: 6px;
  background: rgba(237,135,98,0.05);
  margin-bottom: 36px;
}

h2 {
  font-family: var(--font-heading);
  color: var(--c-white);
  font-size: clamp(1.4rem, 1.2rem + 0.8vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
  margin-top: 48px;
}
h2:first-of-type { margin-top: 0; }

h3 {
  font-family: var(--font-sans);
  color: var(--c-accent);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 28px;
}

p {
  margin-bottom: 14px;
  color: var(--c-text-muted);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.15rem);
  line-height: 1.75;
  font-weight: 300;
}

/* =============================================================================
   EXECUTIVE SUMMARY
   ============================================================================= */
.exec-bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.exec-bullets li {
  padding: 12px 0;
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.15rem);
  line-height: 1.65;
  color: var(--c-text-muted);
  font-weight: 300;
}
.exec-bullets li + li {
  border-top: 1px solid var(--c-border);
}
.exec-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
  transform: translateY(2px);
}
.exec-bullets li.bullet--red::before { background: var(--c-red); color: var(--c-red); }
.exec-bullets li.bullet--yellow::before { background: var(--c-yellow); color: var(--c-yellow); }
.exec-bullets li.bullet--green::before { background: var(--c-green); color: var(--c-green); }

/* =============================================================================
   BOXES
   ============================================================================= */
.info-box {
  background: var(--c-surface-2);
  border-left: 3px solid var(--c-accent);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 28px 0;
  position: relative;
  overflow: hidden;
}
.info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(237,135,98,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.info-box--yellow { border-left-color: var(--c-yellow); }
.info-box--green { border-left-color: var(--c-green); }
.info-box__title {
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 8px;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.15rem);
  letter-spacing: 0.01em;
  position: relative;
}
.info-box--yellow .info-box__title { color: var(--c-yellow); }
.info-box--green .info-box__title { color: var(--c-green); }
.info-box__text {
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.15rem);
  line-height: 1.7;
  color: var(--c-text-muted);
  margin: 0;
  position: relative;
  font-weight: 300;
}

.problem-box {
  display: flex;
  gap: 18px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-red-dim);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 18px 0;
  align-items: flex-start;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.problem-box:hover {
  border-color: rgba(212,92,92,0.25);
  box-shadow: 0 4px 24px rgba(212,92,92,0.06);
}
.problem-box__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--c-red);
  color: var(--c-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(212,92,92,0.3);
}
.problem-box__content { flex: 1; }
.problem-box__title {
  font-weight: 600;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.15rem);
  margin-bottom: 6px;
  color: var(--c-white);
}
.problem-box__text {
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  line-height: 1.65;
  color: var(--c-text-muted);
  margin: 0;
  font-weight: 300;
}

/* Recommendation boxes */
.rec-box {
  display: flex;
  gap: 20px;
  margin: 24px 0;
  align-items: flex-start;
  padding: 24px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  transition: border-color 0.4s ease, transform 0.4s var(--ease-out);
}
.rec-box:hover {
  border-color: var(--c-border-strong);
  transform: translateX(4px);
}
.rec-box__num {
  flex-shrink: 0;
  width: 48px;
  height: 56px;
  background: linear-gradient(135deg, var(--c-accent) 0%, #c96b4a 100%);
  color: var(--c-white);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 6px 20px rgba(237,135,98,0.25);
}
.rec-box__num-zero {
  font-size: clamp(1rem, 0.9rem + 0.2vw, 1.05rem);
  opacity: 0.6;
  font-weight: 400;
}
.rec-box__num-val {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 1.1rem + 0.5vw, 1.7rem);
  font-weight: 400;
}
.rec-box__content { flex: 1; }
.rec-box__title {
  font-weight: 600;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.15rem);
  margin-bottom: 6px;
  color: var(--c-white);
}
.rec-box__text {
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  line-height: 1.65;
  color: var(--c-text-muted);
  margin: 0;
  font-weight: 300;
}

/* =============================================================================
   TABLES
   ============================================================================= */
/* Scrollable table wrapper for mobile */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border-radius: 10px;
}

.data-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
}
.data-table thead th {
  background: var(--c-surface-3);
  color: var(--c-text-muted);
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  font-size: clamp(1rem, 0.9rem + 0.2vw, 1.1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--c-border-strong);
}
.data-table thead th:first-child {
  border-radius: 10px 0 0 0;
}
.data-table thead th:last-child {
  border-radius: 0 10px 0 0;
}
.data-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
  color: var(--c-text-muted);
  font-weight: 300;
}
.data-table tbody tr {
  transition: background 0.3s ease;
}
.data-table tbody tr:hover {
  background: rgba(255,255,255,0.02);
}
.data-table tbody tr td strong {
  color: var(--c-white);
  font-weight: 500;
}

/* Status badges */
.status {
  font-weight: 600;
  font-size: clamp(1rem, 0.9rem + 0.2vw, 1.1rem);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
  white-space: nowrap;
}
.status--green { color: var(--c-green); }
.status--yellow { color: var(--c-yellow); }
.status--red { color: var(--c-red); }
.status--green::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 6px var(--c-green);
}
.status--yellow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-yellow);
  box-shadow: 0 0 6px var(--c-yellow);
}
.status--red::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-red);
  box-shadow: 0 0 6px var(--c-red);
}

/* =============================================================================
   CONTENT CARDS
   ============================================================================= */
.content-card {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 24px;
  margin: 16px 0;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s var(--ease-out);
}
.content-card:hover {
  border-color: var(--c-border-strong);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}
.content-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.content-card__name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.3rem);
  color: var(--c-white);
}
.content-card__badge {
  font-size: clamp(1rem, 0.9rem + 0.2vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}
.content-card__badge--red {
  background: var(--c-red-dim);
  color: var(--c-red);
  border: 1px solid rgba(212,92,92,0.2);
}
.content-card__badge--yellow {
  background: var(--c-yellow-dim);
  color: var(--c-yellow);
  border: 1px solid rgba(212,169,76,0.2);
}
.content-card__badge--green {
  background: var(--c-green-dim);
  color: var(--c-green);
  border: 1px solid rgba(92,184,122,0.2);
}
.content-card__meta {
  font-size: clamp(1rem, 0.9rem + 0.2vw, 1.1rem);
  color: var(--c-text-dim);
  font-weight: 400;
}
.content-card__desc {
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.15rem);
  line-height: 1.65;
  margin: 0;
  color: var(--c-text-muted);
  font-weight: 300;
}

/* =============================================================================
   CHECKLIST
   ============================================================================= */
.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.checklist li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
  align-items: flex-start;
}
.checklist li:last-child { border-bottom: none; }
.checklist__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--c-green-dim);
  border: 1px solid rgba(92,184,122,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-green);
  font-size: 1rem;
  line-height: 1;
  margin-top: 2px;
}
.checklist__title {
  font-weight: 600;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.15rem);
  margin-bottom: 4px;
  color: var(--c-white);
}
.checklist__text {
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  color: var(--c-text-dim);
  line-height: 1.6;
  font-weight: 300;
}

/* =============================================================================
   COMPARE (Vorher / Nachher)
   ============================================================================= */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.compare__col {
  padding: 24px;
  border-radius: 14px;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.15rem);
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
  color: var(--c-text-muted);
}
.compare__col--before {
  background: rgba(212,92,92,0.04);
  border: 1px solid rgba(212,92,92,0.12);
}
.compare__col--after {
  background: rgba(92,184,122,0.04);
  border: 1px solid rgba(92,184,122,0.12);
}
.compare__label {
  font-weight: 600;
  font-size: clamp(1rem, 0.9rem + 0.2vw, 1.05rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-style: normal;
}
.compare__col--before .compare__label { color: var(--c-red); }
.compare__col--after .compare__label { color: var(--c-green); }

/* =============================================================================
   CTA SECTION
   ============================================================================= */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  background: var(--c-surface);
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(237,135,98,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-heading);
  color: var(--c-white);
  font-size: clamp(1.6rem, 1.4rem + 1vw, 2.4rem);
  margin-bottom: 12px;
  position: relative;
}
.cta-section p {
  color: var(--c-text-muted);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-section__name {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1rem + 0.3vw, 1.35rem);
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: 4px;
}
.cta-section__role {
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  color: var(--c-text-dim);
  margin-bottom: 32px;
  font-weight: 300;
}

.cta-btn {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-white);
  padding: 18px 48px;
  border-radius: 10px;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
  overflow: hidden;
}
.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(237,135,98,0.35);
  text-decoration: none;
  color: var(--c-white);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-text-dim);
  margin-top: 20px;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  transition: color 0.3s ease;
  position: relative;
}
.cta-secondary:hover {
  color: var(--c-accent);
  text-decoration: none;
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--c-border);
  text-align: center;
}
.site-footer p {
  font-size: clamp(1rem, 0.9rem + 0.2vw, 1.1rem);
  color: var(--c-text-dim);
  font-weight: 400;
  margin-bottom: 4px;
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 700px) {
  .site-header__logo {
    height: 36px;
  }
  .site-header__title {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
  .scores {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hero { padding: 64px 0 56px; }
  .section { padding: 48px 0; }
  .compare {
    grid-template-columns: 1fr;
  }
  .data-table thead th,
  .data-table tbody td {
    padding: 10px 10px;
  }
  .section-nav__link {
    padding: 14px 14px;
  }
  .rec-box, .problem-box {
    flex-direction: column;
    gap: 12px;
  }
  .container {
    padding: 0 20px;
  }
  .rec-box {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .scores {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .score-tile {
    padding: 18px 6px 16px;
  }
  .score-circle {
    width: 64px;
    height: 64px;
  }
  .score-circle svg {
    width: 64px;
    height: 64px;
  }
  .score-tile__label {
    font-size: 0.75rem;
  }
  .score-tile__rating {
    font-size: 0.75rem;
  }
  .container {
    padding: 0 16px;
  }
}
