/* ============================================================
   ALL ABOUT FOOTBALL — Redesign 2026
   Farben: Schwarz / Weiß / AAF-Rot
   ============================================================ */

:root {
  --red: #d6111c;
  --red-dark: #a80d15;
  --black: #0d0d0f;
  --black-soft: #16161a;
  --grey-100: #f4f4f5;
  --grey-300: #d9d9de;
  --grey-500: #8a8a93;
  --white: #ffffff;
  --font-display: 'Archivo', 'Arial Black', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin-inline: auto; }

/* ---------- Typo ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: .01em;
}
.dot { color: var(--red); }

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .9rem;
}
.kicker--light { color: var(--white); opacity: .85; }

.section-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: .6rem; }
.section-lead { color: var(--grey-500); max-width: 640px; font-size: 1.02rem; }

section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .95rem 1.7rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease-out), background .3s, color .3s, border-color .3s, box-shadow .35s;
  position: relative;
  overflow: hidden;
}
.btn .arrow { transition: transform .35s var(--ease-out); }
.btn:hover .arrow { transform: translateX(5px); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover { background: var(--red-dark); box-shadow: 0 12px 28px rgba(214, 17, 28, .35); }

.btn--ghost { border-color: var(--white); color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--black); }

.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover { background: var(--black-soft); box-shadow: 0 12px 28px rgba(0, 0, 0, .3); }

.btn--outline-dark { border-color: var(--black); color: var(--black); }
.btn--outline-dark:hover { background: var(--black); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(13, 13, 15, .82), rgba(13, 13, 15, 0));
  transition: background .4s, box-shadow .4s, height .3s;
}
.site-header.scrolled {
  background: rgba(13, 13, 15, .97);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
}

/* Header bekommt mehr Breite als der Inhalt, damit der CTA nie abgeschnitten wird */
.site-header .container { width: min(1360px, 95%); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.header-inner .brand { flex: 0 0 auto; }
.header-inner .main-nav { flex: 1 1 auto; min-width: 0; justify-content: flex-end; }
.header-inner .header-cta { flex: 0 0 auto; }

.brand img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);   /* Original-Logo (schwarz) → weiß */
  transition: transform .3s var(--ease-out);
}
.brand:hover img { transform: scale(1.04); }

/* Navigation */
.main-nav { display: flex; align-items: center; gap: .2rem; }

.main-nav > ul { display: flex; align-items: center; gap: .2rem; }

.main-nav a.nav-link {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--white);
  padding: .7rem .75rem;
  position: relative;
}
.main-nav a.nav-link::after {
  content: "";
  position: absolute;
  left: .85rem;
  right: 100%;
  bottom: .35rem;
  height: 2px;
  background: var(--red);
  transition: right .35s var(--ease-out);
}
.main-nav a.nav-link:hover::after,
.main-nav li.active > a.nav-link::after { right: .85rem; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a .caret {
  display: inline-block;
  margin-left: .35rem;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  padding: 2.6px;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .3s var(--ease-out);
}
.has-dropdown:hover > a .caret,
.has-dropdown:focus-within > a .caret { transform: rotate(-135deg) translateY(-3px); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: .4rem;
  min-width: 250px;
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scaleY(.96);
  transform-origin: top;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), visibility .3s;
  padding: .5rem 0;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scaleY(1);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .72rem 1.3rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--black);
  transition: background .2s, color .2s, padding-left .25s var(--ease-out);
}
.dropdown a::before {
  content: "→";
  color: var(--red);
  font-weight: 700;
  opacity: 0;
  margin-left: -1rem;
  transition: opacity .25s, margin-left .25s var(--ease-out);
}
.dropdown a:hover { background: var(--grey-100); padding-left: 1.55rem; }
.dropdown a:hover::before { opacity: 1; margin-left: 0; }

.header-cta { white-space: nowrap; padding: .78rem 1.35rem; font-size: .74rem; }
.mobile-cta { display: none; }

/* Burger */
.burger {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 1102;
}
.burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  margin: 5.5px auto;
  border-radius: 2px;
  transition: transform .35s var(--ease-out), opacity .25s;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 6rem;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.08);
  animation: heroZoom 12s var(--ease-out) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(78deg, rgba(13, 13, 15, .92) 0%, rgba(13, 13, 15, .62) 46%, rgba(13, 13, 15, .18) 100%),
    linear-gradient(rgba(13, 13, 15, .1), rgba(13, 13, 15, .55));
}

.hero h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span {
  display: block;
  transform: translateY(110%);
  animation: riseUp .9s var(--ease-out) forwards;
}
.hero h1 .line:nth-child(2) > span { animation-delay: .15s; }
.hero h1 .line:nth-child(3) > span { animation-delay: .3s; }
@keyframes riseUp { to { transform: translateY(0); } }

.hero p.sub {
  margin: 1.4rem 0 2.2rem;
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  max-width: 520px;
  color: rgba(255, 255, 255, .88);
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .55s forwards;
}
.hero .hero-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .75s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero .ball-hint {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  translate: -50% 0;
  text-align: center;
}
.ball-hint .globe-bounce {
  display: block;
  animation: ballBounce 1.7s cubic-bezier(.45, 0, .55, 1) infinite;
}
.ball-hint img {
  width: 42px;
  height: 42px;
  display: block;
  margin: 0 auto;
  /* Logo-Zeichen liegt in Schwarz vor — auf dem dunklen Hero invertiert */
  filter: brightness(0) invert(1);
  animation: globeSpin 14s linear infinite;
}
.ball-hint .ball-shadow {
  width: 28px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .45);
  margin: 7px auto 0;
  animation: ballShadow 1.7s cubic-bezier(.45, 0, .55, 1) infinite;
}
@keyframes ballBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes globeSpin { to { transform: rotate(360deg); } }
@keyframes ballShadow {
  0%, 100% { transform: scaleX(1); opacity: .55; }
  50% { transform: scaleX(.55); opacity: .25; }
}

/* ---------- USP-Bar ---------- */
.usp-bar { background: var(--red); color: var(--white); padding: 0; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.usp {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 1.8rem;
  border-left: 1px solid rgba(255, 255, 255, .22);
  transition: background .3s;
}
.usp:first-child { border-left: 0; }
.usp:hover { background: rgba(0, 0, 0, .12); }
.usp .icon { flex: 0 0 auto; width: 46px; height: 46px; }
.usp .icon svg { width: 100%; height: 100%; }
.usp h3 { font-family: var(--font-display); font-size: .88rem; letter-spacing: .1em; text-transform: uppercase; }
.usp p { font-size: .82rem; opacity: .85; line-height: 1.4; }

/* ---------- Angebote (Cards) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.6rem;
}
.card {
  position: relative;
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 3 / 3.55;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform .8s var(--ease-out), filter .5s;
}
.card:hover .card__img { transform: scale(1.07); filter: saturate(1.1); }
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 13, 15, 0) 38%, rgba(13, 13, 15, .92) 82%);
  transition: background .4s;
}
.card__body {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 1.6rem;
  width: 100%;
  transform: translateY(14px);
  transition: transform .45s var(--ease-out);
}
.card:hover .card__body { transform: translateY(0); }
.card__body .tag {
  display: inline-block;
  background: var(--red);
  font-family: var(--font-display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .3rem .6rem;
  margin-bottom: .7rem;
}
.card__body h3 { font-family: var(--font-display); font-size: 1.25rem; text-transform: uppercase; letter-spacing: .02em; }
.card__body p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .82);
  margin-top: .35rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out), opacity .4s .05s;
}
.card:hover .card__body p { max-height: 120px; opacity: 1; }
.card__body .more {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .8rem;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
}
.card__body .more .arrow { color: var(--red); transition: transform .3s var(--ease-out); }
.card:hover .more .arrow { transform: translateX(6px); }

/* ---------- Kompetenz / rote Sektion ---------- */
.competence { background: var(--red); color: var(--white); position: relative; overflow: hidden; }
.competence::before {
  content: "AAF";
  position: absolute;
  right: -4rem;
  top: -5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24rem;
  color: rgba(255, 255, 255, .05);
  pointer-events: none;
  line-height: 1;
}
.competence-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3.5rem;
  align-items: center;
}
.competence h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); }
.competence .lead { margin-top: 1.1rem; opacity: .92; max-width: 560px; }

.owner-box {
  margin-top: 2rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  background: rgba(0, 0, 0, .22);
  padding: 1.2rem 1.4rem;
  border-left: 4px solid var(--white);
}
.owner-box img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  border: 3px solid var(--white);
}
.owner-box .name { font-family: var(--font-display); font-size: 1.05rem; text-transform: uppercase; letter-spacing: .04em; }
.owner-box .role { font-size: .85rem; opacity: .85; }
.owner-box blockquote { font-size: .9rem; margin-top: .5rem; opacity: .92; font-style: italic; }

/* Stats / Counter */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat {
  background: rgba(0, 0, 0, .22);
  padding: 1.8rem 1rem 1.5rem;
  transition: transform .4s var(--ease-out), background .3s;
}
.stat:hover { transform: translateY(-6px); background: rgba(0, 0, 0, .32); }
.stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
}
.stat .label {
  margin-top: .5rem;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}

/* ---------- Zertifikate ---------- */
.certs { background: var(--grey-100); }
.certs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
  margin-top: 2.4rem;
}
.cert {
  background: var(--white);
  border: 1px solid var(--grey-300);
  padding: 1.5rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  position: relative;
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .3s;
}
.cert:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(13, 13, 15, .14);
  border-color: var(--red);
}
.cert::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 3px;
  background: var(--red);
  transition: right .4s var(--ease-out);
}
.cert:hover::before { right: 0; }
.cert .cert-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grey-100);
  display: grid;
  place-items: center;
  color: var(--red);
}
.cert .cert-icon svg { width: 26px; height: 26px; }
.cert h3 { font-family: var(--font-display); font-size: .92rem; text-transform: uppercase; line-height: 1.25; }
.cert .issuer { font-size: .78rem; color: var(--grey-500); margin-top: -.4rem; }
.cert .view {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  border: 1.5px solid var(--grey-300);
  padding: .55rem .8rem;
  justify-content: center;
  cursor: pointer;
  background: none;
  transition: background .3s, color .3s, border-color .3s;
}
.cert .view:hover { background: var(--black); border-color: var(--black); color: var(--white); }

/* Zertifikat-Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(13, 13, 15, .82);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.modal.open { opacity: 1; visibility: visible; }
.modal__panel {
  background: var(--white);
  width: min(520px, 100%);
  padding: 2.6rem 2.4rem 2.2rem;
  position: relative;
  transform: translateY(30px) scale(.96);
  transition: transform .4s var(--ease-out);
  border-top: 5px solid var(--red);
  text-align: center;
}
.modal.open .modal__panel { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  width: 38px;
  height: 38px;
  border: 0;
  background: var(--grey-100);
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.modal__close:hover { background: var(--red); color: var(--white); transform: rotate(90deg); }
.modal__panel .cert-icon-lg {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--grey-100);
  display: grid;
  place-items: center;
  color: var(--red);
}
.modal__panel .cert-icon-lg svg { width: 42px; height: 42px; }
.modal__panel h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.3rem; }
.modal__panel .issuer { color: var(--grey-500); font-size: .9rem; margin-top: .2rem; }
.modal__panel .desc { margin-top: 1rem; font-size: .92rem; color: #3c3c44; }
.modal__panel .note {
  margin-top: 1.4rem;
  font-size: .78rem;
  color: var(--grey-500);
  border-top: 1px dashed var(--grey-300);
  padding-top: 1rem;
}

/* ---------- Fußballmanagement ---------- */
.management {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.management::before {
  content: "MGMT";
  position: absolute;
  left: -3rem;
  bottom: -6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20rem;
  line-height: 1;
  color: rgba(255, 255, 255, .035);
  pointer-events: none;
}
.management-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 3.5rem;
  align-items: start;
}
.management .lead { margin-top: 1.1rem; color: rgba(255, 255, 255, .82); max-width: 520px; }

.mgmt-profile {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, .05);
  padding: 1.1rem 1.3rem;
}
.mgmt-profile img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--red);
}
.mgmt-profile .name { font-family: var(--font-display); text-transform: uppercase; font-size: 1rem; }
.mgmt-profile .role { font-size: .82rem; color: rgba(255, 255, 255, .7); }

.mgmt-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.mgmt-badges span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-display);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, .28);
  padding: .5rem .8rem;
  color: rgba(255, 255, 255, .9);
  transition: border-color .3s, background .3s, transform .3s var(--ease-out);
}
.mgmt-badges span:hover { border-color: var(--red); background: rgba(214, 17, 28, .12); transform: translateY(-3px); }
.mgmt-badges .dot-ic { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

/* Nummerierte Leistungs-Liste */
.mgmt-services { display: grid; }
.mgmt-service {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  padding: 1.5rem .4rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  position: relative;
  transition: padding-left .4s var(--ease-out), background .3s;
  cursor: default;
}
.mgmt-service:first-child { border-top: 1px solid rgba(255, 255, 255, .12); }
.mgmt-service::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: -1px;
  width: 0;
  background: linear-gradient(90deg, rgba(214, 17, 28, .18), transparent);
  transition: width .45s var(--ease-out);
  pointer-events: none;
}
.mgmt-service:hover { padding-left: 1.1rem; }
.mgmt-service:hover::before { width: 100%; }
.mgmt-service .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--red);
  min-width: 2.4rem;
}
.mgmt-service h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.02rem;
  letter-spacing: .03em;
}
.mgmt-service p { font-size: .85rem; color: rgba(255, 255, 255, .68); margin-top: .3rem; max-width: 460px; }
.mgmt-service .go {
  color: rgba(255, 255, 255, .4);
  font-size: 1.3rem;
  transition: transform .35s var(--ease-out), color .3s;
}
.mgmt-service:hover .go { transform: translateX(6px); color: var(--red); }

/* ---------- Trainerteam ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 2.6rem;
}
.trainer {
  position: relative;
  overflow: hidden;
  background: var(--grey-100);
}
.trainer img {
  aspect-ratio: 1 / 1.15;
  width: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .7s var(--ease-out);
}
.trainer:hover img { transform: scale(1.06); }
.trainer figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem .9rem .9rem;
  background: linear-gradient(rgba(13, 13, 15, 0), rgba(13, 13, 15, .88) 65%);
  color: var(--white);
}
.trainer .t-name { font-family: var(--font-display); font-size: .95rem; text-transform: uppercase; line-height: 1.2; }
.trainer .t-role { font-size: .74rem; color: rgba(255, 255, 255, .75); margin-top: .15rem; }
.trainer .t-skills {
  font-size: .72rem;
  color: rgba(255, 255, 255, .85);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out), opacity .4s, margin-top .4s;
}
.trainer:hover .t-skills { max-height: 90px; opacity: 1; margin-top: .5rem; }
.trainer .t-badge {
  position: absolute;
  top: .8rem;
  left: .8rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .32rem .6rem;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .35s, transform .35s var(--ease-out);
}
.trainer:hover .t-badge { opacity: 1; transform: translateY(0); }

/* ---------- Trainer-Detailprofile ---------- */
.profile-row {
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3.2rem 0;
  border-bottom: 1px solid var(--grey-300);
}
.profile-row:last-child { border-bottom: 0; }
.profile-row.flip { grid-template-columns: 1fr minmax(280px, 400px); }
.profile-row.flip .profile-media { order: 2; }
.profile-media { position: relative; overflow: hidden; }
.profile-media img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: top;
  transition: transform .7s var(--ease-out);
}
.profile-media:hover img { transform: scale(1.05); }
.profile-media .p-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .4rem .75rem;
}
.profile-body h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.7rem; line-height: 1.1; }
.profile-body .p-role {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: .4rem;
}
.profile-body p.bio { color: #4a4a52; margin-top: 1.1rem; font-size: .97rem; }
.profile-body .p-facts { margin-top: 1.2rem; display: grid; gap: .55rem; }
.profile-body .p-facts li { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: #3c3c44; }
.profile-body .p-facts .check {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: .2rem;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: .6rem;
  font-weight: 800;
}
.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.3rem; }
.tags span {
  font-family: var(--font-display);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--grey-100);
  border: 1px solid var(--grey-300);
  padding: .45rem .75rem;
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease-out);
}
.tags span:hover { background: var(--black); border-color: var(--black); color: var(--white); transform: translateY(-2px); }

/* ---------- Galerie ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 2.4rem;
}
.gallery-item { position: relative; overflow: hidden; }
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .7s var(--ease-out), filter .5s;
}
.gallery-item:hover img { transform: scale(1.07); filter: saturate(1.12); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 13, 15, 0) 65%, rgba(13, 13, 15, .55));
  opacity: 0;
  transition: opacity .4s;
}
.gallery-item:hover::after { opacity: 1; }

/* ---------- Team-Sektion: Deko & Hover ---------- */
.team-section { position: relative; overflow: hidden; }
.team-section::before {
  content: "TEAM";
  position: absolute;
  top: -2rem;
  left: -2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(13, 13, 15, .05);
  pointer-events: none;
}
@media (max-width: 900px) { .team-section::before { font-size: 8rem; } }

.trainer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 3px;
  background: var(--red);
  z-index: 2;
  transition: right .45s var(--ease-out);
}
.trainer:hover::before { right: 0; }
.trainer img { filter: grayscale(45%); transition: transform .7s var(--ease-out), filter .5s; }
.trainer:hover img { filter: grayscale(0); }

/* ---------- Video-Sektion ---------- */
.videos {
  background: var(--black-soft);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.videos::before {
  content: "PLAY";
  position: absolute;
  left: -3rem;
  top: -3rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .05);
  pointer-events: none;
}

/* Filter-Pills */
.vid-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-top: 2rem;
}
.vid-filter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  background: none;
  border: 1.5px solid rgba(255, 255, 255, .22);
  padding: .6rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background .3s, border-color .3s, color .3s, transform .3s var(--ease-out);
}
.vid-filter:hover { border-color: var(--red); transform: translateY(-2px); }
.vid-filter.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* Video-Grid */
.vid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.vid-card {
  position: relative;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
  transition: transform .45s var(--ease-out), opacity .4s;
}
.vid-card.hidden { display: none; }
.vid-card:hover { transform: translateY(-6px); }
.vid-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}
.vid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out), filter .4s;
}
.vid-card:hover .vid-thumb img { transform: scale(1.07); filter: brightness(.72); }
.vid-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 13, 15, 0) 45%, rgba(13, 13, 15, .75));
}
.vid-play {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(214, 17, 28, .92);
  display: grid;
  place-items: center;
  transition: transform .4s var(--ease-out), background .3s;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .45);
}
.vid-card:hover .vid-play { transform: translate(-50%, -50%) scale(1.16); background: var(--red); }
.vid-play::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(214, 17, 28, .55);
  animation: playPulse 2.2s ease-out infinite;
}
@keyframes playPulse {
  0% { transform: scale(.85); opacity: .9; }
  100% { transform: scale(1.35); opacity: 0; }
}
.vid-play svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
.vid-badge {
  position: absolute;
  top: .7rem;
  left: .7rem;
  z-index: 2;
  background: var(--red);
  font-family: var(--font-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .6rem;
}
.vid-card h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: .85rem;
  transition: color .3s;
}
.vid-card:hover h3 { color: var(--red); }
.vid-card .vid-meta {
  font-size: .74rem;
  color: rgba(255, 255, 255, .55);
  margin-top: .3rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.vid-card .vid-meta svg { width: 13px; height: 13px; fill: currentColor; }

/* Video-Lightbox */
.vid-modal {
  position: fixed;
  inset: 0;
  z-index: 4500;
  background: rgba(13, 13, 15, .95);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.vid-modal.open { opacity: 1; visibility: visible; }
.vid-modal .vm-inner {
  width: min(980px, 100%);
  transform: scale(.94);
  transition: transform .45s var(--ease-out);
}
.vid-modal.open .vm-inner { transform: scale(1); }
.vid-modal .vm-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .6);
}
.vid-modal iframe { width: 100%; height: 100%; border: 0; display: block; }
.vid-modal .vm-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--white);
  margin-top: 1rem;
  font-size: 1rem;
}
.vid-modal .vm-close {
  position: absolute;
  top: -3.2rem;
  right: 0;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: 1.15rem;
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.vid-modal .vm-close:hover { background: var(--red); transform: rotate(90deg); }

@media (max-width: 980px) {
  .vid-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .vid-grid { grid-template-columns: 1fr; }
  .videos::before { font-size: 8rem; }
  .vid-modal .vm-close { top: -3rem; right: 0; }
}

/* ---------- Instagram-Sektion ---------- */
.insta {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.insta::before {
  content: "FOLLOW";
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .05);
  pointer-events: none;
}
.insta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.insta .lead { margin-top: 1.1rem; color: rgba(255, 255, 255, .82); max-width: 500px; }
.insta-stats { display: flex; gap: 2.2rem; margin-top: 1.8rem; flex-wrap: wrap; }
.insta-stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1;
}
.insta-stat .num span { color: var(--red); }
.insta-stat .label { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-top: .35rem; }
.insta-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 2rem; }

/* iPhone-Mockup */
.phone-wrap { position: relative; display: grid; place-items: center; padding: 1.5rem 0; }
.phone {
  width: min(310px, 80vw);
  border-radius: 52px;
  border: 11px solid #101013;
  background: #101013;
  box-shadow:
    0 45px 100px rgba(0, 0, 0, .6),
    0 0 0 1.5px rgba(255, 255, 255, .1),
    inset 0 0 0 2px #2a2a30;
  position: relative;
  animation: phoneFloat 6s ease-in-out infinite;
}
/* Seitentasten */
.phone::before {
  content: "";
  position: absolute;
  right: -14px;
  top: 21%;
  width: 3px;
  height: 60px;
  border-radius: 2px;
  background: #2a2a30;
}
.phone::after {
  content: "";
  position: absolute;
  left: -14px;
  top: 17%;
  width: 3px;
  height: 30px;
  border-radius: 2px;
  background: #2a2a30;
  box-shadow: 0 44px 0 #2a2a30;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50% { transform: translateY(-13px) rotate(1.2deg); }
}
.phone-screen {
  border-radius: 41px;
  overflow: hidden;
  background: #fff;
  color: #16161a;
  aspect-ratio: 9 / 19.5;
  display: flex;
  flex-direction: column;
  position: relative;
}
/* Dynamic Island */
.dyn-island {
  position: absolute;
  top: 9px;
  left: 50%;
  translate: -50% 0;
  width: 88px;
  height: 24px;
  background: #101013;
  border-radius: 14px;
  z-index: 30;
}
/* iOS-Statusleiste */
.ig-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .65rem 1.35rem .3rem;
  font-size: .72rem;
  font-weight: 700;
}
.ig-status .icons { display: flex; gap: .3rem; align-items: center; }
.ig-status svg { width: 15px; height: 12px; }
/* App-Topbar */
.ig-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .45rem .9rem;
  font-weight: 700;
  font-size: .82rem;
}
.ig-topbar svg { width: 17px; height: 17px; }
/* Bühne mit wechselnden Views */
.ig-stage { flex: 1; position: relative; overflow: hidden; }
.ig-view {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .65s ease;
}
.ig-view.active { opacity: 1; pointer-events: auto; }
/* Profil-View */
.ig-profile { display: flex; align-items: center; gap: .8rem; padding: .5rem .9rem .2rem; }
.ig-avatar {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  padding: 2.5px;
  background: conic-gradient(var(--red), #f5a623, var(--red));
}
.ig-avatar .inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.ig-avatar img { width: 82%; height: auto; }
.ig-numbers { display: flex; flex: 1; justify-content: space-around; text-align: center; }
.ig-numbers b { display: block; font-size: .88rem; }
.ig-numbers span { font-size: .66rem; color: #8a8a93; }
.ig-bio { padding: .35rem .9rem 0; }
.ig-bio .ig-name { font-weight: 700; font-size: .78rem; }
.ig-bio .ig-sub { font-size: .7rem; color: #3c3c44; line-height: 1.35; }
.ig-btn-row { display: flex; gap: .45rem; padding: .55rem .9rem; }
.ig-follow {
  flex: 1;
  background: var(--red);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: .74rem;
  padding: .42rem;
  border-radius: 8px;
}
.ig-msg {
  flex: 1;
  background: #efeff1;
  color: #16161a;
  text-align: center;
  font-weight: 700;
  font-size: .74rem;
  padding: .42rem;
  border-radius: 8px;
}
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; flex: 1; align-content: start; }
.ig-grid img { aspect-ratio: 1/1; object-fit: cover; width: 100%; height: 100%; }
/* Post-View */
.ig-post-head { display: flex; align-items: center; gap: .55rem; padding: .45rem .9rem; }
.ig-post-head .mini-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 1.8px;
  background: conic-gradient(var(--red), #f5a623, var(--red));
}
.ig-post-head .mini-avatar .inner { width: 100%; height: 100%; border-radius: 50%; background: #fff; display: grid; place-items: center; overflow: hidden; }
.ig-post-head .mini-avatar img { width: 80%; }
.ig-post-head b { font-size: .74rem; }
.ig-post-img { flex: 1; overflow: hidden; }
.ig-post-img img { width: 100%; height: 100%; object-fit: cover; }
.ig-actions { display: flex; gap: .8rem; padding: .55rem .9rem .2rem; }
.ig-actions svg { width: 21px; height: 21px; }
.ig-actions .spacer { margin-left: auto; }
.ig-likes { padding: 0 .9rem; font-size: .74rem; font-weight: 700; }
.ig-caption { padding: .15rem .9rem .7rem; font-size: .72rem; color: #3c3c44; }
.ig-caption b { color: #16161a; }
/* App-Navbar unten */
.ig-navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: .55rem 0 1.1rem;
  border-top: 1px solid #efeff1;
}
.ig-navbar svg { width: 21px; height: 21px; }
/* Story-Punkte (Fortschritt des Feed-Wechsels) */
.ig-dots { display: flex; gap: .3rem; justify-content: center; padding: .35rem 0 .1rem; }
.ig-dots span { width: 5px; height: 5px; border-radius: 50%; background: #d9d9de; transition: background .3s, transform .3s; }
.ig-dots span.on { background: var(--red); transform: scale(1.25); }

/* Floating Badges ums Handy */
.float-badge {
  position: absolute;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .04em;
  padding: .65rem 1rem;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .45);
  display: flex;
  align-items: center;
  gap: .45rem;
  animation: badgeFloat 4.5s ease-in-out infinite;
  white-space: nowrap;
}
.float-badge .heart { color: var(--red); }
.float-badge--followers { top: 14%; left: 2%; animation-delay: .6s; }
.float-badge--likes { bottom: 16%; right: 2%; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
  .insta-grid { grid-template-columns: 1fr; }
  .insta::before { font-size: 8rem; }
  .float-badge--followers { left: 0; }
  .float-badge--likes { right: 0; }
}

/* ---------- Split-Sektion (Talentteams / Über uns) ---------- */
.split { background: var(--black); color: var(--white); overflow: hidden; }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split-img {
  position: relative;
  overflow: hidden;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.split-img:hover img { transform: scale(1.05); }
.split-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--red);
  transform: translate(14px, 14px);
  pointer-events: none;
  transition: transform .5s var(--ease-out);
}
.split-img:hover::after { transform: translate(8px, 8px); }
.split h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.split .text { margin-top: 1.1rem; color: rgba(255, 255, 255, .82); }
.split ul.checks { margin-top: 1.4rem; display: grid; gap: .65rem; }
.split ul.checks li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .95rem;
  color: rgba(255, 255, 255, .9);
}
.split ul.checks .check {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: .15rem;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  font-size: .65rem;
  font-weight: 800;
  color: var(--white);
}

/* ---------- CTA-Banner ---------- */
.cta-banner {
  position: relative;
  color: var(--white);
  text-align: center;
  isolation: isolate;
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.cta-banner .bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 25%;
  background-attachment: fixed;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(13, 13, 15, .78);
}
.cta-banner h2 { font-size: clamp(1.9rem, 4.4vw, 3.2rem); }
.cta-banner p { margin: 1rem auto 2rem; max-width: 560px; color: rgba(255, 255, 255, .85); }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}
.contact-info { display: grid; gap: 1.1rem; align-content: start; }
.info-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--grey-100);
  padding: 1.1rem 1.3rem;
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.info-item:hover { transform: translateX(6px); box-shadow: 0 10px 24px rgba(13, 13, 15, .1); }
.info-item .icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.info-item .icon svg { width: 22px; height: 22px; }
.info-item .label { font-family: var(--font-display); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-500); }
.info-item .value { font-weight: 600; font-size: .95rem; }

.contact-form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { position: relative; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .95rem;
  padding: 1rem 1.1rem;
  border: 1.5px solid var(--grey-300);
  background: var(--white);
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(214, 17, 28, .12);
}
.form-note { font-size: .78rem; color: var(--grey-500); }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: rgba(255, 255, 255, .78); padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.site-footer .brand img { height: 40px; filter: brightness(0) invert(1); }
.site-footer p.about { margin-top: 1.1rem; font-size: .88rem; max-width: 300px; }
.site-footer h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer ul { display: grid; gap: .55rem; }
.site-footer ul a {
  font-size: .88rem;
  position: relative;
  transition: color .25s, padding-left .3s var(--ease-out);
}
.site-footer ul a:hover { color: var(--white); padding-left: .5rem; }
.site-footer .socials { display: flex; gap: .7rem; margin-top: 1.2rem; }
.site-footer .socials a {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .3s, border-color .3s, transform .3s;
}
.site-footer .socials a:hover { background: var(--red); border-color: var(--red); transform: translateY(-4px); }
.site-footer .socials svg { width: 18px; height: 18px; fill: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 1.3rem 0;
  font-size: .8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom a:hover { color: var(--white); }

/* ---------- Unterseiten ---------- */
.page-hero {
  position: relative;
  color: var(--white);
  padding: calc(var(--header-h) + 4.5rem) 0 4rem;
  isolation: isolate;
}
.page-hero .bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 28%;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(13, 13, 15, .88), rgba(13, 13, 15, .72));
}
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
.page-hero .crumbs { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; opacity: .75; margin-bottom: .8rem; }
.page-hero .crumbs a:hover { color: var(--red); }

/* Angebots-Listen (Unterseite) */
.offer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.8rem 0;
  border-bottom: 1px solid var(--grey-300);
}
.offer-row:last-child { border-bottom: 0; }
.offer-row img { width: 100%; aspect-ratio: 16/10.5; object-fit: cover; }
.offer-row.flip .offer-media { order: 2; }
.offer-row h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.5rem; }
.offer-row .meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: .9rem 0 1rem;
}
.offer-row .meta span {
  font-family: var(--font-display);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--grey-100);
  border: 1px solid var(--grey-300);
  padding: .4rem .7rem;
}
.offer-row p { color: #4a4a52; font-size: .96rem; }
.offer-media { overflow: hidden; }
.offer-media img { transition: transform .8s var(--ease-out); }
.offer-media:hover img { transform: scale(1.05); }

/* Timeline (Über uns) */
.timeline { position: relative; margin-top: 2rem; padding-left: 1.8rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--grey-300);
}
.timeline li { position: relative; padding-bottom: 1.3rem; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -1.8rem;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(214, 17, 28, .15);
}
.timeline .year { font-family: var(--font-display); font-weight: 700; color: var(--red); font-size: .82rem; letter-spacing: .08em; }
.timeline .event { font-size: .94rem; color: #3c3c44; }

/* ---------- Trainings-Detailseiten ---------- */
.facts-bar { background: var(--black); color: var(--white); padding: 0; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact {
  padding: 1.7rem 1.2rem;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, .12);
  transition: background .3s;
}
.fact:first-child { border-left: 0; }
.fact:hover { background: rgba(214, 17, 28, .12); }
.fact .f-label {
  font-family: var(--font-display);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.fact .f-value { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; margin-top: .35rem; }
.fact .f-value small { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.7); }

/* Schwerpunkte */
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.4rem; }
.focus-card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  padding: 1.7rem 1.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .3s;
}
.focus-card:hover { transform: translateY(-7px); box-shadow: 0 22px 44px rgba(13,13,15,.13); border-color: var(--red); }
.focus-card .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--red);
  opacity: .18;
  position: absolute;
  top: .8rem;
  right: 1rem;
  transition: opacity .3s, transform .4s var(--ease-out);
}
.focus-card:hover .num { opacity: .55; transform: scale(1.12); }
.focus-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1rem; padding-right: 2.5rem; }
.focus-card p { font-size: .88rem; color: #4a4a52; margin-top: .5rem; }

/* Trainingsablauf */
.flow { margin-top: 2.4rem; display: grid; gap: 0; }
.flow-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.4rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  transition: padding-left .4s var(--ease-out);
}
.flow-step:hover { padding-left: .8rem; }
.flow-step:last-child { border-bottom: 0; }
.flow-step .fs-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  background: rgba(214, 17, 28, .18);
  transition: background .3s, transform .4s var(--ease-out);
}
.flow-step:hover .fs-num { background: var(--red); transform: scale(1.08); }
.flow-step h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem; }
.flow-step .fs-time {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--red);
  text-transform: uppercase;
}
.flow-step p { font-size: .9rem; color: rgba(255, 255, 255, .75); margin-top: .35rem; max-width: 620px; }

/* Zitat-Band */
.detail-quote {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.detail-quote blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  line-height: 1.3;
  max-width: 820px;
  margin-inline: auto;
}
.detail-quote cite { display: block; margin-top: 1rem; font-family: var(--font-body); font-style: normal; font-size: .85rem; opacity: .85; }

@media (max-width: 900px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(odd) { border-left: 0; }
  .focus-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .focus-grid { grid-template-columns: 1fr; }
  .flow-step { grid-template-columns: 48px 1fr; gap: 1rem; }
  .flow-step .fs-num { width: 44px; height: 44px; font-size: .95rem; }
}

/* ---------- Zielgruppen-Karten ---------- */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.4rem; }
.audience-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-300);
  padding: 2rem 1.6rem 1.7rem;
  transition: transform .45s var(--ease-out), box-shadow .45s, border-color .3s;
}
.audience-card:hover { transform: translateY(-8px); box-shadow: 0 26px 50px rgba(13,13,15,.14); border-color: var(--red); }
.audience-card .a-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grey-100);
  color: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  transition: background .3s, transform .45s var(--ease-out);
}
.audience-card:hover .a-icon { background: var(--red); color: var(--white); transform: rotate(-8deg) scale(1.08); }
.audience-card .a-icon svg { width: 27px; height: 27px; }
.audience-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem; }
.audience-card p { font-size: .89rem; color: #4a4a52; margin-top: .55rem; }
.audience-card ul { margin-top: .9rem; display: grid; gap: .4rem; }
.audience-card li { font-size: .85rem; color: #3c3c44; display: flex; gap: .55rem; }
.audience-card li::before { content: "→"; color: var(--red); font-weight: 700; }

/* ---------- Netzwerk / Stationen ---------- */
.network-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.4rem; }
.station {
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 1.3rem 1.2rem;
  transition: background .35s, border-color .3s, transform .4s var(--ease-out);
}
.station:hover { background: rgba(214, 17, 28, .14); border-color: var(--red); transform: translateY(-5px); }
.station .st-flag { font-size: 1.5rem; line-height: 1; }
.station .st-country { font-family: var(--font-display); font-size: .88rem; text-transform: uppercase; margin-top: .5rem; }
.station .st-detail { font-size: .76rem; color: rgba(255, 255, 255, .6); margin-top: .2rem; }

/* ---------- FAQ-Layout ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 1rem;
}
.faq-aside { position: sticky; top: calc(var(--header-h) + 2rem); }
.faq-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 7.5vw, 5.4rem);
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.faq-aside .section-title { font-size: clamp(1.35rem, 2.3vw, 1.85rem); }
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .faq-aside { position: static; }
}

/* ---------- Akkordeon (FAQ) ---------- */
.accordion { margin-top: 2.2rem; max-width: 860px; }
.faq-grid .accordion { margin-top: 0; max-width: none; }
.acc-item { border-bottom: 1px solid var(--grey-300); }
.acc-head {
  width: 100%;
  background: none;
  border: 0;
  padding: 1.25rem .4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--black);
  transition: color .3s, padding-left .35s var(--ease-out);
}
.acc-head:hover { color: var(--red); padding-left: .9rem; }
.acc-head .acc-icon {
  margin-left: auto;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--grey-300);
  display: grid;
  place-items: center;
  position: relative;
  transition: background .3s, border-color .3s, transform .4s var(--ease-out);
}
.acc-head .acc-icon::before,
.acc-head .acc-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform .35s var(--ease-out), opacity .3s;
}
.acc-head .acc-icon::before { width: 12px; height: 2px; }
.acc-head .acc-icon::after { width: 2px; height: 12px; }
.acc-item.open .acc-head { color: var(--red); }
.acc-item.open .acc-icon { background: var(--red); border-color: var(--red); color: var(--white); transform: rotate(180deg); }
.acc-item.open .acc-icon::after { transform: scaleY(0); opacity: 0; }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out);
}
.acc-body p { font-size: .94rem; color: #4a4a52; padding: 0 .4rem 1.3rem; }

@media (max-width: 900px) {
  .audience-grid { grid-template-columns: 1fr; }
  .network-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Legal pages */
.legal-content { max-width: 780px; }
.legal-content h2 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem; margin: 2.2rem 0 .7rem; }
.legal-content p, .legal-content li { font-size: .95rem; color: #3c3c44; margin-bottom: .6rem; }
.legal-content ul { list-style: disc; padding-left: 1.4rem; }

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger: Kinder animieren einzeln nacheinander */
.reveal[data-stagger] { opacity: 1; transform: none; }
.reveal[data-stagger] > * {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal[data-stagger].visible > * { opacity: 1; transform: translateY(0); }

/* ============================================================
   PREMIUM-ANIMATIONEN
   ============================================================ */

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 6000;
  background: var(--black);
  display: grid;
  place-items: center;
  transition: opacity .55s ease, visibility .55s;
}
.preloader img {
  height: 58px;
  filter: brightness(0) invert(1);
  animation: plPulse 1.1s ease-in-out infinite;
}
.preloader .pl-bar {
  position: absolute;
  left: 50%;
  bottom: 38%;
  translate: -50% 0;
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}
.preloader .pl-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform-origin: left;
  animation: plFill .9s var(--ease-out) forwards;
}
.preloader.done { opacity: 0; visibility: hidden; }
@keyframes plPulse { 0%, 100% { opacity: .45; transform: scale(.97); } 50% { opacity: 1; transform: scale(1); } }
@keyframes plFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Seiten-Übergang */
.page-fade {
  position: fixed;
  inset: 0;
  z-index: 5500;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.page-fade.active { opacity: 1; pointer-events: auto; }

/* Scroll-Fortschrittsbalken */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 3000;
  pointer-events: none;
}

/* Smart-Header (versteckt sich beim Runterscrollen) */
.site-header { transition: background .4s, box-shadow .4s, transform .45s var(--ease-out); }
.site-header.hide { transform: translateY(-100%); }

/* Button: Glanz-Sweep */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -75%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-20deg);
  transition: left .65s ease;
  pointer-events: none;
}
.btn:hover::before { left: 125%; }

/* Marquee-Band */
.marquee {
  background: var(--black);
  border-block: 1px solid rgba(255, 255, 255, .08);
  padding: 1.15rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee var(--marquee-dur, 60s) linear infinite;
}
.marquee-track > span { padding-right: 2.6rem; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .38);
}
.marquee span b { color: var(--red); -webkit-text-stroke: 0; font-weight: 800; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Wort-Reveal für Überschriften */
.wr-word { display: inline-block; overflow: hidden; vertical-align: top; }
.wr-word > span {
  display: inline-block;
  transform: translateY(115%);
  transition: transform .75s var(--ease-out);
  transition-delay: calc(var(--w, 0) * 70ms);
}
.wr.wr-visible .wr-word > span { transform: translateY(0); }

/* Bild-Wipe-Reveal */
.img-wipe { clip-path: inset(0 100% 0 0); transition: clip-path 1s var(--ease-out); }
.img-wipe.wiped { clip-path: inset(0 0 0 0); }

/* 3D-Tilt für Cards */
.card { transition: transform .25s ease-out, box-shadow .35s; will-change: transform; }
.card:hover { box-shadow: 0 24px 55px rgba(13, 13, 15, .35); }

/* Zertifikat-Icon-Hover */
.cert .cert-icon { transition: transform .45s var(--ease-out), background .3s; }
.cert:hover .cert-icon { transform: translateY(-5px) rotate(-8deg) scale(1.08); background: rgba(214, 17, 28, .1); }

/* Galerie-Lightbox */
.gallery-item { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(13, 13, 15, .93);
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 85vh;
  transform: scale(.9);
  transition: transform .45s var(--ease-out);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .6);
}
.lightbox.open img { transform: scale(1); }
.lightbox .lb-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.lightbox .lb-close:hover { background: var(--red); transform: rotate(90deg); }

/* Back-to-Top */
.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1500;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .35s, transform .35s var(--ease-out), background .3s;
  box-shadow: 0 12px 28px rgba(214, 17, 28, .4);
}
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--red-dark); transform: translateY(-4px); }
.to-top svg { width: 20px; height: 20px; }

/* Unterseiten-Hero: sanfter Zoom */
.page-hero .bg { transform: scale(1.07); animation: heroZoom 8s var(--ease-out) forwards; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;   /* Endlos-Loops (Marquee, Scroll-Punkt) stoppen statt rasen */
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  /* Marquee läuft immer — aber in der langsamen, berechneten Geschwindigkeit */
  .marquee-track { animation: marquee var(--marquee-dur, 60s) linear infinite !important; }
  .hero .scroll-hint::after { animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .competence-grid, .split-grid, .contact-grid, .management-grid { grid-template-columns: 1fr; }
  .offer-row { grid-template-columns: 1fr; gap: 1.4rem; }
  .offer-row.flip .offer-media { order: 0; }
  .profile-row, .profile-row.flip { grid-template-columns: 1fr; gap: 1.5rem; }
  .profile-row.flip .profile-media { order: 0; }
  .profile-media { max-width: 420px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: 1fr; }
  .usp { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .22); }
  .usp:first-child { border-top: 0; }
  .cta-banner .bg { background-attachment: scroll; }
}

@media (max-width: 980px) {
  /* Mobile-Nav */
  .burger { display: block; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(13, 13, 15, .98);
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s, visibility .4s;
  }
  .main-nav.open { opacity: 1; visibility: visible; }
  .main-nav > ul {
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    width: 100%;
  }
  .main-nav a.nav-link { font-size: 1.15rem; padding: .8rem 1rem; opacity: 0; transform: translateY(18px); }
  .main-nav.open a.nav-link {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
    transition-delay: calc(var(--i, 0) * 70ms + .15s);
  }
  .main-nav a.nav-link::after { display: none; }
  .dropdown {
    position: static;
    background: transparent;
    box-shadow: none;
    border-top: 0;
    min-width: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height .45s var(--ease-out);
    text-align: center;
  }
  .has-dropdown.open-sub .dropdown { max-height: 300px; }
  .dropdown a { color: rgba(255, 255, 255, .8); justify-content: center; padding: .55rem; font-size: .95rem; }
  .dropdown a::before { display: none; }
  .dropdown a:hover { background: none; color: var(--red); padding-left: .55rem; }
  .mobile-cta { display: inline-flex; margin-top: 1.6rem; opacity: 0; transform: translateY(18px); }
  .main-nav.open .mobile-cta { opacity: 1; transform: translateY(0); transition: opacity .5s .55s, transform .5s .55s; }
}

@media (max-width: 620px) {
  .cards-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat .label { font-size: .68rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .owner-box { flex-direction: column; text-align: center; align-items: center; border-left: 0; border-top: 4px solid var(--white); }
  .card { aspect-ratio: 3 / 3.2; }
}
