/* Shared template CSS (aus home.css abgeleitet) */
:root{
  --bg: #ffffff;
  --ink: #0B2A57;
  --ink2: #173B6C;
  --muted: #6A7B93;
  --line: #E6ECF4;
  --accent-rgb: 27 102 201;
  --accent2-rgb: 67 181 232;
  --accent: rgb(var(--accent-rgb));
  --accent2: rgb(var(--accent2-rgb));
  --hero: #0A2B55;
  --hero2: #062244;
  --shadow: 0 18px 40px rgba(16, 40, 80, 0.10);
  --radius: 6px;
  --container: 1160px;
}

*{ box-sizing:border-box; }
html{
  height:100%;
  scroll-behavior: smooth;
}
body{
  height:100%;
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

/* Scroll-Snap für Sections */
.hero, .kpis, .section, .banner, .section--dark {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Fixed Header */
.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Counter Animation */
.kpiCard__value {
  transition: transform 0.4s ease;
}
.kpiCard.visible .kpiCard__value {
  animation: countPop 0.5s ease forwards;
}
@keyframes countPop {
  0% { transform: scale(0.8); opacity: 0; }
  60% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

/* Section Navigation */
.sectionNav {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 1000;
}
.sectionNav__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(11,42,87,0.15);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transition: all 0.2s ease;
}
.sectionNav__btn:hover {
  background: rgb(var(--accent-rgb));
  border-color: rgb(var(--accent-rgb));
  transform: scale(1.08);
}
.sectionNav__btn:hover svg {
  stroke: #fff;
}
.sectionNav__btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--ink);
  stroke-width: 2;
  fill: none;
}

.container{
  width:min(var(--container), calc(100% - 56px));
  margin:0 auto;
}

.skip{
  position:absolute;
  left:-999px;
  top:10px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius: 10px;
  z-index:9999;
}
.skip:focus{ left:10px; }

/* Header */
.siteHeader{
  background:#fff;
  border-bottom: 1px solid var(--line);
}
.siteHeader__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}
.brand__logo{
  width: 120px;
  height: 18px;
  background: linear-gradient(90deg, rgb(var(--accent-rgb) / 0.95), rgba(11,42,87,0.22));
  border-radius: 4px;
}
.brand__img{
  height: 36px;
  width: auto;
  max-width: 320px;
  display:block;
}

.brand{
  display:flex;
  align-items:center;
  min-height: 40px;
  text-decoration: none;
}
.nav{ display:flex; gap: 18px; align-items:center; }
.nav__link--home{
  background: rgba(11,42,87,0.08);
  padding: 8px 14px;
  border-radius: 6px;
  margin-right: 8px;
}
.nav__link--home:hover{
  background: rgba(11,42,87,0.12);
}
.nav__link{
  text-decoration:none;
  color: rgba(11,42,87,0.75);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 2px;
}
.nav__link::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: rgb(var(--accent-rgb) / 0.85);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 160ms ease;
}
.nav__link:hover{ color: rgb(var(--accent-rgb) / 0.95); }
.nav__link:hover::after{ transform: scaleX(1); }

/* Hero */
.hero{
  position:relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--hero), var(--hero2));
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero__media{
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0)),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.06), rgba(255,255,255,0.06) 2px, transparent 2px, transparent 12px);
  opacity:0.55;
  transform: scale(1.05);
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 360px at 25% 40%, rgb(var(--accent2-rgb) / 0.20), transparent 60%),
    radial-gradient(700px 300px at 70% 25%, rgb(var(--accent-rgb) / 0.22), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.35));
}
.hero__inner{
  position:relative;
  padding: 58px 0 48px;
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
}
.hero__copy{ max-width: 620px; }
.hero__subtitle{
  margin: 0 0 16px;
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__kicker{
  margin:0;
  color: rgba(255,255,255,0.92);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.hero__title{
  margin: 0;
  color: rgba(255,255,255,1);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero__badge{
  margin-top: 6px;
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

/* KPI Section */
.kpis{
  min-height: 100vh;
  padding: 34px 0 14px;
  background: #fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.sectionHead__title{
  margin:0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(var(--accent-rgb) / 0.70);
}
.kpiGrid{
  display:grid;
  grid-template-columns: 140px repeat(3, minmax(0, 1fr)) 140px;
  gap: 14px;
  align-items: stretch;
}
.kpiCard{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 14px 12px;
  position: relative;
}
.kpiCard::before{
  content:"";
  position:absolute;
  left:-1px;
  right:-1px;
  top:-1px;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: rgb(var(--accent-rgb) / 0.75);
}
.kpiCard--dark{
  background: var(--ink);
  border-color: rgba(11,42,87,0.5);
  color:#fff;
}
.kpiCard--dark::before{
  background: linear-gradient(90deg, rgb(var(--accent-rgb) / 0.95), rgb(var(--accent2-rgb) / 0.95));
}
.kpiCard--light{ background: #F3F6FB; }
.kpiCard__label{
  color: rgba(11,42,87,0.60);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.kpiCard--dark .kpiCard__label{ color: rgba(255,255,255,0.75); }
.kpiCard__value{
  margin-top: 10px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(11,42,87,0.92);
}
.kpiCard--dark .kpiCard__value{ color:#fff; }
.kpiCard__unit{
  margin-top: 4px;
  color: rgba(11,42,87,0.55);
  font-size: 12px;
}
.kpiCard--dark .kpiCard__unit{ color: rgba(255,255,255,0.75); }

/* Waves */
.wave{
  position:relative;
  height: 70px;
  background:#fff;
  overflow:hidden;
  scroll-snap-align: none;
}
.wave__line{
  position:absolute;
  left: -10%;
  right: -10%;
  top: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgb(var(--accent-rgb) / 0),
    rgb(var(--accent-rgb) / 0.50),
    rgb(var(--accent2-rgb) / 0.35),
    rgb(var(--accent-rgb) / 0)
  );
  transform-origin: center;
}
.wave__line--a{ transform: rotate(-2deg) translateY(-8px); opacity: 0.65; }
.wave__line--b{ transform: rotate(2deg) translateY(2px); opacity: 0.45; }
.wave__line--c{ transform: rotate(-1deg) translateY(12px); opacity: 0.25; }

/* Sections */
.section{
  min-height: 100vh;
  padding: 46px 0;
  background:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.section--alt{ background: #F6F8FC; }
.split{
  display:grid;
  grid-template-columns: 1fr 520px;
  gap: 34px;
  align-items:center;
}
.split--reverse{ grid-template-columns: 520px 1fr; }
.split--reverse .split__text{ order:2; }
.split--reverse .split__media{ order:1; }

.eyebrow{
  margin:0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(11,42,87,0.55);
}
.h3{
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.01em;
}
.p{
  margin: 0 0 18px;
  color: rgba(11,42,87,0.70);
  line-height: 1.6;
  font-size: 14px;
  max-width: 62ch;
}

.btn{
  display:inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgb(var(--accent-rgb) / 0.25);
  background: rgb(var(--accent-rgb) / 0.08);
  color: rgba(11,42,87,0.85);
  text-decoration:none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.btn:hover{ background: rgb(var(--accent-rgb) / 0.12); }
.btn--light{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.92);
}

.media{
  position:relative;
  border-radius: 4px;
  border: 1px solid rgba(11,42,87,0.10);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(11,42,87,0.10), rgba(11,42,87,0.02));
  overflow:hidden;
}
.media--photo{ height: 320px; background: linear-gradient(135deg, rgba(11,42,87,0.14), rgba(67,181,232,0.10)); }
.media--portrait{ height: 320px; background: linear-gradient(135deg, rgba(11,42,87,0.18), rgba(0,0,0,0.02)); }
.media--video{ height: 320px; background: linear-gradient(135deg, rgba(11,42,87,0.12), rgb(var(--accent-rgb) / 0.10)); }
.play{
  position:absolute;
  left: 18px;
  bottom: 18px;
  width: 58px; height: 58px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
}
.play::before{
  content:"";
  position:absolute;
  left: 24px;
  top: 19px;
  width:0; height:0;
  border-left: 18px solid rgba(11,42,87,0.75);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* Banner */
.banner{
  min-height: 100vh;
  padding: 18px 0 44px;
  background:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.banner__inner{
  height: 120px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(11,42,87,0.10), rgba(11,42,87,0.03)),
    repeating-linear-gradient(120deg, rgb(var(--accent-rgb) / 0.12), rgb(var(--accent-rgb) / 0.12) 6px, transparent 6px, transparent 22px);
  display:flex;
  align-items:flex-end;
  padding: 16px;
}
.banner__text{
  font-size: 28px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  background: rgba(0,0,0,0.45);
  padding: 8px 10px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

/* Dark section */
.section--dark{
  min-height: 100vh;
  padding: 54px 0 0;
  background: linear-gradient(135deg, var(--hero2), var(--hero));
  color:#fff;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.roadmap{
  display:grid;
  grid-template-columns: 1fr 520px;
  gap: 34px;
  align-items:center;
  padding-bottom: 42px;
}
.eyebrow--light{ color: rgba(255,255,255,0.70); }
.h3--light{ color: rgba(255,255,255,0.95); }
.p--light{ color: rgba(255,255,255,0.78); }
.doc{
  height: 220px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.20);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.10), rgba(255,255,255,0.10) 2px, transparent 2px, transparent 10px);
}
.footerBar{
  height: 90px;
  border-top: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.12);
}

/* Comparison Sections */
.compSection {
  min-height: 100vh;
  padding: 80px 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.compSection--alt { background: #F6F8FC; }
.compSection--highlight { 
  background: #f2f2f2;
  color: #1e293b;
}
.compSection--highlight .compSection__kicker { color: #16a34a; }
.compSection--highlight .compSection__title { color: #1e293b; }
.compSection--highlight .compSection__subtitle { color: #475569; }
.compSection--highlight .compCard { background: #fff; border-color: #e2e8f0; }
.compSection--highlight .compCard__year { color: #64748b; }
.compSection--highlight .compCard__value { color: #1e293b; }
.compSection--highlight .compCard__unit { color: #64748b; }
.compSection--highlight .compDiff { background: transparent; border: none; box-shadow: none; }
.compSection--highlight .compDiff__value { font-weight: 700; }
.compSection--highlight .compDiff__value--up { color: #16a34a; }
.compSection--highlight .compDiff__value--down { color: #dc2626; }
.compSection--highlight .compDiff__pct { font-weight: 700; }
.compSection--highlight .compBreakdown2Col__col { background: #fff; }
.compSection--highlight .compBreakdown2Col__year { color: #64748b; }
.compSection--highlight .compBreakdown__item { background: #fff; }
.compSection--highlight .compBreakdown__label { color: #334155; }
.compSection--highlight .compBreakdown__val { color: #1e293b; }
.compSection--highlight .compBreakdown__pct { color: #64748b; }
.compSection--highlight .compBreakdown__change--up { color: #16a34a; }
.compSection--highlight .compBreakdown__change--down { color: #ef4444; }
.compSection--highlight .compCallout { background: #fff; border: 2px solid #16a34a; color: #1e293b; }
.compSection--highlight .compCallout--positive { background: #fff; border: 2px solid #16a34a; color: #1e293b; }

.compSection__header {
  text-align: center;
  margin-bottom: 48px;
}
.compSection__kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(var(--accent-rgb));
}
.compSection__title {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.compSection__subtitle {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.5;
}

.compGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}
.compGrid + .compGrid {
  margin-top: 40px;
}
.compGrid + .compBreakdown2Col {
  margin-top: 48px;
}

.compCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.compCard::before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  height: 4px;
  border-radius: 12px 12px 0 0;
  background: rgb(var(--accent-rgb) / 0.6);
}
.compCard--highlight::before {
  background: linear-gradient(90deg, rgb(var(--accent-rgb)), rgb(var(--accent2-rgb)));
}
.compCard__year {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.compCard__value {
  margin: 0;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.compCard__unit {
  font-size: 24px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 4px;
}
.compCard__value--stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.compCard__main {
  display: block;
  text-align: center;
}

.compCard__value--stacked .compCard__main {
  text-align: center;
}

.compCard__value--stacked .compCard__sub {
  display: block !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: var(--muted) !important;
  margin-top: 0 !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

.compCard__sub, .compBreakdown2Col__sub, .compDiff__sub {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.3;
}

.compBreakdown2Col__value .compBreakdown2Col__sub {
  text-align: inherit;
}
.compCard__hint {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.compDiff {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.compDiff__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compDiff__arrow--up {
  background: rgba(34, 197, 94, 0.12);
}
.compDiff__arrow--down {
  background: rgba(239, 68, 68, 0.12);
}
.compDiff__arrow svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
  fill: none;
}
.compDiff__arrow--up svg { stroke: #16a34a; }
.compDiff__arrow--down svg { stroke: #dc2626; }

.compDiff__value {
  font-size: 20px;
  font-weight: 700;
}
.compDiff__value--up { color: #16a34a; }
.compDiff__value--down { color: #dc2626; }
.compDiff__label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Breakdown Details */
.compBreakdown {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.compBreakdown__item {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.compSection--alt .compBreakdown__item {
  background: #fff;
}
.compBreakdown__label {
  font-size: 13px;
  color: var(--muted);
}
.compBreakdown__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.compBreakdown__change {
  font-size: 12px;
  margin-left: 8px;
  padding: 2px 6px;
  border-radius: 4px;
}
.compBreakdown__change--up {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}
.compBreakdown__change--down {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

/* Two-Column Breakdown */
.compBreakdown2Col {
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.compBreakdown2Col__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}
.compBreakdown2Col--equalCards .compBreakdown2Col__grid {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}
.compBreakdown2Col__spacer {
  width: 4.75rem;
  min-height: 1px;
}
.compBreakdown2Col--single .compBreakdown2Col__grid {
  grid-template-columns: 1fr;
}
.compBreakdown2Col--narrow {
  max-width: 50%;
  margin: 48px auto 0;
}
@media (max-width: 768px) {
  .compBreakdown2Col--narrow {
    max-width: 100%;
  }
  .compBreakdown2Col__grid { grid-template-columns: 1fr; gap: 16px; }
  .compBreakdown2Col--equalCards .compBreakdown2Col__grid { grid-template-columns: 1fr; }
  .compBreakdown2Col__spacer { display: none; }
}
.compBreakdown2Col--single .compBreakdown2Col__year {
  text-align: right;
}
.compBreakdown2Col--noChange .compBreakdown2Col__row {
  grid-template-columns: 1fr auto;
}
.compBreakdown2Col__col {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.compSection--alt .compBreakdown2Col__col {
  background: #fff;
}
.compBreakdown2Col__year {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.compBreakdown2Col__row {
  display: grid;
  grid-template-columns: 1fr 120px auto;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.compBreakdown2Col__row:last-child {
  border-bottom: none;
}
.compBreakdown2Col__row--nested {
  padding-left: 18px;
  margin-left: 6px;
  border-left: 2px solid rgba(236, 103, 7, 0.25);
}
.compBreakdown2Col__row--nested .compBreakdown2Col__label {
  font-size: 12px;
  color: #64748b;
}
.compBreakdown2Col__row--nested .compBreakdown2Col__value {
  font-size: 14px;
  font-weight: 500;
}
.compBreakdown2Col__flag {
  margin-right: 6px;
}
.compBreakdown2Col__label {
  font-size: 13px;
  color: var(--muted);
}
.compBreakdown2Col__values {
  text-align: right;
  min-width: 120px;
}
.compBreakdown2Col__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.compBreakdown2Col__pct {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  text-align: right;
}
.compBreakdown2Col__change {
  display: inline-block;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}
.compBreakdown2Col__change--up {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}
.compBreakdown2Col__change--down {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

/* KPI Grid (2x2) */
.compKpiGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.compKpiGrid--3col {
  grid-template-columns: 1fr 1fr 1fr;
}
.compKpiGrid--center {
  justify-content: center;
  grid-template-columns: auto;
}
.compKpiCard {
  background: rgba(255,255,255,0.9);
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  position: relative;
}
.compKpiCard--ok {
  border-color: #22c55e;
}
.compKpiCard--warn {
  border-color: #ef4444;
}
.compKpiCard--orange {
  border-color: #f97316;
}
.compKpiCard__icon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 18px;
  font-weight: 700;
}
.compKpiCard--ok .compKpiCard__icon {
  color: #22c55e;
}
.compKpiCard--warn .compKpiCard__icon {
  color: #ef4444;
}
.compKpiCard__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 8px;
}
.compKpiCard__value {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.compKpiCard__benchmark {
  font-size: 12px;
  color: var(--muted);
}
@media (max-width: 600px) {
  .compKpiGrid { grid-template-columns: 1fr; }
}

/* Circles Layout */
.compCircles {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 48px;
}
.compCircle {
  text-align: center;
}
.compCircle__logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.compCircle__logo:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.compCircle__logo img {
  max-width: 100px;
  max-height: 60px;
  object-fit: contain;
}
.compCircle__logo--fallback {
  background: linear-gradient(135deg, var(--hero), var(--hero2));
}
.compCircle__logo--fallback::after {
  content: attr(data-fallback);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}
.compCircle__label {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
}
.compCircle__sublabel {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  padding: 4px 12px;
  background: rgba(74, 222, 128, 0.15);
  border-radius: 20px;
  display: inline-block;
  color: #16a34a;
  font-weight: 500;
}
@media (max-width: 600px) {
  .compCircles {
    flex-direction: column;
    gap: 40px;
  }
  .compCircle__logo {
    width: 120px;
    height: 120px;
  }
  .compCircle__logo img {
    max-width: 70px;
    max-height: 45px;
  }
}

/* Bullets Layout */
.compBullets {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto 48px;
}
.compBullet {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.compBullet:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.compBullet__icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(var(--accent-rgb) / 0.15), rgb(var(--accent-rgb) / 0.05));
  border-radius: 12px;
  color: rgb(var(--accent-rgb));
}
.compBullet__content {
  flex: 1;
}
.compBullet__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}
.compBullet__text {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .compBullet {
    flex-direction: column;
    text-align: center;
  }
  .compBullet__icon {
    margin: 0 auto;
  }
}

/* Callout Box */
.compCallout {
  margin-top: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, rgb(var(--accent-rgb) / 0.08), rgb(var(--accent-rgb) / 0.03));
  border: 1px solid rgb(var(--accent-rgb) / 0.15);
  border-radius: 8px;
  padding: 20px 24px;
  text-align: center;
}
.compCallout__text {
  margin: 0;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
}
.compCallout__text strong {
  color: rgb(var(--accent-rgb));
}
.compCallout--positive {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.03));
  border-color: rgba(34, 197, 94, 0.25);
}
.compCallout--positive .compCallout__text strong {
  color: #16a34a;
}
.compCallout--warning {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.03));
  border-color: rgba(239, 68, 68, 0.25);
}
.compCallout--warning .compCallout__text strong {
  color: #dc2626;
}
.compCallout + .compCallout {
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 1100px){
  .kpiGrid{ grid-template-columns: 1fr 1fr; }
  .split, .split--reverse, .roadmap{ grid-template-columns: 1fr; }
  .split--reverse .split__text, .split--reverse .split__media{ order: unset; }
  .nav{ display:none; }
  .brand__img{ height: 30px; }
  .compGrid { grid-template-columns: 1fr; gap: 20px; }
  .compDiff { flex-direction: row; }
  .compDiff__arrow { transform: rotate(90deg); }
}
@media (max-width: 680px){
  .container{ width: min(var(--container), calc(100% - 28px)); }
  .hero__inner{ padding: 42px 0 34px; }
  .hero__kicker{ font-size: 30px; }
  .hero__title{ font-size: 36px; }
  .media--photo, .media--portrait, .media--video{ height: 240px; }
  .banner__text{ font-size: 22px; }
  .brand__img{ height: 26px; }
  .compSection__title { font-size: 24px; }
  .compCard__value { font-size: 36px; }
  .compCard__unit { font-size: 18px; }
  .compBreakdown { grid-template-columns: 1fr; }
  .sectionNav { bottom: 16px; right: 16px; }
  .sectionNav__btn { width: 40px; height: 40px; }
}

