/* page-training.css – Trainings-Übersichtsseite /training/
   Design abgenommen 2026-07-06 (relaunch/entwuerfe/trainings-uebersicht.html) */

:root {
  --tt-teal: #34d399;
  --tt-teal-deep: #2aa97a;
}

/* Kicker auf dieser Seite in Teal (abgenommener Look) */
.thero .kicker,
.tt-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tt-teal-deep);
  margin-bottom: 0.75rem;
}

/* Globale .container-Zentrierung aufheben (Seite ist linksbuendig) */
.thero .container, .tcards .container, .fit .container,
.termine .container, .ttesti .container, .gruppe .container {
  text-align: left;
}
.tcard, .fit2-card, .testi-card, .trow, .unsure-box, .gruppe-box {
  text-align: left;
}

/* Flipchart-Marker (wie AI-PO-Seite) */
.tt-marker { position: relative; display: inline-block; white-space: nowrap; }
.tt-marker-stroke {
  position: absolute; left: -3%; bottom: -0.14em; width: 106%; height: 0.55em;
  color: var(--tt-teal); opacity: 0.85; pointer-events: none;
}
.tt-marker-stroke path {
  stroke-dasharray: 100; stroke-dashoffset: 100;
  animation: ttMarkerDraw 0.7s ease-out 0.5s forwards;
}
@keyframes ttMarkerDraw { to { stroke-dashoffset: 0; } }

/* ── Hero ── */
.thero {
  background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border-light);
  padding: calc(var(--header-height) + 4rem) 0 3.5rem;
  text-align: left;
}
.thero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 780px;
  color: var(--text-dark);
}
.thero .sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  max-width: 620px;
}

/* ── Trainings-Kacheln ── */
.tcards { background: #fff; padding: 2.5rem 0 4rem; }
.tcards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tcard {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tcard:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(26, 26, 46, 0.10); }
.tcard-header {
  position: relative;
  min-height: 175px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.tcard-header::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.12)); }
.tcard-header h3 { position: relative; z-index: 1; color: #fff; font-size: 1.35rem; font-weight: 800; padding: 1.1rem 1.3rem; line-height: 1.25; margin: 0; }
.tcard-badge { position: absolute; top: 0.9rem; right: 0.9rem; width: 74px; z-index: 1; filter: drop-shadow(0 3px 10px rgba(0,0,0,0.35)); }
.tcard-badge-rund { width: 64px; border-radius: 14px; }
.tcard-new {
  position: absolute; top: 0.9rem; left: 1.1rem; z-index: 1;
  background: var(--accent); color: var(--text-dark);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 99px;
}
.tcard-body { padding: 1.3rem; display: flex; flex-direction: column; flex: 1; }
.tcard-body p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }
.tcard-meta { font-size: 0.82rem; color: #9a9ab0; margin-top: 1rem; }
.tcard-link { margin-top: auto; padding-top: 1rem; font-weight: 700; color: var(--accent-blue); }

/* ── Kurz-Check ── */
.fit { background: var(--bg-light); padding: 4rem 0 4.5rem; text-align: left; }
.fit-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.fit2-card {
  display: flex; flex-direction: column; text-decoration: none; color: var(--text-dark);
  background: #ffffff;
  border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.5rem;
  box-shadow: 0 6px 24px rgba(26, 26, 46, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fit2-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(26, 26, 46, 0.13); }
.fit2-top { margin-bottom: 0.9rem; }
.fit2-top span { font-size: 0.8rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--tt-teal-deep); }
.fit2-card .du { font-weight: 400; font-size: 0.98rem; color: var(--text-dark); line-height: 1.6; margin-bottom: 1.25rem; }
.fit2-cta {
  margin-top: auto;
  background: var(--tt-teal-deep); color: #ffffff;
  font-weight: 800; font-size: 0.92rem; border-radius: 10px;
  padding: 0.7rem 1rem; text-align: center; white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.fit2-cta:hover { background: #23906a; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(42, 169, 122, 0.35); }

/* Unsicher-Box (in der Kurz-Check-Sektion) */
.unsure-box {
  margin-top: 2.5rem;
  display: flex; align-items: center; justify-content: center; gap: 1.75rem;
  background: linear-gradient(150deg, #1e293b 0%, #2c3e52 60%, #1f3a33 100%);
  border-radius: var(--radius); position: relative;
  padding: 2.2rem 2rem; font-size: 1.05rem; font-weight: 500; color: rgba(255, 255, 255, 0.85);
}
.unsure-box::before { content: ''; position: absolute; top: 0; left: 18px; right: 18px; height: 6px; background: var(--tt-teal); border-radius: 0 0 6px 6px; }
.unsure-face { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; border: 4px solid var(--tt-teal); flex-shrink: 0; }
.unsure-box strong { font-weight: 800; color: #ffffff; }
.unsure-box a { color: var(--tt-teal); text-decoration: none; border-bottom: 2px solid var(--tt-teal); padding-bottom: 1px; font-weight: 800; }

/* ── Termine ── */
.termine { background: #fff; padding: 4.5rem 0; text-align: left; }
.termine-table { margin-top: 2rem; border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; }
.trow {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 0.9fr auto;
  gap: 1rem; align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
}
.trow:last-child { border-bottom: none; }
.trow.thead { background: var(--bg-light); font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
.trow .tname { font-weight: 700; }
.trow .tprice { font-weight: 700; }
.trow .tbtn {
  background: var(--accent); color: var(--text-dark);
  font-weight: 800; font-size: 0.85rem; padding: 0.5rem 1rem; border-radius: 8px;
  text-decoration: none; white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.trow .tbtn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18); }

/* ── Trust-Band ── */
.trust { background: linear-gradient(160deg, #0f172a, #1e293b); color: #fff; padding: 3.5rem 0; }
.tp-stars { display: flex; justify-content: center; gap: 6px; margin-bottom: 0.9rem; }
.tp-star { width: 52px; height: 52px; background: #00B67A; display: flex; align-items: center; justify-content: center; border-radius: 4px; }
.tp-star svg { width: 36px; height: 36px; }
.tp-caption { text-align: center; color: rgba(255,255,255,0.85); font-weight: 700; margin-bottom: 2.5rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 2rem 3.5rem; align-items: center; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; text-align: left; }
a.trust-item:hover .big { text-decoration: underline; }
.trust-item img { width: 62px; }
.trust-item .big { font-size: 1.5rem; font-weight: 900; color: var(--accent); line-height: 1.1; }
.trust-item .small { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ── Zitate ── */
.ttesti { background: var(--bg-light); padding: 4.5rem 0; text-align: left; }
.ttesti-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.25rem; }
.testi-card {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: 1.75rem; display: flex; flex-direction: column;
}
.testi-tag {
  align-self: flex-start;
  background: #eefaf4; color: var(--tt-teal-deep);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
  border-radius: 99px; padding: 0.3rem 0.8rem; margin-bottom: 1rem;
}
.testi-quote { font-size: 0.95rem; color: var(--text-dark); margin: 0; }
.testi-author { display: flex; gap: 0.85rem; align-items: center; margin-top: auto; padding-top: 1.5rem; }
.testi-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-author strong { display: block; font-size: 0.92rem; }
.testi-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ── Gruppenrabatt / Inhouse ── */
.gruppe { background: #fff; padding: 3.5rem 0; }
.gruppe-box {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem;
  background: linear-gradient(150deg, #1e293b 0%, #2c3e52 60%, #1f3a33 100%);
  border-radius: var(--radius); padding: 2rem 2.5rem; position: relative;
}
.gruppe-box::before { content: ''; position: absolute; top: 0; left: 18px; right: 18px; height: 6px; background: var(--tt-teal); border-radius: 0 0 6px 6px; }
.gruppe-box h2 { color: #fff; font-size: 1.5rem; font-weight: 800; margin: 0; }
.gruppe-box p { color: rgba(255,255,255,0.75); max-width: 640px; margin: 0.4rem 0 0; }
.gruppe-box .btn-gold {
  display: inline-block; background: var(--accent); color: var(--text-dark);
  font-weight: 800; font-size: 1rem; border-radius: 10px; padding: 0.9rem 1.7rem;
  text-decoration: none; white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.gruppe-box .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3); }

/* ── Mobile ── */
@media (max-width: 480px) {
  .thero h1 { font-size: 1.8rem; }
}
@media (max-width: 860px) {
  .tcards-grid, .fit-row, .ttesti-grid { grid-template-columns: 1fr; }
  .trow { grid-template-columns: 1fr 1fr; }
  .gruppe-box { grid-template-columns: 1fr; text-align: left; }
  .unsure-box { flex-direction: column; text-align: center; padding: 1.75rem 1.25rem; }
}
