/*
Theme Name: AP Skills Academy Child
Template: hello-elementor
Theme URI: https://ap-skills.at
Description: AP Skills Academy Landing Page — Child Theme. Alle 12 Sektionen als Bundle.
Author: AP Skills Academy
Author URI: https://ap-skills.at
Version: 1.0.0
License: Private
Text Domain: ap-skills
*/

/*
 WICHTIG: Ersetze "twentytwentyfour" im "Template:" Feld oben
 mit dem Ordnernamen deines Parent Themes (z.B. astra, oceanwp, kadence).
 Der Ordnername steht unter /wp-content/themes/[ORDNERNAME]
*/

/* ============================================
   AP SKILLS ACADEMY — Unified Stylesheet
   Alle 12 Sektionen in einer Datei
   ============================================ */

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

:root {
  --bg-primary: #1a1a1a;
  --skyblue: #42a6de;
  --skyblue-glow: rgba(66,166,222,0.3);
  --skyblue-glow-soft: rgba(66,166,222,0.15);
  --bg-card: #1e1e1e;
  --bg-border: rgba(255,255,255,0.06);
  --text-primary: #ffffff;
  --text-muted: rgba(255,255,255,0.4);
  --text-dim: rgba(255,255,255,0.25);
  --font-sans: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .container { padding: 0 2.5rem; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(66,166,222,0.15); }
  50% { box-shadow: 0 0 40px rgba(66,166,222,0.3); }
}

/* ========== 01 HERO ========== */
:root {
      --bg-primary: #1a1a1a;
      --skyblue: #42a6de;
      --skyblue-glow: rgba(66,166,222,0.3);
      --skyblue-glow-soft: rgba(66,166,222,0.15);
      --text-primary: #fff;
      --text-muted: rgba(255,255,255,0.4);
      --text-dim: rgba(255,255,255,0.25);
      --font-sans: 'Inter', system-ui, sans-serif;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body {
      font-family: var(--font-sans);
      font-weight: 400;
      font-size: 1rem;
      line-height: 1.6;
      color: var(--text-primary);
      background: var(--bg-primary);
    }
    img, video { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }

    .hero {
      position: relative;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      background: var(--bg-primary);
    }
    .hero__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero__bg video,
    .hero__bg img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero__bg img { transition: opacity 1s ease; }
    .hero__bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, #1a1a1a 0%, rgba(26,26,26,0.5) 50%, rgba(26,26,26,0.3) 100%);
    }
    .hero__glow {
      position: absolute;
      top: 25%;
      right: 25%;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: var(--skyblue-glow-soft);
      filter: blur(120px);
      pointer-events: none;
    }
    .hero__content {
      position: relative;
      z-index: 10;
      max-width: 1200px;
      margin: 0 auto;
      padding: 6rem 1.5rem 5rem;
      width: 100%;
    }
    .hero__inner { max-width: 700px; }
    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-sans);
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #fff;
      border: 1px solid rgba(255,255,255,0.3);
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      backdrop-filter: blur(12px);
      background: rgba(255,255,255,0.05);
      margin-bottom: 1rem;
    }
    .hero__badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #fff;
      animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }
    .hero__title { margin-bottom: 1rem; }
    .hero__line {
      display: block;
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.95;
      letter-spacing: -0.02em;
      color: #fff;
    }
    .hero__line--skyblue {
      color: var(--skyblue);
      text-shadow: 0 0 30px var(--skyblue-glow);
    }
    .hero__subtitle {
      font-size: clamp(0.875rem, 1.5vw, 1.125rem);
      color: var(--text-muted);
      max-width: 480px;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background-color: var(--skyblue);
      color: #ffffff !important;
      font-family: var(--font-sans);
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0.875rem 1.75rem;
      border-radius: 9999px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      line-height: 1.2;
      -webkit-text-fill-color: #ffffff;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%);
      pointer-events: none;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 40px var(--skyblue-glow), 0 0 60px var(--skyblue-glow-soft);
    }
    .hero__stats {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      padding-top: 1.5rem;
      margin-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    @media (min-width: 768px) {
      .hero__stats { gap: 2.5rem; }
    }
    .hero__stat-value {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 900;
      line-height: 1;
    }
    .hero__stat-value--skyblue { color: var(--skyblue); }
    .hero__stat-value--white { color: #fff; }
    .hero__stat-suffix { font-size: 1.125rem; font-weight: 700; }
    .hero__stat-label {
      font-size: 0.75rem;
      color: var(--text-dim);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-top: 0.25rem;
    }
    .hero__scroll {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      opacity: 0.5;
    }
    .hero__scroll svg {
      color: var(--skyblue);
      width: 20px;
      height: 20px;
      animation: bounce-down 2s ease-in-out infinite;
    }
    @keyframes bounce-down {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(6px); }
    }
    .hidden-md { display: none; }
    @media (min-width: 768px) { .hidden-md { display: block; } }

/* ========== 02 USP / PHILOSOPHIE ========== */
/* ============================================
   AP Skills Academy – USP / Philosophie Section
   Exakt wie React-Original
   ============================================ */

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

:root {
  --bg-primary: #1a1a1a;
  --skyblue: #42a6de;
  --bg-card: #1e1e1e;
  --bg-border: #2a2a2a;
  --text-primary: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.5);
  --font-sans: 'Inter', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }
}

/* ========== SECTION ========== */
.usp-philosophie {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

@media (min-width: 768px) {
  .usp-philosophie {
    padding: 9rem 0;
  }
}

/* Ambient glow */
.ambient-glow {
  position: absolute;
  top: 0;
  left: 33%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(66, 166, 222, 0.05);
  filter: blur(150px);
  pointer-events: none;
}

/* ========== SECTION HEADER ========== */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--skyblue);
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff !important;
  margin-bottom: 1.5rem;
}

.section-title span {
  color: #42a6de !important;
}

/* ========== TOP GRID ========== */
.usp-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .usp-top {
    grid-template-columns: 1fr 1fr;
  }
}

.usp-text p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.5) !important;
  line-height: 1.6;
  max-width: 520px;
}

.usp-text p + p {
  margin-top: 1rem;
}

.usp-text p span {
  color: #42a6de !important;
  font-weight: 700;
}

/* ========== IMAGE ========== */
.usp-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.usp-visual__img-wrapper {
  position: relative;
  display: inline-block;
}

.usp-visual img {
  width: 100%;
  max-width: 480px;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.7s ease;
}

.usp-visual__img-wrapper:hover img {
  transform: scale(1.02);
}

.usp-visual__overlay {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(to top right, rgba(66, 166, 222, 0.2), transparent, transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.usp-visual__img-wrapper:hover .usp-visual__overlay {
  opacity: 1;
}

/* Badge */
.usp-badge {
  position: absolute;
  top: -1rem;
  left: -1rem;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(66, 166, 222, 0.4);
  color: #42a6de;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(66, 166, 222, 0.15);
  }
  50% {
    box-shadow: 0 0 40px rgba(66, 166, 222, 0.3);
  }
}

.usp-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #42a6de;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Neural lines */
.neural-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.4;
}

/* Shield circle */
.shield-circle {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(66, 166, 222, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-glow 3s ease-in-out infinite;
}

.shield-circle svg {
  width: 56px;
  height: 56px;
}

/* ========== 4 FEATURE CARDS ========== */
.usp-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: transparent;
  border: none;
}

@media (min-width: 640px) {
  .usp-cards {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .usp-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.usp-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: border-color 0.3s ease;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .usp-card {
    margin-bottom: 0;
  }
}

.usp-card:hover {
  border-color: rgba(66, 166, 222, 0.3);
}

.usp-card__icon {
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, filter 0.3s ease;
  flex-shrink: 0;
}

.usp-card:hover .usp-card__icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(66, 166, 222, 0.4));
}

.usp-card__icon svg {
  width: 56px;
  height: 56px;
}

.usp-card__title {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.3;
  flex-shrink: 0;
}

.usp-card__text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5) !important;
  line-height: 1.6;
  flex-grow: 1;
}

.usp-card__line {
  margin-top: 1.5rem;
  height: 2px;
  width: 48px;
  background: rgba(66, 166, 222, 0.4);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.usp-card:hover .usp-card__line {
  width: 100% !important;
  background: #42a6de !important;
}

/* ========== 03 USP BRIDGE ========== */
/* ========== SECTION ========== */
.usp-bridge {
  padding: 4rem 0;
  background: var(--bg-primary);
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.usp-bridge__glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  border-radius: 50%;
  background: rgba(66, 166, 222, 0.03);
  filter: blur(150px);
  pointer-events: none;
}

.usp-bridge__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--skyblue);
  margin-bottom: 1.5rem;
}

.usp-bridge__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.usp-bridge__title span {
  color: var(--skyblue) !important;
}

.usp-bridge__text {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.4) !important;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 2.5rem;
}

.usp-bridge__text strong {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 600;
}

/* Icons */
.usp-bridge__icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .usp-bridge__icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
}

.usp-bridge__icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.usp-bridge__icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(66, 166, 222, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.usp-bridge__icon-circle svg {
  width: 18px;
  height: 18px;
  color: var(--skyblue);
}

.usp-bridge__icon-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* CTA */
.usp-bridge__cta {
  margin-top: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--skyblue);
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-text-fill-color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--skyblue-glow);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
}

/* ========== 04 VEREINS MARQUEE ========== */
/* ========== SECTION ========== */
.marquee-section {
  padding: 4rem 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}

/* Header */
.marquee-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 0 1.5rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--skyblue);
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff !important;
  margin-bottom: 0.5rem;
}

.section-title span {
  color: var(--skyblue) !important;
}

.marquee-section__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.4) !important;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ========== MARQUEE ========== */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
}

.marquee__fade-left,
.marquee__fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 10;
  pointer-events: none;
}

.marquee__fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.marquee__fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.marquee__track {
  display: flex;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}

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

.marquee__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
}

.marquee__logo .marquee__logo:hover img {
  opacity: 1;
}

/* ========== STATS ========== */
.marquee-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 3.5rem auto 0;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .marquee-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: #242424;
  border: 1px solid #333;
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
}

.stat-card__value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1;
}

.stat-card__label {
  font-size: 0.75rem;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* ========== 05 ACADEMY ========== */
@media (min-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }
}

/* ========== SECTION ========== */
.academy {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

@media (min-width: 768px) {
  .academy {
    padding: 9rem 0;
  }
}

.academy__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: rgba(66, 166, 222, 0.03);
  filter: blur(150px);
  pointer-events: none;
}

/* ========== HEADER ========== */
.academy__header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--skyblue);
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff !important;
}

.section-title span {
  color: var(--skyblue) !important;
}

/* ========== 3 PILLARS ========== */
.academy__pillars {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .academy__pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.academy__pillar {
  position: relative;
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--bg-border);
  transition: all 0.4s ease;
}

.academy__pillar:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .academy__pillar {
    border-bottom: none;
    border-right: 1px solid var(--bg-border);
    padding: 3rem;
  }
  .academy__pillar:last-child {
    border-right: none;
  }
}

.academy__pillar:hover {
  background: rgba(66, 166, 222, 0.03);
}

/* Icon */
.academy__pillar-icon {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}

.academy__pillar-icon::before {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background: rgba(66, 166, 222, 0.06);
  border-radius: 12px;
  animation: icon-pulse 3s ease-in-out infinite;
  z-index: 0;
}

.academy__pillar-svg {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.academy__pillar:hover .academy__pillar-svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(66, 166, 222, 0.3));
}

/* Number */
.academy__pillar-number {
  display: block;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  color: rgba(66, 166, 222, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.5s ease;
}

.academy__pillar:hover .academy__pillar-number {
  color: rgba(66, 166, 222, 0.3);
}

/* Title */
.academy__pillar-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

/* Text */
.academy__pillar-text {
  font-size: 0.9375rem;
  color: var(--text-muted) !important;
  line-height: 1.7;
  max-width: 400px;
}

/* Line */
.academy__pillar-line {
  margin-top: 2rem;
  height: 2px;
  width: 64px;
  background: rgba(66, 166, 222, 0.3);
  transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

.academy__pillar:hover .academy__pillar-line {
  width: 100%;
  background: var(--skyblue);
}

/* ========== FOOTER ========== */
.academy__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 5rem;
}

@media (min-width: 640px) {
  .academy__footer {
    flex-direction: row;
    align-items: center;
  }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: rgba(66, 166, 222, 0.5);
  color: var(--skyblue);
}

.btn-outline svg {
  width: 16px;
  height: 16px;
}

.academy__features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.academy__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.academy__feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--skyblue);
}

/* ========== ANIMATIONS ========== */
50% { opacity: 0.3; }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes icon-pulse {
  0%, 100% { opacity: 0.5; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.08); }
}

/* ========== 06 TESTIMONIALS ========== */
/* ============ AP SKILLS ACADEMY — 06 TESTIMONIALS ============ */

.ap-testimonials {
  padding: 7rem 1.5rem;
  background: #1a1a1a !important;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ap-testimonials { padding: 9rem 2.5rem; }
}

.ap-testimonials__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(66,166,222,0.03);
  filter: blur(200px);
  pointer-events: none;
}

.ap-testimonials__container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ap-testimonials__header {
  text-align: center !important;
  margin-bottom: 4rem;
}

.ap-testimonials__label {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
  margin-bottom: 1rem !important;
  display: inline-block !important;
}

.ap-testimonials__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  line-height: 1.05 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.ap-testimonials__title span {
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
}

.ap-testimonials__card {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ap-testimonials__card { padding: 3.5rem; }
}

.ap-testimonials__quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: rgba(66,166,222,0.1);
  width: 64px;
  height: 64px;
}

.ap-testimonials__slider {
  position: relative;
  min-height: 180px;
}

.ap-testimonials__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(2rem);
  transition: all 0.7s ease;
  pointer-events: none;
}
.ap-testimonials__slide--active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: all;
}

.ap-testimonials__quote {
  font-size: clamp(1.125rem, 2vw, 1.5rem) !important;
  font-style: italic !important;
  color: rgba(255,255,255,0.9) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.9) !important;
  line-height: 1.6 !important;
  margin-bottom: 2rem !important;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.ap-testimonials__author-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.ap-testimonials__author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(66,166,222,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
}

.ap-testimonials__author-name {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.6) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.6) !important;
}

.ap-testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.ap-testimonials__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ap-testimonials__arrow:hover {
  border-color: rgba(66,166,222,0.5);
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
}
.ap-testimonials__arrow svg {
  width: 20px;
  height: 20px;
}

.ap-testimonials__dots {
  display: flex;
  gap: 0.75rem;
}

.ap-testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
  padding: 0;
}
.ap-testimonials__dot--active {
  background: #42a6de;
  width: 2rem;
}
.ap-testimonials__dot:hover {
  background: rgba(255,255,255,0.4);
}

/* ========== 07 COACHES ========== */
/* ============ AP SKILLS ACADEMY — 07 COACHES ============ */

.ap-coaches {
  padding: 7rem 1.5rem;
  background: #1a1a1a !important;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ap-coaches { padding: 9rem 2.5rem; }
}

.ap-coaches__glow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(66,166,222,0.05);
  filter: blur(180px);
  pointer-events: none;
}

.ap-coaches__container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ap-coaches__header {
  text-align: center !important;
  margin-bottom: 4rem;
}

.ap-coaches__label {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
  margin-bottom: 1rem !important;
  display: inline-block !important;
}

.ap-coaches__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  line-height: 1.05 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  margin-bottom: 1rem !important;
}
.ap-coaches__title span {
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
}

.ap-coaches__subtitle {
  font-size: 1.125rem !important;
  color: rgba(255,255,255,0.4) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.4) !important;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6 !important;
}

.ap-coaches__tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.ap-coaches__tab {
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  border: 1px solid rgba(255,255,255,0.06);
  background: transparent;
  color: rgba(255,255,255,0.5) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.5) !important;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', system-ui, sans-serif;
}
.ap-coaches__tab:hover {
  border-color: rgba(66,166,222,0.4);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.ap-coaches__tab--active {
  background: #42a6de !important;
  border-color: #42a6de !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 0 30px rgba(66,166,222,0.3);
}

.ap-coaches__card {
  max-width: 900px;
  margin: 0 auto;
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2rem;
  overflow: hidden;
  transition: all 0.2s ease;
}

.ap-coaches__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ap-coaches__grid { grid-template-columns: 1fr 1fr; }
}

.ap-coaches__image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(255,255,255,0.03), #1a1a1a);
}
@media (min-width: 768px) {
  .ap-coaches__image-wrap { aspect-ratio: auto; }
}
.ap-coaches__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.7s ease;
}
.ap-coaches__card:hover .ap-coaches__image-wrap img {
  transform: scale(1.05);
}

.ap-coaches__image-fade-desktop {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(30,30,30,0.9));
  display: none;
}
@media (min-width: 768px) {
  .ap-coaches__image-fade-desktop { display: block; }
}
.ap-coaches__image-fade-mobile {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #1a1a1a, rgba(26,26,26,0.3), transparent);
}
@media (min-width: 768px) {
  .ap-coaches__image-fade-mobile { display: none; }
}

.ap-coaches__badges {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ap-coaches__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(26,26,26,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
}
.ap-coaches__badge--primary {
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
}
.ap-coaches__badge--secondary {
  color: rgba(255,255,255,0.7) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.7) !important;
}
.ap-coaches__badge svg {
  width: 12px;
  height: 12px;
  color: #42a6de;
  flex-shrink: 0;
}

.ap-coaches__info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .ap-coaches__info { padding: 2.5rem; }
}

.ap-coaches__name {
  font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
  font-weight: 900 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  margin-bottom: 0.25rem !important;
}

.ap-coaches__role {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
  margin-bottom: 1.5rem !important;
}

.ap-coaches__quote {
  font-size: 1rem !important;
  font-style: italic !important;
  color: rgba(255,255,255,0.5) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.5) !important;
  line-height: 1.6 !important;
  margin-bottom: 2rem !important;
  border-left: 2px solid rgba(66,166,222,0.4);
  padding-left: 1rem;
}

.ap-coaches__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ap-coaches__meta-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 1rem;
}

.ap-coaches__meta-label {
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: rgba(255,255,255,0.3) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.3) !important;
  margin-bottom: 0.25rem !important;
}

.ap-coaches__meta-value {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  line-height: 1.3 !important;
}

.ap-coaches__achievements-title {
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: rgba(255,255,255,0.3) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.3) !important;
  margin-bottom: 0.75rem !important;
}

.ap-coaches__achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.ap-coaches__achievement {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(66,166,222,0.1);
  border: 1px solid rgba(66,166,222,0.2);
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
}
.ap-coaches__achievement-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #42a6de;
  flex-shrink: 0;
}

.ap-coaches__cta {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ap-coaches__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  color: rgba(255,255,255,0.7) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.7) !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', system-ui, sans-serif;
}
.ap-coaches__btn:hover {
  border-color: rgba(66,166,222,0.5);
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
}
.ap-coaches__btn svg {
  width: 14px;
  height: 14px;
}

/* ========== 08 CROSS MARQUEE ========== */
/* ============ AP SKILLS ACADEMY — 08 CROSS MARQUEE ============ */

.ap-cross-marquee {
  padding: 2rem 0;
  background: #1a1a1a !important;
  position: relative;
  overflow: hidden;
}

.ap-cross-marquee__header {
  text-align: center !important;
  margin-bottom: 2rem;
  padding: 0 1.5rem;
}

.ap-cross-marquee__label {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
  margin-bottom: 0.75rem !important;
  display: inline-block !important;
}

.ap-cross-marquee__title {
  font-size: clamp(1.25rem, 3vw, 1.75rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.ap-cross-marquee__title span {
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
}

.ap-cross-marquee__stage {
  position: relative;
  height: 180px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ap-cross-marquee__stage { height: 220px; }
}

/* Band 1 - tilted down (foreground) */
.ap-cross-marquee__band-1 {
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  z-index: 20;
  transform: rotate(-2.5deg);
}
@media (min-width: 768px) {
  .ap-cross-marquee__band-1 { top: 16px; }
}
.ap-cross-marquee__band-1-inner {
  background: rgba(30,30,30,0.8);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(66,166,222,0.2);
  border-bottom: 1px solid rgba(66,166,222,0.2);
  padding: 0.75rem 0;
}
@media (min-width: 768px) {
  .ap-cross-marquee__band-1-inner { padding: 1rem 0; }
}

/* Band 2 - tilted up (background) */
.ap-cross-marquee__band-2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  z-index: 10;
  transform: rotate(2.5deg);
}
@media (min-width: 768px) {
  .ap-cross-marquee__band-2 { bottom: 16px; }
}
.ap-cross-marquee__band-2-inner {
  background: rgba(20,20,20,0.9);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0.75rem 0;
}
@media (min-width: 768px) {
  .ap-cross-marquee__band-2-inner { padding: 1rem 0; }
}

.ap-cross-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: cross-marquee-scroll 35s linear infinite;
}
.ap-cross-marquee__track--reverse {
  animation-name: cross-marquee-scroll;
  animation-duration: 40s;
  animation-direction: reverse;
}
@keyframes cross-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ap-cross-marquee__item {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
  padding: 0.5rem 0;
}

.ap-cross-marquee__text {
  font-size: clamp(1.25rem, 2.5vw, 2.25rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.02em !important;
  white-space: nowrap !important;
  transition: color 0.3s ease;
}
.ap-cross-marquee__text--primary {
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
}
.ap-cross-marquee__text--primary:hover {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.ap-cross-marquee__text--secondary {
  color: rgba(255,255,255,0.3) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.3) !important;
}
.ap-cross-marquee__text--secondary:hover {
  color: rgba(255,255,255,0.6) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.6) !important;
}

.ap-cross-marquee__star {
  color: rgba(66,166,222,0.3);
  font-size: 1.25rem;
  flex-shrink: 0;
  user-select: none;
}

/* ========== 09 EHEMALIGE SKILLER ========== */
/* ============ AP SKILLS ACADEMY — 09 EHEMALIGE SKILLER ============ */

.ap-players {
  padding: 7rem 1.5rem;
  background: #1a1a1a !important;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ap-players { padding: 9rem 2.5rem; }
}

.ap-players__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  border-radius: 50%;
  background: rgba(66,166,222,0.03);
  filter: blur(200px);
  pointer-events: none;
}

.ap-players__container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ap-players__header {
  text-align: center !important;
  margin-bottom: 4rem;
}

.ap-players__label {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
  margin-bottom: 1rem !important;
  display: inline-block !important;
}

.ap-players__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  line-height: 1.05 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  margin-bottom: 1rem !important;
}
.ap-players__title span {
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
}

.ap-players__subtitle {
  font-size: 1.125rem !important;
  color: rgba(255,255,255,0.4) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.4) !important;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6 !important;
}

/* Scroll buttons */
.ap-players__scroll-wrap {
  position: relative;
}

.ap-players__scroll-btn {
  display: none;
}
@media (min-width: 768px) {
  .ap-players__scroll-btn {
    display: flex;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1e1e1e;
    border: 1px solid rgba(255,255,255,0.06);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s ease;
  }
  .ap-players__scroll-btn:hover {
    border-color: rgba(66,166,222,0.5);
  }
  .ap-players__scroll-btn svg {
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,0.7);
  }
  .ap-players__scroll-btn--left { left: -1.5rem; }
  .ap-players__scroll-btn--right { right: -1.5rem; }
}

.ap-players__scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 1rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ap-players__scroll::-webkit-scrollbar { display: none; }

.ap-player-card {
  flex: 0 0 260px;
  scroll-snap-align: center;
}
@media (min-width: 768px) {
  .ap-player-card { flex: 0 0 300px; }
}

.ap-player-card__image {
  aspect-ratio: 3 / 4;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
}
.ap-player-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.ap-player-card:hover .ap-player-card__image img {
  transform: scale(1.1);
}
.ap-player-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #1a1a1a 0%, transparent 40%);
}

.ap-player-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0.75rem;
  padding: 0 0.5rem;
}
.ap-player-card__name {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.ap-player-card__year {
  font-size: 1.125rem !important;
  font-weight: 900 !important;
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
}

.ap-player-card__club {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding: 0 0.5rem;
}
.ap-player-card__club img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0.5;
}
.ap-player-card__club-name {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.4) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.4) !important;
}

.ap-player-card__achievement {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.5) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.5) !important;
  margin-left: 0.5rem;
}
.ap-player-card__achievement-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.ap-players__footer {
  text-align: center !important;
  margin-top: 3rem;
}
.ap-players__footer-text {
  font-size: 0.875rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  color: rgba(255,255,255,0.3) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.3) !important;
  margin-bottom: 1rem !important;
}

.ap-players__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.7) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.7) !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', system-ui, sans-serif;
}
.ap-players__btn:hover {
  border-color: rgba(66,166,222,0.5);
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
}
.ap-players__btn svg {
  width: 16px;
  height: 16px;
}

/* ========== 10 CAMPS ========== */
/* ============ AP SKILLS ACADEMY — 10 CAMPS ============ */

.ap-camps {
  padding: 7rem 1.5rem;
  background: #141414 !important;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ap-camps { padding: 9rem 2.5rem; }
}

.ap-camps__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.ap-camps__container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ap-camps__header {
  text-align: center !important;
  margin-bottom: 4rem;
}

.ap-camps__label {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
  margin-bottom: 1rem !important;
  display: inline-block !important;
}

.ap-camps__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  line-height: 1.05 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  margin-bottom: 1rem !important;
}
.ap-camps__title span {
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
}

.ap-camps__subtitle {
  font-size: 1.125rem !important;
  color: rgba(255,255,255,0.4) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.4) !important;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.6 !important;
}

.ap-camps__types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.ap-camps__type {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.6) !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}
.ap-camps__type svg {
  width: 14px;
  height: 14px;
  color: #42a6de;
  flex-shrink: 0;
}

.ap-camps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .ap-camps__grid { grid-template-columns: 1fr 1fr; }
}

/* Camp Card */
.ap-camp-card {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2rem;
  overflow: hidden;
  transition: box-shadow 0.5s ease;
  position: relative;
}
.ap-camp-card:hover {
  box-shadow: 0 0 60px rgba(66,166,222,0.15);
}
.ap-camp-card--featured {
  border-color: rgba(66,166,222,0.3);
  box-shadow: 0 0 30px rgba(66,166,222,0.08);
}
.ap-camp-card--featured:hover {
  box-shadow: 0 0 60px rgba(66,166,222,0.2);
}

.ap-camp-card__badge-outer {
  position: absolute;
  top: 0;
  right: 2rem;
  z-index: 20;
}
.ap-camp-card__badge-recommended {
  background: #42a6de;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 0.375rem 1rem;
  border-radius: 0 0 0.5rem 0.5rem;
}

.ap-camp-card__header {
  background: linear-gradient(135deg, #1a1a1a 0%, #242424 100%);
  padding: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.ap-camp-card__header-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}
.ap-camp-card--featured .ap-camp-card__header-glow {
  background: rgba(66,166,222,0.1);
}
.ap-camp-card:not(.ap-camp-card--featured) .ap-camp-card__header-glow {
  background: rgba(66,166,222,0.05);
}

.ap-camp-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(66,166,222,0.15);
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.ap-camp-card__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
  font-weight: 900 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  line-height: 1.1 !important;
  margin-bottom: 0.5rem !important;
  position: relative;
  z-index: 1;
}
.ap-camp-card__title span {
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
}

.ap-camp-card__subtitle {
  font-size: 0.875rem !important;
  color: rgba(255,255,255,0.4) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.4) !important;
  position: relative;
  z-index: 1;
}

.ap-camp-card__.ap-camp-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ap-camp-card__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ap-camp-card__detail svg {
  width: 18px;
  height: 18px;
  color: #42a6de;
  flex-shrink: 0;
}

.ap-camp-card__detail-title {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.ap-camp-card__detail-sub {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.4) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.4) !important;
}

.ap-camp-card__features {
  list-style: none;
  margin-bottom: 2rem;
}
.ap-camp-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.875rem !important;
  color: rgba(255,255,255,0.5) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.5) !important;
}
.ap-camp-card__features li svg {
  width: 14px;
  height: 14px;
  color: #42a6de;
  flex-shrink: 0;
}

.ap-camp-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ap-camp-card__price-label {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.4) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.4) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 0.25rem !important;
}

.ap-camp-card__price {
  font-size: 2.5rem !important;
  font-weight: 900 !important;
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
  line-height: 1 !important;
}

/* Buttons */
.ap-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #42a6de !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ap-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(66,166,222,0.3);
}

.ap-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.7) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.7) !important;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: all 0.3s ease;
}
.ap-btn-outline:hover {
  border-color: rgba(66,166,222,0.5);
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
}

/* Training Moments */
.ap-camps__moments {
  margin-top: 6rem;
}

.ap-camps__moments-header {
  text-align: center !important;
  margin-bottom: 2.5rem;
}

.ap-camps__moments-label {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
  margin-bottom: 0.75rem !important;
  display: inline-block !important;
}

.ap-camps__moments-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem) !important;
  font-weight: 700 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.ap-camps__moments-title span {
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
}

.ap-camps__moments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .ap-camps__moments-grid { grid-template-columns: repeat(3, 1fr); }
}

.ap-camps__moment {
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
}
.ap-camps__moment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ap-camps__moment:hover img {
  transform: scale(1.1);
}

/* ========== 11 INSTAGRAM ========== */
/* ============ AP SKILLS ACADEMY — 11 INSTAGRAM FEED ============ */

.ap-instagram {
  padding: 5rem 1.5rem;
  background: #141414 !important;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ap-instagram { padding: 7rem 2.5rem; }
}

.ap-instagram__container {
  max-width: 1280px;
  margin: 0 auto;
}

.ap-instagram__header {
  text-align: center !important;
  margin-bottom: 3rem;
}

.ap-instagram__label {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
  margin-bottom: 1rem !important;
  display: inline-block !important;
}

.ap-instagram__title {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  line-height: 1.05 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  margin-bottom: 1rem !important;
}
.ap-instagram__title span {
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
}

.ap-instagram__subtitle {
  font-size: 1rem !important;
  color: rgba(255,255,255,0.4) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.4) !important;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.6 !important;
}

.ap-instagram__stats {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: gap 0.3s ease;
  cursor: pointer;
}
.ap-instagram__stats:hover {
  gap: 0.75rem;
}
.ap-instagram__stats svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ap-instagram__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .ap-instagram__grid { grid-template-columns: repeat(3, 1fr); }
}

.ap-instagram__post {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.5s ease;
  display: block;
  text-decoration: none !important;
}
.ap-instagram__post:hover {
  border-color: rgba(66,166,222,0.5);
}
.ap-instagram__post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ap-instagram__post:hover img {
  transform: scale(1.1);
}

.ap-instagram__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ap-instagram__post:hover .ap-instagram__overlay {
  opacity: 1;
}
.ap-instagram__overlay svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.ap-instagram__footer {
  text-align: center !important;
  margin-top: 2.5rem;
}

.ap-instagram__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.7) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.7) !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', system-ui, sans-serif;
}
.ap-instagram__btn:hover {
  border-color: rgba(66,166,222,0.5);
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
}
.ap-instagram__btn svg {
  width: 16px;
  height: 16px;
}

/* ========== 12 KONTAKT ========== */
/* ============ AP SKILLS ACADEMY — 12 KONTAKT ============ */

.ap-kontakt {
  padding: 7rem 1.5rem;
  background: #1a1a1a !important;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ap-kontakt { padding: 9rem 2.5rem; }
}

.ap-kontakt__glow-1 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(66,166,222,0.08);
  filter: blur(200px);
  pointer-events: none;
}
.ap-kontakt__glow-2 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(66,166,222,0.05);
  filter: blur(150px);
  pointer-events: none;
}

.ap-kontakt__container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ap-kontakt__header {
  text-align: center !important;
  margin-bottom: 4rem;
}

.ap-kontakt__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  line-height: 1.05 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  margin-bottom: 1.5rem !important;
}
.ap-kontakt__title span {
  color: #42a6de !important;
  -webkit-text-fill-color: #42a6de !important;
}

.ap-kontakt__subtitle {
  font-size: 1.125rem !important;
  color: rgba(255,255,255,0.5) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.5) !important;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6 !important;
}

.ap-kontakt__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .ap-kontakt__grid {
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
  }
}

/* Form */
.ap-kontakt__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ap-kontakt__form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .ap-kontakt__form-row { grid-template-columns: 1fr 1fr; }
}

.ap-kontakt__input {
  width: 100%;
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem !important;
  transition: all 0.3s ease;
  outline: none;
}
.ap-kontakt__input::placeholder {
  color: rgba(255,255,255,0.3) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.3) !important;
}
.ap-kontakt__input:focus {
  border-color: rgba(66,166,222,0.5);
  box-shadow: 0 0 0 3px rgba(66,166,222,0.1);
}

.ap-kontakt__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  background: #42a6de !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  padding: 1rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ap-kontakt__submit:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(66,166,222,0.4);
}
.ap-kontakt__submit svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ap-kontakt__submit--success {
  background: rgba(34,197,94,0.2) !important;
  color: #4ade80 !important;
  -webkit-text-fill-color: #4ade80 !important;
  border: 1px solid rgba(34,197,94,0.4);
}

/* Info */
.ap-kontakt__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ap-kontakt__info-block-title {
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  color: rgba(255,255,255,0.3) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.3) !important;
  margin-bottom: 1rem !important;
}

.ap-kontakt__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ap-kontakt__info-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ap-kontakt__info-icon svg {
  width: 18px;
  height: 18px;
  color: #42a6de;
}

.ap-kontakt__info-title {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  margin-bottom: 0.25rem !important;
}

.ap-kontakt__info-text {
  font-size: 0.875rem !important;
  color: rgba(255,255,255,0.4) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.4) !important;
}
.ap-kontakt__info-text--highlight {
  font-weight: 600 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

