/* ============================================================
   index.css — Startseite
   ============================================================ */

/* ── Hero ── */
.hero-h1 {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.02;
  margin-bottom: 14px;
}

.hero-sub {
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 440px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-img {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.hero-img-note {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: absolute;
  top: 12px;
  left: 12px;
}

.hero-img-label {
  font-size: 12px;
  color: #444;
  font-family: var(--font-b);
  text-align: center;
  line-height: 1.5;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
}

/* ── Marquee credential bar ── */
.marquee-section {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  will-change: transform;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-group {
  display: flex;
  gap: 48px;
  padding: 15px 24px 15px 0;
  align-items: center;
}

.marquee-item {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(0,255,136,.5);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.m-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  flex-shrink: 0;
}

/* ── Result cards (startseite) ── */
.result-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 12px;
  padding: 24px 22px;
}

.result-num {
  font-family: var(--font-h);
  font-size: 42px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}

.result-label {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.result-detail {
  font-size: 11px;
  color: var(--grey);
}

.result-context {
  margin-top: 28px;
  background: rgba(0,255,136,.04);
  border: 1px solid rgba(0,255,136,.15);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 12px;
  color: var(--grey);
  line-height: 1.6;
}

.result-context strong { color: var(--green); }

/* ── Video placeholder ── */
.video-placeholder {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.video-note {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: absolute;
  top: 12px;
  left: 12px;
}

.video-play {
  width: 52px;
  height: 52px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-label {
  font-size: 12px;
  color: #444;
  font-family: var(--font-b);
  text-align: center;
  line-height: 1.5;
}

/* ── Methodik ── */
.methodik-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.methodik-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.methodik-num-badge {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: rgba(0,255,136,.08);
  border: 1px solid rgba(0,255,136,.2);
  border-radius: 6px;
  padding: 4px 10px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.methodik-body p {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.6;
}

/* ── Format cards ── */
.format-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.format-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.format-card.highlight {
  border-color: rgba(0,255,136,.25);
  background: linear-gradient(160deg, rgba(0,255,136,.04), var(--dark3));
}

.format-emoji { font-size: 28px; }

.format-tag {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.format-tag.green  { color: var(--green); }
.format-tag.amber  { color: var(--amber); }
.format-tag.teal   { color: var(--teal); }

.format-title {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.format-desc {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.6;
  flex: 1;
}

.format-price {
  font-size: 12px;
  color: var(--grey-light);
}

.format-btn {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--grey-light);
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color .15s, color .15s;
  margin-top: 4px;
}

.format-btn:hover { border-color: #555; color: var(--white); }

.format-btn.green  { border-color: rgba(0,255,136,.3); color: var(--green); }
.format-btn.green:hover { border-color: var(--green); }

.format-upsell {
  font-size: 11px;
  color: var(--grey);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
  margin-top: 6px;
}

/* ── Diagnostik flat ── */
.diag-flat {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 28px;
  display: flex;
  gap: 28px;
  align-items: center;
}

.diag-flat-emoji {
  font-size: 32px;
  flex-shrink: 0;
}

.diag-flat-body {
  flex: 1;
}

.diag-flat-body .tag {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.diag-flat-body h4 {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.diag-flat-body p {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.6;
}

.diag-flat-price {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  text-align: right;
}

.diag-flat-price span {
  display: block;
  font-size: 10px;
  color: var(--grey);
  font-weight: 400;
  letter-spacing: 0;
}

/* ── Sommer banner ── */
.sommer-banner {
  text-align: center;
  background: linear-gradient(135deg,#0a1a0a,#000);
  border: 1px solid rgba(0,255,136,.2);
  border-radius: 14px;
  padding: 40px;
}

.sommer-banner h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.sommer-banner p {
  font-size: 15px;
  color: var(--grey-light);
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* ── Testimonials slider ── */
.testi-slider {
  position: relative;
  overflow: hidden;
}

.testi-track {
  display: flex;
  transition: transform .4s ease;
}

.testi-slide {
  min-width: 100%;
  padding: 0 4px;
}

.testi-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 780px;
  margin: 0 auto;
}

.testi-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--dark2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-quote {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 10px;
}

.testi-quote::before {
  content: '\201E';
  color: var(--green);
  font-size: 28px;
  line-height: 0;
  vertical-align: -10px;
  margin-right: 3px;
  font-style: normal;
  text-shadow: 0 0 16px rgba(0,255,136,.4);
}

.testi-author {
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

.testi-author span {
  font-weight: 400;
  color: var(--grey);
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.testi-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .15s;
}

.testi-arrow:hover { border-color: var(--green); color: var(--green); }

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background .15s;
}

.testi-dot.active { background: var(--green); }

/* ── Hero stats: 3-column override (base defaults to 4-col grid) ── */
.stats-row { grid-template-columns: repeat(3, 1fr); }

/* ── Responsive ── */
@media (max-width: 990px) {
  .hero-h1 { font-size: 38px; }
  .format-grid-3 { grid-template-columns: 1fr; }
  .diag-flat { flex-direction: column; align-items: flex-start; }
  .sommer-banner h2 { font-size: 24px; }
}

@media (max-width: 600px) {
  .hero-h1 { font-size: 30px; }
  .marquee-item { padding: 0 16px; }
}
