.main { margin: 54px auto 0 auto; }
@media only screen and (max-width: 1200px) { .main { margin: 49px auto 0 auto; } }
@media only screen and (max-width: 600px) { .main { margin: 46px auto 0 auto; } .main__hero { min-height: 160px; } }


.auWrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1a0a0a 0%, #2d1010 25%, #1f0808 50%, #2a0e0e 75%, #180808 100%);
}
.au__bgPattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(128, 0, 0, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(128, 0, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(128, 0, 0, 0.05) 0%, transparent 70%);
  opacity: 0.8;
}
.au {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 90px 20px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1050px) {
  .au {
    padding: 50px 15px 60px 15px;
  }
}

/* ====== HERO ====== */
.au__hero {
  text-align: center;
  margin: 0 0 60px 0;
}
.au__heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(128, 0, 0, 0.25);
  border: 1px solid rgba(128, 0, 0, 0.4);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e57373;
  margin: 0 0 24px 0;
}
.au__heroBadge i { font-size: 11px; }
.au__h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  text-align: center;
  margin: 0 0 24px 0;
  line-height: 1.15em;
  letter-spacing: -0.5px;
}
.au__h1--accent {
  background: linear-gradient(135deg, #e57373 0%, #ff8a65 50%, #ffb74d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media only screen and (max-width: 1050px) {
  .au__h1 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 600px) {
  .au__h1 {
    font-size: 26px;
  }
}
.au__heroSubtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8em;
  max-width: 750px;
  margin: 0 auto;
}
.au__heroSubtitle strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}
@media only screen and (max-width: 1050px) {
  .au__heroSubtitle {
    font-size: 16px;
  }
}

/* ====== STATS BAR ====== */
.au__statsBar {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 0 70px 0;
}
@keyframes au__statGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(229, 115, 115, 0); }
  50% { box-shadow: 0 0 20px rgba(229, 115, 115, 0.15); }
}
@keyframes au__statIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes au__statShine {
  0% { left: -100%; }
  100% { left: 100%; }
}
.au__statItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 15px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.au__statItem::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(229, 115, 115, 0.08), transparent);
  pointer-events: none;
}
.au__statItem:hover::before {
  animation: au__statShine 0.7s ease forwards;
}
.au__statItem::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #e57373, #ff8a65, #e57373);
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.au__statItem:hover::after {
  width: 60%;
}
.au__statItem:hover {
  background: rgba(128, 0, 0, 0.12);
  border-color: rgba(229, 115, 115, 0.25);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 35px rgba(128, 0, 0, 0.25), 0 0 0 1px rgba(229, 115, 115, 0.1);
  animation: au__statGlow 2s ease-in-out infinite;
}
.au__statIcon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(229, 115, 115, 0.2), rgba(128, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: #e57373;
  margin: 0 0 16px 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.au__statItem:hover .au__statIcon {
  animation: au__statIconFloat 2s ease-in-out infinite;
  background: linear-gradient(135deg, rgba(229, 115, 115, 0.3), rgba(255, 138, 101, 0.15));
  box-shadow: 0 4px 16px rgba(229, 115, 115, 0.2);
  transform: scale(1.1);
}
.au__statNumber {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1em;
  letter-spacing: -0.5px;
  transition: all 0.4s ease;
}
.au__statItem:hover .au__statNumber {
  background: linear-gradient(135deg, #fff 0%, #ffcdd2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: scale(1.05);
}
.au__statLabel {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  margin: 8px 0 0 0;
  transition: color 0.4s ease;
}
.au__statItem:hover .au__statLabel {
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 850px) {
  .au__statsBar {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .au__statNumber {
    font-size: 30px;
  }
}
@media only screen and (max-width: 450px) {
  .au__statsBar {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ====== SECTION HEADERS ====== */
.au__sectionHeader {
  text-align: center;
  margin: 0 0 35px 0;
}
.au__h2 {
  color: #800000;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 10px 0;
  line-height: 1.3em;
}
/* Dark wrapper overrides */
.auWrapper .au__h2 {
  color: #fff;
}
.auWrapper .au__sectionSubtitle {
  color: rgba(255, 255, 255, 0.55);
}
@media only screen and (max-width: 1050px) {
  .au__h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .au__h2 {
    font-size: 22px;
  }
}
.au__sectionSubtitle {
  color: #656263;
  font-size: 16px;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* ====== PILLARS SECTION (full-width z tłem) ====== */
.au__pillarsSection {
  width: 100%;
  padding: 60px 20px 180px 20px;
  position: relative;
  overflow: hidden;
}
.au__pillarsSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../../images/catalog/aboutus.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  pointer-events: none;
}
.au__pillarsInner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.au__pillarsSection .au__sectionHeader {
  text-align: center;
  margin: 0 0 45px 0;
}
.au__pillarsSection .au__h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
}
.au__pillarsSection .au__sectionSubtitle {
  font-size: 17px;
  color: #777;
}
@media only screen and (max-width: 1050px) {
  .au__pillarsSection .au__h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1050px) {
  .au__pillarsSection {
    padding: 40px 15px 120px 15px;
  }
}

.au--continued {
  padding-top: 60px;
}

/* ====== PILLARS (4 standardy) ====== */
.au__pillars {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 750px) {
  .au__pillars {
    grid-template-columns: 1fr;
  }
}

@keyframes au__shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes au__iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes au__borderGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.au__pillar {
  background: linear-gradient(135deg, #ffffff 0%, #fdfafa 50%, #ffffff 100%);
  border: 2px solid rgba(128, 0, 0, 0.08);
  border-radius: 20px;
  padding: 34px 30px 30px 30px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.5s ease,
              background 0.5s ease;
  position: relative;
  overflow: hidden;
}
/* Left accent bar — animated gradient */
.au__pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #800000 0%, #cc3333 50%, #800000 100%);
  background-size: 100% 200%;
  border-radius: 20px 0 0 20px;
  transition: width 0.5s ease, background 0.5s ease;
  animation: au__borderGlow 3s ease-in-out infinite;
}
/* Frosted-glass overlay */
.au__pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px) saturate(1.4);
  -webkit-backdrop-filter: blur(8px) saturate(1.4);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  z-index: 1;
}
.au__pillar:hover {
  transform: translateY(-8px) scale(1.02);
  background: transparent;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(128, 0, 0, 0.12);
}
.au__pillar:hover::before {
  width: 6px;
}
.au__pillar:hover::after {
  opacity: 1;
}

/* All inner content needs z-index above the glass overlay */
.au__pillarIcon,
.au__pillarTitle,
.au__pillarDesc,
.au__pillar .about__pillarBtn,
.au__pillarNumber {
  position: relative;
  z-index: 2;
}

/* Pillar number watermark */
.au__pillarNumber {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 60px;
  font-weight: 900;
  color: rgba(128, 0, 0, 0.04);
  line-height: 1;
  z-index: 2;
  pointer-events: none;
  transition: color 0.5s ease, transform 0.5s ease;
}
.au__pillar:hover .au__pillarNumber {
  color: rgba(128, 0, 0, 0.08);
  transform: scale(1.1);
}

/* Shimmer effect on hover */
.au__pillar .au__pillarShimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  z-index: 3;
  pointer-events: none;
}
.au__pillar:hover .au__pillarShimmer {
  animation: au__shimmer 0.8s ease forwards;
}

/* Icon — large, animated, gradient background */
.au__pillarIcon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(128, 0, 0, 0.1) 0%, rgba(128, 0, 0, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #800000;
  margin: 0 0 20px 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.5s ease,
              box-shadow 0.5s ease,
              color 0.5s ease;
}
/* Color variants */
.au__pillarIcon--red {
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.12), rgba(192, 57, 43, 0.04));
  color: #c0392b;
}
.au__pillarIcon--orange {
  background: linear-gradient(135deg, rgba(211, 84, 0, 0.12), rgba(211, 84, 0, 0.04));
  color: #d35400;
}
.au__pillarIcon--purple {
  background: linear-gradient(135deg, rgba(142, 68, 173, 0.12), rgba(142, 68, 173, 0.04));
  color: #8e44ad;
}
.au__pillarIcon--blue {
  background: linear-gradient(135deg, rgba(41, 128, 185, 0.12), rgba(41, 128, 185, 0.04));
  color: #2980b9;
}
.au__pillar:hover .au__pillarIcon {
  transform: scale(1.12) rotate(-3deg);
  box-shadow: 0 6px 20px rgba(128, 0, 0, 0.12);
}
.au__pillar:hover .au__pillarIcon--red { background: linear-gradient(135deg, rgba(192, 57, 43, 0.2), rgba(192, 57, 43, 0.08)); }
.au__pillar:hover .au__pillarIcon--orange { background: linear-gradient(135deg, rgba(211, 84, 0, 0.2), rgba(211, 84, 0, 0.08)); }
.au__pillar:hover .au__pillarIcon--purple { background: linear-gradient(135deg, rgba(142, 68, 173, 0.2), rgba(142, 68, 173, 0.08)); }
.au__pillar:hover .au__pillarIcon--blue { background: linear-gradient(135deg, rgba(41, 128, 185, 0.2), rgba(41, 128, 185, 0.08)); }
.au__pillar:hover .au__pillarIcon i {
  animation: au__iconPulse 1.5s ease-in-out infinite;
}

/* Title */
.au__pillarTitle {
  font-size: 19px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  line-height: 1.3em;
  transition: color 0.5s ease;
}
.au__pillar:hover .au__pillarTitle {
  color: #1a1a1a;
}

/* Description */
.au__pillarDesc {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  line-height: 1.7em;
  margin: 0;
  transition: color 0.5s ease;
}
.au__pillar:hover .au__pillarDesc {
  color: #555;
  font-weight: 500;
}

/* Responsive adjustments */
@media only screen and (max-width: 1050px) {
  .au__pillar {
    padding: 28px 24px 26px 24px;
  }
  .au__pillarIcon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .au__pillar {
    border-radius: 16px;
    padding: 24px 20px 22px 20px;
  }
  .au__pillar::before {
    border-radius: 16px 0 0 16px;
  }
  .au__pillarIcon {
    width: 50px;
    height: 50px;
    font-size: 22px;
    border-radius: 14px;
  }
  .au__pillarTitle {
    font-size: 17px;
  }
}

/* ====== ADVANTAGES (dlaczego my) ====== */
.au__advantages {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
  margin: 0 0 70px 0;
}
@media only screen and (max-width: 450px) {
  .au__advantages {
    grid-template-columns: 1fr;
  }
}
.au__advCard {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 22px 20px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.4s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.au__advCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.au__advCard:hover::before {
  left: 100%;
}
.au__advCard:hover {
  border-color: rgba(128, 0, 0, 0.15);
  box-shadow: 0 8px 30px rgba(128, 0, 0, 0.12);
  transform: translateY(-4px);
}
.au__advIcon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(128, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: #800000;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
}
.au__advCard:hover .au__advIcon {
  transform: scale(1.15) rotate(-8deg);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(200, 80, 80, 0.3);
}
.au__advTitle {
  transition: color 0.3s ease;
}
.au__advContent {
  flex: 1;
}
.au__advTitle {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px 0;
}
.au__advDesc {
  font-size: 15px;
  font-weight: 400;
  color: #666;
  line-height: 1.6em;
  margin: 0;
}

/* ====== TRAINERS ====== */
.au__trainers {
  width: 100%;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 45px 40px;
  margin: 0 0 70px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.au__trainers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #800000 0%, rgba(128, 0, 0, 0.2) 100%);
  border-radius: 20px 0 0 20px;
}
@media only screen and (max-width: 1050px) {
  .au__trainers {
    padding: 30px 20px;
  }
}
.au__trainersContent {
  max-width: 850px;
  margin: 0 0 30px 0;
}
.au__trainersContent .au__h2 {
  text-align: center;
  margin: 0 0 20px 0;
}
.au__trainersText {
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 1.7em;
  margin: 0 0 14px 0;
}
.au__trainersText:last-child {
  margin: 0;
}
.au__trainersText strong {
  color: #333;
  font-weight: 700;
}

.au__trainersHighlights {
  display: flex;
  gap: 16px;
  margin: 0 0 30px 0;
  flex-wrap: wrap;
  justify-content: center;
}
.au__trainersHighlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 30px;
  border-radius: 14px;
  background: rgba(128, 0, 0, 0.04);
  min-width: 160px;
}
.au__trainersHighlightNumber {
  font-size: 32px;
  font-weight: 800;
  color: #800000;
  line-height: 1.1em;
}
.au__trainersHighlightLabel {
  font-size: 12px;
  font-weight: 500;
  color: #888;
  margin: 4px 0 0 0;
}
@media only screen and (max-width: 600px) {
  .au__trainersHighlights {
    gap: 10px;
  }
  .au__trainersHighlight {
    flex: 1;
    min-width: 100px;
    padding: 14px 12px;
  }
  .au__trainersHighlightNumber {
    font-size: 24px;
  }
}

.au__trainersLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: #800000;
  color: white;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
}
.au__trainersLink:hover {
  background: #a00000;
  box-shadow: 0 4px 20px rgba(128, 0, 0, 0.3);
  transform: translateY(-2px);
}
.au__trainersLink i:last-child {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.au__trainersLink:hover i:last-child {
  transform: translateX(3px);
}

/* ====== SPECIALIZATIONS (tagi) ====== */
.au__specs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 70px 0;
}
.au__specTag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border: 2px solid rgba(128, 0, 0, 0.12);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  transition: 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.au__specTagCount {
  background: #800000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  min-width: 20px;
  text-align: center;
  line-height: 1.4;
}
.au__specTag i {
  color: #800000;
  font-size: 16px;
}
.au__specTag:hover {
  background: rgba(128, 0, 0, 0.06);
  border-color: rgba(128, 0, 0, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 0, 0, 0.08);
}

/* ====== CLIENTS ====== */
.au__clients {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 0 70px 0;
}
.au__clientName {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.5px;
  transition: 0.3s;
}
.au__clientName:hover {
  border-color: rgba(128, 0, 0, 0.2);
  color: #800000;
  box-shadow: 0 4px 15px rgba(128, 0, 0, 0.08);
  transform: translateY(-2px);
}
.au__clientName--more {
  font-style: italic;
  font-weight: 500;
  border-style: dashed;
}

/* ====== CTA SECTION ====== */
.au__ctaSection {
  width: 100%;
  text-align: center;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}
@media only screen and (max-width: 1050px) {
  .au__ctaSection {
    padding: 35px 20px;
  }
}
.au__ctaIcon {
  font-size: 40px;
  color: #800000;
  margin: 0 0 16px 0;
  opacity: 0.8;
}
.au__ctaTitle {
  font-size: 28px;
  font-weight: 800;
  color: #800000;
  margin: 0 0 12px 0;
  line-height: 1.3em;
}
@media only screen and (max-width: 600px) {
  .au__ctaTitle {
    font-size: 22px;
  }
}
.au__ctaText {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  margin: 0 0 25px 0;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.au__ctaButtons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.au__ctaBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
}
.au__ctaBtn--primary {
  background: #800000;
  color: white;
}
.au__ctaBtn--primary:hover {
  background: #a00000;
  box-shadow: 0 4px 20px rgba(128, 0, 0, 0.3);
  transform: translateY(-2px);
}
.au__ctaBtn--outline {
  background: white;
  color: #800000;
  border: 2px solid #800000;
}
.au__ctaBtn--outline:hover {
  background: rgba(128, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(128, 0, 0, 0.15);
  transform: translateY(-2px);
}
@media only screen and (max-width: 450px) {
  .au__ctaButtons {
    flex-direction: column;
  }
  .au__ctaBtn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Dark wrapper overrides for all sections inside .auWrapper ===== */

/* --- Trainers section --- */
.auWrapper .au__trainers {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.auWrapper .au__trainersText {
  color: rgba(255, 255, 255, 0.65);
}
.auWrapper .au__trainersText strong {
  color: #fff;
}
.auWrapper .au__trainersHighlight {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}
.auWrapper .au__trainersHighlightNumber {
  color: #fff;
}
.auWrapper .au__trainersHighlightLabel {
  color: rgba(255, 255, 255, 0.5);
}
.auWrapper .au__trainersLink {
  background: rgba(128, 0, 0, 0.7);
  color: #fff;
}
.auWrapper .au__trainersLink:hover {
  background: #800000;
}

/* --- Advantage cards --- */
.auWrapper .au__advCard {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}
.auWrapper .au__advCard:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(200, 80, 80, 0.08);
}
.auWrapper .au__advIcon {
  background: rgba(200, 80, 80, 0.15);
  color: #e57373;
}
.auWrapper .au__advCard:hover .au__advIcon {
  background: rgba(200, 80, 80, 0.25);
  color: #ff8a80;
  box-shadow: 0 0 16px rgba(200, 80, 80, 0.35);
}
.auWrapper .au__advTitle {
  color: #fff;
}
.auWrapper .au__advDesc {
  color: rgba(255, 255, 255, 0.6);
}

/* --- Specialization tags --- */
.auWrapper .au__specTag {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
}
.auWrapper .au__specTag:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.auWrapper .au__specTag i {
  color: #e57373;
}
.auWrapper .au__specTagCount {
  background: rgba(200, 80, 80, 0.5);
}
.auWrapper .au__specTag:hover .au__specTagCount {
  background: rgba(200, 80, 80, 0.7);
}

/* --- Client names --- */
.auWrapper .au__clientName {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.08);
}
.auWrapper .au__clientName:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

/* --- CTA section --- */
.auWrapper .au__ctaSection {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.auWrapper .au__ctaIcon i {
  color: #e57373;
}
.auWrapper .au__ctaTitle {
  color: #fff;
}
.auWrapper .au__ctaText {
  color: rgba(255, 255, 255, 0.6);
}
.auWrapper .au__ctaBtn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.auWrapper .au__ctaBtn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}
