:root {
  --sp-red: #d8232a;
  --sp-red-dark: #a9151b;
  --sp-gold: #f4c542;
  --sp-black: #07090d;
  --sp-ink: #151922;
  --sp-muted: #687080;
  --sp-line: #e7e9ee;
  --sp-surface: #ffffff;
  --sp-soft: #f5f6f8;
}

html,
body {
  background: var(--sp-soft);
  color: var(--sp-ink);
  font-family: "Ubuntu", Arial, sans-serif;
}

.page {
  overflow: hidden;
  background: var(--sp-surface);
}

.sports-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.38);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.sports-loader__panel {
  position: relative;
  z-index: 1;
  width: min(82vw, 280px);
  padding: 0;
  text-align: center;
}

.sports-loader__logo {
  width: auto;
  max-width: 180px;
  height: auto;
  margin-bottom: 26px;
  filter: drop-shadow(0 12px 24px rgba(7, 9, 13, 0.18));
  animation: sportsLoaderLogo 1.8s ease-in-out infinite;
}

.sports-loader__motion {
  position: relative;
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
}

.sports-loader__track {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(216, 35, 42, 0.12);
  border-top-color: var(--sp-red);
  border-right-color: var(--sp-gold);
  border-radius: 50%;
  animation: sportsLoaderRing 0.95s linear infinite;
}

.sports-loader__track::before {
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(7, 9, 13, 0.08);
  border-bottom-color: var(--sp-red);
  border-radius: inherit;
  content: "";
  animation: sportsLoaderRing 1.45s linear infinite reverse;
}

.sports-loader__ball {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: var(--sp-red);
  box-shadow: 0 0 0 8px rgba(216, 35, 42, 0.1);
  transform: translate(-50%, -50%);
  animation: sportsLoaderBall 1.2s ease-in-out infinite;
}

.sports-loader p {
  margin: 0;
  color: rgba(7, 9, 13, 0.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes sportsLoaderLogo {
  0% {
    opacity: 0.78;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-4px);
  }

  100% {
    opacity: 0.78;
    transform: translateY(0);
  }
}

@keyframes sportsLoaderRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sportsLoaderBall {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(216, 35, 42, 0.1);
    transform: translate(-50%, -50%) scale(0.86);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(244, 197, 66, 0.12);
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.rd-navbar-floated.rd-navbar-dark.rd-navbar-static,
.rd-navbar-top-panel {
  background: rgba(7, 9, 13, 0.94);
}

.slider-menu-position .rd-navbar-wrap {
  position: relative;
  z-index: 10;
}

.rd-navbar-top-panel {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rd-navbar-top-panel .contact-info {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.rd-navbar-top-panel .contact-info a,
.rd-navbar-top-panel .list-inline a {
  color: rgba(255, 255, 255, 0.78);
}

.rd-navbar-top-panel .contact-info a:hover,
.rd-navbar-top-panel .list-inline a:hover {
  color: #ffffff;
}

.rd-navbar-top-panel .icon {
  color: var(--sp-red);
}

.rd-navbar-floated.rd-navbar-static {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 9, 13, 0.86);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.rd-navbar-wrap .rd-navbar.container {
  width: 100%;
  max-width: none;
}

.rd-navbar-floated.rd-navbar-static .rd-navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.rd-navbar-floated.rd-navbar-static .rd-navbar-inner {
  min-height: 82px;
}

.rd-navbar-brand a,
.rd-navbar-mobile-brand a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.rd-navbar-brand img,
.rd-navbar-mobile-brand img {
  width: auto !important;
  height: auto !important;
  max-width: 126px;
  max-height: 58px;
  object-fit: contain;
}

.footer-brand img {
  width: auto !important;
  height: auto !important;
  max-width: 164px;
}

.rd-navbar-nav > li > a {
  position: relative;
  padding: 8px 13px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.86) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.42);
  transition: color 0.2s ease, background 0.2s ease;
}

.rd-navbar-nav > li > a span {
  color: inherit !important;
}

.rd-navbar-floated.rd-navbar-static .rd-navbar-nav > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--sp-gold);
  transition: transform 0.2s ease;
}

.rd-navbar-floated.rd-navbar-static .rd-navbar-nav > li.active > a:after,
.rd-navbar-floated.rd-navbar-static .rd-navbar-nav > li > a:hover:after {
  transform: scaleX(1);
}

.rd-navbar-nav > li.active > a,
.rd-navbar-nav > li > a:hover,
.rd-navbar-nav > li.active > a span,
.rd-navbar-nav > li > a:hover span {
  color: #ffffff !important;
}

.rd-navbar-nav > li.active > a {
  background: var(--sp-red);
  box-shadow: 0 10px 24px rgba(216, 35, 42, 0.26);
}

.rd-navbar-nav > li > a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.modern-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background: var(--sp-black);
}

.modern-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center/cover no-repeat;
  transform: scale(1.02);
}

.modern-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.92) 0%, rgba(7, 9, 13, 0.68) 46%, rgba(7, 9, 13, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 9, 13, 0.9) 0%, rgba(7, 9, 13, 0.15) 45%, rgba(7, 9, 13, 0.58) 100%);
}

.modern-hero--image-art {
  min-height: min(880px, 57.14vw);
  align-items: flex-end;
}

.modern-hero--image-art:before {
  background-position: center 43%;
  background-size: cover;
  transform: none;
}

.modern-hero--image-art:after {
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.9) 0%, rgba(7, 9, 13, 0.58) 36%, rgba(7, 9, 13, 0.1) 72%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.16), rgba(7, 9, 13, 0.6));
}

.modern-hero--image-art .modern-hero__inner {
  min-height: inherit;
  padding: 180px 0 78px;
}

.modern-hero--image-art h1 {
  max-width: 620px;
  font-size: 60px;
}

.modern-hero--image-art p {
  max-width: 560px;
}

.modern-hero--image-art .modern-hero__metrics {
  max-width: 660px;
}

.modern-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 210px 0 80px;
  text-align: left;
}

.modern-eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--sp-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.modern-eyebrow:before,
.section-eyebrow:before {
  content: "";
  width: 38px;
  height: 3px;
  background: var(--sp-red);
}

.modern-hero h1 {
  max-width: 850px;
  margin: 0;
  color: #ffffff;
  font-size: 72px;
  line-height: 0.96;
  font-weight: 800;
}

.modern-hero p {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.7;
}

.modern-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.modern-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border: 1px solid var(--sp-red);
  border-radius: 4px;
  background: var(--sp-red);
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
}

.modern-btn:hover {
  background: var(--sp-red-dark);
  border-color: var(--sp-red-dark);
  color: #ffffff;
}

.modern-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.38);
}

.modern-btn--ghost:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--sp-black);
}

.modern-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.modern-metric {
  padding: 22px 28px 0 0;
}

.modern-metric strong {
  display: block;
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
}

.modern-metric span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
}

.modern-section {
  padding: 96px 0;
  background: #ffffff;
}

.modern-section--soft {
  background: var(--sp-soft);
}

.sports-testimonial-section .parallax-container {
  position: relative;
  overflow: hidden;
}

.sports-testimonial-section .bg-overlay-gray-darkest {
  background:
    linear-gradient(120deg, rgba(7, 9, 13, 0.96), rgba(21, 25, 34, 0.88) 54%, rgba(216, 35, 42, 0.42)),
    rgba(7, 9, 13, 0.88);
}

.sports-section-motion {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sports-section-motion__line {
  position: absolute;
  left: -18%;
  width: 44%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(244, 197, 66, 0.78), transparent);
  opacity: 0.55;
  transform: rotate(-14deg);
  animation: sportsEnergyLine 6.5s linear infinite;
}

.sports-section-motion__line:nth-child(1) {
  top: 24%;
}

.sports-section-motion__line:nth-child(2) {
  top: 52%;
  animation-delay: 1.8s;
}

.sports-section-motion__line:nth-child(3) {
  top: 78%;
  animation-delay: 3.2s;
}

@keyframes sportsEnergyLine {
  from {
    transform: translateX(-20%) rotate(-14deg);
  }

  to {
    transform: translateX(320%) rotate(-14deg);
  }
}

.modern-section h1,
.modern-section h2 {
  margin-top: 0;
  color: var(--sp-black);
  font-weight: 800;
}

.modern-section p {
  color: var(--sp-muted);
  font-size: 17px;
  line-height: 1.8;
}

.modern-section .divider {
  width: 72px;
  height: 4px;
  margin-top: 22px;
  border-radius: 0;
}

.intro-section .box-icon {
  height: 100%;
  padding: 34px;
  border: 1px solid var(--sp-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 20, 30, 0.08);
  text-align: left;
}

.intro-section .box-icon .icon {
  border-color: rgba(216, 35, 42, 0.18);
  color: var(--sp-red);
}

.intro-section .box-icon h4 {
  color: var(--sp-black) !important;
  font-weight: 800;
}

.logoMarqueeSection {
  padding: 72px 0;
  background: var(--sp-black);
  color: #ffffff;
}

.logoMarqueeSection h1,
.section-bottom-66 h1 {
  font-weight: 800;
}

.marqueelogo {
  max-height: 76px;
  padding: 14px 26px;
  border-radius: 8px;
  background: #ffffff;
}

.fallback-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fallback-brand {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border: 1px solid var(--sp-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(15, 20, 30, 0.08);
  color: var(--sp-black);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.fallback-player {
  height: 100%;
  padding: 34px;
  border: 1px solid var(--sp-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(15, 20, 30, 0.08);
  text-align: left;
}

.fallback-player .mdi {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(216, 35, 42, 0.1);
  color: var(--sp-red);
  font-size: 28px;
}

.fallback-player h4 {
  margin-bottom: 12px;
  color: var(--sp-black);
  font-weight: 800;
}

.thumbnail-terry {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15, 20, 30, 0.12);
}

.quote-slider-3 {
  padding: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
}

.breadcrumb-modern {
  min-height: 360px;
}

.breadcrumb-modern .parallax-content {
  background: linear-gradient(90deg, rgba(7, 9, 13, 0.88), rgba(7, 9, 13, 0.44));
}

.breadcrumb-modern .container {
  padding-top: 110px !important;
}

.breadcrumb-modern h2 .big {
  font-weight: 800;
}

.box-member {
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(15, 20, 30, 0.1);
}

.founder-profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 58px;
  align-items: center;
  text-align: left;
}

.founder-profile__media {
  position: relative;
}

.founder-profile__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(15, 20, 30, 0.18);
}

.founder-profile__badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 16px 18px;
  border-left: 4px solid var(--sp-red);
  border-radius: 4px;
  background: rgba(7, 9, 13, 0.9);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.founder-profile__content h1 {
  margin-bottom: 6px;
}

.founder-profile__content h3 {
  margin-top: 0;
  color: var(--sp-red);
  font-weight: 800;
}

.founder-profile__content p {
  margin-top: 22px;
}

.founder-profile__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.founder-profile__highlights div {
  padding: 20px;
  border: 1px solid var(--sp-line);
  border-radius: 8px;
  background: #ffffff;
}

.founder-profile__highlights strong {
  display: block;
  color: var(--sp-black);
  font-size: 24px;
  line-height: 1;
}

.founder-profile__highlights span {
  display: block;
  margin-top: 8px;
  color: var(--sp-muted);
  font-size: 13px;
  line-height: 1.5;
}

.box-member img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.service-list .row {
  align-items: center;
  padding: 32px;
  border: 1px solid var(--sp-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(15, 20, 30, 0.08);
}

.service-list img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--sp-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(15, 20, 30, 0.08);
  text-align: left;
  overflow: hidden;
}

.service-card:after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 0;
  height: 4px;
  background: var(--sp-red);
}

.service-card__icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(216, 35, 42, 0.1);
  color: var(--sp-red);
  font-size: 30px;
}

.service-card h3 {
  margin-bottom: 14px;
  color: var(--sp-black);
  font-size: 24px;
  font-weight: 800;
}

.service-card p {
  margin: 0;
  color: var(--sp-muted);
}

.contact-card {
  height: 100%;
  padding: 34px;
  border: 1px solid var(--sp-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(15, 20, 30, 0.08);
}

.contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 42px;
  align-items: stretch;
  padding: 42px;
  border: 1px solid rgba(15, 17, 23, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(198, 40, 40, 0.08), rgba(255, 255, 255, 0) 42%),
    #ffffff;
  box-shadow: 0 20px 48px rgba(15, 17, 23, 0.08);
}

.contact-cta h1 {
  max-width: 760px;
  margin-bottom: 18px;
}

.contact-cta p {
  max-width: 760px;
  margin: 0;
}

.contact-connect-panel {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-radius: 8px;
  background: #101217;
  color: #ffffff;
}

.contact-connect-panel__label {
  margin-bottom: 16px;
  color: var(--sp-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-connect-panel p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.7;
}

.whatsapp-btn {
  position: relative;
  display: inline-flex;
  min-width: 238px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-color: #1f9d55;
  background: #1f9d55;
  box-shadow: 0 16px 34px rgba(31, 157, 85, 0.24);
  white-space: nowrap;
  overflow: visible;
}

.whatsapp-btn:hover {
  border-color: #15743e;
  background: #15743e;
  transform: translateY(-2px);
}

.whatsapp-btn strong,
.whatsapp-btn small {
  display: block;
  line-height: 1.15;
}

.whatsapp-btn small {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0.82;
  text-transform: none;
}

.whatsapp-btn__pulse {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 24px;
}

.whatsapp-btn__pulse::after {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  content: "";
  animation: clickConnectPulse 1.8s ease-out infinite;
}

@keyframes clickConnectPulse {
  0% {
    opacity: 0.72;
    transform: scale(0.72);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.contact-method {
  height: 100%;
  padding: 26px;
  border: 1px solid var(--sp-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 17, 23, 0.06);
  text-align: left;
}

.contact-method__icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(216, 35, 42, 0.1);
  color: var(--sp-red);
  font-size: 28px;
}

.contact-method h3 {
  margin-bottom: 12px;
  color: var(--sp-black);
  font-weight: 800;
}

.contact-method p {
  min-height: 56px;
  margin-bottom: 18px;
}

.contact-method a {
  color: var(--sp-red);
  font-weight: 800;
  word-break: break-word;
}

.contact-map-section {
  padding-top: 0;
}

.contact-map-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.55fr);
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 20, 30, 0.1);
}

.contact-map-copy {
  padding: 44px;
  text-align: left;
}

.modern-btn--dark {
  border-color: var(--sp-black);
  background: var(--sp-black);
}

.modern-btn--dark:hover {
  border-color: var(--sp-red);
  background: var(--sp-red);
}

.modern-map {
  width: 100%;
  height: 460px;
  overflow: hidden;
  background: var(--sp-black);
}

.modern-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.form-control {
  min-height: 50px;
  border-radius: 4px;
  border-color: var(--sp-line);
}

textarea.form-control {
  min-height: 150px;
}

.btn-danger,
.btn-default {
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-footer {
  background: #07090d !important;
}

.page-footer .row.justify-content-sm-center {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(240px, 1fr) minmax(240px, 1fr);
  gap: 34px;
  align-items: start;
}

.page-footer .row.justify-content-sm-center > [class*="col-"] {
  width: 100%;
  max-width: none;
  flex: none;
  margin-top: 0 !important;
  order: initial;
  text-align: left !important;
}

.page-footer .footer-brand {
  margin-bottom: 28px;
}

.page-footer .footer-brand img {
  max-width: 220px;
}

.page-footer .text-uppercase {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.page-footer .offset-top-30,
.page-footer .offset-top-50 {
  margin-top: 0 !important;
}

.footer-links,
.footer-contact {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
}

.page-footer p,
.page-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.page-footer a:hover {
  color: #ffffff;
}

@media (max-width: 991px) {
  body {
    min-width: 0;
  }

  .rd-navbar-brand img,
  .rd-navbar-mobile-brand img {
    max-width: 138px;
    max-height: 62px;
  }

  .rd-navbar-floated.rd-navbar-fixed .rd-navbar-panel,
  .rd-navbar-top-panel.rd-navbar-fixed .rd-navbar-panel {
    background: rgba(7, 9, 13, 0.98);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  }

  .rd-navbar-floated.rd-navbar-fixed .rd-navbar-nav-wrap,
  .rd-navbar-top-panel.rd-navbar-fixed .rd-navbar-nav-wrap {
    background: #07090d;
  }

  .rd-navbar-floated.rd-navbar-fixed .rd-navbar-nav li a,
  .rd-navbar-top-panel.rd-navbar-fixed .rd-navbar-nav li a {
    font-size: 15px;
    font-weight: 800;
  }

  .modern-hero {
    min-height: 600px;
  }

  .modern-hero--image-art {
    min-height: 58vw;
  }

  .modern-hero:before {
    background-position: 62% center;
  }

  .modern-hero--image-art:before {
    background-position: center 58%;
  }

  .modern-hero:after {
    background:
      linear-gradient(90deg, rgba(7, 9, 13, 0.94) 0%, rgba(7, 9, 13, 0.78) 56%, rgba(7, 9, 13, 0.38) 100%),
      linear-gradient(0deg, rgba(7, 9, 13, 0.9) 0%, rgba(7, 9, 13, 0.32) 48%, rgba(7, 9, 13, 0.72) 100%);
  }

  .modern-hero__inner {
    padding: 120px 0 52px;
  }

  .modern-hero h1 {
    font-size: 48px;
  }

  .modern-hero p {
    font-size: 17px;
  }

  .modern-hero__metrics {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .modern-metric {
    padding: 18px 0 0;
  }

  .modern-section {
    padding: 70px 0;
  }

  .breadcrumb-modern {
    min-height: 280px;
  }

  .breadcrumb-modern .container {
    padding-top: 110px !important;
    padding-bottom: 44px !important;
  }

  .intro-section .row,
  .player-fallback .row {
    row-gap: 22px;
  }

  .contact-card + .contact-card {
    margin-top: 22px;
  }

  .contact-cta,
  .contact-map-shell {
    grid-template-columns: 1fr;
  }

  .contact-cta {
    padding: 34px;
  }

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

  .contact-method p {
    min-height: 0;
  }

  .modern-map {
    height: 360px;
  }

  .page-footer .row.justify-content-sm-center {
    grid-template-columns: 1fr;
  }

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

  .founder-profile {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .founder-profile__highlights {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 575px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .rd-navbar-brand img,
  .rd-navbar-mobile-brand img {
    max-width: 118px;
    max-height: 52px;
  }

  .rd-navbar-floated.rd-navbar-fixed,
  .rd-navbar-top-panel.rd-navbar-fixed,
  .rd-navbar-floated.rd-navbar-fixed .rd-navbar-panel,
  .rd-navbar-top-panel.rd-navbar-fixed .rd-navbar-panel {
    height: 62px;
  }

  .modern-hero {
    min-height: auto;
    background:
      radial-gradient(circle at 84% 22%, rgba(216, 35, 42, 0.36), transparent 28%),
      linear-gradient(145deg, #07090d 0%, #151922 58%, #07090d 100%);
  }

  .modern-hero--image-art {
    min-height: auto;
    background: #07090d;
  }

  .modern-hero:before {
    inset: 0 0 auto 0;
    height: 46%;
    background: url("../manage/assets/images/banner/mobile.jpg") 63% top / auto 100% no-repeat;
    opacity: 0.7;
    transform: none;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
  }

  .modern-hero--image-art:before {
    inset: 0;
    height: auto;
    background: url("../images/home-hero-2026.png") center top / contain no-repeat;
    opacity: 1;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .modern-hero:after {
    background:
      linear-gradient(180deg, rgba(7, 9, 13, 0.2) 0%, rgba(7, 9, 13, 0.78) 32%, #07090d 58%, #07090d 100%),
      linear-gradient(90deg, rgba(7, 9, 13, 0.82), rgba(7, 9, 13, 0.2));
  }

  .modern-hero--image-art:after {
    background:
      linear-gradient(180deg, rgba(7, 9, 13, 0) 0%, rgba(7, 9, 13, 0) 36vw, #07090d 53vw, #07090d 100%);
  }

  .modern-hero__inner {
    padding: 220px 18px 42px;
    text-align: center;
  }

  .modern-hero--image-art .modern-hero__inner {
    min-height: auto;
    padding: calc(56.25vw + 28px) 18px 42px;
  }

  .modern-hero h1 {
    max-width: 320px;
    margin: 0 auto;
    font-size: 30px;
    line-height: 1.12;
  }

  .modern-hero p {
    max-width: 320px;
    margin: 18px auto 0;
    font-size: 16px;
    line-height: 1.65;
  }

  .modern-hero__metrics {
    max-width: 320px;
    margin-top: 34px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .modern-metric strong {
    font-size: 26px;
  }

  .modern-section {
    padding: 54px 0;
  }

  .modern-section h1,
  .modern-section h2 {
    font-size: 32px;
  }

  .modern-actions {
    display: grid;
  }

  .modern-btn {
    width: 100%;
  }

  .intro-section .box-icon,
  .service-list .row,
  .contact-card,
  .contact-method,
  .service-card,
  .fallback-player {
    padding: 24px;
  }

  .service-card {
    min-height: 0;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .fallback-brand-grid {
    grid-template-columns: 1fr;
  }

  .service-card-grid {
    grid-template-columns: 1fr;
  }

  .founder-profile__badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px;
  }

  .founder-profile__media img {
    aspect-ratio: 1 / 1.12;
  }

  .page-footer {
    text-align: left;
  }

  .page-footer .footer-brand img {
    max-width: 180px;
  }

  .page-footer .list-inline-item {
    margin-bottom: 8px;
  }

  .modern-map {
    height: 300px;
  }

  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .contact-page {
    padding-top: 32px;
  }

  .contact-cta {
    gap: 18px;
    padding: 22px 16px;
    text-align: center;
  }

  .contact-cta h1 {
    margin-bottom: 12px;
    font-size: 27px;
    line-height: 1.25;
  }

  .contact-cta p {
    font-size: 13px;
    line-height: 1.75;
  }

  .contact-cta .section-eyebrow {
    justify-content: center;
    margin-bottom: 14px;
    font-size: 10px;
  }

  .contact-cta .section-eyebrow:before {
    width: 28px;
  }

  .contact-connect-panel {
    padding: 18px 14px;
    text-align: center;
  }

  .contact-connect-panel__label {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .contact-connect-panel p {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.55;
  }

  .whatsapp-btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    gap: 10px;
    padding: 10px 12px;
    white-space: normal;
  }

  .whatsapp-btn__pulse {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    font-size: 20px;
  }

  .whatsapp-btn strong {
    font-size: 13px;
  }

  .whatsapp-btn small {
    font-size: 9px;
  }

  .contact-card-grid {
    gap: 14px;
    margin-top: 18px;
  }

  .contact-method {
    text-align: center;
  }

  .contact-method__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    font-size: 24px;
  }

  .contact-method h3 {
    margin-bottom: 8px;
    font-size: 21px;
  }

  .contact-map-copy {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sports-section-motion *,
  .sports-loader__logo,
  .sports-loader__track,
  .sports-loader__track::before,
  .sports-loader__ball,
  .whatsapp-btn__pulse::after {
    animation: none !important;
  }
}
