/* ============================================================
   Swiss Aviation Club — Design System
   Marke: Navy #1E2761 · Ice Blue #CADCFC · Steel #2E75B6 · Gold #D5A85A
   Eine Datei, keine Build-Abhängigkeit, voll offline lauffähig.
   ============================================================ */

:root {
  /* Markenfarben */
  --navy:        #1E2761;
  --navy-900:    #111946;
  --navy-800:    #182052;
  --ice:         #CADCFC;
  --ice-soft:    #E8F0FE;
  --steel:       #2E75B6;
  --steel-300:   #5B8FD0;
  --gold:        #D5A85A;
  --gold-600:    #C2924A;
  --swiss-red:   #E30613;

  /* Neutrale */
  --ink:         #131A33;
  --slate:       #5B668A;
  --slate-300:   #8A93B0;
  --line:        #E4E8F2;
  --line-soft:   #EEF1F8;
  --paper:       #FBFCFF;
  --white:       #FFFFFF;

  /* Funktionale */
  --ok:          #2E9E6B;
  --warn:        #C9942F;
  --danger:      #C2453B;

  /* Typo */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Maße */
  --maxw: 1200px;
  --maxw-narrow: 820px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;

  /* Schatten */
  --shadow-sm: 0 1px 2px rgba(17,25,70,.06), 0 2px 8px rgba(17,25,70,.05);
  --shadow:    0 8px 24px rgba(17,25,70,.08), 0 2px 6px rgba(17,25,70,.05);
  --shadow-lg: 0 24px 60px rgba(17,25,70,.16), 0 8px 24px rgba(17,25,70,.08);
  --shadow-gold: 0 10px 30px rgba(213,168,90,.30);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--steel); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.container--narrow { max-width: var(--maxw-narrow); }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.section--tight { padding-block: clamp(44px, 6vw, 80px); }
.section--alt { background: linear-gradient(180deg, var(--white), var(--ice-soft)); }
.section--navy { background: var(--navy); color: #DDE5F7; }
.section--navy .h2, .section--navy .h3, .section--navy .eyebrow + .h2 { color: #fff; }

.grid { display: grid; gap: clamp(20px, 3vw, 34px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

/* ---------- Typografie ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--steel); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.section--navy .eyebrow { color: var(--ice); }

.h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5.4vw, 4rem); line-height: 1.04; font-weight: 800; letter-spacing: -.02em; color: var(--navy); }
.h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.1; font-weight: 800; letter-spacing: -.015em; color: var(--navy); }
.h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; letter-spacing: -.01em; color: var(--navy); }
.h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--slate); line-height: 1.6; }
.muted { color: var(--slate); }
.text-gold { color: var(--gold-600); }
.measure { max-width: 62ch; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.section-head { max-width: 740px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; }
p + p { margin-top: 1em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: .98rem;
  border: 1.5px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap; letter-spacing: .01em;
}
.btn svg { width: 18px; height: 18px; }
.btn--gold { background: linear-gradient(135deg, var(--gold), var(--gold-600)); color: var(--navy); box-shadow: var(--shadow-gold); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(213,168,90,.42); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: var(--navy-800); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--steel); color: var(--steel); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn--light:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(251,252,255,.82);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.nav__brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__brand-mark { width: 40px; height: 40px; }
/* Markenzeichen (Logo 05) — Vordergrund hell/dunkel je Kontext */
.brand-mark-svg { display: block; }
.brand-mark-svg .l-fg { fill: #172052; }
.site-header:not(.is-scrolled) .brand-mark-svg .l-fg,
.site-footer .brand-mark-svg .l-fg,
.member-topbar .brand-mark-svg .l-fg,
.login-aside .brand-mark-svg .l-fg { fill: #FFFFFF; }
body.header-solid .site-header .brand-mark-svg .l-fg { fill: #172052; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav__brand-name { font-weight: 800; font-size: 1.02rem; letter-spacing: -.01em; color: var(--navy); }
.nav__brand-sub { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--steel); font-weight: 600; }
.is-scrolled-dark .nav__brand-name { color: var(--navy); }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 9px 13px; border-radius: 8px; font-weight: 600; font-size: .95rem; color: var(--ink);
  transition: color .2s, background .2s; position: relative; white-space: nowrap;
}
.nav__link:hover { color: var(--steel); background: var(--ice-soft); }
.nav__link.is-active { color: var(--steel); }
.nav__actions { display: flex; align-items: center; gap: 12px; }

/* Lang toggle */
.lang-toggle { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: var(--white); }
.lang-toggle button { padding: 6px 12px; font-size: .8rem; font-weight: 700; color: var(--slate); background: transparent; border: none; transition: background .2s, color .2s; }
.lang-toggle button.is-active { background: var(--navy); color: #fff; }

/* Mobile */
.nav__burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 11px; background: var(--white); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav__burger span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Header on dark hero (transparent at top, light text) */
.site-header:not(.is-scrolled) .nav__link { color: #E8EDFB; }
.site-header:not(.is-scrolled) .nav__link:hover { color: #fff; background: rgba(255,255,255,.1); }
.site-header:not(.is-scrolled) .nav__brand-name { color: #fff; }
.site-header:not(.is-scrolled) .nav__brand-sub { color: var(--ice); }
.site-header:not(.is-scrolled) .lang-toggle { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); }
.site-header:not(.is-scrolled) .lang-toggle button { color: #DDE5F7; }
.site-header:not(.is-scrolled) .lang-toggle button.is-active { background: #fff; color: var(--navy); }
.site-header:not(.is-scrolled) .nav__burger { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); }
.site-header:not(.is-scrolled) .nav__burger span { background: #fff; }
.site-header:not(.is-scrolled) .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
/* Pages without dark hero use the solid header from the start */
body.header-solid .site-header { background: rgba(251,252,255,.9); backdrop-filter: saturate(160%) blur(16px); border-bottom-color: var(--line); }
body.header-solid .site-header .nav__link { color: var(--ink); }
body.header-solid .site-header .nav__brand-name { color: var(--navy); }
body.header-solid .site-header .nav__brand-sub { color: var(--steel); }
body.header-solid .site-header .lang-toggle { background: var(--white); border-color: var(--line); }
body.header-solid .site-header .lang-toggle button { color: var(--slate); }
body.header-solid .site-header .btn--ghost { color: var(--navy); border-color: var(--line); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; background: var(--navy-900); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background:
  radial-gradient(1200px 700px at 78% 8%, rgba(46,117,182,.45), transparent 60%),
  radial-gradient(900px 600px at 10% 90%, rgba(30,39,97,.7), transparent 60%),
  linear-gradient(180deg, rgba(17,25,70,.35), rgba(17,25,70,.78)); }
.hero__bg svg, .hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__inner { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 80px; max-width: 900px; }
.hero__eyebrow { color: var(--ice); }
.hero .h1 { color: #fff; }
.hero .h1 em { font-style: normal; color: var(--gold); }
.hero__lead { color: #D5DDF2; font-size: clamp(1.1rem, 1.7vw, 1.35rem); margin-top: 22px; max-width: 66ch; }
.hero__cta { margin-top: 36px; }
.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.7); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero__scroll span:last-child { width: 1px; height: 38px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2s var(--ease) infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.3; transform:scaleY(.6) translateY(-6px)} 50%{opacity:1; transform:scaleY(1) translateY(0)} }

.hero__trust { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 48px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.14); }
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-num { font-size: 1.7rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.hero__trust-label { font-size: .82rem; color: var(--ice); }

/* Page hero (interior pages, lighter) */
.page-hero { position: relative; padding-top: 150px; padding-bottom: clamp(50px, 7vw, 88px); background: linear-gradient(160deg, var(--navy-900), var(--navy) 60%, var(--steel)); color: #fff; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 500px at 85% -10%, rgba(202,220,252,.22), transparent 60%); }
.page-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero .h1 { color: #fff; }
.page-hero .lead { color: #D5DDF2; margin-top: 18px; }
.page-hero .eyebrow { color: var(--ice); }

/* Foto-Page-Hero (Bild als Hintergrund) */
.page-hero--photo { background-color: var(--navy-900); background-size: cover; background-position: center; padding-top: 170px; padding-bottom: clamp(64px, 9vw, 120px); }
.page-hero--photo::before { background: radial-gradient(900px 500px at 88% -10%, rgba(202,220,252,.18), transparent 60%); }
.page-hero--photo::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(95deg, rgba(11,18,51,.94) 0%, rgba(11,18,51,.78) 40%, rgba(11,18,51,.35) 72%, rgba(11,18,51,.5) 100%); }
.page-hero--photo .page-hero__inner { position: relative; z-index: 1; }

/* Specs auf dunklem Grund lesbar machen */
.section--navy .specs { border-top-color: rgba(255,255,255,.2); }
.section--navy .specs__row { border-bottom-color: rgba(255,255,255,.12); }
.section--navy .specs__key { color: var(--ice); }
.section--navy .specs__val { color: #fff; }

/* ---------- Panorama-Sektion (Foto-Hintergrund + Glas-Textbox) ---------- */
.panorama { position: relative; min-height: 82vh; display: flex; align-items: center; background-color: var(--navy-900); background-size: cover; background-position: center; overflow: hidden; }
.panorama::after { content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(95deg, rgba(11,18,51,.92) 0%, rgba(11,18,51,.7) 34%, rgba(11,18,51,.18) 64%, rgba(11,18,51,.42) 100%); }
.panorama--right::after { background: linear-gradient(265deg, rgba(11,18,51,.92) 0%, rgba(11,18,51,.7) 34%, rgba(11,18,51,.18) 64%, rgba(11,18,51,.42) 100%); }
.panorama .container { position: relative; z-index: 1; width: 100%; }
.panorama__box { max-width: 560px; background: rgba(15,21,52,.5); backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 50px); box-shadow: var(--shadow-lg); color: #E8EDFB; }
.panorama--right .panorama__box { margin-left: auto; }
.panorama__box .eyebrow { color: var(--ice); }
.panorama__box .h2 { color: #fff; }
.panorama__box .h1-xl { font-family: var(--font-display); font-size: clamp(2.1rem, 4.2vw, 3.4rem); line-height: 1.06; font-weight: 800; letter-spacing: -.02em; color: #fff; }
.panorama__box .h1-xl em { font-style: normal; color: var(--gold); }
.panorama__box p { color: #D5DDF2; }
.panorama__box .lead { color: #DDE5F7; }
.panorama__caption { position: absolute; z-index: 1; bottom: 18px; right: 22px; font-size: .78rem; color: rgba(255,255,255,.62); letter-spacing: .04em; }

/* ---------- Reichweite-Sektion: Karte als großes, ausgeblendetes Hintergrund-Element ---------- */
.range-section { position: relative; overflow: hidden; }
.range-section .container { position: relative; z-index: 3; }
.range-section__content { max-width: 540px; }
.range-section__map {
  position: absolute; z-index: 1; top: 50%; right: -6%; transform: translateY(-50%);
  width: min(1020px, 68%); aspect-ratio: 1000 / 800;
  background-position: center; background-repeat: no-repeat; background-size: contain;
  pointer-events: none;
}
.range-section::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(95deg, var(--navy) 0%, var(--navy) 24%, rgba(30,39,97,0) 56%);
}
@media (max-width: 900px) {
  .range-section { overflow: visible; }
  .range-section__map { position: relative; top: auto; right: auto; transform: none; width: 100%; max-width: 560px; margin: 28px auto 0; }
  .range-section::after { display: none; }
}
@media (max-width: 760px) {
  .panorama { min-height: auto; padding-block: 90px; background-attachment: scroll; }
  .panorama::after { background: linear-gradient(180deg, rgba(11,18,51,.72), rgba(11,18,51,.9)); }
  .panorama--right::after { background: linear-gradient(180deg, rgba(11,18,51,.72), rgba(11,18,51,.9)); }
}

/* ---------- Cards ---------- */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s; height: 100%; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--ice); }
.card__icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--ice-soft), var(--ice)); color: var(--steel); margin-bottom: 22px; }
.card__icon svg { width: 26px; height: 26px; }
.card .h3 { margin-bottom: 10px; }
.card p { color: var(--slate); font-size: .98rem; }

.feature-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--ice-soft); color: var(--steel); display: grid; place-items: center; margin-top: 2px; }
.feature-list .tick svg { width: 15px; height: 15px; }
.feature-list b { color: var(--navy); }

/* Steps */
.steps { counter-reset: step; display: grid; gap: clamp(20px, 3vw, 30px); }
.step { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px 30px; box-shadow: var(--shadow-sm); }
.step__num { counter-increment: step; font-size: .8rem; font-weight: 800; letter-spacing: .1em; color: var(--gold-600); }
.step__num::before { content: "0" counter(step); }
.step .h3 { margin: 14px 0 8px; }
.step p { color: var(--slate); font-size: .97rem; }

/* Stats */
.stat { text-align: center; padding: 14px; }
.stat__num { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.02em; color: var(--navy); line-height: 1; background: linear-gradient(135deg, var(--navy), var(--steel)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { margin-top: 10px; color: var(--slate); font-size: .92rem; }
.section--navy .stat__num { background: linear-gradient(135deg, #fff, var(--ice)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section--navy .stat__label { color: var(--ice); }

/* Pills / badges */
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; border-radius: 999px; font-size: .82rem; font-weight: 600; background: var(--ice-soft); color: var(--steel); border: 1px solid var(--ice); }
.pill--gold { background: rgba(213,168,90,.12); color: var(--gold-600); border-color: rgba(213,168,90,.3); }
.pill--ok { background: rgba(46,158,107,.1); color: var(--ok); border-color: rgba(46,158,107,.25); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* Legal note callout */
.legal-note { display: flex; gap: 14px; align-items: flex-start; background: var(--ice-soft); border: 1px solid var(--ice); border-left: 4px solid var(--steel); border-radius: var(--radius); padding: 18px 22px; font-size: .92rem; color: var(--slate); }
.legal-note svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--steel); margin-top: 1px; }
.legal-note b { color: var(--navy); }

/* Compare table (3rd way) */
.compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.compare__col { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; background: var(--white); }
.compare__col--hero { background: linear-gradient(170deg, var(--navy), var(--navy-800)); color: #fff; border-color: var(--navy); box-shadow: var(--shadow-lg); position: relative; }
.compare__col--hero .h3 { color: #fff; }
.compare__tag { position: absolute; top: -13px; left: 26px; background: linear-gradient(135deg, var(--gold), var(--gold-600)); color: var(--navy); padding: 5px 14px; border-radius: 999px; font-size: .74rem; font-weight: 800; letter-spacing: .05em; box-shadow: var(--shadow-gold); }
.compare__col h3 { margin-bottom: 16px; }
.compare__col ul { display: flex; flex-direction: column; gap: 12px; }
.compare__col li { display: flex; gap: 10px; font-size: .94rem; color: var(--slate); align-items: flex-start; }
.compare__col--hero li { color: #CFD8F0; }
.compare__col li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.compare__col .pos { color: var(--ok); }
.compare__col--hero .pos { color: var(--gold); }
.compare__col .neg { color: var(--slate-300); }

/* Specs table */
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; border-top: 1px solid var(--line); }
.specs__row { display: flex; justify-content: space-between; gap: 20px; padding: 16px 2px; border-bottom: 1px solid var(--line-soft); }
.specs__key { color: var(--slate); font-size: .95rem; }
.specs__val { color: var(--navy); font-weight: 700; font-size: .98rem; text-align: right; }

/* Quote / testimonial */
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px,3vw,40px); box-shadow: var(--shadow-sm); }
.quote__mark { font-size: 3rem; line-height: .6; color: var(--ice); font-weight: 800; }
.quote p { font-size: 1.12rem; color: var(--navy); font-weight: 500; margin: 14px 0 20px; }
.quote__by { display: flex; align-items: center; gap: 12px; }
.quote__avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--steel), var(--navy)); color:#fff; display:grid; place-items:center; font-weight:700; }
.quote__name { font-weight: 700; color: var(--navy); font-size: .95rem; }
.quote__role { color: var(--slate); font-size: .85rem; }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 4px; background: none; border: none; text-align: left; font-weight: 700; font-size: 1.06rem; color: var(--navy); }
.faq__q .faq__icon { flex-shrink: 0; width: 26px; height: 26px; transition: transform .3s var(--ease); color: var(--steel); }
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a-inner { padding: 0 4px 22px; color: var(--slate); }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--navy-900), var(--navy) 55%, var(--steel)); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% 0%, rgba(213,168,90,.18), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band .h2 { color: #fff; }
.cta-band p { color: #D5DDF2; max-width: 56ch; margin: 16px auto 30px; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.label { font-weight: 600; font-size: .9rem; color: var(--navy); }
.label .req { color: var(--swiss-red); }
.input, .select, .textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; font-size: .98rem; color: var(--ink); background: var(--white); transition: border-color .2s, box-shadow .2s;
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--steel); box-shadow: 0 0 0 4px rgba(46,117,182,.12); }
.textarea { resize: vertical; min-height: 120px; }
.hint { font-size: .82rem; color: var(--slate); }
.checkbox { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: var(--slate); }
.checkbox input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--steel); flex-shrink: 0; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #AFBADb; padding-top: clamp(56px, 7vw, 84px); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand-name { color: #fff; font-weight: 800; font-size: 1.1rem; }
.footer__brand-sub { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ice); margin-top: 2px; }
.footer__about { margin-top: 18px; font-size: .92rem; max-width: 38ch; color: #97A2C6; }
.footer h5 { color: #fff; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { font-size: .92rem; color: #AFBADb; transition: color .2s; }
.footer__links a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding: 26px 0; font-size: .84rem; color: #8089AE; }
.footer__legal-strip { font-size: .8rem; color: #7B85AB; max-width: 70ch; padding-bottom: 28px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: #AFBADb; transition: all .2s; }
.footer__social a:hover { color: #fff; border-color: var(--gold); background: rgba(213,168,90,.12); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- i18n visibility ---------- */
[data-lang-show]:not(.lang-visible) { display: none !important; }

/* ---------- Helpers ---------- */
.mt-0{margin-top:0} .mt-1{margin-top:8px} .mt-2{margin-top:16px} .mt-3{margin-top:24px} .mt-4{margin-top:32px} .mt-5{margin-top:48px}
.mb-2{margin-bottom:16px} .mb-3{margin-bottom:24px}
.hide-mobile { } .show-mobile { display: none !important; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--navy); color:#fff; padding: 12px 18px; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }

/* ============================================================
   MITGLIEDERBEREICH (Cockpit) — dunkles App-Layout
   ============================================================ */
body.member-app { background: #0E1430; color: #C7D0EC; }
.member-bg { position: fixed; inset: 0; z-index: 0; background:
  radial-gradient(900px 600px at 85% -5%, rgba(46,117,182,.22), transparent 55%),
  radial-gradient(700px 500px at 0% 100%, rgba(30,39,97,.5), transparent 55%),
  #0E1430; }

.member-topbar { position: sticky; top: 0; z-index: 50; height: 66px; display: flex; align-items: center; justify-content: space-between; padding-inline: clamp(16px, 3vw, 28px); background: rgba(14,20,48,.82); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,.08); }
.member-topbar .brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; }
.member-topbar .brand small { display: block; font-size: .6rem; letter-spacing: .2em; color: var(--ice); font-weight: 600; text-transform: uppercase; }
.member-secure-pill { display: inline-flex; align-items: center; gap: 7px; font-size: .76rem; font-weight: 600; color: #7FE0B0; background: rgba(46,158,107,.14); border: 1px solid rgba(46,158,107,.3); padding: 6px 12px; border-radius: 999px; }
.member-user { display: flex; align-items: center; gap: 10px; }
.member-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--steel), var(--gold)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .85rem; }

.member-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 248px 1fr; min-height: calc(100vh - 66px); }
.member-side { padding: 22px 16px; border-right: 1px solid rgba(255,255,255,.07); }
.member-side .nav-group { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: #8B96BE; margin: 22px 12px 8px; }
.member-side a { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 11px; color: #AEB9DE; font-weight: 600; font-size: .94rem; transition: background .2s, color .2s; }
.member-side a svg { width: 19px; height: 19px; opacity: .85; }
.member-side a:hover { background: rgba(255,255,255,.05); color: #fff; }
.member-side a.is-active { background: linear-gradient(135deg, rgba(46,117,182,.3), rgba(46,117,182,.12)); color: #fff; box-shadow: inset 0 0 0 1px rgba(46,117,182,.4); }
.member-main { padding: clamp(22px, 3vw, 40px); }
.member-main h1 { font-size: clamp(1.5rem, 3vw, 2rem); color: #fff; font-weight: 800; letter-spacing: -.01em; }
.member-greeting { color: #8B96BE; margin-top: 4px; }

.panel { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: 18px; padding: clamp(20px, 2.5vw, 28px); }
.panel--solid { background: linear-gradient(160deg, rgba(30,39,97,.55), rgba(14,20,48,.4)); }
.panel h2, .panel h3 { color: #fff; font-size: 1.1rem; margin-bottom: 6px; font-weight: 700; letter-spacing: -.01em; }
.panel .panel-sub { color: #8B96BE; font-size: .9rem; margin-bottom: 18px; }
.panel-grid { display: grid; gap: 20px; }

.kpi { display: flex; flex-direction: column; gap: 6px; }
.kpi__num { font-size: 1.9rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.kpi__label { font-size: .82rem; color: #8B96BE; }
.kpi__trend { font-size: .78rem; color: #7FE0B0; }

.m-table { width: 100%; border-collapse: collapse; }
.m-table th { text-align: left; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: #8B96BE; padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,.09); font-weight: 700; }
.m-table td { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .92rem; color: #C7D0EC; }
.m-table tr:hover td { background: rgba(255,255,255,.03); }
.status-dot { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .85rem; }
.status-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; }
.status-dot.ok::before { background: #4FD08A; }
.status-dot.warn::before { background: var(--gold); }
.status-dot.busy::before { background: var(--steel-300); }

.m-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-size: .76rem; font-weight: 600; }
.m-badge.green { background: rgba(46,158,107,.16); color: #7FE0B0; }
.m-badge.blue { background: rgba(46,117,182,.18); color: #8FB8E6; }
.m-badge.gold { background: rgba(213,168,90,.16); color: #E2C088; }
.m-badge.gray { background: rgba(255,255,255,.08); color: #AEB9DE; }

/* Calendar */
.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.cal__head { font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: #8B96BE; text-align: center; padding-bottom: 6px; font-weight: 700; }
.cal__day { aspect-ratio: 1; border-radius: 10px; border: 1px solid rgba(255,255,255,.07); padding: 7px; font-size: .82rem; color: #AEB9DE; position: relative; transition: border-color .2s, background .2s; cursor: pointer; }
.cal__day:hover { border-color: rgba(46,117,182,.5); background: rgba(46,117,182,.08); }
.cal__day.muted { opacity: .35; }
.cal__day.today { border-color: var(--gold); }
.cal__ev { position: absolute; left: 6px; right: 6px; bottom: 6px; font-size: .64rem; padding: 2px 5px; border-radius: 5px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.cal__ev.booked { background: rgba(46,117,182,.35); color: #cfe0f5; }
.cal__ev.mine { background: rgba(213,168,90,.35); color: #f0dcb4; }
.cal__ev.maint { background: rgba(194,69,59,.3); color: #f0b8b3; }

.timeline { display: flex; flex-direction: column; gap: 2px; }
.timeline__item { display: flex; gap: 16px; padding: 14px 0; }
.timeline__time { font-size: .82rem; color: #8B96BE; width: 80px; flex-shrink: 0; }
.timeline__body { flex: 1; padding-left: 18px; border-left: 2px solid rgba(46,117,182,.4); }
.timeline__body strong { color: #fff; display: block; font-size: .95rem; }
.timeline__body span { font-size: .85rem; color: #8B96BE; }

.doc-item { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,.07); transition: background .2s, border-color .2s; }
.doc-item:hover { background: rgba(255,255,255,.04); border-color: rgba(46,117,182,.4); }
.doc-item .doc-ico { width: 42px; height: 42px; border-radius: 10px; background: rgba(46,117,182,.18); color: #8FB8E6; display: grid; place-items: center; flex-shrink: 0; }
.doc-item .doc-meta { flex: 1; min-width: 0; }
.doc-item .doc-meta strong { color: #fff; display: block; font-size: .92rem; }
.doc-item .doc-meta span { font-size: .8rem; color: #8B96BE; }

.member-list { display: grid; gap: 14px; }
.member-row { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,.07); }
.member-row .m-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--steel)); color: #fff; display: grid; place-items: center; font-weight: 700; }

.m-btn { display: inline-flex; align-items: center; gap: 9px; padding: 11px 20px; border-radius: 999px; font-weight: 700; font-size: .92rem; border: 1px solid transparent; transition: all .2s; }
.m-btn.gold { background: linear-gradient(135deg, var(--gold), var(--gold-600)); color: var(--navy); }
.m-btn.gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.m-btn.ghost { background: rgba(255,255,255,.05); color: #fff; border-color: rgba(255,255,255,.15); }
.m-btn.ghost:hover { background: rgba(255,255,255,.1); }

.cost-bar { height: 10px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.cost-bar > span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--steel), var(--gold)); }

/* ---------- Login screen ---------- */
.login-wrap { position: relative; z-index: 1; min-height: 100vh; display: grid; grid-template-columns: 1.1fr 1fr; }
.login-aside { position: relative; background: linear-gradient(165deg, var(--navy-900), var(--navy) 60%, var(--steel)); padding: clamp(40px, 6vw, 80px); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.login-aside::after { content:""; position:absolute; inset:0; background: radial-gradient(700px 500px at 90% 10%, rgba(213,168,90,.16), transparent 60%); }
.login-aside > * { position: relative; z-index: 1; }
.login-aside .brand-lg { color: #fff; font-weight: 800; font-size: 1.4rem; display: flex; align-items: center; gap: 12px; }
.login-aside .brand-lg small { display:block; font-size: .62rem; letter-spacing: .2em; color: var(--ice); text-transform: uppercase; font-weight: 600; }
.login-aside h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; line-height: 1.15; margin-top: auto; }
.login-aside p { color: #C5CFEE; margin-top: 16px; max-width: 42ch; }
.login-aside .trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.login-panel { display: flex; align-items: center; justify-content: center; padding: clamp(28px, 5vw, 60px); background: #0E1430; }
.login-card { width: 100%; max-width: 410px; }
.login-card h1 { color: #fff; font-size: 1.7rem; font-weight: 800; }
.login-card .sub { color: #8B96BE; margin: 8px 0 30px; }
.m-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.m-field label { font-size: .85rem; font-weight: 600; color: #C7D0EC; }
.m-input { width: 100%; padding: 14px 16px; border-radius: 11px; border: 1.5px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); color: #fff; font: inherit; font-size: .98rem; transition: border-color .2s, box-shadow .2s; }
.m-input::placeholder { color: #5C68A0; }
.m-input:focus { outline: none; border-color: var(--steel); box-shadow: 0 0 0 4px rgba(46,117,182,.18); }
.passkey-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 16px; border-radius: 12px; background: #fff; color: var(--navy); font-weight: 800; font-size: 1rem; border: none; transition: transform .2s, box-shadow .2s; }
.passkey-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.3); }
.passkey-btn svg { width: 22px; height: 22px; }
.login-divider { display: flex; align-items: center; gap: 14px; color: #8B96BE; font-size: .82rem; margin: 24px 0; }
.login-divider::before, .login-divider::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,.12); }

/* 2FA code input */
.otp { display: flex; gap: 10px; justify-content: center; margin: 8px 0 4px; }
.otp input { width: 52px; height: 60px; text-align: center; font-size: 1.5rem; font-weight: 700; border-radius: 12px; border: 1.5px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); color: #fff; }
.otp input:focus { outline: none; border-color: var(--steel); box-shadow: 0 0 0 4px rgba(46,117,182,.18); }

.login-step { display: none; }
.login-step.is-active { display: block; animation: fadeUp .4s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%); z-index: 999; background: var(--navy); color: #fff; padding: 14px 22px; border-radius: 12px; box-shadow: var(--shadow-lg); font-weight: 600; font-size: .92rem; transition: transform .4s var(--ease); display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.15); }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.ok { border-color: rgba(46,158,107,.5); }
.toast svg { width: 18px; height: 18px; }

.demo-banner { position: relative; z-index: 60; background: repeating-linear-gradient(45deg, rgba(213,168,90,.14), rgba(213,168,90,.14) 12px, rgba(213,168,90,.08) 12px, rgba(213,168,90,.08) 24px); border-bottom: 1px solid rgba(213,168,90,.3); color: #E2C088; font-size: .82rem; text-align: center; padding: 8px 16px; font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .member-layout { grid-template-columns: 1fr; }
  .member-side { position: fixed; top: 66px; bottom: 0; left: 0; width: 248px; background: #0E1430; z-index: 40; transform: translateX(-100%); transition: transform .3s var(--ease); }
  .member-side.is-open { transform: none; }
  .login-wrap { grid-template-columns: 1fr; }
  .login-aside { display: none; }
}
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr; }
}
@media (max-width: 1180px) {
  .nav__links, .nav__actions .btn, .nav__actions .lang-toggle { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { position: fixed; inset: 76px 0 auto 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 18px clamp(20px,5vw,48px) 26px; flex-direction: column; gap: 4px; box-shadow: var(--shadow-lg); transform: translateY(-120%); transition: transform .35s var(--ease); display: flex; z-index: 99; }
  .nav.is-open .nav__mobile { transform: none; }
  .nav__mobile .nav__link { padding: 13px 8px; border-bottom: 1px solid var(--line-soft); border-radius: 0; color: var(--ink); font-size: 1.05rem; }
  .nav__mobile .mobile-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
  .nav__mobile .lang-toggle { align-self: flex-start; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__trust { gap: 22px; }
  .hero__trust-num { font-size: 1.4rem; }
  .show-mobile { display: revert !important; }
}
/* nav__mobile hidden on desktop */
.nav__mobile { display: none; }
