/* ===============================================
   TENGRI ANKA — Premium Insurance Platform
   Editorial · Luxury · Architectural
   DC 079D / 2026
   =============================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Mono:wght@400;500&display=swap');

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ===== DESIGN TOKENS ===== */
:root {
  /* ===========================================================
     TENGRI ANKA — PREMIUM TRUST PALETTE
     Deep Trust Blue · Anka Gold · Warm White
     =========================================================== */

  /* Primary — Deep Trust Blue (header, footer, hero, app tab bar) */
  --ink:          #0B1F3A;   /* Deep Trust Blue */
  --ink-2:        #0f2847;   /* slightly lighter for hovers */
  --ink-3:        #16365e;   /* lightest tier for layered surfaces */
  --ink-deep:     #060F1E;   /* deepest navy — footer floor */

  /* Accent — Anka Gold (logo, CTA hover, premium badges) */
  --gold:         #C9A646;   /* Anka Gold */
  --gold-light:   #D4B560;   /* warm hover */
  --gold-dark:    #B8932A;   /* pressed state */
  --gold-pale:    rgba(201,166,70,0.12);
  --gold-border:  rgba(201,166,70,0.30);

  /* Backgrounds — Warm White system */
  --cream:        #F7F4EF;   /* Warm White — page background */
  --cream-2:      #EDE8DF;   /* warm divider */
  --white:        #FFFFFF;   /* Soft Cloud — cards */

  /* Optional cool accent (subtle, sparing use) */
  --accent:       #C9A646;   /* alias to gold for backward-compat */
  --accent-light: #D4B560;
  /* Text — Charcoal system */
  --text:         #1E293B;   /* Charcoal — main text */
  --text-mid:     #475569;   /* medium emphasis */
  --text-light:   #64748B;   /* Neutral Gray — captions, hints */

  /* Semantic */
  --success:      #1F8A70;   /* Trust Green */
  --warning:      #F59E0B;   /* Amber */
  --danger:       #DC2626;   /* Risk Red */

  /* Borders */
  --border:       rgba(11,31,58,0.10);
  --border-gold:  rgba(201,166,70,0.28);
  --r-sm:         6px;
  --r-md:         10px;
  --r-lg:         18px;
  --r-xl:         28px;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
  --t:            0.28s;
  --t-slow:       0.5s;
  --container:    1240px;
  --shadow-card:  0 2px 8px rgba(10,22,40,0.06), 0 8px 32px rgba(10,22,40,0.06);
  --shadow-raise: 0 8px 24px rgba(10,22,40,0.12), 0 24px 64px rgba(10,22,40,0.08);
  --shadow-gold:  0 4px 20px rgba(184,147,42,0.25);
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 500; }
p { color: var(--text-mid); font-size: 0.975rem; line-height: 1.75; }
a { text-decoration: none; color: inherit; }
strong { font-weight: 600; color: var(--text); }

/* ===== CONTAINER ===== */
.container, .wrap { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }

/* ===== SECTION BASE ===== */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ===== UTILITY ===== */
.text-gold   { color: var(--gold-light); }
.text-ink    { color: var(--ink); }
.text-white  { color: #fff; }
.mono        { font-family: 'DM Mono', monospace; }
.italic      { font-style: italic; }

/* ===== SECTION LABELS ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: block; width: 20px; height: 1px;
  background: var(--gold);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer; transition: all var(--t) var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 1rem 2.25rem; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-ink {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-ink:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
}

.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--text-mid);
  color: var(--ink);
}

.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.2);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

/* small utility btns */
.btn-sm-gold { padding: 0.45rem 1.1rem; font-size: 0.8rem; background: var(--gold); color: var(--ink); border: none; border-radius: var(--r-sm); font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all var(--t); }
.btn-sm-gold:hover { background: var(--gold-light); }
.btn-sm-ghost { padding: 0.45rem 1.1rem; font-size: 0.8rem; background: transparent; color: var(--text-light); border: 1px solid var(--border); border-radius: var(--r-sm); font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all var(--t); }
.btn-sm-ghost:hover { border-color: var(--text-mid); color: var(--text); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: all var(--t) var(--ease);
}
.navbar.scrolled {
  background: rgba(10,22,40,0.99);
  border-bottom-color: rgba(184,147,42,0.15);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 2rem;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 0.75rem;
  flex-shrink: 0;
}
.logo-mark {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 600; letter-spacing: 0.02em;
  color: #fff;
}
.logo-accent { color: var(--gold-light); }

/* Nav links */
.nav-links {
  display: flex; align-items: center;
  gap: 0.15rem; list-style: none;
  margin: 0 auto;
}
.nav-link {
  display: block;
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem; font-weight: 400;
  color: rgba(255,255,255,0.65);
  border-radius: var(--r-sm);
  transition: all var(--t);
  letter-spacing: 0.01em;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
}
.nav-link.active-link { color: var(--gold-light); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.7); border-radius: 2px;
  transition: var(--t);
}

/* ===== HERO ===== */
.hero {
  background: var(--ink);
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 9rem 0 6rem;
  position: relative; overflow: hidden;
}
.hero-noise {
  position: absolute; inset: 0;
  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)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
}
.hero-orb-1 {
  position: absolute; top: -15%; right: -8%;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(184,147,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute; bottom: -20%; left: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(28,48,96,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.hero-line {
  position: absolute; top: 0; bottom: 0;
  left: 50%; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,147,42,0.08) 30%, rgba(184,147,42,0.08) 70%, transparent);
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem; align-items: center;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-label::before { content: ''; display: block; width: 16px; height: 1px; background: var(--gold); }
.hero-label-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap;
}
.hero-stat {}
.hero-stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
.stat-number { display: inline; }

/* Hero right panel */
.hero-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}
.hero-panel-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-row {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-row:last-child { border-bottom: none; }
.trust-icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(184,147,42,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold-light);
}
.trust-text strong {
  display: block; font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.85);
  margin-bottom: 0.1rem;
}
.trust-text span { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.25); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-family: 'DM Mono', monospace;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-strip .container { padding: 0 2rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  transition: background var(--t);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(10,22,40,0.03); }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.feature-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.feature-item p { font-size: 0.84rem; color: var(--text-light); line-height: 1.6; }

/* ===== ZIELGRUPPEN ===== */
.zielgruppen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.zielgruppe-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: all var(--t-slow) var(--ease);
  cursor: default;
  position: relative;
}
.zielgruppe-card::after {
  content: '';
  position: absolute; bottom: 0; left: 2rem; right: 2rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-slow) var(--ease);
}
.zielgruppe-card:hover { background: var(--cream); }
.zielgruppe-card:hover::after { transform: scaleX(1); }
.zg-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; color: var(--text-light);
  letter-spacing: 0.1em; margin-bottom: 1.25rem;
}
.zg-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border-gold);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 1.25rem;
}
.zielgruppe-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600; color: var(--ink);
  margin-bottom: 0.5rem;
}
.zielgruppe-card p { font-size: 0.84rem; line-height: 1.65; }
.zg-tags {
  display: flex; flex-wrap: wrap; gap: 0.35rem;
  margin-top: 1.25rem;
}
.zg-tag {
  font-size: 0.72rem; padding: 0.2rem 0.65rem;
  background: var(--cream-2); border: 1px solid var(--border);
  border-radius: var(--r-sm); color: var(--text-mid);
  font-family: 'DM Mono', monospace;
}

/* ===== PRODUKTE ===== */
.produkte-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; }
.produkte-nav {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.produkt-nav-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--t);
  border: 1px solid transparent;
  background: none;
  text-align: left; width: 100%;
  font-family: 'DM Sans', sans-serif;
}
.produkt-nav-item:hover { color: var(--ink); background: var(--cream-2); }
.produkt-nav-item.active {
  color: var(--ink); background: var(--cream-2);
  border-color: var(--border-gold);
}
.produkt-nav-item .pn-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; color: var(--text-light);
  min-width: 24px;
}

.produkte-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.produkt-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  transition: all var(--t-slow) var(--ease);
  scroll-margin-top: 100px;
}
.produkt-card:hover { box-shadow: var(--shadow-raise); border-color: var(--border-gold); }
.pk-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.5rem; }
.pk-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--r-md);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
  background: var(--gold-pale);
}
.pk-title-group {}
.pk-badge {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.pk-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 600;
  color: var(--ink); line-height: 1.1;
}
.pk-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; }
.pk-products {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.pk-product-tag {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; padding: 0.35rem 0.8rem;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r-sm); color: var(--text-mid);
}
.pk-product-tag svg { color: var(--gold); flex-shrink: 0; }
.pk-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.pk-for { font-size: 0.8rem; color: var(--text-light); }
.pk-for strong { color: var(--text-mid); }

/* ===== SCORE / RISIKO ===== */
.score-section { background: var(--ink); }
.score-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.score-left {}
.score-right {}

.gauge-wrap {
  position: relative;
  width: 240px; height: 140px;
  margin: 0 auto 2rem;
}
.gauge-svg { width: 100%; height: auto; overflow: visible; }
.gauge-track {
  fill: none; stroke: rgba(255,255,255,0.08);
  stroke-width: 16; stroke-linecap: round;
}
.gauge-fill {
  fill: none; stroke: var(--gold-light);
  stroke-width: 16; stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transform-origin: center;
  animation: gauge-anim 1.8s var(--ease-out) 0.4s forwards;
}
@keyframes gauge-anim {
  to { stroke-dashoffset: 80; }
}
.gauge-value {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  text-align: center;
}
.gauge-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 600;
  color: var(--gold-light); line-height: 1;
}
.gauge-label { font-size: 0.75rem; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; }

.score-bars { display: flex; flex-direction: column; gap: 1rem; }
.score-bar-item {}
.score-bar-meta {
  display: flex; justify-content: space-between;
  margin-bottom: 0.5rem;
}
.score-bar-name { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.score-bar-pct {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem; color: var(--gold);
}
.score-bar-track {
  height: 4px; background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
}
.score-bar-fill {
  height: 100%; background: var(--gold);
  border-radius: 2px;
  transition: width 1.4s var(--ease-out) 0.6s;
}

/* ===== LIFE EVENTS ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  transition: all var(--t-slow) var(--ease);
  cursor: pointer;
}
.event-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.event-emoji { font-size: 1.75rem; margin-bottom: 0.75rem; display: block; }
.event-card h4 {
  font-size: 0.875rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.35rem;
}
.event-card p { font-size: 0.78rem; color: var(--text-light); line-height: 1.55; }

/* ===== VERGLEICH ===== */
.vergleich-wrap { overflow-x: auto; }
.vergleich-table {
  width: 100%; min-width: 700px;
  border-collapse: separate; border-spacing: 0;
  font-size: 0.875rem;
}
.vergleich-table th {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  font-weight: 500; font-size: 0.8rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vergleich-table th:first-child { border-radius: var(--r-sm) 0 0 0; }
.vergleich-table th:last-child  { border-radius: 0 var(--r-sm) 0 0; }
.vergleich-table th.col-gold { color: var(--gold-light); }
.vergleich-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  vertical-align: middle;
}
.vergleich-table tr:last-child td { border-bottom: none; }
.vergleich-table tr:hover td { background: var(--cream); }
.vt-feature { font-weight: 500; color: var(--ink); }
.vt-check { color: var(--success); font-size: 1rem; }
.vt-cross { color: rgba(10,22,40,0.25); font-size: 1rem; }
.vt-gold-col { background: var(--gold-pale); }
.vt-highlight { font-weight: 600; color: var(--gold); }

/* ===== PROZESS ===== */
.prozess-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.prozess-steps::before {
  content: '';
  position: absolute; top: 32px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}
.prozess-step {
  text-align: center; padding: 0 1.5rem 2.5rem;
  position: relative;
}
.step-num-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.step-num-wrap.gold {
  background: var(--gold-pale);
  border-color: var(--border-gold);
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; color: rgba(255,255,255,0.4);
}
.step-num-wrap.gold .step-num { color: var(--gold-light); }
.prozess-step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  color: rgba(255,255,255,0.85); margin-bottom: 0.5rem;
}
.prozess-step p { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.65; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2rem; border: 1px solid var(--border);
  transition: all var(--t-slow) var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow-card); border-color: var(--border-gold); }
.testi-stars {
  display: flex; gap: 3px; margin-bottom: 1rem;
}
.testi-star { width: 14px; height: 14px; color: var(--gold); }
.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-style: italic;
  color: var(--ink); line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.95rem; color: #fff;
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.875rem; font-weight: 600; color: var(--ink);
}
.testi-role { font-size: 0.78rem; color: var(--text-light); }

/* ===== KONTAKT ===== */
.kontakt-inner {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 6rem; align-items: start;
}
.kontakt-left h2 { color: #fff; margin-bottom: 1rem; }
.kontakt-left > p { color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; }
.kontakt-details { display: flex; flex-direction: column; gap: 0.85rem; }
.kd-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9rem; color: rgba(255,255,255,0.65);
}
.kd-item svg { color: var(--gold); flex-shrink: 0; }

.kontakt-form-wrap {
  background: var(--white); border-radius: var(--r-xl);
  padding: 2.5rem; box-shadow: var(--shadow-raise);
}
.kontakt-form-wrap h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600; color: var(--ink);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.78rem; font-weight: 600;
  color: var(--text); letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--text);
  background: var(--cream);
  outline: none; transition: border-color var(--t);
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-disclaimer { text-align: center; font-size: 0.75rem; color: var(--text-light); margin-top: 0.75rem; }

/* ===== FOOTER ===== */
.footer { background: #050D1A; padding: 5rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo-text { color: rgba(255,255,255,0.85); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic;
  color: var(--gold); margin: 0.85rem 0 0.5rem;
}
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.3); line-height: 1.75; margin-bottom: 1.25rem; }
.footer-langs { display: flex; gap: 0.4rem; }
.lang-tag {
  padding: 0.25rem 0.7rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm); color: rgba(255,255,255,0.35);
  cursor: pointer; transition: all var(--t);
}
.lang-tag.active, .lang-tag:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-size: 0.72rem; font-weight: 500;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.35); transition: color var(--t); }
.footer-col ul li a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.2); transition: color var(--t); }
.footer-legal a:hover { color: rgba(255,255,255,0.55); }
.footer-dc {
  text-align: center; padding-top: 2rem; margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-dc p { font-size: 0.72rem; color: rgba(255,255,255,0.15); }
.footer-dc strong { color: rgba(255,255,255,0.25); }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 42px; height: 42px;
  background: var(--ink); color: rgba(255,255,255,0.7);
  border: 1px solid rgba(184,147,42,0.3);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--t);
  opacity: 0; transform: translateY(12px); pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 900;
  background: var(--ink-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md); padding: 1.1rem 1.4rem;
  max-width: 420px; box-shadow: var(--shadow-raise);
  transition: all var(--t-slow);
}
.cookie-banner.hidden { transform: translateY(200%); opacity: 0; pointer-events: none; }
.cookie-content { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.cookie-content p {
  color: rgba(255,255,255,0.65); font-size: 0.8rem; line-height: 1.55;
  flex: 1; min-width: 200px;
}
.cookie-actions { display: flex; gap: 0.5rem; }

/* ===== ANIMATIONS ===== */
[data-animate] {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-animate="fade-right"] { transform: translateX(-24px); }
[data-animate="fade-left"]  { transform: translateX(24px); }
[data-animate="scale"]      { transform: scale(0.97); }
[data-animate].in-view      { opacity: 1; transform: none; }

/* ===== SECTION COMPONENTS ===== */
.section-header { margin-bottom: 4rem; }
.section-title { margin-bottom: 0.75rem; }
.section-desc { max-width: 540px; font-size: 1rem; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  background: var(--ink);
  padding: 9rem 0 5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 80% 30%, rgba(184,147,42,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 1.25rem; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.5); max-width: 600px; line-height: 1.75; }
.ph-breadcrumb {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25); text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.ph-breadcrumb a { color: rgba(255,255,255,0.35); }
.ph-breadcrumb a:hover { color: var(--gold); }
.ph-breadcrumb span { color: rgba(255,255,255,0.2); margin: 0 0.5rem; }

/* ===== CTA STRIP ===== */
.cta-strip { background: var(--gold); padding: 4rem 0; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-strip h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--ink); margin-bottom: 0.5rem; }
.cta-strip p { color: rgba(10,22,40,0.65); font-size: 0.95rem; }
.cta-strip .btn-ink { background: var(--ink); border-color: var(--ink); }
.cta-strip .btn-ink:hover { background: var(--ink-2); }

/* ===== VERGLEICH TABLE WRAPPER ===== */
.vergleich-section { background: var(--cream); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-panel { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .feature-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
  .zielgruppen-grid { grid-template-columns: repeat(2, 1fr); }
  .produkte-layout { grid-template-columns: 1fr; }
  .produkte-nav { position: static; flex-direction: row; flex-wrap: wrap; }
  .score-inner { grid-template-columns: 1fr; gap: 3rem; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .prozess-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .prozess-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav-links, .nav-actions .btn-ghost-white { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0.25rem;
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--ink); padding: 2rem 1.5rem; z-index: 999;
    overflow-y: auto;
  }
  .nav-links.open .nav-link { font-size: 1rem; padding: 0.65rem 0.85rem; }
  .hero { min-height: auto; padding: 8rem 0 4rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .zielgruppen-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .prozess-steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .events-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
}


/* ===============================================
   PREMIUM TRUST PALETTE — ACCENT POLISH
   Deep Trust Blue + Anka Gold + Warm White
   =============================================== */

/* Logo accent — Anka Gold */
.logo-accent { color: var(--gold); }
.footer-dc strong { color: rgba(201,166,70,0.55); }
.footer-eec {
  margin-top: 0.4rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18) !important;
}
.footer-eec a {
  color: inherit;
  text-decoration: none;
  transition: all var(--t) var(--ease);
}
.footer-eec a strong {
  color: rgba(201,166,70,0.7) !important;
  font-weight: 600;
  letter-spacing: 0.22em;
  transition: all var(--t) var(--ease);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.footer-eec a:hover strong {
  color: var(--gold-light) !important;
  border-bottom-color: var(--gold-light);
}
.footer-eec strong {
  color: rgba(201,166,70,0.7);
  font-weight: 600;
  letter-spacing: 0.22em;
}

/* Eyebrow variant — gold (default), navy (alt) */
.eyebrow { color: var(--gold); }
.eyebrow::before { background: var(--gold); }
.eyebrow.navy { color: var(--ink); }
.eyebrow.navy::before { background: var(--ink); }

/* Hero orbs — gold-only, removing blue tint */
.hero-orb-1 {
  background: radial-gradient(circle at center, rgba(201,166,70,0.14) 0%, transparent 70%);
}
.hero-orb-2 {
  background: radial-gradient(circle at center, rgba(11,31,58,0.55) 0%, transparent 70%);
}

/* Hero panel — navy, with subtle gold border on hover-focus */
.hero-panel {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.09);
}

/* Cards — pure white on warm white page */
.zielgruppe-card { background: var(--white); }
.zielgruppe-card:hover { background: var(--cream); }

/* Card hover shadow — warm, not blue */
.produkt-card:hover {
  box-shadow: 0 8px 24px rgba(11,31,58,0.10),
              0 24px 64px rgba(11,31,58,0.08);
  border-color: var(--border-gold);
}

/* Form focus — gold ring (premium feel) */
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,166,70,0.12);
  background: var(--white);
}

/* Gauge — pure gold (matches CTAs) */
.gauge-fill { stroke: var(--gold); }

/* Trust icon — gold on subtle warm wash */
.trust-icon {
  background: rgba(201,166,70,0.10);
  color: var(--gold-light);
}

/* Buttons — refined */
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,166,70,0.30);
}

/* CTA alt — gold strip with navy text (matches PDF "Konzeptplan" aesthetic) */
.cta-strip { background: var(--gold); }
.cta-strip h2 { color: var(--ink); }
.cta-strip p { color: rgba(11,31,58,0.7); }
.cta-strip .btn-ink {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.cta-strip .btn-ink:hover {
  background: var(--ink-2);
  border-color: var(--ink-2);
  box-shadow: 0 6px 24px rgba(11,31,58,0.25);
}

/* Cookie banner — navy with gold border */
.cookie-banner {
  background: var(--ink);
  border-color: var(--gold-border);
}

/* Scroll-top — navy default, gold on hover */
.scroll-top {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  border-color: var(--gold-border);
}
.scroll-top:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* Language switcher — clean navy/gold */
.lang-switcher {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  padding: 3px;
  gap: 2px;
}
.lang-switcher button {
  background: none; border: none;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--t);
}
.lang-switcher button:hover { color: rgba(255,255,255,0.9); }
.lang-switcher button.active {
  background: var(--gold);
  color: var(--ink);
}

/* Lang fade transition */
[data-i18n] { transition: opacity 0.2s ease; }
body.lang-switching [data-i18n] { opacity: 0; }

/* Section dark — uses ink directly */
.score-section { background: var(--ink); }

/* ========================================================
   QUIZ / SCORE CALCULATOR
   ======================================================== */
.quiz-section { background: var(--cream); padding: 5rem 0; }
.quiz-wrap { max-width: 720px; margin: 0 auto; }

.quiz-progress-bar {
  height: 4px; background: var(--cream-2); border-radius: 2px; margin-bottom: 1rem;
}
.quiz-progress-fill {
  height: 100%; background: var(--gold); border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}
.quiz-progress-labels {
  display: flex; gap: 0; margin-bottom: 3rem;
}
.qpl {
  flex: 1; font-family: 'DM Mono', monospace; font-size: 0.65rem;
  letter-spacing: 0.08em; color: var(--ink-3); opacity: 0.35;
  text-transform: uppercase; transition: opacity var(--t), color var(--t);
}
.qpl.active { opacity: 1; color: var(--gold); }

.quiz-step { display: none; animation: fadeUp 0.35s ease; }
.quiz-step.active { display: block; }

.quiz-step-title {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.5rem;
}
.quiz-step-sub { font-size: 0.9rem; color: var(--ink-3); margin-bottom: 2.5rem; }

.quiz-group { margin-bottom: 2rem; }
.quiz-group-label {
  font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.75rem;
}
.quiz-options {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.6rem;
}
.quiz-option {
  padding: 0.85rem 1rem; border: 1.5px solid var(--cream-2);
  border-radius: var(--r-md); background: #fff;
  font-size: 0.875rem; color: var(--ink); cursor: pointer;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
  text-align: center; user-select: none;
}
.quiz-option:hover { border-color: var(--gold-dark); }
.quiz-option.selected {
  border-color: var(--gold); background: rgba(201,166,70,0.08);
  box-shadow: 0 0 0 3px rgba(201,166,70,0.15);
}

.quiz-checkbox-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.75rem;
}
.quiz-checkbox {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-2); border-radius: var(--r-md); background: #fff;
  cursor: pointer; transition: border-color var(--t), background var(--t); user-select: none;
}
.quiz-checkbox:hover { border-color: var(--gold-dark); }
.quiz-checkbox.checked {
  border-color: var(--gold); background: rgba(201,166,70,0.07);
}
.qcb-box {
  width: 20px; height: 20px; min-width: 20px; border: 2px solid rgba(11,31,58,0.2);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  transition: background var(--t), border-color var(--t);
}
.quiz-checkbox.checked .qcb-box {
  background: var(--gold); border-color: var(--gold);
}
.qcb-check { display: none; width: 12px; height: 12px; }
.quiz-checkbox.checked .qcb-check { display: block; }
.qcb-label { font-size: 0.85rem; color: var(--ink); }

.quiz-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--cream-2);
}
.quiz-step-counter {
  font-family: 'DM Mono', monospace; font-size: 0.75rem; color: var(--ink-3);
}

/* Result */
.quiz-result-gauge {
  text-align: center; padding: 2rem 0;
}
.quiz-result-score {
  font-family: 'Cormorant Garamond', serif; font-size: 6rem; font-weight: 600;
  line-height: 1; color: var(--gold);
}
.quiz-result-label {
  font-family: 'DM Mono', monospace; font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 0.25rem;
}
.quiz-score-bar-wrap { margin: 2rem 0; }
.quiz-score-bar-track {
  height: 12px; background: var(--cream-2); border-radius: 6px; overflow: hidden;
}
.quiz-score-bar-fill {
  height: 100%; border-radius: 6px; background: var(--gold);
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1); width: 0%;
}

.quiz-findings { margin: 2rem 0; display: flex; flex-direction: column; gap: 0.75rem; }
.quiz-finding {
  display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem;
  border-radius: var(--r-md); background: #fff; border: 1px solid var(--cream-2);
}
.qf-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.qf-dot.ok { background: #1A7A5E; }
.qf-dot.warn { background: #D97706; }
.qf-dot.crit { background: #C0392B; }
.qf-text { font-size: 0.875rem; color: var(--ink); flex: 1; }

.quiz-recommendation {
  background: var(--ink); border-radius: var(--r-xl); padding: 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap; margin-top: 2rem;
}
.qr-label {
  font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(201,166,70,0.7); margin-bottom: 0.4rem;
}
.qr-package { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: #fff; }
.qr-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ========================================================
   LOGIN MODAL + LIFE EVENT MODAL
   ======================================================== */
.ta-modal-overlay {
  position: fixed; inset: 0; background: rgba(6,15,30,0.75);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.ta-modal-overlay.open { opacity: 1; pointer-events: all; }
.ta-modal-box {
  background: #fff; border-radius: var(--r-xl); padding: 2.5rem;
  max-width: 440px; width: calc(100% - 2rem); position: relative;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  max-height: 90vh; overflow-y: auto;
}
.ta-modal-overlay.open .ta-modal-box { transform: translateY(0) scale(1); }
.ta-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(11,31,58,0.07); border: none; border-radius: 50%;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; color: var(--ink-3); transition: background var(--t);
}
.ta-modal-close:hover { background: rgba(11,31,58,0.14); }
.ta-modal-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.4rem;
}
.ta-modal-sub { font-size: 0.875rem; color: var(--ink-3); margin-bottom: 1.75rem; }

.ta-modal-field { margin-bottom: 1rem; }
.ta-modal-field label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--ink); margin-bottom: 0.4rem; }
.ta-modal-field input {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--cream-2);
  border-radius: var(--r-md); font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--ink); background: var(--cream); transition: border-color var(--t);
  box-sizing: border-box;
}
.ta-modal-field input:focus { outline: none; border-color: var(--gold); }
.ta-modal-footer { margin-top: 0.75rem; text-align: center; font-size: 0.8rem; color: var(--ink-3); }
.ta-modal-footer a { color: var(--gold-dark); text-decoration: none; }
.ta-modal-footer a:hover { text-decoration: underline; }

/* Logged-in navbar state */
.nav-user {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.85);
}
.nav-user-avatar {
  width: 30px; height: 30px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600; color: var(--ink);
}

/* Life Event Modal (wider) */
.le-modal-box { max-width: 560px; }
.le-modal-packages { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 1.25rem 0; }
.le-modal-pkg {
  padding: 0.85rem 1rem; border: 1.5px solid var(--cream-2); border-radius: var(--r-md);
  font-size: 0.85rem; color: var(--ink); background: var(--cream);
}
.le-modal-pkg strong { display: block; color: var(--gold-dark); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.le-modal-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* Event card clickable */
.event-card { cursor: pointer; transition: transform var(--t), box-shadow var(--t); }
.event-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(11,31,58,0.12); }

/* ========================================================
   PRICING PAGE
   ======================================================== */
.pricing-section { background: var(--cream); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: #fff; border: 1.5px solid var(--cream-2); border-radius: var(--r-xl);
  padding: 2rem; position: relative; transition: box-shadow var(--t);
}
.pricing-card:hover { box-shadow: 0 16px 48px rgba(11,31,58,0.1); }
.pricing-card.featured {
  background: var(--ink); color: #fff; border-color: var(--gold);
  box-shadow: 0 24px 64px rgba(11,31,58,0.25);
}
.pricing-badge {
  font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); background: rgba(201,166,70,0.12);
  border: 1px solid rgba(201,166,70,0.3); border-radius: 999px;
  padding: 0.2rem 0.7rem; display: inline-block; margin-bottom: 1.25rem;
}
.pricing-tier { font-size: 0.8rem; font-weight: 600; color: var(--ink-3); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.06em; }
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.5); }
.pricing-price-wrap { margin: 1rem 0 0.25rem; }
.pricing-price { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 600; color: var(--ink); line-height: 1; }
.pricing-card.featured .pricing-price { color: var(--gold); }
.pricing-period { font-size: 0.85rem; color: var(--ink-3); }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }
.pricing-desc { font-size: 0.85rem; color: var(--ink-3); margin: 0.75rem 0 1.5rem; line-height: 1.6; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.6); }
.pricing-features { list-style: none; padding: 0; margin: 0 0 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.85rem; color: var(--ink); line-height: 1.4;
  padding-bottom: 0.6rem; border-bottom: 1px solid var(--cream-2);
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.08); }
.pricing-features li:last-child { border-bottom: none; padding-bottom: 0; }
.pf-check { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.pricing-card.featured .pf-check { color: var(--gold-light); }
.pricing-popular-ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.2rem 1rem; border-radius: 999px; white-space: nowrap;
}

/* ========================================================
   SCHADENMELDUNG PAGE
   ======================================================== */
.schaden-section { background: var(--cream); }
.schaden-wrap { max-width: 760px; margin: 0 auto; }
.schaden-type-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.75rem; margin-bottom: 2rem;
}
.schaden-type {
  padding: 1rem; border: 1.5px solid var(--cream-2); border-radius: var(--r-md);
  background: #fff; cursor: pointer; text-align: center; transition: border-color var(--t), background var(--t);
}
.schaden-type:hover { border-color: var(--gold-dark); }
.schaden-type.selected { border-color: var(--gold); background: rgba(201,166,70,0.07); }
.schaden-type-icon { font-size: 1.5rem; margin-bottom: 0.4rem; }
.schaden-type-label { font-size: 0.8rem; color: var(--ink); font-weight: 500; }
.schaden-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.schaden-field { display: flex; flex-direction: column; gap: 0.4rem; }
.schaden-field.full { grid-column: 1 / -1; }
.schaden-field label { font-size: 0.8rem; font-weight: 500; color: var(--ink); }
.schaden-field input, .schaden-field select, .schaden-field textarea {
  padding: 0.75rem 1rem; border: 1.5px solid var(--cream-2);
  border-radius: var(--r-md); font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--ink); background: #fff; transition: border-color var(--t);
}
.schaden-field input:focus, .schaden-field select:focus, .schaden-field textarea:focus {
  outline: none; border-color: var(--gold);
}
.upload-area {
  border: 2px dashed var(--cream-2); border-radius: var(--r-md);
  padding: 2.5rem 1.5rem; text-align: center; cursor: pointer;
  transition: border-color var(--t), background var(--t); background: #fff;
}
.upload-area:hover { border-color: var(--gold); background: rgba(201,166,70,0.04); }
.upload-area-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.upload-area-text { font-size: 0.875rem; color: var(--ink-3); }
.upload-area-sub { font-size: 0.75rem; color: var(--ink-3); margin-top: 0.25rem; opacity: 0.6; }
.upload-files-list { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.75rem; }
.upload-file-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 0.75rem; background: rgba(201,166,70,0.08);
  border-radius: var(--r-sm); font-size: 0.8rem; color: var(--ink);
}
.upload-file-remove { background: none; border: none; cursor: pointer; color: var(--ink-3); font-size: 1rem; }

.schaden-confirmation {
  text-align: center; padding: 3rem 2rem; background: #fff;
  border: 1px solid var(--cream-2); border-radius: var(--r-xl); display: none;
}
.schaden-confirmation.show { display: block; }
.schaden-conf-icon { font-size: 3rem; margin-bottom: 1rem; }
.schaden-conf-number {
  font-family: 'DM Mono', monospace; font-size: 0.75rem; letter-spacing: 0.1em;
  color: var(--gold-dark); background: rgba(201,166,70,0.1); padding: 0.3rem 0.75rem;
  border-radius: 999px; display: inline-block; margin-bottom: 1rem;
}

/* ========================================================
   RESPONSIVE — NEW PAGES
   ======================================================== */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .quiz-options { grid-template-columns: 1fr 1fr; }
  .quiz-checkbox-grid { grid-template-columns: 1fr; }
  .schaden-form-grid { grid-template-columns: 1fr; }
  .quiz-result-score { font-size: 4rem; }
  .le-modal-packages { grid-template-columns: 1fr; }
}

/* ========================================================
   TA AUTH MODAL (Login / Register) — v2
   ======================================================== */
.ta-modal {
  position: fixed; inset: 0;
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.ta-modal.open { opacity: 1; pointer-events: all; }
.ta-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(6,15,30,0.72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.ta-modal .ta-modal-dialog {
  position: relative; z-index: 1;
  background: #fff;
  border-radius: var(--r-xl);
  width: calc(100% - 2rem);
  max-width: 880px;
  max-height: calc(100vh - 4rem);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: 0 24px 80px rgba(6,15,30,0.4);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.ta-modal.open .ta-modal-dialog { transform: translateY(0) scale(1); }
.ta-modal.ta-modal-narrow .ta-modal-dialog {
  max-width: 560px; grid-template-columns: 1fr;
}
@media (max-width: 760px) {
  .ta-modal .ta-modal-dialog { grid-template-columns: 1fr; max-height: 100vh; border-radius: 0; height: 100vh; }
  .ta-modal-side { display: none !important; }
}

.ta-modal .ta-modal-close {
  position: absolute; top: 0.85rem; right: 0.85rem;
  background: rgba(255,255,255,0.14); border: none; border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff;
  transition: background var(--t);
  z-index: 5;
}
.ta-modal .ta-modal-close:hover { background: rgba(255,255,255,0.25); }
.ta-modal .ta-modal-narrow .ta-modal-close,
.ta-modal-narrow .ta-modal-close {
  background: rgba(11,31,58,0.06); color: var(--ink);
}
.ta-modal-narrow .ta-modal-close:hover { background: rgba(11,31,58,0.14); }

/* SIDE PANEL */
.ta-modal-side {
  background: linear-gradient(155deg, var(--ink) 0%, var(--ink-deep) 100%);
  color: #fff;
  padding: 2.5rem 2.25rem;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.ta-modal-side::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,166,70,0.18) 0%, transparent 65%);
}
.ta-modal-side-inner { position: relative; z-index: 1; width: 100%; }
.ta-modal-side .logo-mark {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.ta-modal-side h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem; font-weight: 500;
  color: #fff; margin-bottom: 0.5rem; line-height: 1.2;
}
.ta-modal-side h3 em { color: var(--gold-light); font-style: italic; }
.ta-modal-side p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem; line-height: 1.65;
  margin-bottom: 1.75rem;
}
.ta-modal-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.ta-modal-bullets li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.85);
}
.ta-modal-bullets li::before {
  content: ''; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(201,166,70,0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A646' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
  flex-shrink: 0;
}

/* MAIN */
.ta-modal-main {
  padding: 2.5rem 2.25rem;
  display: flex; flex-direction: column;
  background: #fff;
}

.ta-tabs {
  display: flex; gap: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.75rem;
}
.ta-tab {
  background: none; border: none; cursor: pointer;
  padding: 0.65rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; font-weight: 500;
  color: var(--text-light);
  position: relative;
  transition: color var(--t);
}
.ta-tab:hover { color: var(--ink); }
.ta-tab.active { color: var(--ink); }
.ta-tab.active::after {
  content: ''; position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--gold);
}

.ta-form { display: none; }
.ta-pane.active { display: block; }

.ta-field { margin-bottom: 1rem; }
.ta-field label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  color: var(--ink); margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.ta-field input {
  width: 100%; padding: 0.8rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; color: var(--ink);
  transition: all var(--t);
}
.ta-field input:focus {
  outline: none; border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 3px rgba(201,166,70,0.12);
}

.ta-checkbox {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.82rem; color: var(--text-mid);
  margin: 0.5rem 0 1rem;
  cursor: pointer;
  line-height: 1.5;
}
.ta-checkbox input { margin-top: 3px; accent-color: var(--gold); }
.ta-checkbox a { color: var(--gold-dark); text-decoration: underline; }

.ta-modal-foot {
  margin-top: 1rem; text-align: center;
  font-size: 0.82rem; color: var(--text-light);
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.5rem;
}
.ta-modal-foot a {
  color: var(--gold-dark); text-decoration: none;
}
.ta-modal-foot a:hover { text-decoration: underline; }

@keyframes ta-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* ========================================================
   TA EVENT MODAL
   ======================================================== */
.ta-event-dialog {
  padding: 2.25rem 2rem;
}
.ta-event-head {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.75rem;
}
.ta-event-emoji {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; flex-shrink: 0;
}
.ta-event-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 0.2rem;
}
.ta-event-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 500;
  color: var(--ink); margin: 0;
}
.ta-event-body { margin-bottom: 1.5rem; }
.ta-event-body h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}
.ta-event-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.75rem;
  max-height: 320px; overflow-y: auto;
}
.ta-event-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
}
.te-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(26,122,94,0.12); color: #1A7A5E;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.te-text { display: flex; flex-direction: column; gap: 0.2rem; }
.te-text strong { font-size: 0.9rem; color: var(--ink); font-weight: 600; }
.te-text span { font-size: 0.8rem; color: var(--text-mid); line-height: 1.55; }

.ta-event-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.ta-event-pkg { display: flex; flex-direction: column; gap: 0.15rem; }
.ta-event-pkg-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.66rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.ta-event-pkg strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--ink); font-weight: 500;
}
.ta-event-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.ta-event-actions .btn { padding: 0.55rem 1rem; font-size: 0.82rem; }

/* ========================================================
   TA USER CHIP (navbar logged-in state)
   ======================================================== */
.ta-user-chip {
  position: relative;
  display: inline-flex; align-items: center;
}
.ta-user-trigger {
  display: flex; align-items: center; gap: 0.55rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 4px 12px 4px 4px;
  cursor: pointer;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 500;
  transition: all var(--t);
}
.navbar.scrolled .ta-user-trigger {
  background: rgba(11,31,58,0.06);
  border-color: rgba(11,31,58,0.12);
  color: var(--ink);
}
.ta-user-trigger:hover {
  background: rgba(255,255,255,0.15);
}
.navbar.scrolled .ta-user-trigger:hover { background: rgba(11,31,58,0.1); }
.ta-user-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  flex-shrink: 0;
}
.ta-user-name { font-weight: 500; }

.ta-user-menu {
  position: absolute; top: calc(100% + 0.6rem); right: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 12px 40px rgba(11,31,58,0.15);
  padding: 0.5rem;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 100;
}
.ta-user-chip.open .ta-user-menu {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.ta-user-head {
  display: flex; flex-direction: column;
  padding: 0.65rem 0.85rem 0.85rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.4rem;
}
.ta-user-head strong {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--ink); font-weight: 600;
}
.ta-user-head span {
  font-size: 0.78rem; color: var(--text-light);
  font-family: 'DM Mono', monospace;
  margin-top: 0.15rem;
}
.ta-user-link {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
  font-size: 0.85rem; color: var(--ink);
  text-decoration: none;
  transition: background var(--t);
}
.ta-user-link svg { color: var(--text-light); flex-shrink: 0; }
.ta-user-link:hover { background: var(--cream); }
.ta-user-link:hover svg { color: var(--gold-dark); }
.ta-user-link[data-action="logout"] { color: #C0392B; }
.ta-user-link[data-action="logout"] svg { color: #C0392B; }
.ta-user-link[data-action="logout"]:hover { background: rgba(192,57,43,0.06); }
.ta-user-sep {
  height: 1px; background: var(--border);
  margin: 0.4rem 0;
}

@media (max-width: 768px) {
  .ta-user-name { display: none; }
  .ta-user-trigger { padding: 4px; }
  .ta-user-menu { right: auto; left: 0; min-width: 220px; }
}

/* ========================================================
   LANGUAGE SOON-STATE — EN / TR temporarily disabled
   ======================================================== */
.lang-switcher button.lang-soon {
  position: relative;
  opacity: 0.55;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: rgba(201,166,70,0.6);
  text-decoration-thickness: 1px;
}
.lang-switcher button.lang-soon::after {
  content: 'bald';
  position: absolute;
  top: -10px; right: -8px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1px 5px;
  border-radius: 4px;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(11,31,58,0.25);
  pointer-events: none;
}
.lang-switcher button.lang-soon:hover {
  background: rgba(255,255,255,0.06);
  color: inherit;
  opacity: 0.7;
}
.navbar.scrolled .lang-switcher button.lang-soon:hover {
  background: rgba(11,31,58,0.04);
}

/* Footer .lang-tag soon state */
.lang-tag.lang-soon {
  position: relative;
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
}
.lang-tag.lang-soon::after {
  content: 'bald';
  position: absolute;
  top: -8px; right: -10px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'DM Mono', monospace;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1px 4px;
  border-radius: 3px;
  line-height: 1.2;
  text-decoration: none;
}

/* ========================================================
   ╔══════════════════════════════════════════════════════╗
   ║   PREMIUM POLISH LAYER — v3                           ║
   ║   Scroll progress · Hero depth · Card gradients       ║
   ║   Floating actions · Refined micro-interactions       ║
   ╚══════════════════════════════════════════════════════╝
   ======================================================== */

/* ===== 1. SCROLL PROGRESS BAR (top of viewport) ===== */
.ta-scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 2000;
  background: transparent; pointer-events: none;
}
.ta-scroll-progress::after {
  content: ''; display: block; height: 100%;
  width: var(--ta-progress, 0%);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  box-shadow: 0 0 8px rgba(201,166,70,0.55);
  transition: width 0.1s linear;
}

/* ===== 2. ENHANCED HERO — grid pattern + depth ===== */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,166,70,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,166,70,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none; z-index: 0;
}
.hero-inner { z-index: 2; }
.hero-orb-1, .hero-orb-2, .hero-noise, .hero-line { z-index: 1; }

/* Hero label dot — wider glow */
.hero-label-dot {
  box-shadow: 0 0 0 0 rgba(201,166,70,0.6);
  animation: pulse-dot 2s ease-in-out infinite,
             halo-pulse 2.2s ease-out infinite;
}
@keyframes halo-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,166,70,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(201,166,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,166,70,0); }
}

/* Hero panel — gold accent line on left */
.hero-panel {
  position: relative;
  background: linear-gradient(165deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 16px 60px rgba(6,15,30,0.4);
}
.hero-panel::before {
  content: '';
  position: absolute; top: 2rem; bottom: 2rem; left: 0;
  width: 2px; border-radius: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.trust-row {
  position: relative; transition: padding-left var(--t) var(--ease);
}
.trust-row:hover { padding-left: 0.5rem; }
.trust-row:hover .trust-icon {
  background: rgba(201,166,70,0.22);
  transform: scale(1.05);
}
.trust-icon { transition: all var(--t) var(--ease); }

/* Hero stat numbers — subtle gradient text */
.hero-stat-number {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Hero CTA — animated gold sheen on hover */
.hero-actions .btn-gold {
  position: relative; overflow: hidden;
}
.hero-actions .btn-gold::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s var(--ease);
}
.hero-actions .btn-gold:hover::after { left: 150%; }

/* ===== 3. SECTION ORNAMENT (decorative divider between sections) ===== */
.section-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; padding: 1.25rem 0;
  color: var(--gold);
}
.section-ornament::before,
.section-ornament::after {
  content: ''; flex: 1; max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold));
}
.section-ornament::after { background: linear-gradient(270deg, transparent, var(--border-gold)); }
.section-ornament-mark {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.7;
}

/* ===== 4. SECTION HEADER — refined eyebrow ===== */
.section-header.center .eyebrow {
  margin: 0 auto 1rem;
  justify-content: center;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-header .section-title { letter-spacing: -0.015em; }

/* ===== 5. ZIELGRUPPE CARDS — gold gradient sheen + refined num ===== */
.zielgruppe-card {
  position: relative;
  overflow: hidden;
}
.zielgruppe-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(201,166,70,0.06), transparent 60%);
  opacity: 0; transition: opacity var(--t-slow) var(--ease);
  pointer-events: none;
}
.zielgruppe-card:hover::before { opacity: 1; }
.zielgruppe-card:hover .zg-icon {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: rotate(-4deg) scale(1.05);
}
.zg-icon { transition: all var(--t-slow) var(--ease); }
.zg-num {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; color: rgba(201,166,70,0.18);
  font-weight: 500; letter-spacing: 0;
  margin-bottom: 0;
  transition: color var(--t-slow) var(--ease);
}
.zielgruppe-card:hover .zg-num { color: rgba(201,166,70,0.45); }

/* ===== 6. FEATURE STRIP — subtle icon glow on hover ===== */
.feature-item .feature-icon { transition: all var(--t) var(--ease); }
.feature-item:hover .feature-icon {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(201,166,70,0.3);
  transform: translateY(-2px);
}
.feature-item { position: relative; }
.feature-item::before {
  content: '';
  position: absolute; bottom: 0; left: 2rem; right: 2rem;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-slow) var(--ease);
}
.feature-item:hover::before { transform: scaleX(1); }

/* ===== 7. EVENT CARD — refined hover ===== */
.event-card {
  position: relative; overflow: hidden;
}
.event-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-slow) var(--ease);
}
.event-card:hover::before { transform: scaleX(1); }
.event-card:hover .event-emoji { transform: scale(1.15) rotate(-5deg); }
.event-emoji { transition: transform var(--t-slow) var(--ease); display: inline-block; }
.event-card::after {
  content: '→';
  position: absolute; bottom: 1rem; right: 1.25rem;
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0; transform: translateX(-6px);
  transition: all var(--t-slow) var(--ease);
}
.event-card:hover::after { opacity: 1; transform: translateX(0); }

/* ===== 8. TESTIMONIALS — quotation mark decoration ===== */
.testimonial-card {
  position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: -1.5rem; right: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem; font-weight: 700;
  color: rgba(201,166,70,0.06);
  line-height: 1; font-style: italic;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11,31,58,0.08), 0 6px 20px rgba(11,31,58,0.05);
}
.testimonial-card { transition: all var(--t-slow) var(--ease); }
.testi-author { position: relative; z-index: 1; }
.testimonial-card blockquote { position: relative; z-index: 1; }

/* ===== 9. PROZESS STEPS — animated number rings ===== */
.prozess-step:hover .step-num-wrap {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(201,166,70,0.25);
}
.prozess-step:hover .step-num { color: var(--ink); }
.prozess-step:hover h3 { color: #fff; }
.step-num-wrap, .step-num { transition: all var(--t-slow) var(--ease); }

/* ===== 10. CTA STRIP — subtle texture pattern ===== */
.cta-strip {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 80% 50%, rgba(11,31,58,0.06) 0%, transparent 60%),
    radial-gradient(circle at 20% 50%, rgba(11,31,58,0.04) 0%, transparent 60%),
    var(--gold);
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,31,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,31,58,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none; opacity: 0.5;
}
.cta-strip-inner { position: relative; z-index: 1; }

/* ===== 11. NAVBAR — subtle gold underline on active ===== */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; left: 50%; right: 50%; bottom: -2px;
  height: 2px; background: var(--gold);
  transition: all var(--t) var(--ease);
}
.nav-link:hover::after,
.nav-link.active-link::after {
  left: 0.85rem; right: 0.85rem;
}
.nav-link.active-link { background: rgba(201,166,70,0.08); }

/* ===== 12. SCROLL TOP — gold gradient ===== */
.scroll-top {
  background: var(--ink);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(11,31,58,0.15);
}
.scroll-top:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201,166,70,0.4);
}

/* ===== 13. FLOATING WHATSAPP / LIVE CHAT BUTTON ===== */
.ta-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 600;
  display: flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35), 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(60px); opacity: 0;
  transition: all var(--t-slow) var(--ease);
}
.ta-fab.show { transform: translateY(0); opacity: 1; }
.ta-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.45), 0 6px 16px rgba(0,0,0,0.2);
}
.ta-fab svg { flex-shrink: 0; }
.ta-fab-label {
  white-space: nowrap;
  max-width: 200px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .ta-fab { bottom: 5rem; right: 1rem; padding: 0.75rem; }
  .ta-fab-label { display: none; }
  .scroll-top { bottom: 1rem; right: 1rem; }
}

/* Position scroll-top to stack with FAB (right side) */
.scroll-top { bottom: 6.5rem; }
@media (max-width: 768px) {
  .scroll-top { bottom: 5rem; right: 4.5rem; }
}

/* ===== 14. FORM ENHANCEMENT — premium focus ring ===== */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
}
.form-field input,
.form-field select,
.form-field textarea,
.sch-field input,
.sch-field select,
.sch-field textarea,
.ta-field input {
  transition: all var(--t) var(--ease);
}

/* ===== 15. KONTAKT FORM POLISH ===== */
.kontakt-form-wrap {
  background: linear-gradient(165deg, #fff 0%, var(--cream) 100%);
  border: 1px solid var(--border);
}
.form-field input::placeholder,
.form-field textarea::placeholder,
.sch-field input::placeholder,
.sch-field textarea::placeholder {
  color: rgba(100,116,139,0.5);
  font-style: italic;
}

/* ===== 16. FOOTER POLISH — gold heading bullet ===== */
.footer-col h4 {
  position: relative; padding-left: 14px;
}
.footer-col h4::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 1px;
  opacity: 0.7;
}
.footer-col ul li a {
  position: relative;
  transition: all var(--t) var(--ease);
  padding-left: 0;
}
.footer-col ul li a:hover {
  padding-left: 8px;
  color: var(--gold-light);
}
.footer-col ul li a::before {
  content: '→';
  position: absolute; left: -12px; top: 0;
  opacity: 0; color: var(--gold);
  transition: all var(--t) var(--ease);
}
.footer-col ul li a:hover::before {
  opacity: 1; left: -4px;
}

/* ===== 17. PAGE HERO — refined depth ===== */
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}
.page-hero h1 {
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.85) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ===== 18. SCORE SECTION — gauge glow ===== */
.gauge-wrap {
  position: relative;
}
.gauge-wrap::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,166,70,0.08) 0%, transparent 60%);
  transform: translate(-50%, -30%);
  pointer-events: none;
}
.gauge-number {
  text-shadow: 0 0 30px rgba(201,166,70,0.3);
}

/* ===== 19. MOBILE NAV — refined slide-in ===== */
@media (max-width: 768px) {
  .nav-links.open {
    background: linear-gradient(180deg, var(--ink) 0%, var(--ink-deep) 100%);
    border-top: 1px solid var(--border-gold);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: slide-down 0.3s var(--ease);
  }
  .nav-links.open .nav-link {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 1rem 0.85rem !important;
  }
  .nav-links.open .nav-link:last-child { border-bottom: none; }
  .nav-actions .btn-gold {
    display: inline-flex !important;
  }
  /* show login/cta in mobile too — adjustments */
  .nav-actions { gap: 0.5rem; }
}
@keyframes slide-down {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== 20. SECTION ALTERNATE BACKGROUND RHYTHM ===== */
section + section:not(.score-section):not([style*="ink"]):not([style*="cream"]):not(.page-hero):not(.hero) {
  position: relative;
}

/* ===== 21. ANIMATED GRADIENT BORDER (premium cards) ===== */
@keyframes gradient-rotate {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== 22. PRODUKT CARD — gold corner accent ===== */
.produkt-card {
  position: relative;
}
.produkt-card::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 28px 28px 0;
  border-color: transparent var(--gold-pale) transparent transparent;
  opacity: 0; transition: opacity var(--t-slow) var(--ease);
  border-top-right-radius: var(--r-lg);
}
.produkt-card:hover::after { opacity: 1; }
.produkt-card:hover .pk-icon-wrap {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: rotate(-3deg);
}
.pk-icon-wrap { transition: all var(--t-slow) var(--ease); }
.pk-product-tag { transition: all var(--t) var(--ease); }
.pk-product-tag:hover {
  background: #fff;
  border-color: var(--gold);
  color: var(--ink);
}

/* ===== 23. INTERACTIVE TAGS (zg-tag, beruf-tag) ===== */
.zg-tag, .beruf-tag {
  transition: all var(--t) var(--ease);
}
.zg-tag:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}

/* ===== 24. LANGUAGE SWITCHER — refined ===== */
.lang-switcher {
  display: inline-flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 3px;
  gap: 0;
}
.lang-switcher button {
  background: transparent; border: none;
  padding: 5px 12px;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; font-weight: 500;
  color: rgba(255,255,255,0.5);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--t);
  letter-spacing: 0.05em;
}
.lang-switcher button:hover {
  color: #fff;
}
.lang-switcher button.active {
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
}
.navbar.scrolled .lang-switcher {
  background: rgba(11,31,58,0.04);
  border-color: rgba(11,31,58,0.08);
}

/* Soon-state overrides — keep visible but disabled */
.lang-switcher button.lang-soon.active {
  background: rgba(201,166,70,0.3);
  color: rgba(11,31,58,0.5);
}

/* ===== 25. ACCESSIBLE SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--gold); color: var(--ink);
  padding: 0.6rem 1rem; z-index: 9999;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  border-radius: 0 0 var(--r-sm) 0;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; outline: 2px solid var(--ink); }

/* ===== 26. SELECTION COLOR ===== */
::selection { background: var(--gold); color: var(--ink); }
::-moz-selection { background: var(--gold); color: var(--ink); }

/* ===== 27. SCROLLBAR (webkit) ===== */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: rgba(11,31,58,0.2);
  border-radius: 999px;
  border: 2px solid var(--cream);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== 28. TRUSTED-BY MARKER (subtle text strip) ===== */
.trusted-strip {
  background: var(--cream-2);
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trusted-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.trusted-inner .ti-label {
  color: var(--ink); font-weight: 500;
  padding-right: 1rem; border-right: 1px solid var(--border);
}
.trusted-inner .ti-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: var(--text-mid);
  letter-spacing: 0;
  font-style: italic;
  text-transform: none;
}
@media (max-width: 768px) {
  .trusted-inner { gap: 1rem 1.5rem; flex-direction: column; }
  .trusted-inner .ti-label { border-right: none; padding-right: 0; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
}

/* ===== 29. SECTION DIVIDER UTILITY (CSS-only ornament) ===== */
.divider-ornament {
  display: flex; align-items: center; justify-content: center;
  margin: 3rem 0 1.5rem;
  color: var(--gold);
}
.divider-ornament::before,
.divider-ornament::after {
  content: ''; flex: 0 1 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold));
}
.divider-ornament::after { background: linear-gradient(270deg, transparent, var(--border-gold)); }
.divider-ornament span {
  padding: 0 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-style: italic;
  letter-spacing: 0.02em;
}

/* ===== 30. ENHANCED LOGO — gentle hover bobbing ===== */
.logo { transition: opacity var(--t) var(--ease); }
.logo:hover { opacity: 0.85; }
.logo .logo-mark svg path { transition: opacity var(--t) var(--ease); }
.logo:hover .logo-mark svg path:nth-child(1) {
  animation: anka-pulse 1.4s var(--ease) infinite;
}
@keyframes anka-pulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

/* ===== 31. REDUCED MOTION SUPPORT ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========================================================
   ╔══════════════════════════════════════════════════════╗
   ║   LIGHT THEME — "nicht bogucu", helle, luftige       ║
   ║   Cream + Warm-White + dunkle Tinte für Lesbarkeit   ║
   ║   Gold nur als feiner Akzent                         ║
   ╚══════════════════════════════════════════════════════╝
   ======================================================== */

/* Body — warm cream */
body { background: var(--cream); color: var(--text); }

/* ===== NAVBAR — light, glass-like ===== */
.navbar {
  background: rgba(247,244,239,0.78);
  border-bottom: 1px solid rgba(11,31,58,0.06);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom-color: rgba(11,31,58,0.08);
  box-shadow: 0 2px 16px rgba(11,31,58,0.05);
}
.logo-text { color: var(--ink); }
.logo-accent { color: var(--gold-dark); }
.nav-link { color: var(--text-mid); }
.nav-link:hover { color: var(--ink); background: rgba(11,31,58,0.04); }
.nav-link.active-link { color: var(--gold-dark); background: var(--gold-pale); }
.hamburger span { background: var(--ink); }

/* Login button — outline cream */
.btn-ghost-white {
  color: var(--text-mid);
  border-color: rgba(11,31,58,0.18);
  background: transparent;
}
.btn-ghost-white:hover {
  background: rgba(11,31,58,0.05);
  color: var(--ink);
  border-color: var(--ink);
}

/* Language switcher — light */
.lang-switcher {
  background: rgba(11,31,58,0.05);
  border: 1px solid rgba(11,31,58,0.08);
}
.lang-switcher button { color: var(--text-mid); }
.lang-switcher button:hover { color: var(--ink); }
.lang-switcher button.active { background: var(--ink); color: #fff; }
.navbar.scrolled .lang-switcher {
  background: rgba(11,31,58,0.04);
  border-color: rgba(11,31,58,0.08);
}

/* User chip — light variant */
.ta-user-trigger {
  background: rgba(11,31,58,0.06);
  border: 1px solid rgba(11,31,58,0.1);
  color: var(--ink);
}
.ta-user-trigger:hover { background: rgba(11,31,58,0.1); }

/* ===== HERO — bright, airy ===== */
.hero {
  background: linear-gradient(165deg, #fff 0%, var(--cream) 60%, var(--cream-2) 100%);
}
.hero::before {
  background-image:
    linear-gradient(rgba(11,31,58,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,31,58,0.035) 1px, transparent 1px);
}
.hero-orb-1 {
  background: radial-gradient(circle at center, rgba(201,166,70,0.18) 0%, transparent 70%);
}
.hero-orb-2 {
  background: radial-gradient(circle at center, rgba(201,166,70,0.10) 0%, transparent 70%);
}
.hero-noise { opacity: 0.015; }
.hero-line {
  background: linear-gradient(to bottom, transparent, rgba(201,166,70,0.15) 30%, rgba(201,166,70,0.15) 70%, transparent);
}
.hero-title { color: var(--ink); }
.hero-title em { color: var(--gold-dark); }
.hero-sub { color: var(--text-mid); }
.hero-divider { background: rgba(11,31,58,0.08); }
.hero-stat-label { color: var(--text-light); }
.hero-scroll { color: var(--text-light); }
.scroll-line { background: linear-gradient(to bottom, rgba(11,31,58,0.3), transparent); }
.hero-label { color: var(--gold-dark); }
.hero-label::before { background: var(--gold-dark); }

/* Hero stat numbers — keep gold gradient (already light-friendly) */
.hero-stat-number {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Hero outline btn — was for dark bg, now needs dark text */
.hero-actions .btn-outline {
  color: var(--text-mid);
  border-color: rgba(11,31,58,0.18);
}
.hero-actions .btn-outline:hover {
  background: rgba(11,31,58,0.05);
  color: var(--ink);
  border-color: var(--ink);
}

/* Hero panel — white card */
.hero-panel {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(11,31,58,0.08);
  box-shadow: 0 16px 60px rgba(11,31,58,0.08), 0 4px 12px rgba(11,31,58,0.04);
}
.hero-panel-title {
  color: var(--text-light);
  border-bottom-color: rgba(11,31,58,0.08);
}
.trust-row { border-bottom-color: rgba(11,31,58,0.06); }
.trust-text strong { color: var(--ink); }
.trust-text span { color: var(--text-light); }
.trust-icon { background: var(--gold-pale); color: var(--gold-dark); }
.hero-panel::before {
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

/* ===== TRUSTED STRIP — light ===== */
.trusted-strip {
  background: var(--white);
  border-top: 1px solid rgba(11,31,58,0.06);
  border-bottom: 1px solid rgba(11,31,58,0.06);
}
.trusted-inner .ti-label { color: var(--ink); border-right-color: rgba(11,31,58,0.1); }
.trusted-inner .ti-item { color: var(--text-mid); }

/* ===== FEATURES STRIP — light ===== */
.features-strip {
  background: var(--cream);
  border-top: 1px solid rgba(11,31,58,0.06);
  border-bottom: 1px solid rgba(11,31,58,0.06);
}
.features-strip .feature-item { border-right-color: rgba(11,31,58,0.06); }
.feature-icon {
  background: var(--white);
  color: var(--gold-dark);
  border: 1px solid rgba(11,31,58,0.08);
}
.feature-item:hover .feature-icon {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* ===== ZIELGRUPPEN — already light, just polish ===== */
.zielgruppen-grid {
  background: rgba(11,31,58,0.06);
  border-color: rgba(11,31,58,0.08);
}
.zg-icon { background: var(--white); }

/* ===== SCORE SECTION — flip to light cream ===== */
.score-section {
  background: linear-gradient(165deg, var(--cream) 0%, var(--cream-2) 100%) !important;
}
.score-section .eyebrow { color: var(--gold-dark) !important; }
.score-section h2 { color: var(--ink) !important; }
.score-section h2 em { color: var(--gold-dark) !important; }
.score-left p { color: var(--text-mid) !important; }
.score-bar-name { color: var(--text-mid) !important; }
.score-bar-pct { color: var(--gold-dark) !important; }
.score-bar-track { background: rgba(11,31,58,0.08) !important; }
.gauge-track { stroke: rgba(11,31,58,0.08) !important; }
.gauge-number {
  color: var(--ink) !important;
  text-shadow: 0 0 30px rgba(201,166,70,0.3);
}
.gauge-label { color: var(--text-light) !important; }
.gauge-wrap::before {
  background: radial-gradient(circle, rgba(201,166,70,0.12) 0%, transparent 60%);
}
/* Score result panel — light card */
.score-result-panel {
  background: var(--white);
  border: 1px solid rgba(11,31,58,0.08);
  border-radius: var(--r-lg);
  padding: 1.75rem 2rem;
  margin-top: 1rem;
  box-shadow: 0 4px 20px rgba(11,31,58,0.04);
}
.score-result-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.score-result-list { display: flex; flex-direction: column; gap: 0.85rem; }
.score-result-row { display: flex; align-items: center; gap: 0.75rem; }
.score-result-row span { font-size: 0.9rem; color: var(--text-mid); }
.score-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

/* ===== PROZESS — light section ===== */
section#prozess {
  background: var(--white) !important;
  border-top: 1px solid rgba(11,31,58,0.06);
  border-bottom: 1px solid rgba(11,31,58,0.06);
}
section#prozess .eyebrow { color: var(--gold-dark) !important; }
section#prozess h2 { color: var(--ink) !important; }
section#prozess h2 em { color: var(--gold-dark) !important; }
.step-num-wrap {
  background: var(--cream);
  border: 1px solid rgba(11,31,58,0.08);
}
.step-num-wrap.gold {
  background: var(--gold-pale);
  border-color: var(--border-gold);
}
.step-num { color: var(--text-light); }
.step-num-wrap.gold .step-num { color: var(--gold-dark); }
.prozess-step h3 { color: var(--ink) !important; }
.prozess-step p { color: var(--text-mid) !important; }
.prozess-step:hover .step-num-wrap {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201,166,70,0.25);
}
.prozess-step:hover h3 { color: var(--ink) !important; }

/* ===== KONTAKT — light cream section ===== */
section#kontakt {
  background: linear-gradient(165deg, var(--cream) 0%, var(--cream-2) 100%) !important;
}
.kontakt-left .eyebrow { color: var(--gold-dark) !important; }
.kontakt-left h2 { color: var(--ink) !important; }
.kontakt-left h2 em { color: var(--gold-dark) !important; }
.kontakt-left > p { color: var(--text-mid) !important; }
.kd-item { color: var(--text-mid) !important; }
.kd-item svg { color: var(--gold-dark); }
.kontakt-form-wrap {
  background: linear-gradient(165deg, #fff 0%, var(--cream) 100%);
  border: 1px solid rgba(11,31,58,0.08);
  box-shadow: 0 12px 40px rgba(11,31,58,0.06);
}

/* ===== PAGE-HERO — light subpages ===== */
.page-hero {
  background: linear-gradient(165deg, #fff 0%, var(--cream) 100%);
}
.page-hero::before {
  background: radial-gradient(ellipse at 80% 30%, rgba(201,166,70,0.10) 0%, transparent 65%);
}
.page-hero h1 {
  color: var(--ink);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: var(--ink);
}
.page-hero h1 em { color: var(--gold-dark); -webkit-text-fill-color: var(--gold-dark); }
.page-hero-sub { color: var(--text-mid); }
.page-hero .eyebrow { color: var(--gold-dark) !important; }
.ph-breadcrumb { color: var(--text-light); }
.ph-breadcrumb a { color: var(--text-mid); }
.ph-breadcrumb a:hover { color: var(--gold-dark); }
.ph-breadcrumb span { color: var(--text-light); }
.page-hero .btn-outline {
  color: var(--text-mid);
  border-color: rgba(11,31,58,0.2);
}
.page-hero .btn-outline:hover {
  background: rgba(11,31,58,0.05);
  color: var(--ink);
  border-color: var(--ink);
}

/* ===== FOOTER — switch from black to warm cream ===== */
.footer {
  background: linear-gradient(180deg, var(--cream-2) 0%, #E8E2D5 100%);
  color: var(--text-mid);
  border-top: 1px solid rgba(11,31,58,0.08);
}
.footer-brand .logo-text { color: var(--ink); }
.footer-brand .logo-accent { color: var(--gold-dark); }
.footer-tagline { color: var(--gold-dark); }
.footer-desc { color: var(--text-mid); }
.footer-col h4 { color: var(--ink); }
.footer-col h4::before { background: var(--gold); }
.footer-col ul li a { color: var(--text-mid); }
.footer-col ul li a:hover { color: var(--gold-dark); }
.footer-col ul li a::before { color: var(--gold-dark); }
.footer-bottom { border-top-color: rgba(11,31,58,0.08); }
.footer-bottom p { color: var(--text-light); }
.footer-legal a { color: var(--text-light); }
.footer-legal a:hover { color: var(--gold-dark); }
.footer-dc { border-top-color: rgba(11,31,58,0.08); }
.footer-dc p { color: var(--text-light); }
.footer-dc strong { color: var(--gold-dark); }
.footer-grid { border-bottom-color: rgba(11,31,58,0.08); }
.footer-langs .lang-tag { color: var(--text-mid); border-color: rgba(11,31,58,0.15); }
.footer-langs .lang-tag.active,
.footer-langs .lang-tag:hover { color: var(--gold-dark); border-color: var(--gold); }
.footer-eec {
  color: rgba(11,31,58,0.32) !important;
}
.footer-eec a strong,
.footer-eec strong { color: var(--gold-dark) !important; }
.footer-eec a:hover strong { color: var(--gold) !important; border-bottom-color: var(--gold) !important; }

/* ===== COOKIE BANNER — light glass ===== */
.cookie-banner {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border-gold);
  box-shadow: 0 12px 40px rgba(11,31,58,0.12);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.cookie-content p { color: var(--text-mid); }
.btn-sm-ghost { background: transparent; color: var(--text-mid); border-color: rgba(11,31,58,0.15); }
.btn-sm-ghost:hover { background: rgba(11,31,58,0.05); color: var(--ink); }

/* ===== SCROLL TOP — adjusted for light ===== */
.scroll-top {
  background: var(--white);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
  box-shadow: 0 6px 20px rgba(11,31,58,0.08);
}
.scroll-top:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  color: var(--ink);
}

/* ===== TESTIMONIALS — refined cards ===== */
.testimonial-card {
  background: linear-gradient(165deg, #fff 0%, var(--cream) 100%);
  border: 1px solid rgba(11,31,58,0.06);
}

/* ===== VERGLEICH TABLE HEADER — softer ===== */
.vergleich-table th {
  background: var(--ink); /* keep dark for clear column header */
  color: rgba(255,255,255,0.78);
}
.vergleich-table th.col-gold { color: var(--gold-light); }

/* ===== KEEP CTA STRIP GOLD (it's a deliberate accent) ===== */
/* (no override needed) */

/* ===== Score-section text content (inline gold eyebrow override) ===== */
.score-section .eyebrow[style] { color: var(--gold-dark) !important; }
.score-section h2[style] { color: var(--ink) !important; }
.score-section h2 em[style] { color: var(--gold-dark) !important; }
.score-section p[style] { color: var(--text-mid) !important; }

/* Inline-style overrides for kontakt section title/eyebrow */
section#kontakt .eyebrow[style] { color: var(--gold-dark) !important; }
section#kontakt h2 em[style] { color: var(--gold-dark) !important; }
section#kontakt[style] { background: linear-gradient(165deg, var(--cream) 0%, var(--cream-2) 100%) !important; }
section#prozess[style] { background: var(--white) !important; }
section#prozess .eyebrow[style] { color: var(--gold-dark) !important; }
section#prozess h2[style] { color: var(--ink) !important; }
section#prozess h2 em[style] { color: var(--gold-dark) !important; }

/* ===== CHECKOUT CONTACT TILES (step 6) ===== */
.tc-contact-tile {
  display: flex; flex-direction: column; gap: 0.3rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-decoration: none;
  text-align: center;
  transition: all var(--t) var(--ease);
}
.tc-contact-tile:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,166,70,0.15);
}
.tc-contact-tile .tct-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-pale); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.4rem;
}
.tc-contact-tile.tct-whats .tct-icon {
  background: rgba(37,211,102,0.12);
  color: #128C7E;
}
.tc-contact-tile .tct-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.66rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.tc-contact-tile strong {
  font-size: 0.85rem; color: var(--ink);
  font-weight: 600;
}
@media (max-width: 600px) {
  .tc-contact-tile { padding: 0.85rem 0.5rem; }
  .tc-contact-tile strong { font-size: 0.78rem; }
}

/* ===== PAKET-HIGHLIGHT (expats.html) — keep as dark accent card on light page ===== */
/* Already styled inline; no override needed — gives nice contrast */

/* ===== Hero — mobile: card panel hidden, hero is dominant ===== */
@media (max-width: 1100px) {
  .hero { background: linear-gradient(170deg, #fff 0%, var(--cream) 100%); }
}

/* ===== SECTION BACKGROUND HARMONY — alternating subtle ===== */
.section { background: var(--cream); }
section[style*="--cream"]:not([style*="--cream-2"]),
section#life-events { background: var(--cream) !important; }

/* ===== SUBTLE GOLD UNDERLINES INSTEAD OF HEAVY BACKGROUNDS ===== */
.section + .section { position: relative; }

/* Print styles — adapt to light theme */
/* ===== 32. PRINT STYLES ===== */
@media print {
  .navbar, .footer, .scroll-top, .ta-fab, .cookie-banner,
  .hero-orb-1, .hero-orb-2, .hero-noise, .hero-line, .hero-scroll {
    display: none !important;
  }
  body { background: #fff; color: #000; }
  .hero, .page-hero, .score-section { background: #fff !important; }
  .hero h1, .page-hero h1 { color: #000 !important; }
  a { color: inherit !important; text-decoration: underline; }
}

/* ========================================================
   ╔══════════════════════════════════════════════════════╗
   ║   CHECKOUT / ONBOARDING FLOW                          ║
   ║   Tarif → Daten → Zahlung → Bestätigung               ║
   ╚══════════════════════════════════════════════════════╝
   ======================================================== */
.ta-checkout {
  position: fixed; inset: 0;
  z-index: 11000;
  display: flex; align-items: stretch; justify-content: center;
  background: rgba(6,15,30,0.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding: 0;
}
.ta-checkout.open { opacity: 1; pointer-events: all; }

.ta-checkout-frame {
  background: var(--white);
  width: 100%; max-width: 1100px;
  margin: 2rem auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid; grid-template-rows: auto 1fr auto;
  box-shadow: 0 24px 80px rgba(6,15,30,0.5);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  min-height: calc(100vh - 4rem);
}
.ta-checkout.open .ta-checkout-frame { transform: translateY(0) scale(1); }

@media (max-width: 768px) {
  .ta-checkout { padding: 0; }
  .ta-checkout-frame {
    margin: 0; border-radius: 0;
    min-height: 100vh;
    max-width: 100%;
  }
}

/* ===== HEADER + PROGRESS ===== */
.tc-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.tc-head-logo {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--ink);
}
.tc-head-logo .logo-mark { width: 30px; height: 30px; }
.tc-head-close {
  background: rgba(11,31,58,0.06); border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid); transition: all var(--t);
}
.tc-head-close:hover { background: rgba(192,57,43,0.12); color: #C0392B; }

.tc-progress {
  display: flex; align-items: center; gap: 0;
  padding: 1.25rem 2rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.tc-step-pill {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.78rem;
  color: var(--text-light);
  flex-shrink: 0;
  position: relative;
}
.tc-step-pill .tc-step-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--cream-2);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; font-weight: 600;
  color: var(--text-light);
  transition: all var(--t);
}
.tc-step-pill.done .tc-step-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.tc-step-pill.done .tc-step-num::before {
  content: '✓'; font-size: 0.85rem;
}
.tc-step-pill.done .tc-step-num span { display: none; }
.tc-step-pill.active .tc-step-num {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(11,31,58,0.08);
}
.tc-step-pill.active .tc-step-label { color: var(--ink); font-weight: 500; }
.tc-step-connector {
  flex: 1; min-width: 16px; height: 1px;
  background: var(--border);
  margin: 0 0.5rem;
  position: relative;
}
.tc-step-connector.filled { background: var(--gold); }

@media (max-width: 600px) {
  .tc-progress { padding: 1rem 1rem; gap: 0; }
  .tc-step-pill .tc-step-label { display: none; }
  .tc-step-connector { min-width: 8px; margin: 0 0.25rem; }
}

/* ===== BODY ===== */
.tc-body {
  padding: 2.5rem 3rem;
  overflow-y: auto;
}
@media (max-width: 768px) { .tc-body { padding: 2rem 1.5rem; } }

.tc-step-pane { display: none; animation: tc-fade 0.4s var(--ease); }
.tc-step-pane.active { display: block; }
@keyframes tc-fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.tc-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 500; color: var(--ink);
  margin-bottom: 0.5rem; line-height: 1.2;
}
.tc-step-title em { font-style: italic; color: var(--gold-dark); }
.tc-step-sub {
  font-size: 0.92rem; color: var(--text-mid);
  margin-bottom: 2rem; line-height: 1.65;
}

/* ===== STEP 1: TARIF GRID ===== */
.tc-tarif-toggle {
  display: flex; justify-content: center; margin: 0 auto 2rem;
  max-width: 280px;
  background: var(--cream-2);
  border-radius: 999px;
  padding: 4px;
}
.tc-tarif-toggle button {
  flex: 1; padding: 0.6rem 0.85rem;
  background: transparent; border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-mid); cursor: pointer;
  border-radius: 999px; transition: all var(--t);
}
.tc-tarif-toggle button.active {
  background: var(--ink); color: #fff;
}
.tc-tarif-toggle .save {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.06em;
  background: var(--gold); color: var(--ink);
  padding: 1px 5px; border-radius: 4px;
  margin-left: 0.3rem;
}

.tc-tarif-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 900px) { .tc-tarif-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .tc-tarif-grid { grid-template-columns: 1fr; } }

.tc-tarif-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  display: flex; flex-direction: column;
  position: relative;
}
.tc-tarif-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11,31,58,0.08);
}
.tc-tarif-card.selected {
  border-color: var(--gold);
  background: linear-gradient(165deg, #fff 0%, rgba(201,166,70,0.05) 100%);
  box-shadow: 0 12px 32px rgba(201,166,70,0.18);
}
.tc-tarif-card.selected::before {
  content: '✓';
  position: absolute; top: 12px; right: 12px;
  width: 26px; height: 26px;
  background: var(--gold); color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
}
.tc-tarif-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 0.4rem;
}
.tc-tarif-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 500;
  color: var(--ink); margin-bottom: 0.3rem;
}
.tc-tarif-desc {
  font-size: 0.78rem; color: var(--text-light);
  margin-bottom: 1rem; line-height: 1.5;
}
.tc-tarif-price {
  display: flex; align-items: baseline; gap: 0.3rem;
  margin-bottom: 0.85rem;
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}
.tc-tarif-price .euro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem; font-weight: 500;
  color: var(--ink); line-height: 1;
}
.tc-tarif-price .per {
  font-size: 0.78rem; color: var(--text-light);
}
.tc-tarif-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.4rem;
  flex: 1;
}
.tc-tarif-card ul li {
  display: flex; gap: 0.5rem; align-items: flex-start;
  font-size: 0.78rem; color: var(--text-mid);
  line-height: 1.5;
}
.tc-tarif-card ul li::before {
  content: '✓'; color: var(--gold-dark);
  font-weight: 700; flex-shrink: 0;
  font-size: 0.85rem;
}

/* ===== STEP 2: ADDRESS / PERSONAL DATA ===== */
.tc-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
@media (max-width: 600px) { .tc-form-grid { grid-template-columns: 1fr; } }
.tc-form-grid .full { grid-column: 1 / -1; }
.tc-field {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.tc-field label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  color: var(--ink); letter-spacing: 0.04em;
}
.tc-field label .req { color: #C0392B; }
.tc-field input,
.tc-field select {
  padding: 0.85rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; color: var(--ink);
  transition: all var(--t);
  width: 100%;
}
.tc-field input:focus,
.tc-field select:focus {
  outline: none; border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 3px rgba(201,166,70,0.12);
}
.tc-field input.error,
.tc-field select.error {
  border-color: #C0392B;
  background: #FDF5F3;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.tc-field .tc-hint {
  font-size: 0.72rem; color: var(--text-light);
  margin-top: 0.1rem;
}

/* ===== STEP 3: PAYMENT METHOD SELECT ===== */
.tc-pay-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem;
}
@media (max-width: 600px) { .tc-pay-grid { grid-template-columns: 1fr; } }

.tc-pay-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--t) var(--ease);
  position: relative;
}
.tc-pay-card:hover {
  border-color: var(--gold-light);
  background: var(--cream);
}
.tc-pay-card input { position: absolute; opacity: 0; }
.tc-pay-card.selected {
  border-color: var(--gold);
  background: linear-gradient(165deg, #fff 0%, rgba(201,166,70,0.05) 100%);
  box-shadow: 0 6px 20px rgba(201,166,70,0.12);
}
.tc-pay-icon {
  width: 48px; height: 36px;
  border-radius: 6px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.04em;
}
.tc-pay-icon.sepa  { background: linear-gradient(135deg, #0B1F3A, #16365e); color: #fff; }
.tc-pay-icon.card  { background: linear-gradient(135deg, #1A1F71, #3D5AFE); color: #fff; }
.tc-pay-icon.paypal{ background: linear-gradient(135deg, #003087, #009cde); color: #fff; }
.tc-pay-icon.sofort{ background: linear-gradient(135deg, #EF809F, #E91E63); color: #fff; }
.tc-pay-icon.apple { background: #000; color: #fff; }
.tc-pay-icon.google{ background: #fff; color: #4285F4; border: 1px solid var(--border); }

.tc-pay-text { flex: 1; }
.tc-pay-text strong {
  display: block;
  font-size: 0.92rem; color: var(--ink);
  margin-bottom: 0.1rem;
}
.tc-pay-text span {
  font-size: 0.76rem; color: var(--text-light);
}
.tc-pay-badge {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px; border-radius: 4px;
  background: var(--gold-pale); color: var(--gold-dark);
}

/* ===== STEP 4: PAYMENT DETAILS PANELS ===== */
.tc-pay-detail-pane { display: none; animation: tc-fade 0.3s var(--ease); }
.tc-pay-detail-pane.active { display: block; }
.tc-pay-info {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 1.5rem;
  font-size: 0.85rem; color: var(--text-mid);
}
.tc-pay-info svg { color: var(--gold-dark); flex-shrink: 0; }

.tc-card-row {
  display: grid; grid-template-columns: 1fr 100px 100px; gap: 0.85rem;
}
@media (max-width: 600px) { .tc-card-row { grid-template-columns: 1fr; } }

/* ===== STEP 5: SUMMARY / CONFIRMATION ===== */
.tc-summary {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
}
.tc-summary-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.tc-summary-row:last-of-type { border-bottom: none; }
.tc-summary-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  flex-shrink: 0; min-width: 120px;
}
.tc-summary-val {
  font-size: 0.9rem; color: var(--ink);
  text-align: right; font-weight: 500;
}
.tc-summary-val.muted { color: var(--text-mid); font-weight: 400; }
.tc-summary-total {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--ink); color: #fff;
  border-radius: var(--r-md);
  display: flex; justify-content: space-between; align-items: center;
}
.tc-summary-total .label {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.tc-summary-total .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 500;
  color: var(--gold-light);
}
.tc-summary-total .period {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; color: rgba(255,255,255,0.4);
  font-weight: 400; margin-top: 0.1rem;
  letter-spacing: 0;
}

.tc-consent {
  display: flex; flex-direction: column; gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.tc-consent label {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.82rem; color: var(--text-mid);
  line-height: 1.55; cursor: pointer;
}
.tc-consent input { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }
.tc-consent a { color: var(--gold-dark); text-decoration: underline; }

/* ===== STEP 6: SUCCESS ===== */
.tc-success {
  text-align: center;
  padding: 1.5rem 0;
}
.tc-success-ring {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A7A5E 0%, #146548 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  color: #fff;
  box-shadow: 0 12px 40px rgba(26,122,94,0.3);
  animation: tc-pop 0.5s var(--ease) 0.1s both;
}
@keyframes tc-pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.tc-success h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 500; color: var(--ink);
  margin-bottom: 0.5rem;
}
.tc-success > p {
  color: var(--text-mid); font-size: 0.95rem;
  line-height: 1.7; margin-bottom: 1.5rem;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.tc-success-id {
  display: inline-block;
  background: var(--cream); border: 1px solid var(--border-gold);
  padding: 0.5rem 1.25rem; border-radius: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 0.9rem; color: var(--ink);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.tc-success-actions {
  display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
}
.tc-success-list {
  text-align: left;
  max-width: 460px;
  margin: 0 auto 2rem;
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.tc-success-list li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.88rem; color: var(--text-mid);
  line-height: 1.55;
}
.tc-success-list li::before {
  content: ''; width: 18px; height: 18px;
  background: rgba(26,122,94,0.12); color: #1A7A5E;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A7A5E' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
  flex-shrink: 0; margin-top: 2px;
}

/* ===== FOOTER NAV ===== */
.tc-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
  gap: 1rem;
}
.tc-foot-summary {
  font-size: 0.82rem; color: var(--text-mid);
  flex: 1; min-width: 0;
}
.tc-foot-summary strong { color: var(--ink); }
.tc-foot-actions { display: flex; gap: 0.65rem; flex-wrap: wrap; }
.tc-btn-back {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-mid);
  padding: 0.7rem 1.25rem;
  border-radius: var(--r-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: all var(--t);
}
.tc-btn-back:hover { background: var(--white); color: var(--ink); border-color: var(--text-mid); }
.tc-btn-back:disabled { opacity: 0.4; cursor: not-allowed; }

@media (max-width: 600px) {
  .tc-foot { flex-direction: column; align-items: stretch; padding: 1rem; }
  .tc-foot-summary { text-align: center; }
  .tc-foot-actions { justify-content: space-between; }
  .tc-foot-actions .btn { flex: 1; justify-content: center; }
}



