/* ================================================================
   ErgoFlow Website — Shared Stylesheet
   ================================================================ */

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

/* ── Variables ── */
:root {
  --primary:       #5f9f99;
  --primary-deep:  #366d67;
  --primary-light: #dff1ef;
  --bg:            #f7f4ef;
  --surface:       #fffdf9;
  --surface-soft:  #f5efe6;
  --border:        #eadfce;
  --text:          #2d3b3a;
  --text-soft:     #6e7c7a;
  --gold:          #efcf8f;
  --gold-soft:     #faf2dd;
  --gold-deep:     #c9a020;
  --shadow:        0 4px 24px rgba(95,159,153,0.10);
  --shadow-lg:     0 8px 48px rgba(95,159,153,0.16);
  --radius:        12px;
  --radius-lg:     20px;
  --max-w:         1140px;
  --header-h:      64px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.0625rem, 2vw, 1.375rem); }
p  { line-height: 1.75; }

/* ── Layout ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
@media (max-width: 768px) { section { padding: 60px 0; } }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 700; font-size: 0.9375rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 16px rgba(95,159,153,.30); }
.btn-primary:hover { background: var(--primary-deep); box-shadow: 0 6px 24px rgba(95,159,153,.40); }
.btn-outline { background: #fff; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 4px 16px rgba(200,169,110,.35); }
.btn-gold:hover { background: var(--gold-deep); box-shadow: 0 6px 24px rgba(200,169,110,.45); }
.btn-white { background: #fff; color: var(--primary-deep); box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.btn-white:hover { background: var(--primary-light); box-shadow: 0 6px 24px rgba(0,0,0,.18); }
.btn-sm { padding: 9px 20px; font-size: .875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.0625rem; }

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 50px;
  font-size: .75rem; font-weight: 700;
  font-family: 'Nunito', system-ui, sans-serif;
  letter-spacing: .02em;
}
.badge-green { background: var(--primary-light); color: var(--primary-deep); }
.badge-gold  { background: var(--gold-soft); color: var(--gold-deep); }

/* ── Cards ── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── Section Helpers ── */
.section-eyebrow {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 12px;
  display: block;
}
.section-subtitle { color: var(--text-soft); font-size: 1.0625rem; max-width: 580px; margin-bottom: 52px; }
.divider { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 14px 0 40px; }
.divider-center { margin: 14px auto 40px; }

/* ════════════════════════════════
   HEADER
════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: 88px;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s, height .25s ease;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(44,44,44,.08); height: var(--header-h); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.site-header.scrolled .header-inner { padding: 0; height: var(--header-h); }
.header-logo { display: flex; align-items: flex-start; flex-direction: column; gap: 3px; }
.header-logo img { height: 52px; width: auto; }
.header-tagline {
  font-size: 10.5px; color: var(--text-soft); letter-spacing: .03em;
  line-height: 1; white-space: nowrap;
  opacity: 1; max-height: 16px; overflow: hidden;
  transition: opacity .2s ease, max-height .25s ease;
}
.site-header.scrolled .header-tagline { opacity: 0; max-height: 0; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  padding: 8px 14px; border-radius: 8px;
  font-size: .9rem; font-weight: 500; color: var(--text-soft);
  transition: color .15s, background .15s;
}
.header-nav a:hover, .header-nav a.active { color: var(--primary-deep); background: var(--primary-light); }
.header-cta { margin-left: 12px; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s, opacity .2s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none; position: fixed;
  top: 88px; left: 0; right: 0;
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 12px 24px 24px; box-shadow: 0 8px 32px rgba(44,44,44,.10); z-index: 99;
  transition: top .25s ease;
}
.site-header.scrolled ~ .mobile-nav { top: var(--header-h); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 1rem; font-weight: 600; color: var(--text); }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { display: flex; margin-top: 16px; justify-content: center; }

@media (max-width: 800px) { .header-nav, .header-cta { display: none; } .hamburger { display: flex; } }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center;
  padding: 80px 0; position: relative; overflow: hidden;
  background: var(--bg);
}
/* Background photo layer */
.hero-bg-image {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center top;
  background-color: var(--primary-light); /* shown until photo is loaded / placeholder */
}
/* Overlay: fully opaque on the left (text side), fades to semi-transparent on the right */
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(255,255,255,.90) 0%,
    rgba(255,255,255,.70) 40%,
    rgba(255,255,255,.35) 68%,
    rgba(255,255,255,.15) 100%
  );
}
.hero > .particle-field { z-index: 2; }
.hero > .container      { position: relative; z-index: 3; }
.hero > .scroll-indicator { z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.hero-tag { margin-bottom: 20px; }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero-sub { color: var(--text-soft); font-size: 1.0625rem; line-height: 1.8; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 20px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 6px; font-size: .8125rem; color: var(--text-soft); }
.hero-trust-item svg { color: var(--primary); flex-shrink: 0; }

.hero-visual { position: relative; display: flex; justify-content: flex-end; align-items: center; }
.hero-glow {
  position: absolute; width: 380px; height: 380px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  border-radius: 50%; z-index: 0;
}
.hero-phone-wrap { position: relative; z-index: 1; animation: heroFloat 5.5s ease-in-out infinite; }
.hero-phone {
  width: 270px; height: 540px;
  background: var(--surface); border-radius: 38px;
  border: 2px solid var(--border);
  box-shadow: 0 32px 80px rgba(44,44,44,.18), 0 0 0 8px rgba(95,159,153,.06);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 72px; height: 20px; background: var(--text); border-radius: 10px; z-index: 2;
}
.hero-phone-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--primary-light) 0%, var(--surface-soft) 60%, var(--gold-soft) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 32px 20px; text-align: center;
}
.hero-phone-placeholder .ph-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
}
.hero-phone-placeholder .ph-icon svg { color: #fff; width: 28px; height: 28px; }
.hero-phone-placeholder .ph-label { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: .875rem; color: var(--text); }
.hero-phone-placeholder .ph-sub { font-size: .75rem; color: var(--text-soft); }
.hero-phone-img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge-float {
  position: absolute; background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 10px 14px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; white-space: nowrap; z-index: 2;
}
.hero-badge-float .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
.hero-badge-float-1 { bottom: 48px; left: -24px; }
.hero-badge-float-2 { top: 60px; right: -28px; animation-delay: .8s; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
}
@media (max-width: 480px) { .hero-phone { width: 220px; height: 440px; } }

/* ════════════════════════════════
   PAIN POINTS
════════════════════════════════ */
.pain-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pain-item {
  display: flex; flex-direction: column; gap: 12px;
  padding: 28px 24px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--surface-soft);
  transition: border-color .2s, box-shadow .2s;
}
.pain-item:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.pain-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; color: var(--primary-deep); flex-shrink: 0; }
.pain-icon svg { width: 20px; height: 20px; }
.pain-item h4 { font-size: 1rem; margin-bottom: 2px; }
.pain-item p { font-size: .875rem; color: var(--text-soft); line-height: 1.65; }
@media (max-width: 768px) { .pain-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════
   FEATURES
════════════════════════════════ */
.features-section { background: var(--bg); }
.features-layout { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
.features-photo-col {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--primary-light);
  position: sticky; top: calc(var(--header-h) + 24px);
}
.features-photo-col img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; display: block; }
.features-header { text-align: left; margin-bottom: 28px; }
.features-header .section-subtitle { margin: 0 0 36px; }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.feature-card { padding: 24px 28px; display: flex; flex-direction: row; gap: 18px; align-items: flex-start; }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.0625rem; margin-bottom: 0; }
.feature-card p { font-size: .9rem; color: var(--text-soft); }
@media (max-width: 960px) {
  .features-layout { grid-template-columns: 1fr; }
  .features-photo-col { position: static; }
  .features-photo-col img { height: 260px; }
  .features-header { text-align: center; }
  .features-header .section-subtitle { margin: 0 auto 36px; }
}
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } .feature-card { padding: 20px; } }

/* ════════════════════════════════
   HOW IT WORKS
════════════════════════════════ */
.hiw-section { background: var(--surface); border-top: 1px solid var(--border); }
.hiw-header { text-align: center; margin-bottom: 0; }
.hiw-steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 40px; margin-top: 56px; position: relative;
}
/* Verbindungslinie — zeichnet sich von links nach rechts ein */
.hiw-steps.animate-on-scroll { opacity: 1; transform: none; transition: none; }
.hiw-steps::before {
  content: ''; position: absolute; top: 26px;
  left: calc(16.66% + 26px); right: calc(16.66% + 26px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
  opacity: .35; z-index: 0;
  transform-origin: left; transform: scaleX(0);
  transition: transform 1s cubic-bezier(.4,0,.2,1) .15s;
}
.hiw-steps.in-view::before { transform: scaleX(1); }
.hiw-step {
  text-align: center; position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
}
/* Zahlenkreis: springt beim Einblenden herein */
.hiw-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 0 22px; box-shadow: 0 4px 16px rgba(95,159,153,.3);
  flex-shrink: 0;
}
.hiw-step.in-view .hiw-num { animation: numPop .5s cubic-bezier(.34,1.56,.64,1) both; }
.hiw-step.in-view.anim-d1 .hiw-num { animation-delay: .1s; }
.hiw-step.in-view.anim-d2 .hiw-num { animation-delay: .28s; }
.hiw-step.in-view.anim-d3 .hiw-num { animation-delay: .46s; }
@keyframes numPop {
  from { transform: scale(.3); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
.hiw-step-text h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.hiw-step-text p { font-size: .9rem; color: var(--text-soft); max-width: 220px; margin: 0 auto; }
@media (max-width: 768px) {
  .hiw-steps { grid-template-columns: 1fr; gap: 28px; }
  .hiw-steps::before { display: none; }
  .hiw-step { text-align: left; flex-direction: row; align-items: flex-start; gap: 16px; }
  .hiw-num { margin: 0; }
  .hiw-step-text p { max-width: none; margin: 0; }
}

/* ════════════════════════════════
   STATS
════════════════════════════════ */
.stats-section { background: var(--primary-deep); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-item { padding: 16px; }
.stat-num { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 2.625rem; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-num em { font-style: normal; color: var(--gold); }
.stat-label { font-size: .875rem; color: rgba(255,255,255,.65); }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }

/* ════════════════════════════════
   PRICING TEASER
════════════════════════════════ */
.pricing-teaser-section { background: var(--bg); position: relative; overflow: hidden; }
.pricing-bg-image {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-color: var(--primary-light);
}
.pricing-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(255,255,255,.92) 0%,
    rgba(255,255,255,.78) 40%,
    rgba(255,255,255,.52) 68%,
    rgba(255,255,255,.28) 100%
  );
}
.pricing-teaser-section > .container { position: relative; z-index: 2; }
.pricing-teaser-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pricing-teaser-text .section-subtitle { max-width: none; }
.pricing-card-wrap { display: flex; justify-content: center; }
.pricing-card-main {
  background: var(--surface); border: 2px solid var(--primary);
  border-radius: var(--radius-lg); padding: 36px 32px;
  max-width: 340px; width: 100%; box-shadow: var(--shadow-lg);
}
.plan-name-label {
  font-family: 'Nunito', sans-serif; font-size: .8125rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px;
}
.plan-price { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 3rem; color: var(--text); line-height: 1; }
.plan-price sup { font-size: 1.5rem; vertical-align: super; font-weight: 700; }
.plan-period { font-size: .9rem; color: var(--text-soft); margin-top: 4px; margin-bottom: 24px; }
.plan-features-list { list-style: none; margin-bottom: 24px; }
.plan-features-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9375rem; color: var(--text-soft);
  padding: 7px 0; border-bottom: 1px solid var(--border);
}
.plan-features-list li:last-child { border-bottom: none; }
.plan-features-list li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23366d67' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
  flex-shrink: 0;
}
.early-bird-box {
  background: var(--gold-soft); border: 1px solid var(--gold);
  border-radius: var(--radius); padding: 14px 16px; margin-top: 20px;
  display: flex; align-items: flex-start; gap: 10px;
}
.eb-icon { font-size: 1.125rem; flex-shrink: 0; }
.eb-text { font-size: .8125rem; color: var(--gold-deep); line-height: 1.55; }
.eb-text strong { display: block; font-family: 'Nunito', sans-serif; font-weight: 700; margin-bottom: 2px; }
@media (max-width: 768px) { .pricing-teaser-inner { grid-template-columns: 1fr; } }

/* ════════════════════════════════
   TRUST
════════════════════════════════ */
.trust-section { background: var(--surface-soft); border-top: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.trust-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.trust-icon { font-size: 2rem; }
.trust-item h4 { font-size: .9375rem; }
.trust-item p { font-size: .8125rem; color: var(--text-soft); line-height: 1.6; }
@media (max-width: 640px) { .trust-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════
   FAQ HOMEPAGE
════════════════════════════════ */
.faq-homepage-section { background: var(--bg); border-top: 1px solid var(--border); }

/* ════════════════════════════════
   CTA SECTION
════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
  text-align: center; padding: 100px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 25% 50%, rgba(255,255,255,.06) 0%, transparent 55%),
              radial-gradient(circle at 75% 50%, rgba(255,255,255,.04) 0%, transparent 55%);
}
.cta-section > .container { position: relative; }
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.0625rem; max-width: 520px; margin: 0 auto 36px; }
.cta-note { margin-top: 14px; font-size: .8125rem; color: rgba(255,255,255,.55); }

/* ════════════════════════════════
   KONTAKT LIGHTBOX
════════════════════════════════ */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(25,38,36,.55); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 24px;
}
.lightbox-overlay.open { display: flex; animation: overlayFadeIn .2s ease both; }
@keyframes overlayFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-box {
  background: var(--surface); border-radius: var(--radius-lg);
  width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,.28); padding: 40px 40px 36px;
  position: relative; animation: lightboxIn .28s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes lightboxIn { from { transform: scale(.94) translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.lightbox-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface-soft); color: var(--text-soft);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.lightbox-close:hover { background: var(--border); color: var(--text); }
.lightbox-box h2 { font-size: 1.4rem; margin-bottom: 4px; }
.lightbox-sub { color: var(--text-soft); font-size: .9rem; margin-bottom: 28px; }
.form-msg {
  padding: 11px 16px; border-radius: var(--radius); font-size: .9rem;
  margin-bottom: 16px; display: none; line-height: 1.5;
}
.form-msg.error   { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; display: block; }
.form-msg.success { background: var(--primary-light); color: var(--primary-deep); border: 1px solid var(--primary); display: block; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form .form-row-plz { grid-template-columns: 130px 1fr; }
.contact-form .form-group { margin-bottom: 14px; }
.contact-form label { display: block; font-size: .875rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.contact-form label .opt { color: var(--text-soft); font-weight: 400; font-size: .8rem; }
.contact-form .req { color: var(--primary); }
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  background: var(--bg); font-size: .9375rem; color: var(--text);
  font-family: inherit; transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(95,159,153,.15);
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form .ds-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.contact-form .ds-row input[type=checkbox] { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--primary); cursor: pointer; }
.contact-form .ds-row label { font-size: .8125rem; font-weight: 400; color: var(--text-soft); cursor: pointer; }
.contact-form .ds-row label a { color: var(--primary); text-decoration: underline; }
.contact-form .addr-street { margin-bottom: 8px; }
.cf-hint { font-size: .78rem; color: var(--text-soft); text-align: center; margin-top: 10px; }
@media (max-width: 600px) {
  .lightbox-box { padding: 28px 20px 24px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-form .form-row-plz { grid-template-columns: 100px 1fr; }
}

/* ════════════════════════════════
   KONTAKT-SEITE
════════════════════════════════ */
.kontakt-layout { display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: start; margin-top: 16px; }
.kontakt-info { display: flex; flex-direction: column; gap: 28px; }
.kontakt-info-block { display: flex; gap: 16px; align-items: flex-start; }
.kontakt-info-icon { width: 44px; height: 44px; background: var(--primary-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kontakt-info-block h4 { font-size: .875rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.kontakt-info-block p, .kontakt-info-block a { font-size: .9rem; color: var(--text-soft); line-height: 1.6; }
.kontakt-info-block a:hover { color: var(--primary); }
.kontakt-form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 40px; }
@media (max-width: 860px) {
  .kontakt-layout { grid-template-columns: 1fr; gap: 40px; }
  .kontakt-form-wrap { padding: 24px 20px; }
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.site-footer { background: #1E1E1E; padding: 64px 0 32px; color: rgba(255,255,255,.65); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand img { height: 30px; margin-bottom: 14px; opacity: .85; }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 260px; }
.footer-col h5 {
  font-family: 'Nunito', sans-serif; font-size: .75rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 16px;
}
.footer-col a { display: block; font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; font-size: .8125rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); transition: color .15s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }
@media (max-width: 960px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1/-1; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 12px; text-align: center; } .footer-bottom-links { flex-wrap: wrap; justify-content: center; } }

/* ════════════════════════════════
   APP-STÖRER (fixed bottom-right)
════════════════════════════════ */
#app-stoerer {
  position: fixed; bottom: 28px; right: 28px;
  display: flex; align-items: center; gap: 12px;
  background: var(--primary); border: 2px solid var(--gold);
  border-radius: 16px; padding: 12px 16px 12px 12px;
  box-shadow: 0 8px 32px rgba(95,159,153,.40);
  text-decoration: none; color: inherit;
  opacity: 0; pointer-events: none;
  transform: translateY(12px) scale(.97);
  transition: opacity .3s, transform .3s;
  z-index: 90; max-width: 220px;
}
#app-stoerer.visible { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
#app-stoerer:hover { box-shadow: 0 12px 40px rgba(95,159,153,.55); transform: translateY(-2px) scale(1) !important; }
.stoerer-qr {
  width: 72px; height: 72px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--gold);
}
.stoerer-text { display: flex; flex-direction: column; gap: 3px; }
.stoerer-label {
  font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--gold);
}
.stoerer-headline {
  font-size: 13px; font-weight: 700; line-height: 1.3;
  color: #fff;
}
.stoerer-cta {
  font-size: 12px; color: var(--primary-light);
}
@media (max-width: 480px) {
  #app-stoerer { bottom: 16px; right: 16px; padding: 10px 14px 10px 10px; max-width: 190px; }
  .stoerer-qr { width: 60px; height: 60px; }
}

/* ════════════════════════════════
   LEGAL PAGES
════════════════════════════════ */
.legal-page { padding: 60px 0 88px; }
.legal-page .page-header { margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.legal-page .page-header h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-top: 8px; }
.legal-page .page-header .date { margin-top: 8px; font-size: .875rem; color: var(--text-soft); }
.legal-content { max-width: 760px; }
.legal-content section { padding: 0; margin-bottom: 36px; }
.legal-content h2 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.legal-content p { font-size: .9375rem; color: var(--text-soft); margin-bottom: 10px; }
.legal-content ul { padding-left: 20px; margin-bottom: 10px; }
.legal-content ul li { font-size: .9375rem; color: var(--text-soft); margin-bottom: 6px; line-height: 1.7; }
.legal-content strong { color: var(--text); }
.legal-content a { color: var(--primary); text-decoration: underline; }
.legal-back { display: inline-flex; align-items: center; gap: 6px; font-size: .875rem; color: var(--text-soft); margin-bottom: 36px; transition: color .15s; }
.legal-back:hover { color: var(--primary); }
.legal-back svg { width: 16px; height: 16px; }

/* ════════════════════════════════
   PRICING PAGE
════════════════════════════════ */
.pricing-page { padding: 60px 0 88px; }
.pricing-page .page-header { text-align: center; margin-bottom: 60px; }
.pricing-page .page-header .section-subtitle { margin: 0 auto; }
.plan-card-full {
  background: var(--surface); border: 2px solid var(--primary);
  border-radius: var(--radius-lg); padding: 44px 40px;
  max-width: 420px; margin: 0 auto 40px; box-shadow: var(--shadow-lg); position: relative;
}
.plan-card-full .plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: .75rem;
  letter-spacing: .06em; text-transform: uppercase; padding: 4px 16px; border-radius: 50px;
}
.plan-card-full .price-row { display: flex; align-items: baseline; gap: 4px; margin: 16px 0 4px; }
.plan-card-full .price-big { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 3.25rem; color: var(--text); line-height: 1; }
.plan-card-full .price-cur { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--text); align-self: flex-start; padding-top: 6px; }
.plan-card-full .price-per { font-size: .9rem; color: var(--text-soft); margin-bottom: 28px; }
.plan-card-full .features-list { list-style: none; margin-bottom: 32px; }
.plan-card-full .features-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: .9375rem; color: var(--text-soft);
}
.plan-card-full .features-list li:last-child { border-bottom: none; }
.plan-card-full .features-list .chk {
  width: 22px; height: 22px; border-radius: 50%; background: var(--primary-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary-deep);
}
.plan-card-full .features-list .chk svg { width: 12px; height: 12px; }
.plan-card-full .early-bird-box { margin-bottom: 28px; }

.pricing-faq { max-width: 680px; margin: 0 auto; padding-top: 16px; }
.pricing-faq h2 { text-align: center; margin-bottom: 36px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; font-weight: 600; font-size: .9375rem;
  background: var(--surface); text-align: left; gap: 12px;
}
.faq-q:hover { background: var(--surface-soft); }
.faq-arrow { width: 20px; height: 20px; color: var(--text-soft); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 18px; font-size: .9375rem; color: var(--text-soft); line-height: 1.7; background: var(--surface); }
.faq-item.open .faq-a { display: block; }

/* ════════════════════════════════
   ANIMATIONS
════════════════════════════════ */
@keyframes heroFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }
@keyframes blobPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.1)} }

.animate-on-scroll {
  opacity: 0; transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.animate-on-scroll.in-view { opacity: 1; transform: translateY(0); }
.anim-d1 { transition-delay: .08s; }
.anim-d2 { transition-delay: .18s; }
.anim-d3 { transition-delay: .28s; }
.anim-d4 { transition-delay: .38s; }
.anim-d5 { transition-delay: .48s; }
.anim-d6 { transition-delay: .58s; }

/* ════════════════════════════════
   UTILITIES
════════════════════════════════ */
.text-center { text-align: center; }
.text-soft    { color: var(--text-soft); }
.flex         { display: flex; }
.gap-3        { gap: 12px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }

/* ════════════════════════════════
   IMAGE PLACEHOLDER (dev only)
════════════════════════════════ */
.img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; text-align: center; padding: 16px;
  font-size: .75rem; font-weight: 600; line-height: 1.4;
}
.img-ph svg { opacity: .5; flex-shrink: 0; }
.img-ph-label { opacity: .7; }
.img-ph-size { opacity: .45; font-size: .7rem; font-weight: 400; margin-top: 2px; }

/* ════════════════════════════════
   SCROLL INDICATOR (hero)
════════════════════════════════ */
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: scrollBounce 2s ease-in-out infinite;
  color: var(--text-soft); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase;
}
.scroll-indicator svg { width: 22px; height: 22px; }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
@media (max-width: 768px) { .scroll-indicator { display: none; } }

/* ════════════════════════════════
   MARQUEE STRIP
════════════════════════════════ */
.marquee-section { background: var(--primary-deep); padding: 13px 0; overflow: hidden; user-select: none; }
.marquee-inner { display: flex; width: max-content; animation: marqueeScroll 32s linear infinite; }
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 12px; padding: 0 28px;
  font-family: 'Nunito', sans-serif; font-size: .8rem; font-weight: 700;
  color: rgba(255,255,255,.72); letter-spacing: .04em; white-space: nowrap;
}
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ════════════════════════════════
   BEFORE / AFTER
════════════════════════════════ */
.ba-section { background: var(--surface); border-top: 1px solid var(--border); }
.ba-header { text-align: center; margin-bottom: 60px; }
.ba-grid { display: grid; grid-template-columns: 1fr 56px 1fr; gap: 0; align-items: start; }
.ba-side { display: flex; flex-direction: column; gap: 16px; }
.ba-side-header {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Nunito', sans-serif; font-size: .875rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; padding: 10px 16px;
  border-radius: var(--radius); border: 1px solid var(--border);
}
.ba-side-header.negative { background: #F9F2F2; color: #8B3B3B; border-color: #E8C8C8; }
.ba-side-header.positive { background: var(--primary-light); color: var(--primary-deep); border-color: #a8d4d0; }
.ba-images { display: grid; grid-template-rows: 220px 160px; gap: 8px; }
.ba-img-wrap { border-radius: var(--radius); overflow: hidden; width: 100%; height: 100%; position: relative; }
.ba-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ba-img-wrap:hover img { transform: scale(1.04); }
.ba-img-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 16px;
}
.ba-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.ba-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; line-height: 1.55; }
.ba-bullets .icon { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.ba-bullets.neg .icon { background: #FBECEC; color: #B94040; }
.ba-bullets.pos .icon { background: var(--primary-light); color: var(--primary-deep); }
.ba-bullets.neg li { color: var(--text-soft); }
.ba-bullets.pos li { color: var(--text); }
.ba-divider-col { display: flex; flex-direction: column; align-items: center; padding-top: 24px; gap: 0; }
.ba-vs {
  width: 40px; height: 40px; border-radius: 50%; background: var(--text);
  color: #fff; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .75rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1;
}
.ba-line { flex: 1; width: 2px; background: var(--border); }
@media (max-width: 900px) {
  .ba-grid { grid-template-columns: 1fr; gap: 32px; }
  .ba-divider-col { flex-direction: row; padding-top: 0; }
  .ba-line { height: 2px; width: auto; flex: 1; }
}

/* ════════════════════════════════
   GALLERY (dark)
════════════════════════════════ */
.gallery-section { background: #1A1F1B; overflow: hidden; }
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-header h2 { color: #fff; }
.gallery-header p { color: rgba(255,255,255,.55); max-width: 540px; margin: 0 auto; }
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 8px;
}
.gm-item { overflow: hidden; border-radius: 10px; position: relative; }
.gm-1 { grid-column: 1/2; grid-row: 1/2; }
.gm-2 { grid-column: 2/3; grid-row: 1/3; } /* tall center */
.gm-3 { grid-column: 3/4; grid-row: 1/2; }
.gm-4 { grid-column: 1/2; grid-row: 2/3; }
.gm-5 { grid-column: 3/4; grid-row: 2/3; }
.gm-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; display: block; }
.gm-item:hover img { transform: scale(1.07); }
.gm-item .img-ph { font-size: .7rem; }
.gallery-cta { text-align: center; margin-top: 36px; }
.gallery-cta p { color: rgba(255,255,255,.6); font-size: 1rem; margin-bottom: 24px; }
@media (max-width: 768px) {
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .gm-2 { grid-column: 2/3; grid-row: 1/2; }
  .gm-4 { grid-column: 1/2; grid-row: 3/4; }
  .gm-5 { grid-column: 2/3; grid-row: 3/4; }
}
@media (max-width: 500px) {
  .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(5,200px); }
  .gm-2 { grid-column: 1/2; grid-row: 2/3; }
  .gm-4 { grid-column: 1/2; grid-row: 4/5; }
  .gm-5 { grid-column: 1/2; grid-row: 5/6; }
}

/* ════════════════════════════════
   PARALLAX QUOTE
════════════════════════════════ */
.parallax-quote {
  position: relative; overflow: hidden;
  min-height: 440px; display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.parallax-bg {
  position: absolute; inset: -60px;
  background-attachment: fixed; background-size: cover; background-position: center;
  background-color: var(--primary-deep);
  transition: none;
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(54,109,103,.88) 0%, rgba(20,33,31,.92) 100%);
}
.parallax-content { position: relative; z-index: 2; max-width: 720px; padding: 80px 24px; }
.parallax-quote-mark {
  font-family: Georgia, serif; font-size: 5rem; line-height: .6;
  color: var(--gold); opacity: .7; margin-bottom: 20px; display: block;
}
.parallax-content blockquote {
  font-family: 'Nunito', sans-serif; font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700; color: #fff; line-height: 1.5; margin-bottom: 28px;
  font-style: italic;
}
.parallax-attr { display: flex; align-items: center; justify-content: center; gap: 12px; }
.parallax-attr-img {
  width: 123px; height: 123px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.5); overflow: hidden; flex-shrink: 0;
  background: rgba(255,255,255,.1);
}
.parallax-attr-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.parallax-attr-img img { width: 100%; height: 100%; object-fit: cover; }
.parallax-attr-text { text-align: left; }
.parallax-attr-name { font-family: 'Nunito', sans-serif; font-weight: 700; color: #fff; font-size: .9375rem; }
.parallax-attr-role { color: rgba(255,255,255,.6); font-size: .8125rem; }
@media (max-width: 768px) { .parallax-bg { background-attachment: scroll; inset: 0; } }

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
.testimonial-section { background: var(--surface-soft); border-top: 1px solid var(--border); }
.testimonial-header { text-align: center; margin-bottom: 48px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 860px; margin: 0 auto; }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 28px 24px;
  display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: .9375rem; color: var(--text-soft); line-height: 1.75; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-photo {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--border); overflow: hidden; flex-shrink: 0;
  background: var(--surface-soft);
}
.testimonial-photo img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: .9rem; color: var(--text); }
.testimonial-role { font-size: .8rem; color: var(--text-soft); }
.testimonial-note { text-align: center; margin-top: 32px; font-size: .8125rem; color: var(--text-soft); }
@media (max-width: 640px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════
   FLOATING PARTICLES (hero)
════════════════════════════════ */
.particle-field { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--primary); opacity: .08;
  animation: particleDrift linear infinite;
}
@keyframes particleDrift {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: .08; }
  50%  { opacity: .14; }
  100% { transform: translateY(-120px) translateX(30px) scale(1.2); opacity: 0; }
}

/* ════════════════════════════════
   SCREENSHOT SHOWCASE
════════════════════════════════ */
.sc-section {
  background: linear-gradient(155deg, #eaf6f5 0%, var(--bg) 58%);
  overflow: hidden;
}
.sc-header {
  text-align: center;
  margin-bottom: 56px;
}
.sc-header .section-subtitle {
  max-width: 520px;
  margin: 12px auto 0;
}

/* Stage: column on mobile, row on desktop */
.sc-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 900px) {
  .sc-stage {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 72px;
  }
}

/* ── Phone wrap (arrows + phone) ── */
.sc-phone-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Float-Wrapper: übernimmt heroFloat-Animation vom Hero */
.sc-phone-float {
  animation: heroFloat 5.5s ease-in-out infinite;
}

/* Bild-Track: alle Screenshots nebeneinander, Slide per translateX */
.sc-img-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .42s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.sc-img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
}


/* Arrow buttons */
.sc-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .18s, color .18s, transform .18s, box-shadow .18s;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
}
.sc-arrow:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(95,159,153,.22);
}
.sc-arrow:active { transform: scale(.94); }

/* ── Text panel ── */
.sc-text-panel {
  max-width: 360px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 900px) {
  .sc-text-panel { text-align: left; max-width: 380px; }
}

/* Text-Track: alle Texte nebeneinander, Slide synchron mit Bildern */
.sc-texts {
  overflow: hidden;
  transition: height .42s cubic-bezier(.4, 0, .2, 1);
}
.sc-text-track {
  display: flex;
  width: 100%;
  align-items: flex-start;
  transition: transform .42s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.sc-text {
  flex: 0 0 100%;
  text-align: left;
}
.sc-slide-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.sc-text h3 { margin-bottom: 10px; }
.sc-text p  { color: var(--text-soft); font-size: .9375rem; }

/* Dot navigation */
.sc-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 900px) { .sc-dots { justify-content: flex-start; } }

.sc-dot {
  height: 7px;
  border-radius: 4px;
  background: var(--border);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
  width: 7px;
  padding: 0;
  border: none;
}
.sc-dot.sc-active {
  width: 22px;
  background: var(--primary);
}
