:root {
  --green: #00a878;
  --gold: #ffcc33;
  --red: #e53955;
  --orange: #ff9f1c;
  --blue: #00a4ff;
  --dark: #222831;
  --light-bg: #f7f7f9;
  --text-main: #222222;
  --text-muted: #555555;
  --radius-lg: 18px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background: #ffffff;
}

.page {
  min-height: 100vh;
  background: #ffffff;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(90deg, var(--green), var(--blue));
  color: #ffffff;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-circle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-circle--footer {
  background: #ffffff;
}

.logo-circle__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 0.9rem;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.75rem;
  opacity: 0.9;
}

.top-bar__nav {
  display: flex;
  gap: 0.5rem;
}

.nav-btn {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #ffffff;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.nav-btn--primary {
  background: #ffffff;
  color: var(--dark);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.nav-btn--primary:hover {
  background: #f3f3f3;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  padding: 3rem 1.5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero__content h1 {
  font-size: clamp(2.1rem, 3.1vw, 2.6rem);
  margin: 0 0 0.75rem;
  max-width: 450px;
  line-height: 1.1;
  font-weight: 800;
}

.hero__content p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  max-width: 450px;
  line-height: 1.6;
}

.cta-btn {
  border-radius: 999px;
  border: none;
  padding: 0.7rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.hero__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
}

.hero-logo {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
}

.hero__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__badge {
  width: min(500px, 100%);
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__badge-image {
  width: 100%;
  height: auto;
  display: block;
}

.road {
  background: var(--red);
  color: #ffffff;
  padding: 2.8rem 1.5rem;
}

.road__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.road__text h2 {
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
}

.road__text p {
  margin: 0;
  line-height: 1.6;
}

.road__image-group {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.section-header {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  padding: 2.4rem 1.5rem 0.75rem;
  text-align: center;
}

.section-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.7rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

.players {
  background: #ffffff;
  padding-bottom: 2.5rem;
}

.players__grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.player-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.player-card__image {
  background: #000;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.player-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.player-card__body {
  padding: 0.9rem 1rem 1.1rem;
}

.player-card__body h3 {
  margin: 0 0 0.15rem;
  font-size: 1rem;
}

.player-team {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.player-card__body p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cta-strip {
  background: var(--orange);
  color: #ffffff;
  padding: 2.5rem 1.5rem;
}

.cta-strip__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: center;
}

.cta-strip__text h2 {
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
}

.cta-strip__text p {
  margin: 0 0 1.5rem;
  max-width: 28rem;
}

.cta-strip__text {
  margin-left: 200px;
}

.cta-strip__photo {
  width: 100%;
  max-width: 260px;
  border-radius: var(--radius-lg);
  display: block;
}

.cta-btn--strip {
  justify-self: flex-start;
  background: #ffffff;
  color: var(--dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.testimonials {
  background: #ffffff;
  padding-bottom: 3rem;
}

.testimonials__grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem 1.6rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}

.testimonial-card__tag {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  background: var(--gold);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
}

.testimonial-card__media {
  margin-bottom: 0.9rem;
}

.testimonial-card__media img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.testimonial-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.testimonial-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer {
  background: var(--blue);
  color: #ffffff;
  padding: 2.2rem 1.5rem 1.8rem;
}

.footer__top {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.5rem;
  align-items: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__badge {
  margin: 0 auto;
  max-width: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.footer__badge-image {
  width: 100%;
  height: auto;
  display: block;
}

.footer__social {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.footer__links {
  max-width: 1100px;
  margin: 0 auto 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.85rem;
}

.footer__links a {
  color: #e3f3ff;
  text-decoration: none;
}

.footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.75rem;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .hero__image {
    order: -1;
  }

  .road__inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .players__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-strip__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-strip__text {
    margin-left: 0;
  }

  .footer__top {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .footer__social {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .top-bar {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .top-bar__nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero {
    padding: 2.2rem 1.1rem 2rem;
  }

  .section-header {
    padding-inline: 1.1rem;
  }

  .players__grid,
  .testimonials__grid {
    padding-inline: 1.1rem;
    grid-template-columns: minmax(0, 1fr);
  }

  .footer {
    padding-inline: 1.1rem;
  }

  .footer__links {
    flex-direction: column;
  }
}

