/* ============================================
   TSASAKOS CONSULTING — Design System
   Blueprint: Baulig Sales Page Architecture
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* Material Symbols base class — Google's css2 endpoint only ships @font-face,
   so the icon class itself must be declared here or the spans render as text. */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'liga';
}

/* --- Design Tokens --- */
:root {
  --dark-bg: #0f1114;
  --dark-bg-alt: #181b20;
  --dark-card: #1e2128;
  --dark-card-hover: #252830;
  --light-bg: #ffffff;
  --light-bg-alt: #f7f7f5;
  --cta-primary: #0321f5;
  --cta-hover: #2a4af7;
  --cta-glow: rgba(3, 33, 245, 0.35);
  --accent-blue: #2563eb;
  --accent-green: #22c55e;
  --accent-red: #ef4444;
  --text-white: #ffffff;
  --text-light: #c8ccd4;
  --text-muted: #8b8f98;
  --text-dark: #1a1a1a;
  --text-dark-secondary: #555;
  --gold: #0321f5;
  --border-subtle: rgba(255,255,255,0.12);
  --radius-sm: 3px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-xl: 8px;
  --shadow-card: 0 2px 16px rgba(0,0,0,0.18);
  --shadow-glow: 0 0 30px var(--cta-glow);
  --max-width: 1200px;
  --section-pad: 100px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--light-bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { line-height: 1.15; font-weight: 700; letter-spacing: -0.01em; text-wrap: pretty; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }
.text-gradient {
  background: linear-gradient(135deg, var(--cta-primary), #4d6bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }
.section-dark {
  background: var(--dark-bg); color: var(--text-white);
  position: relative;
}
.section-dark::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url('images/bg-abstract.webp') center/cover no-repeat;
  opacity: 0.25;
}
.section-dark > .container { position: relative; z-index: 1; }

.section-dark-alt {
  background: var(--dark-bg-alt); color: var(--text-white);
  position: relative;
}
.section-dark-alt::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url('images/bg-smoke.webp') center/cover no-repeat;
  opacity: 0.2;
}
.section-dark-alt > .container { position: relative; z-index: 1; }
.section-light { background: var(--light-bg); }

/* --- Methode section: cinematic GOAT DAY background --- */
#methode {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--dark-bg);
  color: var(--text-white);
}
#methode::before {
  content: '';
  position: absolute; inset: 0; z-index: -2;
  background: url('images/methode-bg.jpg') center/cover no-repeat;
  filter: grayscale(0.1) contrast(1.05) brightness(0.9);
}
#methode::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 90% at 50% 50%, rgba(15,17,20,0.55) 0%, rgba(15,17,20,0.72) 60%, rgba(15,17,20,0.92) 100%),
    linear-gradient(180deg, rgba(15,17,20,0.5) 0%, rgba(15,17,20,0.2) 25%, rgba(15,17,20,0.2) 75%, rgba(15,17,20,0.65) 100%);
}
#methode > .container { position: relative; z-index: 1; }

/* Tightened vertical rhythm — compact the comparison section */
#methode { padding: 96px 0; }
#methode .section-header { margin-bottom: 36px; }
#methode .section-header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
#methode .section-header p {
  color: rgba(255,255,255,0.78);
  text-shadow: 0 1px 16px rgba(0,0,0,0.4);
}
#methode .comparison-titles { margin-bottom: 22px; }
#methode .comparison-title h3 {
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  color: #fff;
}
#methode .comparison-title-good h3 { color: #fff; }
#methode .comparison-title-eyebrow { margin-bottom: 4px; font-size: 0.65rem; }
#methode .comparison-pairs { gap: 10px; }

/* Frosted cards on dark bg */
#methode .pair-card {
  padding: 14px 20px;
  font-size: 0.92rem;
  line-height: 1.45;
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
#methode .pair-bad {
  background: rgba(127, 29, 29, 0.42);
  border: 1px solid rgba(248, 113, 113, 0.45);
  color: #fee2e2;
}
#methode .pair-good {
  background: rgba(20, 83, 45, 0.42);
  border: 1px solid rgba(74, 222, 128, 0.5);
  color: #dcfce7;
}
#methode .pair-bad:hover { border-color: #f87171; background: rgba(127, 29, 29, 0.55); }
#methode .pair-good:hover { border-color: #4ade80; background: rgba(20, 83, 45, 0.55); }
#methode .pair-bad .pair-icon { color: #f87171; }
#methode .pair-good .pair-icon { color: #4ade80; }
#methode .pair-icon { font-size: 20px !important; }
#methode .pair-line {
  background: linear-gradient(90deg, rgba(248,113,113,0.6) 0%, rgba(255,255,255,0.25) 50%, rgba(74,222,128,0.6) 100%);
  height: 1px;
}
.section-light-alt { background: var(--light-bg-alt); }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.section-header .label {
  display: inline-block; font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--cta-primary); margin-bottom: 16px;
}
.section-header p { font-size: 1.1rem; color: var(--text-dark-secondary); margin-top: 16px; }
.section-dark .section-header p { color: var(--text-light); }

/* --- Navigation --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15, 17, 20, 0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0 24px; height: 72px;
  display: flex; align-items: center;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo {
  font-size: 1.05rem; font-weight: 800; color: var(--text-white);
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.01em;
}
.nav-logo-mark {
  width: 34px; height: 34px; border-radius: 4px;
  background: var(--cta-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.15rem; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(3,33,245,0.35);
}
.nav-logo-text { color: var(--text-white); }
.nav-logo-text-thin { font-weight: 500; color: var(--text-muted); }
@media (max-width: 600px) { .nav-logo-text-thin { display: none; } }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--text-light); font-size: 0.9rem; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--text-white); }
.nav-cta {
  background: var(--cta-primary); color: #ffffff !important; padding: 9px 20px;
  border-radius: 0; font-weight: 800; font-size: 0.74rem;
  transition: var(--transition); text-transform: uppercase; letter-spacing: 0.05em;
}
.nav-cta:hover { background: var(--cta-hover); transform: scale(0.97); box-shadow: var(--shadow-glow); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text-white); transition: var(--transition); }

/* --- CTA Button --- */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--cta-primary); color: #ffffff;
  padding: 14px 34px; border-radius: 0;
  font-size: 0.85rem; font-weight: 800; border: none; cursor: pointer;
  transition: var(--transition); position: relative; overflow: hidden;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.btn-cta:hover { background: var(--cta-hover); transform: scale(0.97); box-shadow: var(--shadow-glow); }
.btn-cta::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}
.btn-cta:hover::after { left: 100%; }
.btn-cta-lg { padding: 18px 44px; font-size: 0.9rem; border-radius: 0; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text-white); padding: 13px 26px;
  border: 2px solid rgba(255,255,255,0.2); border-radius: 0;
  font-size: 0.82rem; font-weight: 700; cursor: pointer; transition: var(--transition);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.btn-secondary:hover { border-color: var(--cta-primary); color: var(--cta-primary); transform: scale(0.97); }

/* --- Hero Section --- */
.hero { padding: 108px 0 56px; background: var(--dark-bg); position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url('images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.32;
  filter: saturate(0.85) contrast(1.05);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(3,33,245,0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(3,33,245,0.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(15,17,20,0.55) 0%, rgba(15,17,20,0.85) 70%, rgba(15,17,20,0.95) 100%);
}
.hero > .container { position: relative; z-index: 1; }
.hero-headline {
  margin: 0 auto 36px;
  color: var(--text-white);
  max-width: 960px;
  text-align: center;
}
.hero-headline .hero-sub {
  margin: 18px auto 0;
  max-width: 760px;
  text-align: center;
}
.hero-headline h1 {
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  color: var(--text-white);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hero-video-col { display: flex; flex-direction: column; gap: 20px; }
.hero-content {
  color: var(--text-white);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-white);
  margin: 0 auto 22px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero h1 { margin-bottom: 0; }
.hero h1 .highlight {
  color: var(--text-white);
  position: relative;
  display: inline-block;
  text-shadow: 0 0 32px rgba(3,33,245,0.5), 0 0 70px rgba(3,33,245,0.22);
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -5px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(3,33,245,0.9) 20%, rgba(101,130,252,0.9) 50%, rgba(3,33,245,0.9) 80%, transparent 100%);
  border-radius: 2px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-white);
  opacity: 0.92;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-checks {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-white);
}
.hero-checks li strong { color: var(--text-white); font-weight: 700; }
.hero-checks .check-icon {
  width: 18px; height: 18px; min-width: 18px;
  background: linear-gradient(135deg, var(--cta-primary) 0%, #4d6bfa 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #ffffff; font-size: 0.6rem; font-weight: 800; margin-top: 3px;
  box-shadow: 0 4px 12px rgba(3,33,245,0.4), inset 0 0 0 1px rgba(255,255,255,0.15);
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
#hero-cta {
  white-space: nowrap;
  padding: 15px 30px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}
/* --- Zentriertes Hero (ohne VSL) --- */
.hero-centered {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Checkliste als Glas-Panel mit Trennlinien */
.hero-checks--centered {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  gap: 0;
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  padding: 6px 30px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
}
.hero-checks--centered li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-checks--centered li:last-child {
  border-bottom: none;
}
/* CTA bekommt klaren Abstand zum Panel und zur Proof-Zeile */
.hero-cta-row--centered {
  justify-content: center;
  margin: 36px 0 0;
}
.hero-proof--centered {
  justify-content: center;
  margin-top: 28px;
}
.hero-video {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 24px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06), 0 0 80px rgba(3,33,245,0.18);
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-video iframe { width: 100%; height: 100%; border: none; }
.hero-vsl-placeholder {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, rgba(3,33,245,0.18) 0%, rgba(15,17,20,0.85) 100%);
  border: 2px dashed rgba(3,33,245,0.55);
  display: flex; align-items: center; justify-content: center;
}
.vsl-placeholder-inner { text-align: center; padding: 32px; }
.vsl-icon {
  font-size: 64px !important; color: rgba(3,33,245,0.85);
  display: block; margin: 0 auto 16px;
}
.vsl-label {
  font-size: 2.4rem; font-weight: 900; letter-spacing: 0.1em;
  color: var(--text-white); margin-bottom: 6px;
}
.vsl-hint {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
}

/* --- Hero Proof (under VSL) --- */
.hero-proof {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}
.proof-avatars { display: flex; }
.proof-avatars img {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--dark-bg);
  margin-left: -10px; object-fit: cover;
}
.proof-avatars img:first-child { margin-left: 0; }
.proof-text { color: var(--text-light); font-size: 0.82rem; line-height: 1.5; }
.proof-text strong { color: var(--text-white); font-weight: 700; }

/* --- Checkmark List (light sections) --- */
.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 1rem; }
.check-list .ico {
  width: 24px; height: 24px; min-width: 24px; background: var(--accent-green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.7rem; font-weight: 800; margin-top: 3px;
}

/* --- Comparison Pairs --- */
.comparison-titles {
  display: grid; grid-template-columns: 1fr 56px 1fr; gap: 20px;
  align-items: end; margin-bottom: 32px;
}
.comparison-title { padding: 0 4px; }
.comparison-title-eyebrow {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 8px;
}
.comparison-title-bad .comparison-title-eyebrow { color: var(--accent-red); }
.comparison-title-good .comparison-title-eyebrow { color: var(--accent-green); }
.comparison-title h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 900; letter-spacing: -0.02em;
  color: var(--text-dark); line-height: 1.1;
}
.comparison-title-good h3 { color: var(--text-dark); }

.comparison-pairs { display: flex; flex-direction: column; gap: 16px; }
.comparison-pair {
  display: grid; grid-template-columns: 1fr 56px 1fr; gap: 20px;
  align-items: stretch;
}
.pair-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 22px 26px; border-radius: var(--radius-sm);
  font-size: 0.98rem; line-height: 1.55;
  transition: var(--transition);
}
.pair-card p { margin: 0; }
.pair-bad {
  background: #fef2f2; border: 2px solid #fecaca; color: #7f1d1d;
}
.pair-good {
  background: #f0fdf4; border: 2px solid #bbf7d0; color: #14532d;
}
.pair-bad:hover { border-color: var(--accent-red); }
.pair-good:hover { border-color: var(--accent-green); }
.pair-icon { flex-shrink: 0; font-size: 22px !important; margin-top: 1px; }
.pair-bad .pair-icon { color: var(--accent-red); }
.pair-good .pair-icon { color: var(--accent-green); }
.pair-line {
  align-self: center; justify-self: stretch;
  height: 2px; width: 100%;
  background: linear-gradient(90deg, #fecaca 0%, #d4d4d8 50%, #bbf7d0 100%);
  border-radius: 1px;
}

/* Mobile: keep the two columns side-by-side so it stays a real comparison */
@media (max-width: 768px) {
  .comparison-titles { grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
  .comparison-title-spacer { display: none; }
  .comparison-title { padding: 0; text-align: center; }
  .comparison-title h3 { font-size: 1rem; line-height: 1.15; }
  .comparison-title-eyebrow { font-size: 0.62rem; letter-spacing: 0.12em; margin-bottom: 3px; }
  .comparison-pairs { gap: 10px; }
  /* minmax(0,1fr) stops long German words from blowing the columns wider than the screen */
  .comparison-pair { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 10px; }
  .pair-line { display: none; }
  .pair-card {
    flex-direction: column; align-items: flex-start; gap: 8px;
    padding: 14px; font-size: 0.82rem; line-height: 1.45;
    border-width: 1.5px;
  }
  .pair-card p { overflow-wrap: break-word; hyphens: auto; }
  .pair-icon { font-size: 19px !important; margin-top: 0; }
}

/* --- Schweiz Section --- */
.schweiz-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.schweiz-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 900; color: var(--text-white);
  line-height: 1.2; margin-bottom: 20px;
}
.schweiz-content p {
  color: var(--text-light); font-size: 1.05rem; line-height: 1.75; margin-bottom: 16px;
}
.schweiz-content strong { color: var(--text-white); }
.schweiz-image {
  display: flex; align-items: center; justify-content: center;
}
.schweiz-image img {
  width: 100%; max-width: 420px; border-radius: var(--radius-md);
  object-fit: cover; aspect-ratio: 3/4;
}

/* --- Schweiz Section (2-col: intro+map left, body+CTA right) --- */
#schweiz { padding: 80px 0; }
.schweiz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.schweiz-col-left { display: flex; flex-direction: column; gap: 20px; }
.schweiz-col-left .schweiz-map { max-width: 440px; width: 100%; align-self: center; }
.schweiz-col-right { display: flex; flex-direction: column; align-items: flex-start; }

.schweiz-col-left h2 {
  color: var(--text-white);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.schweiz-intro {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.schweiz-body {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.schweiz-body strong,
.schweiz-intro strong { color: var(--text-white); font-weight: 700; }

.schweiz-consequence {
  position: relative;
  margin: 0 0 20px;
  padding: 16px 20px 16px 22px;
  background: linear-gradient(120deg, rgba(239,68,68,0.1) 0%, rgba(10,13,22,0.55) 70%);
  border-left: 3px solid var(--accent-red);
  border-radius: 4px;
}
.consequence-eyebrow {
  font-size: 0.68rem; font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 6px;
}
.schweiz-consequence p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.schweiz-cta-line {
  color: var(--text-white);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.schweiz-cta-line strong { color: var(--text-white); font-weight: 800; }
.schweiz-btn {
  white-space: nowrap;
  padding: 13px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  #schweiz { padding: 60px 0; }
  .schweiz-grid { grid-template-columns: 1fr; gap: 32px; }
  .schweiz-col-left .schweiz-map { max-width: 380px; }
}
@media (max-width: 560px) {
  .schweiz-col-left h2 { font-size: 1.45rem; }
  .schweiz-consequence { padding: 14px 16px 14px 18px; }
}

/* --- Schweiz Map (premium SVG + pins) --- */
.schweiz-map {
  position: relative;
  width: 100%; max-width: 540px;
  aspect-ratio: 16 / 11;
  isolation: isolate;
}
.schweiz-map-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(3,33,245,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(3,33,245,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 0%, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 0%, #000 50%, transparent 100%);
}
.schweiz-map-glow {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 50% 55% at 53% 48%, rgba(3,33,245,0.35) 0%, rgba(3,33,245,0.12) 40%, transparent 70%);
  filter: blur(8px);
}
.schweiz-map-base {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, #5a78ff 0%, #8ea6ff 60%, #c4d0ff 100%);
  -webkit-mask: url('images/switzerland.svg') center / contain no-repeat;
  mask: url('images/switzerland.svg') center / contain no-repeat;
  opacity: 0.92;
  filter: drop-shadow(0 12px 30px rgba(3,33,245,0.45));
}
.schweiz-pins {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
}
.schweiz-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 8px;
}
.pin-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 0 0 2px rgba(3,33,245,0.85),
    0 0 10px rgba(3,33,245,0.85),
    0 0 24px rgba(77,107,250,0.6);
  flex-shrink: 0;
}
.pin-label {
  font-size: 0.74rem; font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.pin-label-left {
  order: -1;
  margin-right: 0;
}
/* HQ pin — larger, pulsing, with card label */
.schweiz-pin-hq .pin-dot {
  width: 14px; height: 14px;
  background: linear-gradient(135deg, #0321f5, #4d6bfa);
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.95),
    0 0 0 5px rgba(3,33,245,0.85),
    0 0 22px rgba(3,33,245,0.95),
    0 0 40px rgba(77,107,250,0.5);
}
.pin-pulse {
  position: absolute;
  left: 50%; top: 50%;
  width: 14px; height: 14px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(3,33,245,0.55);
  animation: pinPulse 2.2s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}
@keyframes pinPulse {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.7; }
  70%  { transform: translate(-50%, -50%) scale(4.5); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(4.5); opacity: 0; }
}
.pin-label-hq {
  display: inline-flex; flex-direction: column;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(10,13,24,0.95), rgba(15,20,35,0.95));
  border: 1px solid rgba(3,33,245,0.55);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 22px rgba(3,33,245,0.3);
  text-shadow: none;
  margin-left: 6px;
}
.pin-label-name {
  font-size: 0.78rem; font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.pin-label-city {
  font-size: 0.68rem; font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
/* Badge in the corner — "130+ Kunden in CH" */
.schweiz-map-badge {
  position: absolute; z-index: 3;
  right: 12%; bottom: 22%;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(10,13,24,0.92), rgba(20,27,50,0.92));
  border: 1px solid rgba(3,33,245,0.55);
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.6), 0 0 36px rgba(3,33,245,0.35);
  display: flex; flex-direction: column; align-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.badge-num {
  font-size: 1.55rem; font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #5a78ff 0%, #8ea6ff 50%, #c4d0ff 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.badge-txt {
  font-size: 0.72rem; font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .schweiz-split { grid-template-columns: 1fr; gap: 32px; }
  .schweiz-image { order: -1; }
  .schweiz-image img { max-width: 280px; }
  .schweiz-map { max-width: 420px; }
  .pin-label { font-size: 0.68rem; }
  .pin-label-name { font-size: 0.72rem; }
  .pin-label-city { font-size: 0.62rem; }
  .schweiz-map-badge { padding: 10px 14px; }
  .badge-num { font-size: 1.25rem; }
  .badge-txt { font-size: 0.64rem; }
}

/* --- Process Steps --- */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.process-card {
  background: #1c1f26; border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 40px 32px; position: relative;
  transition: var(--transition);
}
.process-card:hover { border-color: var(--cta-primary); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.process-number {
  font-size: 4rem; font-weight: 900; color: rgba(255,255,255,0.06);
  position: absolute; top: 24px; right: 28px; line-height: 0.9;
  letter-spacing: -0.04em; pointer-events: none;
}
.process-icon {
  width: 56px; height: 56px; background: rgba(3,33,245,0.15); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px; color: var(--cta-primary);
}
.process-card h3 { margin-bottom: 12px; color: #ffffff; font-size: 1.15rem; }
.process-card p { color: #b0b5c0; font-size: 0.95rem; line-height: 1.7; }
.process-tags { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.process-tag {
  padding: 5px 14px; border-radius: 2px; font-size: 0.72rem; font-weight: 700;
  background: rgba(3,33,245,0.25); color: #fff; border: 1px solid rgba(3,33,245,0.5);
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* --- Cycle Process (6 steps around a ring) ---
   Grid with 3 rows × 3 cols. Ring spans col-2 across all rows; cards sit in
   col-1 (left) and col-3 (right) with one card per row → card vertical
   centers match icon vertical centers precisely. */

/* #prozess: tighter vertical rhythm + architectural bg image instead of
   the default section-dark pattern. */
#prozess { padding: 56px 0 160px; }
#prozess::before {
  background-image: url('images/maybe_/The-Circle_LOOP_2021_05-1-cover.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
/* Vignette — deeper, fuller black at edges, tight transparent window in
   the middle to spotlight the ring & cards. */
#prozess::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0) 18%,
    rgba(0,0,0,0.7) 60%,
    rgba(0,0,0,1) 100%
  );
}
#prozess > .container { position: relative; z-index: 1; }
#prozess .section-header { margin-bottom: 28px; }

.cycle-wrapper {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 440px) 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 8px 24px;
  max-width: 1160px;
  margin: 32px auto 0;
}

/* Card grid placement (clockwise: 1,2,3 right / 4,5,6 left top-to-bottom) */
.cycle-pos-6 { grid-column: 1; grid-row: 1; justify-self: end;   text-align: right; }
.cycle-pos-5 { grid-column: 1; grid-row: 2; justify-self: end;   text-align: right; }
.cycle-pos-4 { grid-column: 1; grid-row: 3; justify-self: end;   text-align: right; }
.cycle-pos-1 { grid-column: 3; grid-row: 1; justify-self: start; text-align: left;  }
.cycle-pos-2 { grid-column: 3; grid-row: 2; justify-self: start; text-align: left;  }
.cycle-pos-3 { grid-column: 3; grid-row: 3; justify-self: start; text-align: left;  }

.cycle-card {
  position: relative;
  align-self: center;
  padding: 16px 20px;
  max-width: 320px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
/* Blue glow fades out from the thick accent border toward the card's far side */
.cycle-pos-1, .cycle-pos-2, .cycle-pos-3 {
  border-left: 3px solid var(--cta-primary);
  background: linear-gradient(to right, rgba(3,33,245,0.32) 0%, rgba(10,13,18,0.92) 55%);
}
.cycle-pos-4, .cycle-pos-5, .cycle-pos-6 {
  border-right: 3px solid var(--cta-primary);
  background: linear-gradient(to left, rgba(3,33,245,0.32) 0%, rgba(10,13,18,0.92) 55%);
}

.cycle-card-num {
  font-size: 0.78rem; font-weight: 900;
  color: #fff;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.cycle-card p {
  font-size: 0.92rem;
  color: #fff;
  line-height: 1.55;
  margin: 0;
}

.cycle-circle {
  grid-column: 2;
  grid-row: 1 / 4;
  position: relative;
  justify-self: center;
  align-self: center;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  filter: drop-shadow(0 0 40px rgba(3,33,245,0.25));
  /* Icon center sits on the arrow's outer edge (43% radius) so the icon
     half-overlaps the ring outward — matches the Baulig style. */
  --R: 43%;
}
.cycle-ring-img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  /* Arrow segments in the PNG sit 7° CCW from standard 30°/90°/etc —
     rotate the image +7° so icons at the standard angles land on arrows. */
  transform: rotate(7deg);
}

/* Icon dots sitting on each of the 6 arrow segments */
.cycle-icon {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #0a0d12 0%, #050710 100%);
  border: 1px solid var(--cta-primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow:
    0 0 0 2px rgba(3,33,245,0.1),
    0 0 14px rgba(3,33,245,0.45);
  z-index: 3;
  transform: translate(-50%, -50%);
}
.cycle-icon .material-symbols-outlined {
  font-size: 26px;
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
}
.cycle-icon img {
  width: 28px; height: 28px;
  object-fit: contain;
  /* brightness(0) forces source to black regardless of original fill,
     invert(1) then flips black → white. */
  filter: brightness(0) invert(1);
}

/* Horizontal connector line from each icon toward its card.
   Corner icons (1/3/4/6) sit further inside the ring → longer line.
   Middle icons (2/5) sit at the ring's outer sides → shorter line. */
.cycle-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  background: linear-gradient(to right, rgba(3,33,245,0.9) 0%, rgba(3,33,245,0.1) 100%);
  pointer-events: none;
  z-index: -1;
  margin-top: -0.5px;
}
/* Right-side: line extends rightward from icon's right edge */
.cycle-icon-1::after, .cycle-icon-2::after, .cycle-icon-3::after {
  left: 100%;
}
/* Left-side: line extends leftward from icon's left edge */
.cycle-icon-4::after, .cycle-icon-5::after, .cycle-icon-6::after {
  right: 100%;
  background: linear-gradient(to left, rgba(3,33,245,0.9) 0%, rgba(3,33,245,0.1) 100%);
}
/* Per-icon lengths: corners need to bridge further than the middle icons.
   Fixed px because % on ::after resolves against the icon itself (too small). */
.cycle-icon-1::after, .cycle-icon-3::after,
.cycle-icon-4::after, .cycle-icon-6::after { width: 70px; }
.cycle-icon-2::after, .cycle-icon-5::after { width: 30px; }

/* Angular placement — one icon centered on each of the 6 arrow segments. */
.cycle-icon-1 { left: calc(50% + var(--R) * sin(30deg));  top: calc(50% - var(--R) * cos(30deg));  }
.cycle-icon-2 { left: calc(50% + var(--R));               top: 50%;                                }
.cycle-icon-3 { left: calc(50% + var(--R) * sin(150deg)); top: calc(50% - var(--R) * cos(150deg)); }
.cycle-icon-4 { left: calc(50% + var(--R) * sin(210deg)); top: calc(50% - var(--R) * cos(210deg)); }
.cycle-icon-5 { left: calc(50% - var(--R));               top: 50%;                                }
.cycle-icon-6 { left: calc(50% + var(--R) * sin(330deg)); top: calc(50% - var(--R) * cos(330deg)); }

/* Corner cards pulled closer to the ring (middle cards 2 & 5 stay). */
.cycle-pos-1, .cycle-pos-3 { transform: translateX(-55px); }
.cycle-pos-4, .cycle-pos-6 { transform: translateX(55px); }
.cycle-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 58%;
}
.cycle-badge-name {
  display: block;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: 0.01em;
  line-height: 1;
}
.cycle-badge-sub {
  display: block;
  font-size: clamp(0.72rem, 1vw, 0.85rem);
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 6px;
}


/* Tablet */
@media (max-width: 1100px) {
  .cycle-wrapper {
    grid-template-columns: 1fr minmax(320px, 420px) 1fr;
    gap: 12px 20px;
  }
  .cycle-card { padding: 12px 14px; max-width: 240px; }
  .cycle-card-num { font-size: 0.72rem; }
  .cycle-card p { font-size: 0.82rem; }
  .cycle-icon-1::after, .cycle-icon-3::after,
  .cycle-icon-4::after, .cycle-icon-6::after { width: 130px; }
  .cycle-icon-2::after, .cycle-icon-5::after { width: 50px; }
}

/* Mobile: vertical 6-step flow with inline icons; circle hidden */
@media (max-width: 768px) {
  .cycle-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
    position: relative;
    padding-left: 68px;
  }
  /* Vertical connector line running through the icon centers */
  .cycle-wrapper::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 26px;
    bottom: 26px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(3,33,245,0.85) 0%, rgba(3,33,245,0.25) 100%);
    z-index: 0;
  }
  .cycle-circle { display: none; }
  .cycle-card {
    max-width: none;
    width: 100%;
    text-align: left !important;
    border-left: 3px solid var(--cta-primary) !important;
    border-right: none !important;
    background: linear-gradient(to right, rgba(3,33,245,0.32) 0%, rgba(10,13,18,0.92) 60%) !important;
    transform: none !important;
    padding: 14px 16px !important;
    position: relative;
  }
  /* Icon badge sitting on the connector line, left of each card */
  .cycle-card::before {
    content: '';
    position: absolute;
    left: -64px; top: 6px;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #0a0d12 0%, #050710 100%);
    border: 1px solid var(--cta-primary);
    box-shadow: 0 0 0 2px rgba(3,33,245,0.1), 0 0 14px rgba(3,33,245,0.45);
    z-index: 1;
  }
  /* Icon glyph (masked SVG) centered on the badge */
  .cycle-card::after {
    content: '';
    position: absolute;
    left: -52px; top: 18px;
    width: 28px; height: 28px;
    background: #ffffff;
    -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
    -webkit-mask-size: contain; mask-size: contain;
    -webkit-mask-position: center; mask-position: center;
    z-index: 2;
  }
  .cycle-pos-1::after { -webkit-mask-image: url(images/icons/lead-generation.svg); mask-image: url(images/icons/lead-generation.svg); }
  .cycle-pos-2::after { -webkit-mask-image: url(images/icons/evaluation.svg); mask-image: url(images/icons/evaluation.svg); }
  .cycle-pos-3::after { -webkit-mask-image: url(images/icons/mentoring.svg); mask-image: url(images/icons/mentoring.svg); }
  .cycle-pos-4::after { -webkit-mask-image: url(images/icons/objection.svg); mask-image: url(images/icons/objection.svg); }
  .cycle-pos-5::after { -webkit-mask-image: url(images/icons/closing.svg); mask-image: url(images/icons/closing.svg); }
  .cycle-pos-6::after { -webkit-mask-image: url(images/icons/interest-rate.svg); mask-image: url(images/icons/interest-rate.svg); }
  /* Order steps 01 → 06 */
  .cycle-pos-1 { order: 1; } .cycle-pos-2 { order: 2; } .cycle-pos-3 { order: 3; }
  .cycle-pos-4 { order: 4; } .cycle-pos-5 { order: 5; } .cycle-pos-6 { order: 6; }
  .cycle-icon::after { display: none; }
}

/* Very narrow screens — tighten icon column */
@media (max-width: 380px) {
  .cycle-wrapper { padding-left: 60px; }
  .cycle-wrapper::before { left: 25px; }
  .cycle-card::before { left: -56px; width: 44px; height: 44px; }
  .cycle-card::after { left: -46px; top: 14px; width: 24px; height: 24px; }
}

/* --- Stats Bar --- */
.stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.stat-item { text-align: center; }
.stat-number { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--cta-primary); }
.stat-label { font-size: 0.9rem; color: var(--text-light); margin-top: 4px; }

/* --- Testimonial Cards --- */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.testimonial-card {
  background: var(--dark-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 36px; transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(3,33,245,0.3); }
.testimonial-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%; background: var(--cta-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; color: #ffffff;
}
.testimonial-name { font-weight: 700; color: var(--text-white); }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-body { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; font-style: italic; }
.testimonial-body::before { content: '"'; font-size: 2rem; color: var(--cta-primary); line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.testimonial-stars { margin-top: 16px; color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.google-badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem;
  color: var(--text-muted); margin-top: 8px;
}
.google-g { width: 14px; height: 14px; flex-shrink: 0; }
.proof-reviews .google-g { width: 16px; height: 16px; }
/* --- Testimonials: Hero + Marquee --- */
#testimonials { padding: 72px 0; }
.tm-header {
  text-align: center; margin-bottom: 32px;
}
.tm-header h2 {
  color: var(--text-white); margin-top: 14px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
.tm-google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px; padding: 10px 24px;
}
.tm-stars {
  color: #fbbf24; font-size: 1.1rem; letter-spacing: 2px;
}
.tm-score {
  color: var(--text-white); font-size: 0.9rem; font-weight: 700;
}

/* Hero quote */
.tm-hero {
  max-width: 680px; margin: 0 auto 36px; text-align: center;
}
.tm-hero-quote {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(3,33,245,0.2);
  border-radius: var(--radius-md);
  padding: 32px 36px 28px;
}
.tm-hero-mark { display: none; }
.tm-hero-quote blockquote {
  font-size: 1.08rem; font-weight: 500;
  color: var(--text-white); line-height: 1.65;
  font-style: italic; margin: 0;
  position: relative; z-index: 1;
}
.tm-hero-author {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; margin-top: 20px;
}
.tm-hero-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #2563eb);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: #fff;
}
.tm-hero-name {
  font-weight: 700; color: var(--text-white); font-size: 1rem;
}
.tm-hero-role {
  font-size: 0.8rem; color: var(--text-muted);
}

/* Marquee */
.tm-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  padding: 8px 0;
}
.tm-track {
  display: flex; gap: 24px;
  animation: tm-scroll 45s linear infinite;
  width: max-content;
}
.tm-track:hover { animation-play-state: paused; }

@keyframes tm-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tm-card {
  flex-shrink: 0;
  width: 290px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: border-color 0.3s ease;
}
.tm-card:hover {
  border-color: rgba(3,33,245,0.3);
}
.tm-card-stars {
  color: #fbbf24; font-size: 0.85rem;
  letter-spacing: 2px; margin-bottom: 12px;
}
.tm-card p {
  color: var(--text-light); font-size: 0.9rem;
  line-height: 1.65; font-style: italic; margin: 0 0 14px;
}
.tm-card-author {
  font-size: 0.8rem; color: var(--text-muted);
}
.tm-card-author strong {
  color: var(--text-white); font-weight: 700;
}

@media (max-width: 768px) {
  .tm-hero-quote { padding: 36px 24px 32px; }
  .tm-hero-quote blockquote { font-size: 1.05rem; }
  .tm-hero-mark { font-size: 4rem; top: 16px; left: 20px; }
  .tm-card { width: 280px; }
}

/* --- Für-wen section chrome --- */
.section-fuerwen { position: relative; overflow: hidden; padding: 72px 0; }
.section-fuerwen::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url('images/fuerwen-bg.jpg') center center / cover no-repeat;
  opacity: 0.12;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%);
}
.fuerwen-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 10%, rgba(3,33,245,0.10) 0%, rgba(3,33,245,0) 70%);
}
.section-fuerwen .container { position: relative; z-index: 1; }
.fuerwen-header { max-width: 780px; margin: 0 auto 40px; text-align: center; }
.fuerwen-header h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.25;
  margin: 0;
}
.fuerwen-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cta-primary);
  background: rgba(3,33,245,0.08);
  border: 1px solid rgba(3,33,245,0.2);
  border-radius: 999px;
  margin-bottom: 18px;
}

/* --- Target Audience --- */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.audience-card {
  padding: 22px 20px; border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.55);
  background: linear-gradient(155deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.58) 100%);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  transition: var(--transition);
}
.audience-card:hover {
  border-color: rgba(3,33,245,0.45);
  background: linear-gradient(155deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.82) 100%);
  transform: translateY(-3px);
}
.audience-icon {
  width: 32px; height: 32px; margin-bottom: 14px;
  background: linear-gradient(135deg, #0321f5 0%, #4d6bfa 100%);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: left center; mask-position: left center;
  -webkit-mask-size: contain; mask-size: contain;
}
.audience-icon-message { -webkit-mask-image: url(images/icons/megaphone.svg); mask-image: url(images/icons/megaphone.svg); }
.audience-icon-frage { -webkit-mask-image: url(images/icons/frage.svg); mask-image: url(images/icons/frage.svg); }
.audience-icon-lead { -webkit-mask-image: url(images/icons/lead-generierung.svg); mask-image: url(images/icons/lead-generierung.svg); }
.audience-icon-system { -webkit-mask-image: url(images/icons/system.svg); mask-image: url(images/icons/system.svg); }
.audience-icon-tourist { -webkit-mask-image: url(images/icons/tourist.svg); mask-image: url(images/icons/tourist.svg); }
.audience-icon-stumm { -webkit-mask-image: url(images/icons/weakness.svg); mask-image: url(images/icons/weakness.svg); }
.audience-icon-mind { -webkit-mask-image: url(images/icons/mind-mapping.svg); mask-image: url(images/icons/mind-mapping.svg); }
.audience-icon-kalender { -webkit-mask-image: url(images/icons/kalender.svg); mask-image: url(images/icons/kalender.svg); }
.audience-card h3 { margin-bottom: 6px; font-size: 0.95rem; }
.audience-card p { color: var(--text-dark-secondary); font-size: 0.85rem; line-height: 1.6; }

/* --- About / Authority --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: var(--radius-sm); box-shadow: 0 16px 50px rgba(0,0,0,0.4); }
.about-image::after {
  content: ''; position: absolute; inset: -6px; border-radius: calc(var(--radius-sm) + 6px);
  border: 2px solid rgba(3,33,245,0.25); pointer-events: none;
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.about-stat {
  background: var(--dark-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm); padding: 20px; text-align: center;
}
.about-stat .num { font-size: 1.6rem; font-weight: 800; color: var(--cta-primary); }
.about-stat .lbl { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.quote-block {
  margin-top: 40px; padding: 28px 32px; border-left: 3px solid var(--cta-primary);
  background: rgba(3,33,245,0.05); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.quote-block p { font-style: italic; font-size: 1.1rem; color: var(--text-light); line-height: 1.7; }
.quote-block cite { display: block; margin-top: 12px; font-style: normal; font-weight: 700; color: var(--cta-primary); }

/* --- About Split (new) --- */
.about-content .label {
  display: inline-block; font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--cta-primary); margin-bottom: 0;
}
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.about-content p {
  color: var(--text-dark-secondary); font-size: 1.02rem; line-height: 1.8; margin-top: 16px;
}
.about-content p:first-of-type { margin-top: 20px; }
.about-content strong { color: var(--text-dark); }
.section-dark .about-content p { color: var(--text-light); }
.section-dark .about-content strong { color: var(--text-white); }
.about-office-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: #f3f4f6;
  border: 2px dashed #d1d5db;
  border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: #9ca3af; font-size: 0.85rem; text-align: center;
}
.about-office-placeholder .material-symbols-outlined {
  font-size: 2.5rem; color: #d1d5db;
}
.section-dark .about-office-placeholder {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.15);
  color: var(--text-muted);
}
.section-dark .about-office-placeholder .material-symbols-outlined {
  color: rgba(255,255,255,0.15);
}
.about-office img {
  width: 100%; border-radius: var(--radius-md);
  object-fit: cover; box-shadow: 0 16px 50px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; gap: 32px; }
  .about-office { order: -1; }
  .about-office-placeholder { aspect-ratio: 16/9; }
}

/* --- Expectations --- */
.expectations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.expectation-card {
  padding: 36px; border-radius: 0;
  background: var(--light-bg); border: 1px solid #e5e7eb; border-top: 3px solid var(--cta-primary);
  position: relative; transition: var(--transition);
}
.expectation-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.expectation-num {
  font-size: 3rem; font-weight: 900; color: rgba(3,33,245,0.15);
  position: absolute; top: 12px; right: 20px;
}

/* --- Team Section --- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card { text-align: center; }
.team-card img {
  width: 200px; height: 200px; border-radius: 50%; object-fit: cover;
  object-position: center top; display: block;
  margin: 0 auto 20px; border: 3px solid var(--border-subtle);
  transition: var(--transition);
}
.team-card:hover img { border-color: var(--cta-primary); }
.team-card h3 { margin-bottom: 4px; }
.team-card .role { font-size: 0.85rem; color: var(--text-muted); }
.team-card p { font-size: 0.9rem; color: var(--text-light); margin-top: 8px; }

/* --- FAQ Section --- */
.faq-list {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  align-items: start;
}
.faq-item {
  border: 1px solid rgba(3,33,245,0.28); border-radius: 4px;
  overflow: hidden; transition: var(--transition);
  background: #ffffff;
}
.faq-item.active { border-color: var(--cta-primary); box-shadow: 0 6px 20px rgba(3,33,245,0.12); }
.faq-question {
  width: 100%; padding: 20px 24px; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--text-dark); text-align: left;
}
.faq-question .icon {
  font-size: 2rem; color: var(--cta-primary);
  line-height: 1; flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 24;
}
.faq-item.active .faq-question .icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-dark-secondary); font-size: 0.95rem; line-height: 1.7; }

/* --- Application Process --- */
.application-steps { max-width: 700px; margin: 0 auto; }
.app-step { display: flex; gap: 24px; position: relative; padding-bottom: 40px; }
.app-step:last-child { padding-bottom: 0; }
.app-step::before {
  content: ''; position: absolute; left: 23px; top: 50px; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--cta-primary), transparent);
}
.app-step:last-child::before { display: none; }
.app-step-num {
  width: 48px; height: 48px; min-width: 48px; border-radius: 50%;
  background: var(--cta-primary); color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
}
.app-step h3 { margin-bottom: 8px; }
.app-step p { color: var(--text-dark-secondary); font-size: 0.95rem; }

/* --- CTA Section --- */
.cta-section {
  padding: 120px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 62%;
  background: url('images/cta-alex.jpg') right 15%/cover no-repeat;
  z-index: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.15) 12%, #000 38%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.15) 12%, #000 38%, #000 100%);
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--dark-bg) 0%, rgba(15,17,20,0.85) 30%, rgba(15,17,20,0.45) 55%, rgba(15,17,20,0.2) 100%);
  pointer-events: none;
}
.cta-section > .container { position: relative; z-index: 2; }

.cta-content {
  max-width: 640px;
}
.cta-content h2 {
  color: var(--text-white);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.cta-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
}
.cta-section #final-cta {
  display: inline-block;
  padding: 16px 32px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .cta-section { padding: 90px 0; min-height: 0; }
  .cta-section::before {
    width: 100%;
    opacity: 0.45;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 60%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 60%);
  }
  .cta-section::after {
    background: linear-gradient(180deg, rgba(15,17,20,0.85) 0%, rgba(15,17,20,0.75) 100%);
  }
  .cta-content { max-width: 100%; text-align: center; }
  .cta-content p { margin-left: auto; margin-right: auto; }
  .cta-content h2 { font-size: clamp(1.6rem, 5vw, 2rem); }
}

/* --- Footer --- */
.footer { background: var(--dark-bg); border-top: 1px solid var(--border-subtle); padding: 40px 0; text-align: center; }
.footer .container { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--text-white); }
.footer-disclaimer {
  width: 100%;
  margin-bottom: 4px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}
.footer-disclaimer p {
  color: var(--text-muted); font-size: 0.75rem;
  line-height: 1.7; margin-bottom: 8px;
}
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-disclaimer strong { color: var(--text-light); }
.footer-copy { color: var(--text-muted); font-size: 0.8rem; text-align: center; }
.footer-social { display: flex; gap: 12px; justify-content: center; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--dark-card); border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--transition);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover {
  background: var(--cta-primary); border-color: var(--cta-primary);
  color: #ffffff; transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(3,33,245,0.35);
}
.footer-social a:focus-visible {
  outline: 2px solid var(--cta-primary); outline-offset: 3px;
}

/* --- Hamburger button (was a div, now a real button) --- */
.hamburger {
  background: none; border: none; padding: 8px; cursor: pointer;
}
.hamburger:focus-visible { outline: 2px solid var(--cta-primary); outline-offset: 4px; }

/* --- Metrics Bar (inside Hero) --- */
.metrics-bar {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.metric-card {
  text-align: center; padding: 20px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.metric-icon {
  display: inline-block;
  width: 28px; height: 28px;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #0321f5 0%, #4d6bfa 100%);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
}
.metric-icon-profitieren { -webkit-mask-image: url(images/icons/profitieren.svg); mask-image: url(images/icons/profitieren.svg); }
.metric-icon-geld { -webkit-mask-image: url(images/icons/geld.svg); mask-image: url(images/icons/geld.svg); }
.metric-icon-kunden { -webkit-mask-image: url(images/icons/kunden.svg); mask-image: url(images/icons/kunden.svg); }
.metric-big {
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #0321f5 0%, #4d6bfa 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.metric-sub {
  font-size: 0.78rem; color: var(--text-light);
  margin-top: 2px; line-height: 1.45;
  max-width: 32ch;
}
/* Metrics as part of the Hero (no dark bar, white numbers) */
.metrics-bar--hero {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.metrics-bar--hero .metric-card {
  padding: 10px 12px;
}
.metrics-bar--hero .metric-icon {
  width: 22px; height: 22px; margin-bottom: 4px;
  background: #ffffff;
}
.metrics-bar--hero .metric-big {
  background: none;
  -webkit-background-clip: initial; background-clip: initial;
  -webkit-text-fill-color: #ffffff; color: #ffffff;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
}
.metrics-bar--hero .metric-sub {
  color: rgba(255,255,255,0.68);
  font-size: 0.72rem;
}

/* --- Error Card Grid --- */
.errors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.error-card {
  padding: 28px 24px; position: relative;
  background: #ffffff; border: 1px solid #e5e7eb;
  border-left: 3px solid transparent;
  transition: var(--transition); overflow: hidden;
}
.error-card:hover { border-left-color: var(--accent-red); box-shadow: 0 4px 20px rgba(239,68,68,0.08); }
.error-card-num {
  font-size: 3.5rem; font-weight: 900; color: rgba(239,68,68,0.08);
  position: absolute; top: -4px; right: 12px; line-height: 1;
}
.error-card h4 { font-weight: 800; margin-bottom: 8px; font-size: 0.95rem; color: var(--text-dark); }
.error-card p { font-size: 0.85rem; color: var(--text-dark-secondary); line-height: 1.6; }
.error-card-full { grid-column: 1 / -1; }
.error-bottom {
  margin-top: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.error-warning {
  display: flex; align-items: flex-start; gap: 14px;
  max-width: 720px; text-align: left;
  padding: 24px 32px;
  background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius-sm);
  font-weight: 600; color: var(--accent-red); font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Fehler Bleed Layout --- */
.section-fehler-bleed { position: relative; overflow: hidden; padding: 64px 0; }
.section-fehler-bleed .container { position: relative; z-index: 1; }
.fehler-image-bleed {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 42%;
  pointer-events: none;
  z-index: 0;
}
.fehler-image-bleed img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 30% center;
  display: block;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 18%, black 45%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 18%, black 45%);
}
.fehler-content { max-width: 620px; }
.fehler-content h2 { margin-bottom: 18px; }
.fehler-lead {
  font-size: 1rem; color: var(--text-dark-secondary);
  line-height: 1.65; margin-bottom: 24px; font-weight: 500;
}
.fehler-check-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.fehler-check-list li {
  display: flex; align-items: flex-start; gap: 16px;
  color: var(--text-dark); line-height: 1.55; font-size: 1rem;
}
.fehler-check {
  flex-shrink: 0;
  width: 32px; height: 32px;
  margin-top: 2px;
  border: none;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" fill="none"><circle cx="22" cy="24" r="18" stroke="%230321f5" stroke-width="3" fill="rgba(3,33,245,0.06)"/><path d="M13 25 L 20 32 L 44 6" stroke="%230321f5" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" fill="none"/></svg>')
    center/contain no-repeat;
}
.fehler-check .material-symbols-outlined { display: none; }
.fehler-item-title { color: var(--cta-primary); font-weight: 800; margin-right: 4px; }
.fehler-note {
  margin-top: 28px; font-size: 0.9rem; color: var(--text-dark-secondary);
  font-weight: 500; line-height: 1.6;
}
.fehler-content .btn-cta { margin-top: 24px; display: inline-block; }
@media (max-width: 960px) {
  .fehler-image-bleed { width: 100%; opacity: 0.22; }
  .fehler-image-bleed img {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 100%);
            mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 100%);
  }
  .fehler-content { max-width: 100%; }
}
.error-warning .material-symbols-outlined { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

/* --- Urgency Section --- */
/* --- Market Insights Section --- */
.market-section {
  background: var(--dark-bg-alt);
  position: relative; overflow: hidden;
}
.market-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('images/bg-city.webp') center/cover no-repeat;
  opacity: 0.06;
}
.market-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.market-card {
  padding: 28px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.market-card:hover { border-color: var(--cta-primary); transform: translateY(-2px); }
.market-card .material-symbols-outlined { font-size: 1.4rem; color: var(--cta-primary); margin-bottom: 12px; }
.market-card h4 { color: var(--text-white); margin-bottom: 8px; }
.market-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* --- Extended Process (6 Steps) --- */
.process-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.process-6 .process-card { padding: 32px 24px; }
.process-connector { display: none; }

/* (old collab grid removed — using new collab styles above) */

/* --- YouTube Section --- */
.yt-featured { display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px; align-items: start; }
.yt-main-video {
  aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.yt-main-video iframe { width: 100%; height: 100%; border: none; }
.yt-sidebar { display: flex; flex-direction: column; gap: 8px; }
.yt-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--dark-card); border: 1px solid var(--border-subtle);
  cursor: pointer; transition: var(--transition);
}
.yt-card:hover { border-color: var(--cta-primary); background: var(--dark-card-hover); }
.yt-card-thumb {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(3,33,245,0.12); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.yt-card-thumb .material-symbols-outlined { font-size: 1.6rem; color: var(--cta-primary); }
.yt-card-title { font-size: 0.85rem; font-weight: 700; color: var(--text-white); line-height: 1.3; }
.yt-card-meta { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }

/* --- Animations --- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* --- Word-by-word blur reveal (Framer-style) --- */
.reveal-word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(14px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-word.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Subtle elevated shadows for depth */
.testimonial-card { box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.testimonial-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.process-card { box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.process-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.18), 0 0 20px var(--cta-glow); }
.error-card { box-shadow: 0 1px 3px rgba(0,0,0,0.03); }
.error-card:hover { box-shadow: 0 6px 24px rgba(239,68,68,0.06), 0 1px 4px rgba(0,0,0,0.04); }
.yt-card { box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.yt-card:hover { box-shadow: 0 4px 16px rgba(3,33,245,0.15); }
.audience-card { box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), inset 0 0 22px rgba(255,255,255,0.18), 0 8px 28px rgba(15,25,75,0.07); }
.audience-card:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), inset 0 0 24px rgba(255,255,255,0.25), 0 18px 44px rgba(3,33,245,0.14); }
.btn-cta { box-shadow: 0 2px 8px rgba(3,33,245,0.2); }
.btn-cta:hover { box-shadow: 0 8px 28px rgba(3,33,245,0.35); }

/* --- Audience Grid: 3 columns at 2 rows --- */
.audience-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- Testimonial avatar gradients (deterministic per initial) --- */
.testimonial-avatar { background: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%); }
.testimonial-card:nth-child(8n+1) .testimonial-avatar { background: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%); }
.testimonial-card:nth-child(8n+2) .testimonial-avatar { background: linear-gradient(135deg, #db2777 0%, #f59e0b 100%); }
.testimonial-card:nth-child(8n+3) .testimonial-avatar { background: linear-gradient(135deg, #059669 0%, #14b8a6 100%); }
.testimonial-card:nth-child(8n+4) .testimonial-avatar { background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%); }
.testimonial-card:nth-child(8n+5) .testimonial-avatar { background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%); }
.testimonial-card:nth-child(8n+6) .testimonial-avatar { background: linear-gradient(135deg, #0891b2 0%, #6366f1 100%); }
.testimonial-card:nth-child(8n+7) .testimonial-avatar { background: linear-gradient(135deg, #be123c 0%, #7c3aed 100%); }
.testimonial-card:nth-child(8n+8) .testimonial-avatar { background: linear-gradient(135deg, #047857 0%, #0891b2 100%); }

/* --- Process Steps: connecting journey line --- */
.process-6 { position: relative; }
.process-6::before {
  content: ''; position: absolute;
  top: 50%; left: 5%; right: 5%; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(3,33,245,0.4) 20%, rgba(3,33,245,0.4) 80%, transparent 100%);
  transform: translateY(-50%); z-index: 0; pointer-events: none;
}
.process-6 .process-card { position: relative; z-index: 1; }
@media (max-width: 1024px) { .process-6::before { display: none; } }

/* --- Program Section --- */
.program-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.program-card {
  background: #ffffff; border: 1px solid #e5e7eb;
  border-radius: var(--radius-md); padding: 36px 32px;
  transition: var(--transition); position: relative;
}
.program-card:hover { border-color: var(--cta-primary); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(3,33,245,0.08); }
.program-highlight {
  border: 2px solid var(--cta-primary);
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  box-shadow: 0 8px 32px rgba(3,33,245,0.1);
}
.program-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cta-primary); padding: 5px 12px;
  background: rgba(3,33,245,0.08); border-radius: 2px;
  margin-bottom: 14px;
}
.program-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--text-dark); }
.program-card > p { color: var(--text-dark-secondary); font-size: 0.95rem; line-height: 1.65; margin-bottom: 18px; }
.program-list { display: flex; flex-direction: column; gap: 8px; }
.program-list li {
  font-size: 0.9rem; color: var(--text-dark); padding-left: 22px; position: relative;
}
.program-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 12px; height: 2px; background: var(--cta-primary);
}
.program-footer {
  text-align: center; margin-top: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.program-footer-text {
  max-width: 580px; color: var(--text-dark-secondary);
  font-size: 0.95rem; line-height: 1.6; font-style: italic;
}

/* --- Collab Section (Zusammenarbeit — alternating rows) --- */
.section-collab {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: 72px;
  padding-bottom: 120px;
}
.section-collab .section-header { margin-bottom: 40px; }
.section-collab .collab-bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 15%, rgba(3,33,245,0.10), transparent 45%),
    radial-gradient(ellipse at 85% 85%, rgba(3,33,245,0.10), transparent 45%);
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cta-primary);
  padding: 8px 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(3,33,245,0.45);
  border-radius: 999px;
  background: rgba(3,33,245,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.section-collab .section-header p {
  color: var(--text-light);
  max-width: 720px;
  margin: 18px auto 0;
  line-height: 1.7;
}

.collab-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 28px 0;
  position: relative;
}
.collab-row + .collab-row {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.collab-row--reverse .collab-media {
  grid-column: 2;
  grid-row: 1;
}
.collab-row--reverse .collab-body {
  grid-column: 1;
  grid-row: 1;
}

/* --- Media side --- */
.collab-media {
  position: relative;
}
.collab-media-inner {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.04),
    0 0 100px -20px rgba(3,33,245,0.25);
  transform: translateZ(0);
  transition: var(--transition);
}
.collab-row:hover .collab-media-inner {
  transform: translateY(-4px);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 120px -10px rgba(3,33,245,0.38);
}
.collab-media-inner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.collab-media-inner img[src*="alex-am-telefon"] {
  object-position: center 20%;
}
.collab-media-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,17,20,0) 35%, rgba(15,17,20,0.75) 100%),
    linear-gradient(135deg, rgba(3,33,245,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.collab-media-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(15,17,20,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: var(--text-white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.collab-media-badge .material-symbols-outlined {
  font-size: 18px;
  color: var(--cta-primary);
  filter: brightness(1.4);
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}
.collab-media-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  width: fit-content;
  max-width: calc(100% - 40px);
  background: rgba(15,17,20,0.65);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--text-white);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.collab-media-caption .material-symbols-outlined {
  font-size: 16px;
  color: var(--cta-primary);
  filter: brightness(1.4);
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 0 0 rgba(255,77,77,0.7);
  animation: live-pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,77,77,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255,77,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,77,77,0); }
}

/* --- Plain (frameless) media variant --- */
.collab-row--plain .collab-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collab-media-plain {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
  transition: transform 0.4s ease;
}
.collab-media-plain--wide {
  max-width: 720px;
}
.collab-media-plain--phone {
  max-width: 240px;
  max-height: 380px;
  width: auto;
}

/* --- Document collage (templates row) --- */
.collab-media-docs {
  position: relative;
  width: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doc-collage {
  position: relative;
  width: 100%;
  max-width: 620px;
  height: 540px;
}
.doc {
  position: absolute;
  width: 200px;
  height: auto;
  background: #fff;
  padding: 6px;
  border-radius: 4px;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.18),
    0 6px 14px rgba(0,0,0,0.10),
    0 0 0 1px rgba(0,0,0,0.05);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s, z-index 0.01s;
  will-change: transform;
}
/* 5 Vorlagen: 3 oben, 2 unten */
.doc--1 { top: 0;    left: 0;     transform: rotate(-7deg); z-index: 1; }
.doc--2 { top: 18px; left: 30%;   transform: rotate(3deg);  z-index: 3; }
.doc--3 { top: 0;    right: 0;    transform: rotate(6deg);  z-index: 2; }
.doc--4 { top: 238px; left: 10%;  transform: rotate(-4deg); z-index: 4; }
.doc--5 { top: 250px; right: 10%; transform: rotate(5deg);  z-index: 5;
  box-shadow:
    0 28px 56px rgba(0,0,0,0.22),
    0 10px 22px rgba(0,0,0,0.12),
    0 0 0 1px rgba(0,0,0,0.06);
}
.collab-row:hover .doc--1 { transform: rotate(-9deg) translate(-6px, -4px); }
.collab-row:hover .doc--2 { transform: rotate(2deg)  translateY(-4px); }
.collab-row:hover .doc--3 { transform: rotate(9deg)  translate(6px, -4px); }
.collab-row:hover .doc--4 { transform: rotate(-6deg) translate(-6px, 0); }
.collab-row:hover .doc--5 { transform: rotate(7deg)  translate(6px, 0); }

.doc-badge,
.doc-caption {
  position: absolute;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(3,33,245,0.95);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(3,33,245,0.35);
}
.doc-badge { top: -8px; left: -6px; }
.doc-caption {
  bottom: -8px; right: -6px;
  background: rgba(15,17,20,0.95);
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}
.doc-badge .material-symbols-outlined,
.doc-caption .material-symbols-outlined { font-size: 16px !important; }

@media (max-width: 960px) {
  .collab-media-docs { min-height: 480px; }
  .doc-collage { height: 480px; max-width: 520px; }
  .doc { width: 175px; padding: 5px; }
  .doc--4, .doc--5 { top: 210px; }
}
@media (max-width: 600px) {
  .collab-media-docs { min-height: 420px; }
  .doc-collage { height: 420px; max-width: 100%; }
  .doc { width: 145px; padding: 4px; }
  .doc--4, .doc--5 { top: 180px; }
  .doc-badge, .doc-caption { font-size: 0.65rem; padding: 6px 10px; }
}

/* --- WhatsApp screenshot stack (Baulig-style layered cards) --- */
.collab-media-wa {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-stack {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: 470px;
  margin: 0 auto;
}
/* Tall phone screenshots — no frame, no outline, no rounded corners */
.wa-shot {
  position: absolute;
  width: 168px;
  height: auto;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow:
    0 22px 48px rgba(0,0,0,0.30),
    0 6px 16px rgba(0,0,0,0.18);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s;
  will-change: transform;
}
.wa-shot > img { display: block; width: 100%; height: auto; border-radius: 0; }
.wa-shot--1 { left: 0;   top: 48px; transform: rotate(-8deg); z-index: 1; }
.wa-shot--2 { left: 21%; top: 12px; transform: rotate(-2deg); z-index: 2; }
.wa-shot--3 { left: 42%; top: 30px; transform: rotate(4deg);  z-index: 3; }
.wa-shot--4 { right: 0;  top: 60px; transform: rotate(9deg);  z-index: 4; }
.collab-row--plain:hover .wa-shot--1 { transform: rotate(-10deg) translate(-6px, -4px); }
.collab-row--plain:hover .wa-shot--2 { transform: rotate(-3deg)  translateY(-6px); }
.collab-row--plain:hover .wa-shot--3 { transform: rotate(5deg)   translateY(-6px); }
.collab-row--plain:hover .wa-shot--4 { transform: rotate(11deg)  translate(6px, -4px); }
@media (max-width: 960px) {
  .collab-media-wa { min-height: 440px; }
  .wa-stack { height: 440px; max-width: 560px; }
  .wa-shot { width: 150px; }
}
@media (max-width: 600px) {
  .collab-media-wa { min-height: 380px; }
  .wa-stack { height: 380px; max-width: 100%; }
  .wa-shot { width: 116px; }
  .wa-shot--1 { left: 0;   top: 36px; }
  .wa-shot--2 { left: 22%; top: 8px; }
  .wa-shot--3 { left: 44%; top: 24px; }
  .wa-shot--4 { right: 0;  top: 46px; }
}
.collab-row--plain:hover .collab-media-plain {
  transform: translateY(-4px);
}
.collab-row--plain .collab-media-badge {
  top: 8px;
  left: 8px;
}

/* --- Body side --- */
.collab-body {
  max-width: 560px;
}
.collab-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.collab-body .collab-icon {
  flex-shrink: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collab-body .collab-icon .material-symbols-outlined {
  font-size: 44px;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
  background: linear-gradient(135deg, #0321f5 0%, #4d6bfa 55%, #6582fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 6px 18px rgba(3,33,245,0.45));
}
.collab-title-row h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}
.collab-lead {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.5;
  margin-bottom: 14px;
}
.collab-body > p:not(.collab-lead) {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.collab-points {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.collab-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-white);
  font-size: 0.95rem;
  line-height: 1.55;
}
.collab-points .material-symbols-outlined {
  font-size: 20px;
  color: var(--cta-primary);
  filter: brightness(1.4);
  flex-shrink: 0;
  margin-top: 2px;
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.collab-cta {
  display: flex;
  justify-content: center;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 980px) {
  .section-collab { padding-top: 80px; padding-bottom: 80px; }
  .collab-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }
  .collab-row--reverse .collab-media,
  .collab-row--reverse .collab-body {
    grid-column: 1;
    grid-row: auto;
  }
  .collab-body { max-width: 100%; }
  .collab-cta { margin-top: 48px; padding-top: 40px; }
}
@media (max-width: 560px) {
  .collab-media-inner { aspect-ratio: 3 / 2; border-radius: 4px; }
  .collab-media-badge { top: 14px; left: 14px; font-size: 0.72rem; padding: 7px 12px; }
  .collab-media-caption { bottom: 14px; left: 14px; right: 14px; font-size: 0.76rem; }
  .collab-title-row h3 { font-size: 1.2rem; }
  .collab-title-row { gap: 12px; }
  .collab-lead { font-size: 1rem; }
}

/* --- GOAT DAY Section --- */
.goatday-section {
  padding: var(--section-pad) 0; position: relative; overflow: hidden;
  background: var(--dark-bg);
}
.goatday-section::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url('images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.18;
}
.goatday-section::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(15,17,20,0.92) 0%, rgba(15,17,20,0.65) 60%, rgba(3,33,245,0.25) 100%);
}
.goatday-section > .container { position: relative; z-index: 1; }
.goatday-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.goatday-content .label {
  display: inline-block; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #fbbf24; margin-bottom: 16px;
  padding: 6px 14px; border: 1px solid rgba(251,191,36,0.4); border-radius: 2px;
}
.goatday-content h2 {
  color: var(--text-white); font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px; line-height: 1.1;
}
.goatday-content h2 .highlight { color: #fbbf24; }
.goatday-meta {
  display: flex; gap: 24px; flex-wrap: wrap; margin: 24px 0;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.goatday-meta-item { display: flex; align-items: center; gap: 10px; color: var(--text-light); font-size: 0.9rem; }
.goatday-meta-item .material-symbols-outlined { color: #fbbf24; font-size: 20px; }
.goatday-meta-item strong { color: var(--text-white); }
.goatday-content > p {
  color: var(--text-light); font-size: 1.05rem;
  line-height: 1.7; margin-bottom: 28px;
}
.goatday-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 32px;
  backdrop-filter: blur(10px);
}
.goatday-stat { text-align: center; }
.goatday-stat-num {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900;
  color: #fbbf24; line-height: 1; margin-bottom: 8px;
}
.goatday-stat-label {
  font-size: 0.8rem; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.goatday-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.btn-goatday {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #fbbf24; color: #0f1114;
  padding: 18px 36px; border-radius: 2px;
  font-size: 0.95rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; transition: var(--transition);
}
.btn-goatday:hover { background: #fcd34d; transform: scale(0.97); box-shadow: 0 8px 28px rgba(251,191,36,0.35); }
@media (max-width: 1024px) {
  .goatday-grid { grid-template-columns: 1fr; gap: 40px; }
  .goatday-stats { grid-template-columns: repeat(3, 1fr); padding: 24px; }
}
@media (max-width: 600px) {
  .goatday-stats { grid-template-columns: 1fr; gap: 16px; }
}

/* --- Risk Reversal Section --- */
.risk-section {
  background: var(--light-bg-alt); padding: 80px 0;
  border-top: 1px solid #e5e7eb;
}
.risk-card {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: #ffffff; border: 2px solid #e5e7eb;
  border-radius: var(--radius-md); padding: 56px 48px;
  position: relative;
}
.risk-icon {
  width: 64px; height: 64px; margin: 0 auto 24px;
  background: rgba(34,197,94,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.risk-icon .material-symbols-outlined { font-size: 32px; color: var(--accent-green); }
.risk-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-dark); margin-bottom: 18px;
}
.risk-card p {
  color: var(--text-dark-secondary); font-size: 1.05rem;
  line-height: 1.7; margin-bottom: 12px;
}
.risk-signature {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  font-size: 0.95rem; color: var(--text-dark);
  font-weight: 700;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .hero { padding: 120px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark-bg); flex-direction: column; padding: 24px; gap: 16px; border-bottom: 1px solid var(--border-subtle); }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }
  .process-grid, .process-6, .expectations-grid, .team-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; gap: 20px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .btn-cta { width: 100%; text-align: center; }
  .hero-proof { flex-direction: row; justify-content: center; gap: 12px; text-align: center; }
  .proof-text { text-align: center; }
  .metrics-bar { grid-template-columns: 1fr; }
  .metric-card { padding: 18px 16px; }
  .market-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr !important; }
  .schweiz-split { grid-template-columns: 1fr; gap: 24px; }
  .schweiz-image { order: -1; }
  .schweiz-image img { max-width: 280px; margin: 0 auto; display: block; }
  .about-split { grid-template-columns: 1fr; gap: 24px; }
  .about-office { order: -1; }
  .about-office-placeholder { aspect-ratio: 16/9; }
  .hero-tag { font-size: 0.7rem; padding: 8px 14px; }
  .hero-headline h1 { font-size: 1.6rem; }
  .hero-checks li { font-size: 0.85rem; }
  .hero-sub { font-size: 1rem; }
  .tm-hero-quote { padding: 32px 20px 28px; }
  .tm-hero-quote blockquote { font-size: 1rem; }
  .tm-hero-mark { font-size: 3.5rem; top: 12px; left: 16px; }
  .tm-card { width: 270px; }
  .app-step { flex-direction: column; gap: 12px; }
  .app-step-num { min-width: auto; }
  .comparison-titles { gap: 8px; }
  .btn-cta { font-size: 0.78rem; padding: 12px 20px; }
  .btn-cta-lg { font-size: 0.82rem; padding: 14px 24px; }

  /* Mobile-Fix: Headline darf nicht über den Rand laufen */
  .hero-headline { max-width: 100%; }
  .hero-headline h1 { overflow-wrap: break-word; }
  .hero h1 .highlight { display: inline; }
  .hero h1 .highlight::after { display: none; }
  /* Mobile-Fix: langer CTA-Text umbrechen statt überlaufen */
  #hero-cta { white-space: normal; line-height: 1.3; }
  /* Zentriertes Hero: Panel-Innenabstand auf kleinen Screens enger */
  .hero-checks--centered { padding: 4px 18px; }
}

/* --- Small phones: tight, legible, no wasted space --- */
@media (max-width: 480px) {
  :root { --section-pad: 48px; }

  /* Hero — pull in padding + tighter typography */
  .hero { padding: 88px 0 40px; }
  .hero-headline h1 { font-size: 1.4rem; line-height: 1.2; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 20px; }
  .hero-tag { font-size: 0.66rem; padding: 6px 12px; margin-bottom: 16px; }
  .hero-checks { gap: 8px; margin-bottom: 20px; }
  .hero-checks li { font-size: 0.82rem; }
  /* Shorter VSL to not eat the fold */
  .hero-video { aspect-ratio: 9 / 5; }
  .vsl-label { font-size: 1.8rem; }
  .vsl-icon { font-size: 48px !important; }

  /* Section header — less drop below headlines */
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: clamp(1.3rem, 5vw, 1.7rem); }
  .section-header p { font-size: 0.92rem; }

  /* 47 Fehler — hide the bleed image entirely so text gets full width */
  .fehler-image-bleed { display: none; }
  .section-fehler-bleed { padding: 48px 0; }
  .fehler-content h2 { font-size: 1.4rem; }

  /* Schweiz — shrink map, tighten typography */
  .schweiz-col-left .schweiz-map { max-width: 260px; }
  .schweiz-col-left h2 { font-size: 1.35rem; }
  .schweiz-intro,
  .schweiz-body { font-size: 0.92rem; }
  .schweiz-consequence p { font-size: 0.88rem; }
  .schweiz-cta-line { font-size: 0.95rem; }

  /* 6-Schritte cycle — tighter icon column */
  .cycle-wrapper { padding-left: 56px; }
  .cycle-wrapper::before { left: 23px; }
  .cycle-card::before { left: -52px; width: 44px; height: 44px; }
  .cycle-card::after { left: -42px; top: 14px; width: 24px; height: 24px; }
  .cycle-card-num { font-size: 0.68rem; }
  .cycle-card p { font-size: 0.82rem; }

  /* Metrics bar — smaller numbers */
  .metric-card { padding: 14px 12px; }
  .metric-big { font-size: 1.05rem; }
  .metric-sub { font-size: 0.72rem; }

  /* Comparison — tighter pair cards (two columns stay side-by-side) */
  #methode { padding: 52px 0; }
  .pair-card { padding: 11px 11px; font-size: 0.76rem; gap: 6px; }
  .pair-icon { font-size: 18px !important; }
  .comparison-title h3 { font-size: 0.9rem; }

  /* Final CTA — content breathes, image reads */
  .cta-section { padding: 72px 0; min-height: 0; }
  .cta-content h2 { font-size: 1.45rem; }
  .cta-content p { font-size: 0.92rem; }

  /* Buttons — don't let hero CTA overflow */
  #hero-cta { padding: 13px 22px; font-size: 0.76rem; white-space: normal; }
  #final-cta { padding: 13px 22px; font-size: 0.78rem; }
  .schweiz-btn { padding: 12px 20px; font-size: 0.74rem; white-space: normal; }

  /* Proof row below VSL — tighter */
  .hero-proof { gap: 10px; }
  .proof-avatars img { width: 30px; height: 30px; margin-left: -8px; }
  .proof-text { font-size: 0.74rem; }
}

/* --- Application Process (rebuilt, replaces legacy .app-step layout) --- */
.section-process {
  position: relative;
  background: var(--dark-bg);
  color: var(--text-white);
  overflow: hidden;
  isolation: isolate;
}
.section-process .process-bg {
  position: absolute; inset: 0; z-index: -2;
  background: url('images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.22;
  filter: grayscale(0.15) contrast(1.05);
}
.section-process::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 50% 25%, rgba(3,33,245,0.20), transparent 55%),
    linear-gradient(180deg, rgba(15,17,20,0.82) 0%, rgba(15,17,20,0.94) 100%);
  pointer-events: none;
}
.section-process .section-header h2 { color: var(--text-white); }
.section-process .section-header p {
  color: var(--text-light);
  max-width: 720px;
  margin: 18px auto 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 72px auto 0;
}
.process-step {
  position: relative;
  padding: 28px 18px 0;
  text-align: center;
}
.process-step + .process-step::before {
  content: '';
  position: absolute;
  top: 72px;
  left: -22px;
  width: 44px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(3,33,245,0.55), transparent);
}
.process-step .process-icon {
  width: auto; height: auto;
  background: none; border-radius: 0;
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  color: inherit;
  transition: var(--transition);
}
.process-step:hover .process-icon {
  transform: translateY(-6px);
}
.process-icon .material-symbols-outlined {
  font-size: 88px;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
  background: linear-gradient(135deg, #0321f5 0%, #4d6bfa 55%, #6582fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.process-icon-svg {
  display: inline-block;
  width: 68px; height: 68px;
  background: linear-gradient(135deg, #0321f5 0%, #4d6bfa 55%, #6582fc 100%);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
}
.process-icon-questions { -webkit-mask-image: url(images/icons/questions.svg); mask-image: url(images/icons/questions.svg); }
.process-icon-friend { -webkit-mask-image: url(images/icons/friend.svg); mask-image: url(images/icons/friend.svg); }
.process-icon-commitment { -webkit-mask-image: url(images/icons/commitment.svg); mask-image: url(images/icons/commitment.svg); }
.process-step h3 {
  color: var(--text-white);
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.process-step p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 320px;
  margin: 0 auto;
}
.process-step p strong { color: var(--text-white); font-weight: 700; }

.process-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 72px;
}
.btn-cta-gradient {
  background: linear-gradient(135deg, #0321f5 0%, #4d6bfa 100%);
  box-shadow:
    0 10px 30px rgba(3,33,245,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}
.btn-cta-gradient:hover {
  background: linear-gradient(135deg, #2a4af7 0%, #6582fc 100%);
  box-shadow:
    0 14px 40px rgba(3,33,245,0.48),
    inset 0 0 0 1px rgba(255,255,255,0.14);
}

.process-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 22px 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.process-avatars { display: flex; }
.process-avatars img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--dark-bg);
  margin-left: -12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.process-avatars img:first-child { margin-left: 0; }
.process-social-proof p {
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--text-light);
  text-align: left;
  margin: 0;
  font-style: italic;
}
.process-social-proof p strong {
  color: var(--text-white);
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 48px;
    max-width: 440px;
  }
  .process-step + .process-step::before { display: none; }
  .process-cta { margin-top: 56px; gap: 24px; }
  .process-social-proof {
    flex-direction: column;
    text-align: center;
    border-radius: 16px;
    padding: 16px 20px;
  }
  .process-social-proof p { text-align: center; }
}
@media (max-width: 480px) {
  .process-icon .material-symbols-outlined { font-size: 72px; }
  .process-icon-svg { width: 56px; height: 56px; }
  .process-step h3 { font-size: 1.2rem; }
}

@media (max-width: 768px) {
  .faq-list { grid-template-columns: 1fr; gap: 12px; }
}

/* --- Video Case Studies --- */
#case-studies { padding: 96px 0; }
.case-studies-list { display: flex; flex-direction: column; gap: 28px; }
.case-study {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  background: #ffffff;
  padding: 44px;
  border: 1px solid #e7e7e3;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.case-study-content h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  color: var(--text-dark);
}
.case-study-content h3 strong { color: var(--text-dark); font-weight: 900; }

.case-block { margin-bottom: 18px; }
.case-block:last-child { margin-bottom: 0; }
.case-block-label {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.case-block p {
  color: var(--text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.case-bullets { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.case-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; line-height: 1.55;
  color: var(--text-dark-secondary);
}
.case-check {
  width: 20px; height: 20px; min-width: 20px;
  background: linear-gradient(135deg, var(--cta-primary) 0%, #4d6bfa 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.65rem; font-weight: 800;
  margin-top: 3px;
}

.case-study-media { display: flex; flex-direction: column; gap: 18px; }
.case-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, #1e2128 0%, #0a0d12 100%);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
}
.case-video:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.18); }
.case-play {
  font-size: 76px !important;
  color: rgba(255,255,255,0.92);
}
.case-video-hint {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.case-author { display: flex; align-items: center; gap: 14px; }
.case-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c4d0ff, #5a78ff);
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.case-author-text { display: flex; flex-direction: column; gap: 2px; }
.case-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 1px; }
.case-name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
}
.case-role {
  font-size: 0.85rem;
  color: var(--text-dark-secondary);
}

@media (max-width: 900px) {
  #case-studies { padding: 64px 0; }
  .case-study { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .case-study-media { order: -1; }
}
@media (max-width: 480px) {
  #case-studies { padding: 48px 0; }
  .case-study { padding: 22px; gap: 22px; }
  .case-play { font-size: 56px !important; }
}
