:root {
  --bg: #0b1020;
  --card: #111a33;
  --muted: #a9b1c7;
  --text: #eef1ff;
  --accent: #4f7cff;
  --accent2: #37d3a6;
  --border: rgba(255, 255, 255, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue";
  background: radial-gradient(1200px 600px at 20% 0%, rgba(79, 124, 255, .25), transparent 55%),
    radial-gradient(900px 500px at 80% 10%, rgba(55, 211, 166, .18), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.4;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 16, 32, .72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .4px;
}

.logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 10px 30px rgba(79, 124, 255, .25);
}

.menu {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  transition: .3s ease;
}

.menu a {
  padding: 8px 10px;
  border-radius: 10px;
  transition: .15s ease;
}

.menu a:hover {
  background: rgba(255, 255, 255, .06);
  color: var(--text);
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.burger span {
  width: 100%;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: .3s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font-weight: 700;
  transition: .15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .06);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), rgba(79, 124, 255, .65));
  border-color: rgba(79, 124, 255, .45);
  box-shadow: 0 14px 40px rgba(79, 124, 255, .18);
}

.btn.green {
  background: linear-gradient(135deg, var(--accent2), rgba(55, 211, 166, .65));
  border-color: rgba(55, 211, 166, .45);
  box-shadow: 0 14px 40px rgba(55, 211, 166, .14);
  color: #052016;
}

/* Store Buttons */
.store-link {
  display: inline-block;
  height: 42px;
  transition: transform .2s ease, filter .2s ease;
}

.store-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.store-link img {
  height: 100%;
  width: auto;
  display: block;
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.mobile-cta {
  display: none;
}

/* Hero */
.hero {
  padding: 54px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: stretch;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.08;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 22px;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.chip {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
}

.mock {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
  border-radius: 22px;
  padding: 16px;
  height: 100%;
}

.mock-top {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18)
}

.mock-screen {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .10);
  height: 330px;
  background: radial-gradient(800px 260px at 30% 10%, rgba(79, 124, 255, .22), transparent 60%),
    radial-gradient(700px 240px at 70% 30%, rgba(55, 211, 166, .15), transparent 62%),
    rgba(255, 255, 255, .03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
  font-weight: 750;
  letter-spacing: .2px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.mock-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Using contain to ensure the splash/logo is fully visible */
}

/* Sections */
section {
  padding: 30px 0;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.section-title h2 {
  margin: 0;
  font-size: 32px;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
  border-radius: 18px;
  padding: 20px;
  transition: .2s ease;
}

.card:hover {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .12);
}

.card h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.3;
}

.card.stat-card h3 {
  display: block;
  font-size: 32px;
  color: var(--accent2);
  margin-bottom: 4px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  flex-grow: 1;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(55, 211, 166, .35);
  background: rgba(55, 211, 166, .10);
  color: #c9ffef;
  font-weight: 700;
  font-size: 11px;
  margin-left: 0;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}

.card a.more {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 800;
  font-size: 14px;
  color: rgba(255, 255, 255, .92);
  opacity: .92;
}

.card a.more:hover {
  opacity: 1;
  text-decoration: underline;
}

.bullets {
  display: grid;
  gap: 12px;
}

.bullet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
  color: var(--muted);
  font-weight: 650;
}

.icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  flex-shrink: 0;
}

/* CTA */
.cta {
  margin: 20px 0 60px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(79, 124, 255, .18), rgba(55, 211, 166, .12));
  border-radius: 24px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta h3 {
  margin: 0;
  font-size: 24px;
}

.cta p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* NEWS & ARTICLES */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card .date {
  font-size: 13px;
  color: var(--accent1);
  margin-bottom: 8px;
  font-weight: 700;
}

.news-card h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.news-card .excerpt {
  font-size: 15px;
  color: var(--muted);
  flex-grow: 1;
  margin-bottom: 20px;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.article-body h2 {
  margin: 40px 0 20px;
  font-size: 28px;
  color: var(--accent2);
}

.article-body h3 {
  margin: 30px 0 15px;
  font-size: 22px;
}

.article-body p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.article-body ul {
  margin-bottom: 30px;
  padding-left: 20px;
}

.article-body li {
  margin-bottom: 10px;
  color: var(--muted);
}

.pinned-badge {
  display: inline-block;
  padding: 4px 8px;
  background: var(--accent1);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 12px;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 50px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-grid h4 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 16px;
}

.footer-grid a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-weight: 650;
  transition: .15s ease;
}

.footer-grid a:hover {
  color: var(--text);
}

.small {
  font-size: 14px;
  opacity: .9;
  margin-top: 10px;
}

/* Audience Page */
.page-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 8px;
}

.page-hero p.lead {
  font-size: 24px;
  color: var(--accent2);
  font-weight: 700;
  margin: 0 auto 24px;
}

.highlight {
  color: var(--text);
  font-weight: 700;
  font-size: 18px;
  margin-top: 20px;
}

.role-card-full {
  display: flex;
  gap: 40px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 32px;
  margin-bottom: 30px;
  scroll-margin-top: 100px;
}

.role-card-full.reverse {
  flex-direction: row-reverse;
}

.role-icon {
  font-size: 64px;
  line-height: 1;
  flex-shrink: 0;
}

.role-tagline {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.role-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.role-list h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--text);
}

.role-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.role-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 15px;
}

.role-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent2);
}

.role-price {
  background: rgba(55, 211, 166, 0.1);
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(55, 211, 166, 0.2);
  margin-bottom: 30px;
}

.role-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.store-group {
  display: flex;
  gap: 10px;
}

.summary-card {
  padding: 50px;
  text-align: center;
  background: linear-gradient(135deg, rgba(79, 124, 255, .1), rgba(55, 211, 166, .1));
}

.summary-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.summary-item {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-weight: 700;
  color: var(--text);
}

/* Organizer and General Page Styles */
.text-center {
  text-align: center;
}

.center {
  justify-content: center;
}

.mt-20 {
  margin-top: 20px;
}

.bg-muted {
  background: rgba(255, 255, 255, 0.02);
}

.bg-gradient {
  background: linear-gradient(135deg, rgba(79, 124, 255, .05), rgba(55, 211, 166, .05));
}

.promo-box {
  background: rgba(55, 211, 166, 0.1);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(55, 211, 166, 0.2);
  display: inline-block;
  margin-top: 24px;
  font-weight: 700;
}

.organizer-page .card ul {
  padding-left: 20px;
  margin: 16px 0;
  color: var(--muted);
}

.organizer-page .card li {
  margin-bottom: 8px;
  font-size: 14px;
}

.small-info {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 10px;
}

.bullet-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-bottom: 16px;
}

.bullet-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.chip-container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.feature-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.feature-chips span {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  font-weight: 600;
}

.price-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}

.price-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.price-icon {
  font-size: 40px;
}

.check-list {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent2);
  font-weight: 900;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.steps-grid.compact {
  grid-template-columns: repeat(4, 1fr);
}

.icon-large {
  font-size: 40px;
  margin-bottom: 15px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.player-page .card ul {
  padding-left: 20px;
  margin: 10px 0;
  color: var(--muted);
}

.player-page .card li {
  margin-bottom: 6px;
  font-size: 14px;
}

.step-item {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  border: 1px solid var(--border);
}

.step-num {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent);
  border-radius: 99px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 20px;
}

.cta-final {
  padding-bottom: 80px;
}

.extra-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.extra-links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: underline;
}

.extra-links a:hover {
  color: var(--text);
}

.diploma-showcase {
  margin-top: 24px;
}

.diploma-showcase h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.diploma-showcase p {
  color: var(--muted);
}

.diploma-gallery-inline {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  align-items: flex-start;
  justify-content: flex-start;
  width: auto;
  max-width: 100%;
}

.diploma-thumb {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  flex-direction: column;
  flex: 0 0 210px;
  width: 210px !important;
  min-width: 210px;
  max-width: 210px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  text-align: left;
  overflow: hidden;
  font: inherit;
  color: inherit;
  position: relative;
}

.diploma-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
}

.diploma-thumb img {
  display: block;
  width: 100% !important;
  height: 280px !important;
  max-height: 280px !important;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
}

.diploma-thumb::after {
  content: "Нажмите, чтобы увеличить";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 52px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(5, 10, 24, .72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}

.diploma-thumb:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.diploma-thumb span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.lightbox {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 24px;
  background: rgba(3, 8, 20, .92);
  display: none;
  overflow: auto;
  z-index: 9999;
}

.lightbox.active {
  display: block;
}

.lightbox-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(920px, calc(100vw - 48px));
  max-height: 90vh;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #0f1730;
  padding: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
  z-index: 10000;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .08);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.lightbox-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(90vh - 110px);
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, .02);
}

.lightbox-caption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-actions,
  .chips {
    justify-content: center;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cta {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .cta-actions {
    justify-content: center;
  }

  .role-card-full {
    flex-direction: column;
    gap: 20px;
    padding: 30px;
  }

  .role-card-full.reverse {
    flex-direction: column;
  }

  .role-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .menu {
    position: fixed;
    top: 64px;
    /* nav height */
    left: -100%;
    width: 100%;
    height: calc(100vh - 64px);
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 20px;
    gap: 20px;
    z-index: 90;
    backdrop-filter: blur(20px);
  }

  .menu.active {
    left: 0;
  }

  .menu a {
    font-size: 20px;
    width: 100%;
  }

  .nav-cta {
    display: none;
    /* Hide on small mobile to avoid clutter */
  }

  .mobile-cta {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    justify-content: center;
    width: 100%;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-dialog {
    padding: 16px;
  }

  .diploma-thumb img {
    height: 240px;
    max-height: 240px;
  }

  .diploma-thumb {
    flex-basis: 180px;
    width: 180px !important;
    min-width: 180px;
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .hero-actions .btn {
    width: 100%;
  }
}

/* SPORTISTA promo */
.sportista-cta {
  margin: 20px 0 60px;
  border: 1px solid var(--border);
  background: radial-gradient(circle at 0% 50%, rgba(55, 211, 166, .15), transparent 60%), #000;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.sportista-cta-logo {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  flex-shrink: 0;
}

.sportista-cta h2 {
  margin: 0;
  font-size: 24px;
}

.sportista-cta p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 16px;
}

.sportista-cta .cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .sportista-cta {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .sportista-cta .cta-actions {
    justify-content: center;
  }
}