/* ===== Font faces (Plus Jakarta Sans, self-hosted) ===== */
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../assets/fonts/PlusJakartaSans-Light.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../assets/fonts/PlusJakartaSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../assets/fonts/PlusJakartaSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../assets/fonts/PlusJakartaSans-SemiBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../assets/fonts/PlusJakartaSans-Bold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
ul[role="list"],
ol[role="list"] {
  list-style: none;
}
html:focus-within {
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}
img,
picture {
  max-width: 100%;
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  border: none;
  background: none;
  cursor: pointer;
}
li {
  list-style: none;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Header ===== */
.header {
  position: absolute;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
}

.header__logo {
  position: relative;
  width: 110px;
}
.header__logo img {
  width: 100%;
  height: auto;
}

.nav {
  position: relative;
}
.nav__links {
  display: none;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
.nav__link {
  font-size: 14px;
  color: #ffffff;
}
.nav__link.is-contact-page {
  color: #413d45;
}
.nav__link.is-active {
  color: #ff4433;
}

.mobile-menu-btn {
  display: flex;
}
.mobile-menu-btn img {
  width: 22px;
  height: 16.5px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 50;
}
.mobile-menu.is-open {
  display: block;
}
.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 100%;
  background: #fff;
  padding: 32px 20px;
  gap: 50px;
}
.mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu__top img {
  width: 110px;
  height: auto;
}
.mobile-menu__close {
  color: #ff4433;
  font-size: 20px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.mobile-menu__list li a {
  color: #ff4433;
  font-size: 16px;
  font-weight: 500;
  display: block;
}

@media (min-width: 640px) {
  .header {
    padding: 29px 25px;
  }
  .nav__links {
    display: flex;
  }
  .nav__link {
    font-size: 14px;
  }
  .mobile-menu-btn {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

@media (min-width: 1440px) {
  .header {
    justify-content: center;
    padding: 64px 25px;
  }
  .header__logo {
    position: absolute;
    left: 114px;
    top: 50%;
    transform: translateY(-50%);
    width: 130px;
  }
  .nav__links {
    gap: 64px;
  }
  .nav__link {
    font-size: 16px;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
}
.hero__bg {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  z-index: 1;
}
.hero__overlay-tint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #310400;
  opacity: 0.4;
}
.hero__content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.hero__content h1 {
  line-height: 1.2;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
}
.hero__content p {
  font-size: 20px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.hero__badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  margin-top: 50px;
  align-self: flex-start;
}
.hero__badges img {
  height: 48px;
  width: auto;
}

@media (min-width: 640px) {
  .hero__content {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .hero__content h1 {
    font-size: 44px;
    text-align: center;
  }
  .hero__content p {
    font-size: 20px;
    text-align: center;
  }
  .hero__badges {
    align-self: center;
  }
}

@media (min-width: 1440px) {
  .hero__content h1 {
    font-size: 64px;
  }
  .hero__content p {
    font-size: 18px;
  }
}

/* ===== Section shared ===== */
section {
  width: 100%;
}

/* ===== Train ===== */
.train {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 24px;
  align-items: center;
  justify-content: space-between;
}
.train__img {
  position: relative;
  width: 350px;
  height: 222px;
}
.train__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.train__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
}
.train__content h2 {
  color: #44423f;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
}
.train__content p {
  text-align: center;
  color: #413d45;
  font-size: 20px;
}

@media (min-width: 640px) {
  .train {
    padding: 36px 24px;
  }
  .train__img {
    width: 311px;
    height: 198px;
  }
}

@media (min-width: 1440px) {
  .train {
    flex-direction: row;
    gap: 45px;
    padding: 115px 84px;
  }
  .train__img {
    width: 665px;
    height: 424px;
  }
  .train__content {
    align-items: flex-start;
    gap: 10px;
    width: 50%;
  }
  .train__content p {
    text-align: left;
  }
}

/* ===== Olympians ===== */
.olympians {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 24px;
  align-items: center;
  justify-content: space-between;
}
.olympians__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
}
.olympians__logo {
  position: relative;
  width: 207px;
  height: 96px;
}
.olympians__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.olympians__content h2 {
  color: #44423f;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}
.olympians__content p {
  text-align: center;
  color: #413d45;
  font-size: 18px;
}
.olympians__gif {
  position: relative;
  width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.olympians__gif img.olympians__photo {
  width: 100%;
  height: auto;
}
.olympians__caption {
  background: #011a2f;
  border-radius: 16px;
  padding: 10px;
  margin-top: -60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 1;
}
.olympians__caption h3 {
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.olympians__caption p {
  font-size: 10px;
  color: #fff;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .olympians {
    flex-direction: row;
    padding: 36px 24px;
    align-items: flex-start;
  }
  .olympians__content {
    align-items: flex-start;
    width: 50%;
    gap: 10px;
  }
  .olympians__content h2 {
    font-size: 18px;
    text-align: left;
  }
  .olympians__content p {
    text-align: left;
    font-size: 14px;
  }
  .olympians__gif {
    width: 448px;
  }
  .olympians__caption {
    border-radius: 28px;
    padding: 20px;
    width: 360px;
  }
  .olympians__caption h3 {
    font-size: 24px;
  }
  .olympians__caption p {
    font-size: 14px;
  }
}

@media (min-width: 1440px) {
  .olympians {
    gap: 45px;
    padding: 115px 84px;
  }
  .olympians__content h2 {
    font-size: 32px;
  }
  .olympians__content p {
    font-size: 18px;
  }
}

/* ===== Stories / Slider ===== */
.stories {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 0;
  align-items: center;
  justify-content: space-between;
}
.stories h2 {
  font-weight: 700;
  font-size: 32px;
}

.slider {
  width: 100%;
  display: flex;
  gap: 46px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 0 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.slider::-webkit-scrollbar {
  display: none;
}
.slider__card {
  flex: 0 0 auto;
  scroll-snap-align: center;
  position: relative;
  width: 333px;
  height: 420px;
  padding: 16px 24px;
  opacity: 0.8;
  background: #011a2f;
  border-radius: 21px;
  transition: opacity 0.3s ease;
}
.slider__card:first-child {
  margin-left: 24px;
}
.slider__card:last-child {
  margin-right: 24px;
}
.slider__card.is-active {
  opacity: 1;
}
.slider__quote {
  width: 44px;
  height: 32px;
}
.slider__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-top: 12px;
  max-height: 80%;
  overflow: hidden;
}
.slider__content p {
  color: #fff;
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.slider__content span {
  position: absolute;
  bottom: 16px;
  color: #899aa8;
  font-size: 26px;
}

@media (min-width: 640px) {
  .stories {
    padding: 23px 0;
  }
  .stories h2 {
    font-size: 16px;
  }
  .slider {
    gap: 11px;
    scroll-padding-left: 20%;
  }
  .slider__card {
    width: 166px;
    height: 209px;
    padding: 16px;
    border-radius: 10.67px;
  }
  .slider__card:first-child {
    margin-left: 20%;
  }
  .slider__card:last-child {
    margin-right: 20%;
  }
  .slider__quote {
    width: 22px;
    height: 16px;
  }
  .slider__content {
    margin-top: 4px;
  }
  .slider__content p {
    font-size: 12px;
  }
  .slider__content span {
    bottom: 12px;
    font-size: 11px;
  }
}

@media (min-width: 1440px) {
  .stories {
    gap: 45px;
    padding: 50px 0;
  }
  .stories h2 {
    font-size: 32px;
  }
  .slider {
    gap: 24px;
    scroll-padding-left: 15%;
  }
  .slider__card {
    width: 374px;
    height: 472px;
    padding: 32px;
    border-radius: 24px;
  }
  .slider__card:first-child {
    margin-left: 15%;
  }
  .slider__card:last-child {
    margin-right: 15%;
  }
  .slider__quote {
    width: 50px;
    height: 36px;
  }
  .slider__content p {
    font-size: 26px;
  }
  .slider__content span {
    bottom: 24px;
    font-size: 26px;
  }
}

/* ===== Track ===== */
.track {
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  padding: 45px 24px;
  overflow: hidden;
}
.track__chart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.track__img {
  position: relative;
  width: 330px;
  height: 410px;
  z-index: 1;
}
.track__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.track__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.track__content h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
.track__content p {
  color: #413d45;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

@media (min-width: 640px) {
  .track {
    flex-direction: row;
    gap: 10px;
    padding: 52px 34px;
  }
  .track__img {
    width: 220px;
    height: 256px;
  }
  .track__content {
    align-items: flex-start;
    width: 60%;
  }
  .track__content h2 {
    text-align: left;
    font-size: 16px;
  }
  .track__content p {
    text-align: left;
    font-size: 14px;
  }
}

@media (min-width: 1440px) {
  .track {
    gap: 20px;
    padding: 150px 0 0;
    justify-content: center;
    align-items: flex-start;
  }
  .track__img {
    width: 419px;
    height: 491px;
  }
  .track__content {
    gap: 16px;
    width: 30%;
    margin-top: 80px;
  }
  .track__content h2 {
    font-size: 32px;
  }
  .track__content p {
    font-size: 16px;
  }
}

/* ===== Boost ===== */
.boost {
  padding: 100px 24px;
  display: flex;
  flex-direction: column;
  gap: 66px;
  align-items: center;
  justify-content: space-between;
}
.boost h2 {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  color: #262626;
}
.boost p {
  color: #949494;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.boost__img {
  position: relative;
  width: 350px;
  height: 178px;
}
.boost__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 640px) {
  .boost {
    padding: 50px 24px;
    gap: 15px;
  }
  .boost h2 {
    font-size: 16px;
  }
  .boost p {
    font-size: 12px;
  }
  .boost__img {
    width: 285px;
    height: 145px;
  }
}

@media (min-width: 1440px) {
  .boost {
    padding: 120px 24px;
    gap: 30px;
  }
  .boost h2 {
    font-size: 32px;
  }
  .boost p {
    font-size: 20px;
  }
  .boost__img {
    width: 642px;
    height: 326px;
  }
}

/* ===== Discover ===== */
.discover {
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: center;
  padding: 24px 28px;
  background: linear-gradient(90deg, rgba(255, 68, 51, 1) 0%, rgba(255, 175, 83, 1) 100%);
}
.discover h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  text-align: center;
}
.discover a {
  border-radius: 40px;
  background: #fff;
  color: #ff4433;
  padding: 15px 32px;
  cursor: pointer;
  font-size: 20px;
  display: inline-block;
}

@media (min-width: 640px) {
  .discover {
    gap: 16px;
  }
  .discover h2 {
    font-size: 16px;
  }
  .discover a {
    font-size: 9px;
    padding: 7.5px 16px;
  }
}

@media (min-width: 1440px) {
  .discover {
    gap: 40px;
  }
  .discover h2 {
    font-size: 32px;
  }
  .discover a {
    font-size: 20px;
    padding: 15px 32px;
  }
}

/* ===== Footer ===== */
.footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  z-index: 1;
  position: relative;
}
.footer__utility {
  background: #fff;
  justify-content: center;
  align-items: center;
  padding: 35px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 98px;
}
.footer__menu a {
  min-width: 75px;
  font-size: 14px;
  color: #bdbdbd;
  text-align: center;
}
.footer__social {
  display: flex;
  gap: 30px;
}
.footer__social img {
  width: 36px;
  height: 36px;
}
.footer__copyright {
  background: #000;
  width: 100%;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 18px;
  justify-content: center;
  padding: 12px 0;
  gap: 4px;
}
.footer__copyright img {
  width: 29px;
  height: 33px;
}

@media (min-width: 640px) {
  .footer__menu {
    flex-direction: row;
    gap: 15px;
    padding: 0;
  }
  .footer__menu a {
    min-width: fit-content;
  }
  .footer__copyright {
    font-size: 24px;
  }
}

@media (min-width: 482px) {
  .footer__menu {
    column-gap: 100px;
  }
}

@media (min-width: 1440px) {
  .footer__menu {
    gap: 60px;
  }
  .footer__copyright {
    font-size: 16px;
  }
}

.container {
  max-width: 1990px;
  margin: 0 auto;
}

/* ===== Generic sub-page Hero (image or video bg, no overlay tint) ===== */
.hero--plain .hero__overlay-tint {
  display: none;
}
.hero--video {
  position: relative;
  height: auto;
}
.hero--video video {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.hero--video .hero__overlay {
  position: absolute;
  inset: 0;
  background: #310400;
  opacity: 0.4;
}
.hero--video .hero__content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 16px;
}
.hero--video .hero__content h1 {
  font-size: 32px;
}
.hero--video .hero__content p {
  font-size: 16px;
}

@media (min-width: 640px) {
  .hero--video video {
    height: auto;
    object-fit: fill;
  }
  .hero--video .hero__content {
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
  }
  .hero--video .hero__content h1 {
    font-size: 42px;
    text-align: center;
  }
  .hero--video .hero__content p {
    font-size: 14px;
    text-align: center;
  }
}

@media (min-width: 1440px) {
  .hero--video .hero__content h1 {
    font-size: 64px;
  }
  .hero--video .hero__content p {
    font-size: 20px;
  }
}

/* ===== Events Hero variant ===== */
.hero--events {
  overflow: hidden;
}
.hero--events .hero__content {
  overflow-x: hidden;
  margin-top: 20px;
  padding: 50px 0;
  width: fit-content;
  gap: 0;
}

@media (min-width: 640px) {
  .hero--events .hero__content {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.hero--events h1 {
  text-align: center;
  white-space: nowrap;
  font-size: 28px;
  background: #000;
  padding: 8px 16px;
  transform: rotate(-0.098rad);
  font-weight: 400;
  font-style: italic;
}
.hero--events p {
  font-size: 56px;
  text-align: center;
  transform: rotate(-0.098rad);
  -webkit-text-stroke: 0.09375rem black;
  color: #fff;
  letter-spacing: 6px;
  text-shadow: 7px 7px 0 black;
  font-weight: 700;
  margin-top: 8px;
}
.hero--events .hero__bg img {
  object-fit: cover;
}
.hero--events .hero__bg .hero__bg--mobile {
  display: block;
}
.hero--events .hero__bg .hero__bg--desktop {
  display: none;
}

@media (min-width: 640px) {
  .hero--events h1 {
    font-size: 45px;
  }
  .hero--events p {
    font-size: 70px;
    white-space: nowrap;
  }
  .hero--events .hero__bg .hero__bg--mobile {
    display: none;
  }
  .hero--events .hero__bg .hero__bg--desktop {
    display: block;
  }
}

@media (min-width: 1440px) {
  .hero--events h1 {
    font-size: 80px;
  }
  .hero--events p {
    font-size: 120px;
  }
}

/* ===== RaxGym: Skills ===== */
.skills {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  padding: 30px 20px;
}
.skills__img {
  order: 1;
  width: 189px;
  height: auto;
}
.skills__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  order: 2;
}
.skills__content h2 {
  font-weight: 700;
  font-size: 20px;
}
.skills__content ul {
  font-size: 16px;
  text-align: center;
  font-weight: 300;
}
.skills__content ul + ul {
  margin-top: 4px;
}

@media (min-width: 640px) {
  .skills {
    flex-direction: row;
    padding: 33px 24px;
  }
  .skills__img {
    order: 2;
  }
  .skills__content {
    align-items: flex-start;
    order: 1;
  }
  .skills__content h2 {
    font-size: 16px;
  }
  .skills__content ul {
    text-align: left;
    font-size: 12px;
  }
}

@media (min-width: 1440px) {
  .skills {
    padding: 64px 100px;
  }
  .skills__content h2 {
    font-size: 24px;
  }
  .skills__content ul {
    font-size: 24px;
  }
}

/* ===== RaxGym: Tech ===== */
.tech {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 75px 20px;
  background: #ffebe7;
}
.tech__img {
  position: relative;
  width: 312px;
  height: 236px;
  border-radius: 21px;
  overflow: hidden;
}
.tech__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tech__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.tech__content h2 {
  font-weight: 700;
  font-size: 20px;
}
.tech__content p {
  font-size: 16px;
  text-align: center;
}

@media (min-width: 640px) {
  .tech {
    flex-direction: row;
    justify-content: space-between;
    padding: 25px 24px;
  }
  .tech__img {
    width: 257px;
    height: 194px;
  }
  .tech__content {
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 50%;
  }
  .tech__content h2 {
    font-size: 16px;
  }
  .tech__content p {
    text-align: left;
    font-size: 12px;
  }
}

@media (min-width: 1440px) {
  .tech {
    padding: 25px 100px;
    margin-top: 130px;
  }
  .tech__img {
    width: 400px;
    height: 303px;
  }
  .tech__content h2 {
    font-size: 24px;
  }
  .tech__content p {
    font-size: 20px;
  }
}

/* ===== RaxGym: Potential ===== */
.potential {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  padding: 30px 20px;
}
.potential__img {
  position: relative;
  width: 360px;
  height: 337px;
  border-radius: 58px;
  overflow: hidden;
  order: 1;
}
.potential__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.potential__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  order: 2;
}
.potential__content h2 {
  font-weight: 700;
  font-size: 20px;
}
.potential__content p {
  font-size: 16px;
  text-align: center;
  font-weight: 300;
}
.potential__content ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.potential__content ul li {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
}
.potential__content ul li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .potential {
    padding: 33px 24px;
  }
  .potential__img {
    width: 268px;
    height: 252px;
    border-radius: 40px;
  }
  .potential__content {
    align-items: flex-start;
  }
  .potential__content h2 {
    font-size: 16px;
  }
  .potential__content p {
    text-align: left;
    font-size: 12px;
  }
  .potential__content ul li {
    font-size: 12px;
  }
}

@media (min-width: 1440px) {
  .potential {
    flex-direction: row;
    padding: 64px 100px;
  }
  .potential__img {
    width: 403px;
    height: 349px;
    border-radius: 70px;
    order: 2;
  }
  .potential__content {
    order: 1;
  }
  .potential__content h2 {
    font-size: 24px;
  }
  .potential__content p {
    font-size: 24px;
  }
  .potential__content ul li {
    font-size: 20px;
  }
}

/* ===== RaxGym: Athletes (reuses .tech layout) ===== */
.athletes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 75px 20px;
  background: #ffebe7;
}
.athletes__img {
  position: relative;
  width: 312px;
  height: 236px;
  border-radius: 21px;
  overflow: hidden;
}
.athletes__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.athletes__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.athletes__content h2 {
  font-weight: 700;
  font-size: 20px;
}
.athletes__content p {
  font-size: 16px;
  text-align: center;
}

@media (min-width: 640px) {
  .athletes {
    flex-direction: row;
    justify-content: space-between;
    padding: 25px 24px;
  }
  .athletes__img {
    width: 257px;
    height: 194px;
  }
  .athletes__content {
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 50%;
  }
  .athletes__content h2 {
    font-size: 16px;
  }
  .athletes__content p {
    text-align: left;
    font-size: 12px;
  }
}

@media (min-width: 1440px) {
  .athletes {
    padding: 25px 100px;
    margin-top: 130px;
  }
  .athletes__img {
    width: 400px;
    height: 303px;
  }
  .athletes__content h2 {
    font-size: 24px;
  }
  .athletes__content p {
    font-size: 20px;
  }
}

/* ===== RaxGym: Download ===== */
.download {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding: 45px 20px;
}
.download h2 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.download__badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.download__badges img {
  height: 48px;
  width: auto;
}

@media (min-width: 640px) {
  .download {
    padding: 90px 20px;
  }
}

@media (min-width: 1440px) {
  .download {
    gap: 28px;
  }
  .download h2 {
    font-size: 32px;
  }
}

/* ===== Events Gallery ===== */
.event-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 65px 20px;
  gap: 20px;
}
.event-item.pink {
  background: #ffebe7;
}
.event-item__content {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}
.event-item__content h2,
.event-item__content span {
  font-size: 20px;
  font-weight: 700;
}
.event-item__content p {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 300;
}
.event-item__images {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  justify-content: space-between;
}
.event-item__images img {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: auto;
}
.event-item__images img:last-child {
  align-self: flex-end;
}

@media (min-width: 640px) {
  .event-item {
    flex-direction: row;
    padding: 65px 40px;
  }
  .event-item.flex-col {
    flex-direction: column;
    gap: 65px;
  }
  .event-item__content h2,
  .event-item__content span {
    font-size: 24px;
  }
  .event-item__content p {
    font-size: 20px;
  }
  .event-item__images {
    width: 60%;
  }
}

@media (min-width: 1440px) {
  .event-item {
    padding: 84px 173px;
  }
  .event-item__content {
    max-width: 60%;
  }
  .event-item__images {
    flex-direction: row;
    gap: 94px;
    width: 100%;
  }
  .event-item__images img:last-child {
    margin-top: 36px;
    align-self: auto;
  }
  .event-item.flex-col {
    flex-direction: column;
    gap: 30px;
  }
  .event-item.flex-col .event-item__content {
    max-width: 100%;
  }
  .event-item.reverse {
    gap: 90px;
  }
  .event-item.reverse .event-item__content {
    order: 2;
  }
  .event-item.reverse .event-item__images {
    order: 1;
  }
}

/* ===== About page ===== */
.about-page {
  position: relative;
  min-height: 100vh;
}
.about-page__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.about-page__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #310400;
  opacity: 0.6;
  z-index: -1;
}
.about-page main {
  padding: 69px 0;
  padding-top: 90px;
}
.about-page__content {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 0 20px;
}
.about-page .footer {
  border-top: 1px solid #fff;
}

@media (min-width: 640px) {
  .about-page main {
    padding-top: 87px;
    padding-bottom: 0;
  }
  .about-page__content {
    padding: 0 64px;
  }
}

@media (min-width: 1440px) {
  .about-page main {
    padding-top: 152px;
  }
  .about-page__content {
    font-size: 20px;
    padding: 0 120px;
  }
}

/* ===== Contact page ===== */
.contact-page {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
  padding: 140px 20px 110px;
}
.contact-page__glow {
  position: absolute;
  top: -120%;
  right: -95%;
  width: 100%;
  height: 100%;
  filter: blur(300px);
  background: #ff4433;
  z-index: 0;
}
.contact-items {
  position: relative;
  z-index: 1;
  margin: 0 18px;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
}
.contact-item__icon {
  width: 52px;
  height: 52px;
}
.contact-item__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
}
.contact-item__content h2 {
  font-size: 24px;
  font-weight: 700;
}
.contact-item__content ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-item__content ul li {
  font-weight: 500;
  font-size: 14px;
}

.contact-form-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 41px;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid #cdcdcd;
  max-width: 442px;
  width: 100%;
}
.contact-form-wrapper__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form-wrapper__content h2 {
  font-size: 20px;
  font-weight: 700;
}
.contact-form-wrapper__content p {
  color: #190000;
  font-size: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form__name {
  width: 100%;
  display: flex;
  gap: 14px;
  align-items: center;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(89, 89, 89, 0.2);
  background: #f2f2f2;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 400;
  font-family: inherit;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(20, 20, 20, 0.6);
}
.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}
.contact-form button {
  background: linear-gradient(90deg, #f54e38 0%, #f29304 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  padding: 12px;
}
.contact-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.contact-form__status {
  color: #f54e38;
  align-self: center;
  font-size: 14px;
}

@media (min-width: 640px) {
  .contact-page {
    padding: 140px 64px 78px;
  }
}

@media (min-width: 1440px) {
  .contact-page {
    padding: 140px 80px 40px;
    flex-direction: row;
    align-items: flex-start;
  }
  .contact-items {
    flex-direction: row;
    gap: 76px;
  }
  .contact-form-wrapper {
    max-width: 574px;
  }
}
