/* ==========================================================================
   ProPartners — demo iGaming-style affiliate landing page (placeholder brand)
   ========================================================================== */

:root {
  --bg-deep: #070981;
  --bg-panel: #0c1352;
  --accent: #ff5a1f;
  --accent-dark: #e0480f;
  --accent-blue: #3b5bfd;
  --accent-blue-dark: #2a46e0;
  --ink: #0b1230;
  --text-light: #f2f4ff;
  --text-muted-light: rgba(242,244,255,.65);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-light);
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}

a { text-decoration: none; }

h1 { font-size: 48px; }
p { font-size: 24px; }

@media (max-width: 991.98px) {
  h1 { font-size: 24px; }
  p { font-size: 12px; }
}

.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  text-align: center;
  margin-bottom: 2.25rem;
  color: var(--text-light);
}

.section-title.text-start { text-align: left; }

.benefits-title,
#payouts .section-title,
#partners .section-title,
#signup .section-title {
  font-size: 48px;
}

@media (max-width: 991.98px) {
  #payouts .section-title,
  #partners .section-title,
  #signup .section-title {
    font-size: 24px;
  }
}

@media (max-width: 991.98px) {
  .benefits-title { font-size: 24px; }
}

.hero-text {
  color: var(--text-muted-light);
  line-height: 1.6;
}

/* ---------- Background glow ---------- */
.page-glow {
  position: fixed;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 25% 15%, rgba(255,90,45,.28), transparent 38%),
    radial-gradient(circle at 75% 8%,  rgba(0,200,255,.22), transparent 38%),
    radial-gradient(circle at 55% 45%, rgba(170,60,255,.20), transparent 42%),
    radial-gradient(circle at 15% 75%, rgba(255,0,140,.16), transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(0,255,190,.14), transparent 40%);
  filter: blur(70px);
  transform: rotate(-12deg);
}

body > *:not(.page-glow) {
  position: relative;
  z-index: 1;
}

/* ---------- Buttons ---------- */
.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 700;
}

.btn-accent:hover, .btn-accent:focus {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn-link-light {
  color: var(--text-light);
  font-weight: 600;
}

.btn-link-light:hover { color: var(--accent); }

/* ---------- Header / brand ---------- */
body > .site-header {
  z-index: 50;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .02em;
  color: #fff;
}

.brand svg {
  display: block;
}

@media (max-width: 575.98px) {
  .brand svg { width: 150px; height: auto; }
}

.brand-star { color: var(--accent); font-size: 1rem; }
.brand-pro { color: #fff; }
.brand-partners {
  background-color: var(--accent);
  color: #fff;
  padding: .15em .5em;
  border-radius: .3rem;
  font-size: .85em;
}

.lang-pill {
  background: transparent;
  border: none;
  color: var(--text-light);
  padding: .3rem .4rem;
  font-size: .9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.flag-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: inline-flex;
}

.flag-circle svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lang-pill .bi-chevron-down {
  transition: transform .2s ease;
}

.lang-pill[aria-expanded="true"] .bi-chevron-down {
  transform: rotate(180deg);
}

.lang-dropdown {
  background: #fff;
  border: none;
  border-radius: 1rem;
  padding: .5rem;
  min-width: 230px;
  max-height: 420px;
  overflow-y: auto;
  box-shadow: 0 20px 45px rgba(0,0,0,.3);
}

.lang-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem .75rem;
  border-radius: .5rem;
  color: #2b2f4c;
  font-size: .95rem;
  font-weight: 500;
}

.lang-item:hover,
.lang-item:focus {
  background: #f2f3fb;
  color: #2b2f4c;
}

.lang-item.active {
  background: transparent;
  color: #0b1230;
  font-weight: 700;
}

.header-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,.18);
}

.header-login {
  color: var(--text-light);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
}

.header-login:hover { color: var(--accent); }

.btn-header-cta {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  padding: .5rem 1.1rem;
  border-radius: .4rem;
}

.btn-header-cta:hover, .btn-header-cta:focus {
  background-color: var(--accent-blue-dark);
  border-color: var(--accent-blue-dark);
  color: #fff;
}

.navlinks-bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: .4rem;
  padding-bottom: .4rem;
}

body > .navlinks-bar {
  z-index: 1046;
}

@media (min-width: 992px) {
  body > .navlinks-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7,9,129,.4);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0,0,0,.35);
  }
}

.navlinks-bar .navbar-nav {
  column-gap: 2.5rem;
  row-gap: .5rem;
}

.navlinks-bar .nav-link {
  color: var(--text-muted-light);
  font-weight: 700;
  font-size: 24px;
  padding: .5rem .25rem;
}

.navlinks-bar .nav-link:hover,
.navlinks-bar .nav-link.active {
  color: #fff;
}

.navbar-toggler {
  border-color: rgba(255,255,255,.3);
  padding: .25rem .5rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 .15rem rgba(255,255,255,.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: .4rem;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---------- Mobile nav overlay (offcanvas-lg) ---------- */
@media (max-width: 991.98px) {
  .mobile-nav-panel {
    top: 76px;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translateX(-50%) !important;
    width: min(90vw, 380px);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    border-radius: 1.25rem;
    background: radial-gradient(circle at 30% 15%, #1f6ff0 0%, #0d3fd6 55%, #0a2fb0 100%);
    border: none;
    box-shadow: 0 20px 50px rgba(0,0,0,.45);
  }

  .mobile-nav-panel .offcanvas-header {
    justify-content: flex-start;
    padding: 1rem 1rem 0;
  }

  .mobile-nav-panel .offcanvas-body {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem 2rem;
  }

  .mobile-nav-panel .navbar-nav {
    width: 100%;
    text-align: center;
    row-gap: 1.5rem;
  }

  .mobile-nav-panel .nav-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    padding: .25rem;
  }

  .mobile-nav-panel .nav-link:hover,
  .mobile-nav-panel .nav-link.active {
    color: #fff;
  }

  .offcanvas-backdrop {
    background: rgba(4,7,30,.7);
  }
}

/* ---------- Hero ---------- */
.hero {
  padding: 3rem 0 2.5rem;
}

.hero-title {
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #fff;
}

.promo-card {
  border-radius: 1rem;
  min-height: 150px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-panel);
}

.promo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.promo-label {
  position: relative;
  z-index: 1;
  background-color: var(--accent-blue);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: .6rem 1rem;
}

@media (min-width: 992px) {
  .promo-row { height: 387px; }
  .promo-col-casino { align-self: flex-end; }
  .promo-col-sports { align-self: flex-start; }
  .promo-card.promo-casino { height: 240px; min-height: 240px; }
  .promo-card.promo-sports { height: 313px; min-height: 270px; }
}

.stat-box {
  background: #fff;
  border-radius: .85rem;
  padding: .75rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.stat-box-label {
  color: #6b6f9a;
  font-weight: 700;
  font-size: .8rem;
  text-transform: capitalize;
  letter-spacing: .02em;
}

.stat-box-value {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
  white-space: nowrap;
}

/* ---------- Benefits (slider component, shared) ---------- */
.benefits-section, .partners-section {
  padding: 3rem 0;
}

.partners-section {
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: "MOSTBET PARTNERS";
  position: absolute;
  top: -.1em;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: clamp(3rem, 11vw, 8.5rem);
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
  color: rgba(255,255,255,.06);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.partners-section .container {
  position: relative;
  z-index: 1;
}

.partners-slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 -.25rem;
  padding: 0 .25rem;
}

.partners-slider::-webkit-scrollbar { display: none; }

.benefits-slider {
  overflow: visible;
}

.benefits-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  grid-auto-flow: row dense;
  gap: 1rem;
}

.benefit-card {
  scroll-snap-align: start;
  background: #fff;
  color: var(--ink);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .4rem;
  position: relative;
  overflow: hidden;
  min-width: 150px;
}

.benefit-card.b-wide { grid-column: span 2; }
.benefit-card.b-tall { grid-row: span 2; }

.benefit-card.b-dark {
  background: var(--bg-panel);
  color: #fff;
}

.benefit-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.benefit-card.b-image .benefit-label,
.benefit-card.b-image .benefit-big {
  position: relative;
  z-index: 1;
}

.benefit-label {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
}

@media (max-width: 991.98px) {
  .benefit-label { font-size: 12px; }
}

.benefit-big {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.b-dark .benefit-big { color: #fff; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin-top: 1.25rem;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.25);
  padding: 0;
}

.slider-dots button.active { background: var(--accent); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.slider-arrows {
  display: none;
  gap: .6rem;
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.slider-arrow:hover { background: var(--accent-blue); }

.slider-controls .slider-dots { margin-top: 0; }

@media (min-width: 768px) {
  .slider-arrows { display: flex; }
}

/* ---------- Loyalty ---------- */
.loyalty-section { padding: 3rem 0; }

.loyalty-section .section-title { font-size: 48px; }

.loyalty-section p { font-size: 24px; }

@media (max-width: 991.98px) {
  .loyalty-section .section-title { font-size: 24px; }
  .loyalty-section p { font-size: 12px; }
}

.loyalty-text {
  position: relative;
  z-index: 1;
}

.loyalty-art {
  position: relative;
  min-height: 170px;
  z-index: 0;
}

.loyalty-img {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -46px;
  bottom: -45px;
}

@media (min-width: 576px) {
  .loyalty-art { min-height: 190px; }
  .loyalty-img { width: 290px; height: 290px; right: -75px; bottom: -72px; }
}

@media (min-width: 768px) {
  .loyalty-art { min-height: 270px; }
  .loyalty-img { width: 450px; height: 450px; right: -116px; bottom: -111px; }
}

@media screen and (min-width: 1024px) {
  .loyalty-art { min-height: 340px; }
  .loyalty-img { width: 800px; height: 800px; right: -205px; bottom: -197px; }
}

/* ---------- Payouts ---------- */
.payouts-section { padding: 3rem 0; }

.payout-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
}

.payout-chip {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .75rem;
  padding: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  text-align: center;
}

.payout-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payout-grid-extra {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.payout-grid-extra .payout-chip {
  width: calc((100% - 3rem) / 4);
}

/* ---------- Partners slider ---------- */
.partners-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 340px);
  gap: 1rem;
}

@media (min-width: 992px) {
  .partners-track { grid-auto-columns: calc((100% - 1rem) / 2); }
}

.partner-card {
  scroll-snap-align: start;
  background: #fff;
  color: var(--ink);
  border-radius: 1rem;
  padding: 1.5rem;
}

.partner-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(11,18,48,.1);
}

.partner-logo {
  width: 110px;
  height: 46px;
  border-radius: .4rem;
  background: #fff;
  box-shadow: 0 1px 4px rgba(11,18,48,.12);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .8rem;
  overflow: hidden;
  flex-shrink: 0;
}

.partner-logo img,
.partner-logo svg {
  max-width: 80%;
  max-height: 70%;
}

.partner-name { font-weight: 700; }

.partner-quote {
  font-size: 16px;
  color: #444;
  line-height: 1.55;
  margin-bottom: 0;
}

/* ---------- Contact / registration ---------- */
.contact-section { padding: 3rem 0; }

.contact-subheading {
  color: var(--text-muted-light);
  font-size: 24px;
  letter-spacing: .05em;
}

@media (max-width: 991.98px) {
  .contact-subheading { font-size: 12px; }
}

.contact-card {
  position: relative;
  overflow: hidden;
  border-radius: .75rem;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  color: var(--text-light);
  flex: 1 1 220px;
  min-height: 90px;
}

.contact-card-body {
  position: relative;
  z-index: 1;
}

.contact-card-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: 60%;
  object-fit: contain;
  object-position: right center;
  z-index: 0;
}

.contact-card-telegram {
  background: var(--accent-blue);
  color: #fff;
}

.contact-card-email {
  background: #fff;
  color: var(--ink);
}

.contact-card-title {
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.contact-card-title i { font-size: .8rem; }

.contact-card-sub { font-size: .85rem; margin-top: .2rem; }

.contact-card-telegram .contact-card-sub { color: rgba(255,255,255,.8); }
.contact-card-email .contact-card-sub { color: rgba(11,18,48,.6); }

.register-card {
  background: #fff;
  color: var(--ink);
  border-radius: 1.25rem;
  padding: 1.75rem;
}

.register-card .form-control {
  background: #f4f5fa;
  border: 1px solid #e3e5ee;
  padding: .65rem .9rem;
}

.register-card .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 .2rem rgba(255,90,31,.15);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 2.5rem 0 2rem;
  background: rgba(4,7,30,.6);
}

.footer-disclaimer {
  font-size: 14px;
  color: var(--text-muted-light);
  line-height: 1.6;
  max-width: 900px;
}

.footer-hr { border-color: rgba(255,255,255,.1); }
.footer-copy-top {
  color: var(--text-muted-light);
  font-size: .8rem;
  text-align: right;
  line-height: 1.5;
}

.footer-social { color: var(--text-muted-light); }
.footer-social:hover { color: var(--accent); }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "logo logo"
    "copy copy"
    "hr   hr"
    "disc disc"
    "lang social";
  align-items: center;
  justify-items: center;
  text-align: center;
  gap: 1rem;
}
.footer-grid .footer-logo { grid-area: logo; }
.footer-grid .footer-copy-top { grid-area: copy; text-align: center; }
.footer-grid .footer-hr { grid-area: hr; width: 100%; margin: 0; }
.footer-grid .footer-disclaimer { grid-area: disc; }
.footer-grid .footer-lang { grid-area: lang; justify-self: start; }
.footer-grid .footer-social-wrap { grid-area: social; justify-self: end; }

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: auto 1fr auto auto;
    grid-template-areas:
      "logo .    copy lang"
      "disc disc disc social"
      "hr   hr   hr   hr";
    justify-items: start;
    text-align: left;
    margin-bottom: 1.5rem;
    gap: .75rem 1rem;
  }
  .footer-grid .footer-copy-top { text-align: right; }
  .footer-grid .footer-lang,
  .footer-grid .footer-social-wrap { justify-self: end; }
  .footer-grid .footer-hr { margin-top: .5rem; }
}

/* ---------- Back to top ---------- */
body > .back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  z-index: 999;
}

.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background-color: var(--accent-dark); }

body > .mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  gap: .75rem;
  padding: .75rem 1rem;
  background: rgba(6,10,46,.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.1);
  z-index: 1000;
}

.mobile-cta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .8rem 1rem;
  border-radius: 50rem;
  font-weight: 700;
  font-size: .85rem;
  white-space: nowrap;
}

.mobile-cta-telegram {
  background: #e2faec;
  color: #0d6b3f;
}

.mobile-cta-signup {
  background: var(--accent-blue);
  color: #fff;
}

@media (max-width: 767.98px) {
  body > .mobile-cta-bar { display: flex; }
  body { padding-bottom: 76px; }
  body > .back-to-top { bottom: 88px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .benefits-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .benefits-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -.25rem;
    padding: 0 .25rem;
    cursor: grab;
  }

  .benefits-slider::-webkit-scrollbar { display: none; }

  .benefits-slider.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
    user-select: none;
  }

  .benefits-track {
    grid-auto-flow: column;
    grid-template-columns: unset;
    grid-template-rows: 1fr;
    grid-auto-columns: 78%;
  }

  .benefit-card.b-wide, .benefit-card.b-tall { grid-column: span 1; grid-row: span 1; }
  .benefit-card { min-height: 180px; }

  .payout-grid { grid-template-columns: repeat(2, 1fr); }
  .payout-grid-extra .payout-chip { width: calc((100% - 1rem) / 2); }

  .partners-track { grid-auto-columns: 85%; }

  .register-card { padding: 1.25rem; }
}

@media (min-width: 768px) {
  #benefitsDots { display: none; }
}

/* ---------- Mobile layout fixes ---------- */
html, body { max-width: 100%; overflow-x: clip; overflow-y: visible; }
img, svg { max-width: 100%; height: auto; }

@media (max-width: 991.98px) {
  .hero .col-lg-7 { text-align: center; }
  .hero .col-lg-7 .d-flex { flex-direction: column; align-items: center; justify-content: center; }

  .benefits-section .section-title,
  .partners-section .section-title,
  .payouts-section .section-title { text-align: center !important; }

  .loyalty-section .col-7,
  .loyalty-section .col-5 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .loyalty-section .section-title { text-align: center !important; }
  .loyalty-section .loyalty-art {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
    margin-top: 1rem;
  }
  .loyalty-section .loyalty-img {
    position: static;
    display: block;
    margin: 0 auto;
    right: auto;
    bottom: auto;
  }

  .contact-section .col-lg-6:first-child { text-align: center; }
  .contact-section .col-lg-6:first-child .section-title { text-align: center !important; }
  .contact-section .contact-subheading { text-align: center; }
  .contact-section .contact-card {
    flex: 1 1 calc(50% - .5rem);
    min-width: 0;
    padding: .85rem .9rem;
  }
  .contact-section .contact-card-title { font-size: .8rem; }
  .contact-section .contact-card-sub { font-size: .72rem; }

  .hero .stat-row { flex-wrap: nowrap; }
  .hero .stat-row .stat-box {
    flex: 1 1 calc(50% - .5rem);
    box-sizing: border-box;
    text-align: center;
  }

  .page-glow {
    background:
      radial-gradient(circle at 25% 15%, rgba(7,9,129,.6), transparent 38%),
      radial-gradient(circle at 75% 8%,  rgba(0,200,255,.22), transparent 38%),
      radial-gradient(circle at 55% 45%, rgba(170,60,255,.20), transparent 42%),
      radial-gradient(circle at 15% 75%, rgba(255,0,140,.16), transparent 40%),
      radial-gradient(circle at 85% 85%, rgba(0,255,190,.14), transparent 40%);
  }
}

@media (min-width: 992px) {
  .loyalty-section .col-5 { flex: 0 0 45%; max-width: 45%; }
  .loyalty-section .col-7 { flex: 0 0 55%; max-width: 55%; }
  .loyalty-section .loyalty-img { width: 100%; }
}
