:root {
  --blue: #0046b7;
  --deep: #001843;
  --text: #101014;
  --muted: #72727a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Lexend Deca", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 14px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

.container-1140 {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.page-wide {
  width: min(1840px, calc(100% - 42px));
  margin: 0 auto;
  padding: 0;
}

.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 5px rgba(0,0,0,.08);
}

.navbar { min-height: 58px; padding: 7px 0; }
.navbar-brand img { width: 197px; height: auto; }
.navbar-nav { gap: 34px; }
.navbar .nav-link {
  color: #0040a2;
  font-weight: 500;
  padding: 0;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: #002765; }

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 180px;
  height: 33px;
  padding: 0 14px;
  margin-left: 34px;
  border-radius: 999px;
  background: #bdbdbd;
  color: #fff;
}
.header-search i {
  width: 13px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
}
.header-search input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 12px;
  line-height: 33px;
  padding: 0;
  margin: 0;
}
.header-search input::placeholder { color: #f8f8f8; opacity: 1; }

.language-dropdown { margin-left: 24px; }
.language-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #333;
  font-family: inherit;
  white-space: nowrap;
}
.language-toggle img { width: 36px; height: 36px; }
.language-toggle i { font-size: 11px; color: #555; }
.language-dropdown .dropdown-menu {
  min-width: 145px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}
.product-menu .dropdown-menu {
  min-width: 172px;
  margin-top: 0;
  padding: 8px 0;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0,24,67,.16);
}
.product-menu .dropdown-item {
  padding: 10px 20px;
  color: #003c97;
  font-size: 13px;
  font-weight: 500;
}
.product-menu .dropdown-item:hover,
.product-menu .dropdown-item.active {
  color: #fff;
  background: var(--blue);
}
@media (min-width: 992px) {
  .product-menu {
    position: relative;
  }
  .product-menu > .dropdown-menu {
    top: calc(100% + 6px);
  }
  .product-menu > .dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 8px;
  }
  .product-menu:hover > .dropdown-menu,
  .product-menu:focus-within > .dropdown-menu {
    display: block;
  }
}

.hero-slider img {
  width: 100%;
  height: clamp(280px, 36.46vw, 700px);
  object-fit: cover;
}

.page-hero,
.contact-hero {
  position: relative;
  min-height: clamp(260px, 26vw, 500px);
  overflow: hidden;
}
.page-hero > img,
.contact-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  height: clamp(260px, 26vw, 500px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding-left: clamp(12px, 5vw, 70px);
}
.page-hero-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.page-hero-title img {
  width: clamp(62px, 5.4vw, 102px);
  flex: 0 0 auto;
}
.page-hero h1 {
  max-width: 850px;
  color: #fff;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.08;
}
.page-hero p {
  max-width: 760px;
  margin: 0 0 0 clamp(80px, 6.8vw, 120px);
  color: #fff;
  font-size: clamp(13px, 1.08vw, 18px);
  font-weight: 500;
}

.section { padding: 88px 0; }
.section-heading { text-align: center; margin-bottom: 54px; }
.section-heading p {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 300;
}
h1, h2, h3 {
  margin: 0;
  letter-spacing: 0;
  font-weight: 800;
}
h1 { font-size: clamp(28px, 3vw, 42px); }
h2 { font-size: clamp(22px, 2vw, 28px); }
h3 { font-size: 18px; }
p { line-height: 1.55; }

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.copy-block p { max-width: 430px; margin-bottom: 24px; }
.image-block img { margin: 0 auto; }

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  height: 34px;
  padding: 0 24px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(#06489f, #001a53);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: inset 0 1px 1px rgba(255,255,255,.25);
}
.btn-main:hover { color: #fff; filter: brightness(1.08); }

.intro-platform { padding: 82px 0 58px; }
.intro-platform .container-1140 { max-width: 920px; }
.intro-platform .section-heading { margin-bottom: 26px; }
.intro-platform .split-row { gap: 34px; }
.intro-platform .copy-block { padding-left: 5px; }
.intro-platform .copy-block p { max-width: 370px; }
.intro-platform .image-block img { width: 430px; }

.startup-section { padding: 64px 0 80px; }
.startup-section .container-1140 { max-width: 850px; }
.startup-section h2 { text-align: center; margin-bottom: 44px; }
.startup-section .split-row { gap: 58px; }
.startup-section .copy-block p { max-width: 420px; }

.home-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 72px;
  align-items: center;
}
.why-home { padding: 58px 0 76px; }
.why-home .container-1140 { max-width: 920px; }
.why-home h2 { margin-bottom: 16px; }
.why-home .btn-main { display: flex; width: 260px; margin-top: 14px; }

.stats-board {
  border: 9px solid var(--blue);
  padding: 38px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 58px;
  text-align: center;
}
.stats-board.compact {
  grid-template-columns: repeat(2, 1fr);
  padding: 34px 42px;
}
.stats-board img { width: 66px; height: 66px; margin: 0 auto 8px; object-fit: contain; }
.stats-board strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
}
.stats-board span {
  display: block;
  font-size: 12px;
  line-height: 1.15;
}

.talk-strip { padding: 40px 0 72px; }
.talk-strip .container-1140 { max-width: 850px; }
.talk-strip .split-row { gap: 65px; }
.partners {
  background: #272727;
  color: #fff;
  text-align: center;
  padding: 58px 0 60px;
}
.partners h2 { font-size: 36px; margin-bottom: 35px; color: #fff; }
.partners img { margin: 0 auto; max-width: 900px; width: 100%; }

.site-footer {
  background: var(--deep);
  color: #fff;
  padding: 55px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.7fr;
  gap: 54px;
  align-items: start;
}
.site-footer h3 { font-size: 16px; margin-bottom: 16px; }
.site-footer a {
  display: block;
  color: rgba(255,255,255,.86);
  margin-bottom: 11px;
  font-size: 13px;
}
.footer-brand { text-align: center; }
.footer-brand img {
  width: 290px;
  margin: 0 auto 18px;
  filter: brightness(0) invert(1);
}
.footer-brand p { margin: 0 0 6px; font-size: 16px; font-weight: 600; }
.footer-brand small { color: rgba(255,255,255,.75); font-size: 10px; }

.narrow { max-width: 940px; }
.reasons-intro { text-align: center; }
.reasons-intro > .container-1140 > p,
.all-reasons > .container-1140 > p,
.work-section > .container-1140 > p {
  max-width: 850px;
  margin: 22px auto 70px;
}
.feature-list {
  display: grid;
  gap: 48px;
  max-width: 790px;
  margin: 0 auto;
  text-align: left;
}
.feature-list article {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 42px;
}
.feature-list img { width: 94px; }
.feature-list h3 { margin-bottom: 10px; }
.feature-list p { margin: 0; color: var(--muted); font-size: 13px; }

.work-section {
  background: url("../img/bg_sec.jpg") center/cover no-repeat;
  text-align: center;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 120px;
  max-width: 790px;
  margin: 0 auto;
}
.work-grid img { height: 235px; object-fit: contain; margin: 0 auto 22px; }
.work-grid p { color: var(--muted); font-size: 13px; max-width: 280px; margin: 12px auto 0; }
.all-reasons { text-align: center; }
.all-reasons .stats-board { max-width: 780px; margin: 55px auto 0; }

.products-section .section-heading p { font-size: 16px; margin-top: 24px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px 36px;
  max-width: 1060px;
  margin: 0 auto;
}
.product-card {
  min-height: 590px;
  padding: 40px 36px 34px;
  border-radius: 12px;
  background: linear-gradient(#fff, #f1f7ff);
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.product-card > img {
  height: 98px;
  object-fit: contain;
  margin: 0 auto 14px;
}
.product-card h2 { font-size: 25px; margin-bottom: 14px; }
.product-card p {
  min-height: 58px;
  color: var(--muted);
  font-size: 13px;
}
.product-card ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 28px;
  text-align: left;
}
.product-card li {
  position: relative;
  padding-left: 44px;
  margin-bottom: 19px;
  color: #777b82;
}
.product-card li::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #1bd247;
}
.product-card .btn-main { width: 100%; }
.coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8fc9ff;
}

.sport-hero .page-hero-content {
  max-width: 1140px;
  padding-left: clamp(12px, 3vw, 24px);
}
.sport-hero .page-hero-title { margin-bottom: 20px; }
.sport-hero .page-hero-title img { width: 74px; }
.sport-hero .page-hero-title h1 { font-size: clamp(34px, 3vw, 54px); }
.sport-hero p {
  max-width: 680px;
  margin-left: clamp(90px, 6.2vw, 95px);
  font-size: clamp(12px, .9vw, 15px);
}

.sports-section { padding: 76px 0; }
.sports-heading {
  margin-bottom: 52px;
  text-align: center;
}
.sports-heading h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.3;
}
.core-layout {
  position: relative;
  display: grid;
  grid-template-columns: 255px minmax(390px, 520px) 285px;
  gap: 16px;
  max-width: 1070px;
  min-height: 640px;
  margin: 0 auto;
  align-items: center;
}
.core-device {
  width: min(100%, 520px);
  margin: 0 auto;
}
.sports-feature img {
  width: 175px;
  height: auto;
  margin-bottom: 20px;
}
.sports-feature h3 {
  margin-bottom: 18px;
  font-size: 17px;
}
.sports-feature ul,
.experience-card ul,
.vgames-copy ul {
  margin: 0;
  padding-left: 18px;
  color: #8b8b8f;
  font-size: 12px;
  line-height: 1.6;
}
.core-left { align-self: end; margin-bottom: 42px; }
.core-right { align-self: start; margin-top: 45px; }

.sports-layers {
  background: url("../img/bg_sec.jpg") center/cover no-repeat;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 390px));
  justify-content: center;
  gap: 82px;
}
.experience-card img {
  height: 270px;
  object-fit: contain;
  margin: 0 auto 30px;
}
.experience-card h3 { margin-bottom: 18px; font-size: 17px; }
.experience-card p { margin: 20px 0 0; color: #89898e; font-size: 12px; }

.vgames { padding-top: 86px; padding-bottom: 85px; }
.vgames-grid {
  display: grid;
  grid-template-columns: minmax(320px, 500px) minmax(300px, 430px);
  gap: 26px 64px;
  max-width: 1010px;
  margin: 0 auto;
  align-items: center;
}
.vgames-visual img {
  max-height: 330px;
  width: 100%;
  object-fit: contain;
}
.vgames-copy h3 { margin-bottom: 22px; font-size: 17px; }
.games-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #89898e;
  gap: 5px 32px;
  font-size: 12px;
  margin: 0;
  padding-left: 18px;
  line-height: 1.6;
}

.reporting { background: #f8f8f8; padding: 80px 0; }
.report-frame {
  max-width: 810px;
  padding: 45px 34px 0;
  border: 8px solid #0047b7;
  text-align: center;
  background: #fff;
}
.report-frame .sports-heading { margin-bottom: 26px; }
.report-frame .sports-heading p {
  margin: 18px 0 0;
  color: #89898e;
  font-size: 12px;
}
.report-frame > img {
  width: min(100%, 680px);
  margin: 0 auto;
}

.templates-page { background: #f7f7f7; }
.templates-list-section {
  min-height: 980px;
  padding: 70px 0 76px;
}
.templates-page-heading {
  text-align: center;
  margin-bottom: 54px;
}
.templates-page-heading h1 {
  margin-bottom: 28px;
  font-size: clamp(28px, 2.4vw, 36px);
}
.templates-page-heading p {
  font-size: clamp(16px, 1.25vw, 20px);
  margin: 0;
}
.templates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 34px;
  max-width: 1600px;
  margin: 0 auto;
}
.template-card {
  padding: 28px 32px 28px;
  border-radius: 14px;
  background: linear-gradient(#fff, #edf5ff);
  box-shadow: 0 8px 20px rgba(0,0,0,.14);
}
.template-card img {
  width: 100%;
  object-fit: contain;
  margin-bottom: 24px;
}
.template-card > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
.template-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border: 2px solid #001f56;
  border-radius: 4px;
  color: #001f56;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.template-card .btn-main {
  min-width: 0;
  width: 100%;
  height: 38px;
  padding: 0 14px;
  font-size: 13px;
  white-space: nowrap;
}
.template-load {
  display: flex;
  justify-content: center;
  margin-top: 78px;
}
.template-load .btn-main {
  min-width: 190px;
  height: 42px;
  font-size: 15px;
}

.template-demo-hero {
  min-height: 1170px;
  padding: 78px 0 66px;
  background: url("../img/template/bg.jpg") center top/cover no-repeat;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.template-demo-title {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 52px;
}
.template-demo-title img {
  width: clamp(70px, 5.2vw, 102px);
}
.template-demo-title h1 {
  color: #fff;
  font-size: clamp(34px, 3.7vw, 58px);
  line-height: 1.1;
}
.template-demo-visual {
  width: min(100%, 1120px);
  margin: 0 auto 58px;
  filter: drop-shadow(0 32px 50px rgba(0,0,0,.42));
}
.template-demo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 452px;
  height: 84px;
  border: 4px solid #48bdff;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(22px, 1.9vw, 32px);
  font-weight: 400;
  box-shadow: 0 0 14px rgba(69,184,255,.95), 0 0 26px rgba(24,103,255,.75), inset 0 0 18px rgba(34,119,255,.65);
  background: linear-gradient(180deg, rgba(0,61,154,.92), rgba(0,20,72,.96));
  transition: transform .28s ease, box-shadow .28s ease;
}
.template-demo-cta:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 0 32px rgba(41,144,255,1), inset 0 0 22px rgba(41,144,255,.75);
  background: linear-gradient(180deg, rgba(0,78,190,.95), rgba(0,27,91,.98));
}

.contact-hero {
  min-height: clamp(310px, 26vw, 500px);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}
.contact-hero div {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 32px));
}
.contact-hero h1 { font-size: clamp(44px, 5vw, 82px); margin-bottom: 30px; color: #fff; }
.contact-hero p { font-size: 18px; color: #fff; }

.contact-section { background: #fff; padding-top: 38px; padding-bottom: 95px; }
.contact-grid {
  display: grid;
  grid-template-columns: 430px 620px;
  gap: 45px;
  align-items: start;
  justify-content: center;
}
.contact-card {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 4px 22px rgba(0,0,0,.18);
  padding: 34px 36px;
}
.contact-card h2 {
  color: var(--blue);
  font-size: 21px;
  margin-bottom: 32px;
}
.contact-card h2 i { width: 24px; margin-right: 12px; text-align: center; }
.social-card { min-height: 720px; }
.social-card ul { list-style: none; padding: 0 0 0 54px; margin: 0; }
.social-card li {
  display: grid;
  grid-template-columns: 50px 1fr;
  margin-bottom: 41px;
}
.social-card b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(#075cc7, #00317f);
  color: #fff;
  font-size: 20px;
  grid-row: span 2;
}
.social-card strong { align-self: end; font-size: 17px; }
.social-card small { color: #8b8b8b; }

.contact-form label {
  display: block;
  color: #222;
  font-size: 14px;
  margin-bottom: 18px;
}
.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 30px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  min-height: 43px;
  padding: 0 18px;
  margin-top: 9px;
  font-family: inherit;
  color: #666;
}
textarea { min-height: 140px; padding-top: 18px; resize: vertical; }
.service-options label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  padding: 13px 20px;
}
.service-options strong, .service-options small { display: block; }
.service-options small { color: #777; }
.service-options input { width: 18px; min-height: 18px; margin: 0; }
.recaptcha {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 286px;
  height: 74px;
  border: 1px solid #d4d4d4;
  background: #fafafa;
  padding: 0 16px;
  margin: 0 0 25px;
  font-size: 13px;
}
.recaptcha span { width: 28px; height: 28px; border: 2px solid #555; background: #fff; }
.recaptcha b { margin-left: auto; color: #777; font-size: 10px; }
.submit-btn { width: 100%; height: 50px; font-size: 16px; margin-bottom: 18px; }
.newsletter { color: #9a9a9a; font-size: 12px; }
.newsletter input { width: 14px; min-height: 14px; margin: 0 8px 0 0; }
.security-note {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 24px 35px;
  text-align: center;
  font-size: 11px;
  margin: 22px 0;
}
.terms {
  display: block;
  color: #8b8b8b;
  text-align: center;
  font-size: 10px;
}

@media (max-width: 1199px) {
  .navbar-nav { gap: 20px; }
  .contact-grid { grid-template-columns: 360px 1fr; }
}

@media (max-width: 991px) {
  .page-wide { width: min(100% - 24px, 1140px); }
  .navbar-collapse { padding: 18px 0 12px; }
  .navbar-nav { align-items: flex-start !important; gap: 12px; }
  .header-search, .language-dropdown { margin: 16px 0 0; }
  .split-row, .home-grid, .contact-grid { grid-template-columns: 1fr; }
  .reverse-mobile .image-block { order: 2; }
  .reverse-mobile .copy-block { order: 1; }
  .copy-block p { max-width: none; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
  .social-card { min-height: auto; }
  .templates-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .template-card { padding: 26px; }
  .template-demo-hero { min-height: auto; }
  .core-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 32px;
  }
  .core-device { order: 1; max-width: 520px; }
  .core-left, .core-right {
    align-self: auto;
    margin: 0;
  }
  .core-left { order: 2; }
  .core-right { order: 3; }
  .sports-feature { max-width: 520px; margin-left: auto; margin-right: auto; }
  .vgames-grid { grid-template-columns: 1fr; gap: 32px; max-width: 520px; }
}

@media (max-width: 767px) {
  body { font-size: 13px; }
  .navbar-brand img { width: 155px; }
  .section { padding: 56px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading p { font-size: 16px; }
  .split-row { gap: 34px; }
  .hero-slider img { height: 100%; }
  .page-hero-content { padding-left: 0; align-items: center; text-align: center; }
  .page-hero-title { justify-content: center; }
  .page-hero p { margin-left: 0; }
  .home-grid { gap: 36px; }
  .stats-board, .stats-board.compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    padding: 26px 20px;
    border-width: 6px;
  }
  .feature-list article {
    grid-template-columns: 72px 1fr;
    gap: 18px;
  }
  .feature-list img { width: 66px; }
  .work-grid, .product-grid { grid-template-columns: 1fr; gap: 34px; }
  .templates-grid { grid-template-columns: 1fr; }
  .template-card { max-width: 520px; margin: 0 auto; }
  .template-card > div { gap: 12px; }
  .template-demo-title {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 34px;
  }
  .template-demo-visual { margin-bottom: 42px; }
  .template-demo-cta {
    min-width: min(100%, 340px);
    height: 64px;
  }
  .sports-section { padding: 54px 0; }
  .sports-heading { margin-bottom: 34px; }
  .experience-grid { grid-template-columns: 1fr; gap: 46px; }
  .experience-card { max-width: 390px; margin: 0 auto; }
  .sport-hero p { margin-left: 0; }
  .report-frame { padding: 30px 18px 0; border-width: 5px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .form-two { grid-template-columns: 1fr; gap: 0; }
  .contact-card { padding: 28px 22px; border-radius: 18px; }
  .social-card ul { padding-left: 0; }
  .contact-hero p { font-size: 14px; }
  .contact-hero h1 { margin-bottom: 16px; }
}

@media (max-width: 480px) {
  .container-1140 { width: min(100% - 22px, 1140px); }
  .product-card { min-height: auto; padding: 32px 24px; }
  .stats-board strong { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { text-align: left; }
  .footer-brand img { margin-left: 0; width: 220px; }
  .recaptcha { width: 100%; }
.why-home .btn-main { width: 100%; }
}

@media (max-width: 768px) {
  .sport-hero{
    min-height: clamp(260px, 40vw, 600px);
  }
  .sport-hero.page-hero > img{
    position: relative;
    width: 100%;
  }
}
/* Motion system */
.site-header {
  transition: box-shadow .25s ease, transform .25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(0,24,67,.12);
}

.navbar-brand img,
.language-toggle img,
.btn-main,
.product-card,
.contact-card,
.stats-board,
.social-card b {
  transition: transform .28s ease, box-shadow .28s ease, filter .28s ease, background .28s ease;
}

.navbar-brand:hover img,
.language-toggle:hover img {
  transform: translateY(-1px) scale(1.03);
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,39,101,.25), inset 0 1px 1px rgba(255,255,255,.25);
}

.product-card:hover,
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 34px rgba(0,24,67,.18);
}

.stats-board:hover {
  box-shadow: 0 16px 32px rgba(0,70,183,.14);
}

.social-card li:hover b {
  transform: translateY(-3px) scale(1.05);
}

.hero-slider .carousel-item img,
.page-hero > img,
.contact-hero > img {
  transform: scale(1.03);
  animation: heroBreath 12s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-slider .carousel-item.active img {
  animation: heroBreath 12s ease-in-out infinite alternate, heroEnter 1.2s ease both;
}

.page-hero-title img {
  animation: tagPulse 2.8s ease-in-out infinite;
  transform-origin: center;
}

.image-block img,
.work-grid img {
  animation: floatImage 5.5s ease-in-out infinite;
}

.intro-platform .image-block img,
.talk-strip .image-block img {
  animation-delay: .35s;
}

.startup-section .image-block img,
.work-grid article:nth-child(2) img {
  animation-delay: .75s;
}

.js-motion .reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  transition: opacity .75s ease, transform .75s ease, filter .75s ease;
  transition-delay: var(--delay, 0ms);
}

.js-motion .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.js-motion .reveal-left {
  transform: translateX(-42px);
}

.js-motion .reveal-right {
  transform: translateX(42px);
}

.js-motion .reveal-left.is-visible,
.js-motion .reveal-right.is-visible {
  transform: translateX(0);
}

.js-motion .site-footer .footer-grid > div.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.js-motion .reveal.is-leaving {
  opacity: 0;
  transform: translateY(-24px);
  filter: blur(6px);
  transition-delay: 0ms;
}

.js-motion .reveal-left.is-leaving {
  transform: translateX(-28px);
}

.js-motion .reveal-right.is-leaving {
  transform: translateX(28px);
}

.section-heading h1,
.section-heading h2,
.reasons-intro h1,
.all-reasons h2,
.work-section h2,
.startup-section h2 {
  background: linear-gradient(90deg, #101014, #0046b7, #101014);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: headlineSheen 7s ease-in-out infinite;
}

.contact-hero h1,
.page-hero h1 {
  text-shadow: 0 8px 24px rgba(0,0,0,.28);
}

.stats-board strong.counting {
  color: var(--blue);
}

.partners img {
  transition: transform .35s ease, filter .35s ease;
}

.partners img:hover {
  transform: translateY(-4px) scale(1.01);
  filter: brightness(1.08);
}

.js-motion :where(
  .section-heading > *,
  .page-hero-title,
  .page-hero-content > p,
  .contact-hero h1,
  .contact-hero p,
  .copy-block > *,
  .image-block,
  .startup-section h2,
  .reasons-intro > .container-1140 > h1,
  .reasons-intro > .container-1140 > p,
  .work-section > .container-1140 > h2,
  .work-section > .container-1140 > p,
  .all-reasons > .container-1140 > h2,
  .all-reasons > .container-1140 > p,
  .feature-list article,
  .work-grid article,
  .stats-board > div,
  .product-card,
  .social-card,
  .contact-form > *,
  .partners h2,
  .partners img,
  .site-footer .footer-grid > div,
  .templates-page-heading > *,
  .template-card,
  .template-load,
  .template-demo-title,
  .template-demo-visual,
  .template-demo-cta,
  .sports-heading,
  .sports-feature,
  .core-device,
  .experience-card,
  .vgames-grid > *,
  .report-frame
) {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
}

.js-motion .motion-prep {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
}

.js-motion .motion-prep.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.js-motion .motion-prep.reveal-left.is-visible,
.js-motion .motion-prep.reveal-right.is-visible {
  transform: translateX(0);
}

@keyframes heroBreath {
  from { transform: scale(1.02) translate3d(0,0,0); }
  to { transform: scale(1.075) translate3d(-10px,0,0); }
}

@keyframes heroEnter {
  from { opacity: .72; transform: scale(1.12); }
  to { opacity: 1; transform: scale(1.03); }
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes tagPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(0,198,255,0)); }
  50% { transform: scale(1.06); filter: drop-shadow(0 0 14px rgba(0,198,255,.35)); }
}

@keyframes headlineSheen {
  0%, 72%, 100% { background-position: 0% 50%; }
  86% { background-position: 100% 50%; }
}

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

  .js-motion .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
