@charset "UTF-8";
/* ==========================================================================
   BoostMMR — modern.css
   A complete replacement for main.css (446KB → ~30KB).
   Covers ONLY the classes actually used by the JSX components.
   Design: dark esports theme, "Radiant→Dire" gradient signature,
   Chakra Petch display + Inter body.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* surfaces */
  --bg: #0a0e17;
  --surface: #121826;
  --surface-2: #1a2234;
  --surface-3: #222c44;
  --border: rgba(148, 163, 200, 0.14);
  --border-strong: rgba(148, 163, 200, 0.28);

  /* text */
  --text: #e8edf7;
  --text-muted: #9aa7c0;
  --text-faint: #6b7894;

  /* brand */
  --primary: #2f7fe8;          /* keeps the existing #2776dc brand hue */
  --primary-strong: #1f63c4;
  --primary-soft: rgba(47, 127, 232, 0.16);
  --radiant: #34d27b;          /* success / prices */
  --dire: #e84a4a;             /* danger */
  --gold: #f0b232;             /* stars / highlights */

  /* signature gradient: Radiant → brand → Dire */
  --faction-gradient: linear-gradient(90deg, #34d27b 0%, #2f7fe8 50%, #e84a4a 100%);

  /* shape & depth */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-2: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-3: 0 16px 48px rgba(0, 0, 0, 0.45);

  /* type */
  --font-display: 'Chakra Petch', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --header-h: 72px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  position: relative;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--text);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }

p {
  margin: 0 0 1em;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: #5fa0f2;
}

ul, ol {
  margin: 0 0 1em;
  padding-left: 1.4em;
}

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

table {
  border-collapse: collapse;
}

label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

blockquote {
  margin: 0 0 1em;
  padding: 12px 20px;
  border-left: 3px solid var(--primary);
  background: var(--surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-muted);
}

::selection {
  background: var(--primary-soft);
}

/* atmospheric battlefield texture behind the whole site */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url('/static/assets/images/redesign/bg-texture.jpg') center / cover no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 14, 23, 0.55), rgba(10, 14, 23, 0.2) 40%, rgba(10, 14, 23, 0.7));
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   3. Layout: containers, grid (Bootstrap-3 compatible, flex-based)
   -------------------------------------------------------------------------- */
.container,
.container-fluid {
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}

.container { max-width: 1140px; }
.container-fluid { max-width: 1280px; }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -12px;
}

.row > [class*='col'] {
  padding-inline: 12px;
  min-height: 1px;
}

/* default width: same specificity as the sized classes below, declared
   first, so .col-sm-* / .col-md-* / .col-lg-* (incl. media) win */
[class*='col-'] {
  width: 100%;
}

.col { flex: 1 0 0%; width: auto; }

/* xs: applies at all widths */
.col-xs-1  { width: 8.3333%; }
.col-xs-2  { width: 16.6667%; }
.col-xs-8  { width: 66.6667%; }
.col-xs-10 { width: 83.3333%; }
.col-xs-12 { width: 100%; }
.col-xs-offset-1 { margin-left: 8.3333%; }

.col-8  { width: 66.6667%; }
.col-12 { width: 100%; }

/* sm ≥ 576px */
@media (min-width: 576px) {
  .col-sm-1  { width: 8.3333%; }
  .col-sm-4  { width: 33.3333%; }
  .col-sm-5  { width: 41.6667%; }
  .col-sm-6  { width: 50%; }
  .col-sm-10 { width: 83.3333%; }
  .offset-sm-1 { margin-left: 8.3333%; }
  .d-sm-table-cell { display: table-cell !important; }
  .padding-top-sm-30 { padding-top: 30px; }
}

/* md ≥ 768px */
@media (min-width: 768px) {
  .col-md-3  { width: 25%; }
  .col-md-4  { width: 33.3333%; }
  .col-md-5  { width: 41.6667%; }
  .col-md-6  { width: 50%; }
  .col-md-7  { width: 58.3333%; }
  .col-md-8  { width: 66.6667%; }
  .col-md-9  { width: 75%; }
  .col-md-12 { width: 100%; }
  .col-md-offset-2 { margin-left: 16.6667%; }
  .px-md-0 { padding-inline: 0 !important; }
  .px-md-5 { padding-inline: 48px !important; }
}

/* lg ≥ 992px */
@media (min-width: 992px) {
  .col-lg-4 { width: 33.3333%; }
  .col-lg-8 { width: 66.6667%; }
  .col-lg-offset-2 { margin-left: 16.6667%; }
}

/* responsive visibility (Bootstrap-3 semantics) */
@media (max-width: 767.98px) {
  .hidden-xs { display: none !important; }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .hidden-sm { display: none !important; }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hidden-md { display: none !important; }
}

/* --------------------------------------------------------------------------
   4. Utilities
   -------------------------------------------------------------------------- */
.hide { display: none; }
.d-block { display: block !important; }
.d-none { display: none !important; }
.flex { display: flex; }
.flex-column { flex-direction: column; }
.justify-content-center { justify-content: center; }
.position-relative, .relative { position: relative; }
.pull-left { float: left; }
.pull-right { float: right; }
.pull-center { margin-inline: auto; text-align: center; }
.m-auto { margin: auto !important; }
.ml-auto { margin-left: auto !important; }
.mr-auto { margin-right: auto !important; }
.mw-100 { max-width: 100% !important; }
.w-50 { width: 50% !important; }
.p-0 { padding: 0 !important; }

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-bold { font-weight: 700; }
.text-uppercase { text-transform: uppercase; }
.text-capitalize { text-transform: capitalize; }
.text-shadow { text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6); }
.list-unstyled { list-style: none; padding-left: 0; margin-left: 0; }

.lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.font-weight-400 { font-weight: 400; }
.font-size-15 { font-size: 15px; }
.font-size-18 { font-size: 18px; }
.font-size-19 { font-size: 19px; }
.font-size-20 { font-size: 20px; }
.font-size-34 { font-size: clamp(26px, 4vw, 34px); }

.color-white { color: #fff; }
.color-green { color: var(--radiant); }
.color-red { color: var(--dire); }
.color-grey-300 { color: #c3cce0; }
.color-grey-500 { color: var(--text-muted); }
.color-grey-600 { color: var(--text-muted); }

/* dark theme surface remapping (markup says "white"/"grey", theme says dark) */
.bg-white { background: var(--surface); }
.bg-grey-50 { background: #0d1320; }
.bg-primary { background: var(--primary); color: #fff; }
.bg-warning { background: rgba(240, 178, 50, 0.15); color: var(--gold); }
.bg-transparent { background: transparent !important; }

.border-bottom-1 { border-bottom: 1px solid var(--border); }
.border-grey-300 { border-color: var(--border) !important; }
.no-border { border: 0 !important; }
.no-shadow { box-shadow: none !important; }
.no-padding { padding: 0 !important; }
.no-padding-top { padding-top: 0 !important; }
.no-padding-bottom { padding-bottom: 0 !important; }
.no-padding-left { padding-left: 0 !important; }
.no-margin-bottom { margin-bottom: 0 !important; }

/* spacing scale — generated for every step the markup uses */
.margin-top-5 { margin-top: 5px; }   .margin-top-10 { margin-top: 10px; }
.margin-top-20 { margin-top: 20px; } .margin-top-25 { margin-top: 25px; }
.margin-top-30 { margin-top: 30px; } .margin-top-50 { margin-top: 50px; }
.margin-top-60 { margin-top: 60px; }
.margin-bottom-5 { margin-bottom: 5px; }   .margin-bottom-10 { margin-bottom: 10px; }
.margin-bottom-15 { margin-bottom: 15px; } .margin-bottom-20 { margin-bottom: 20px; }
.margin-bottom-25 { margin-bottom: 25px; } .margin-bottom-30 { margin-bottom: 30px; }
.margin-bottom-35 { margin-bottom: 35px; } .margin-bottom-50 { margin-bottom: 50px; }
.margin-bottom-60 { margin-bottom: 60px; }
.margin-left-10 { margin-left: 10px; } .margin-left-20 { margin-left: 20px; }
.margin-left-30 { margin-left: 30px; }
.margin-right-10 { margin-right: 10px; } .margin-right-20 { margin-right: 20px; }
.margin-right-30 { margin-right: 30px; }

.padding-top-10 { padding-top: 10px; } .padding-top-20 { padding-top: 20px; }
.padding-top-25 { padding-top: 25px; } .padding-top-30 { padding-top: 30px; }
.padding-top-50 { padding-top: 50px; } .padding-top-60 { padding-top: 60px; }
.padding-bottom-10 { padding-bottom: 10px; } .padding-bottom-20 { padding-bottom: 20px; }
.padding-bottom-25 { padding-bottom: 25px; } .padding-bottom-40 { padding-bottom: 40px; }
.padding-bottom-50 { padding-bottom: 50px; } .padding-bottom-60 { padding-bottom: 60px; }
.padding-left-20 { padding-left: 20px; } .padding-left-30 { padding-left: 30px; }
.padding-left-40 { padding-left: 40px; } .padding-left-60 { padding-left: 60px; }
.padding-right-20 { padding-right: 20px; } .padding-right-30 { padding-right: 30px; }
.padding-right-40 { padding-right: 40px; }

/* short bootstrap-4 style spacers used in a few places */
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 8px !important; }
.mt-4 { margin-top: 24px !important; }
.mt-8 { margin-top: 48px !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-4 { margin-bottom: 24px !important; }
.mb3 { margin-bottom: 16px; }
.pt-3 { padding-top: 16px !important; }
.pl-1 { padding-left: 4px !important; }
.pl-3 { padding-left: 16px !important; }
.pr-2 { padding-right: 8px !important; }
.pr-4 { padding-right: 24px !important; }
.px-3 { padding-inline: 16px !important; }
.px-5 { padding-inline: 48px !important; }
.py-1 { padding-block: 4px !important; }

/* --------------------------------------------------------------------------
   5. Header & navigation
   -------------------------------------------------------------------------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 23, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

/* signature: faction gradient hairline */
header .nav-top {
  height: 3px;
  background: var(--faction-gradient);
}

header > .container-fluid {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--header-h);
}

header .logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

header .logo img {
  height: 36px;
  width: auto;
}

header nav {
  flex: 1;
  min-width: 0;
}

.nav-control ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-control a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-control a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

header .nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

/* hamburger */
span.bar {
  position: relative;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  cursor: pointer;
  flex-shrink: 0;
}

span.bar::before,
span.bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

span.bar::before { top: -8px; }
span.bar::after { top: 8px; }

/* mobile nav */
@media (max-width: 991.98px) {
  span.bar { display: block; } /* span.bar out-specifies .hide */

  header nav {
    position: fixed;
    inset: calc(var(--header-h) + 3px) 0 auto 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-3);
    padding: 12px 20px 20px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s;
  }

  body.nav-open header nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  body.nav-open span.bar { background: transparent; }
  body.nav-open span.bar::before { transform: translateY(8px) rotate(45deg); }
  body.nav-open span.bar::after { transform: translateY(-8px) rotate(-45deg); }

  .nav-control ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .nav-control a {
    padding: 13px 14px;
    font-size: 1rem;
  }

  header .nav-right .btn { padding: 9px 14px; font-size: 0.82rem; }
}

@media (max-width: 575.98px) {
  header .nav-right a[style] { width: auto !important; } /* tame inline 14em logout width */
}

/* login / order header buttons */
.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--surface-3);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  cursor: pointer;
  user-select: none;
  transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  color: var(--text);
}

.btn:active { transform: translateY(0); }

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn[disabled],
.btn.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(180deg, #3a8cf0, var(--primary-strong));
  color: #fff;
  box-shadow: 0 4px 14px rgba(47, 127, 232, 0.35);
}
.btn-primary:hover { color: #fff; box-shadow: 0 6px 20px rgba(47, 127, 232, 0.5); }

.btn-success {
  background: linear-gradient(180deg, #3bd685, #23a861);
  color: #06120b;
  box-shadow: 0 4px 14px rgba(52, 210, 123, 0.3);
}
.btn-success:hover { color: #06120b; box-shadow: 0 6px 20px rgba(52, 210, 123, 0.45); }

.btn-danger,
.btn-error {
  background: linear-gradient(180deg, #ef5b5b, #cc3a3a);
  color: #fff;
}
.btn-danger:hover, .btn-error:hover { color: #fff; }

.btn-info {
  background: var(--primary-soft);
  border-color: rgba(47, 127, 232, 0.4);
  color: #7db4f5;
}

.btn-inverse,
.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-inverse:hover, .btn-outline:hover {
  border-color: var(--primary);
  color: #fff;
  background: var(--primary-soft);
}

.btn-white {
  background: #f4f7fd;
  color: #16203a;
}
.btn-white:hover { color: #16203a; background: #fff; }

.btn-top500 {
  background: linear-gradient(180deg, #f5c044, #d99a17);
  color: #221700;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-round { border-radius: 999px; }

/* --------------------------------------------------------------------------
   7. Hero sections
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  background-position: center 30%;
  background-size: cover;
  filter: saturate(1.05);
}

.hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 23, 0.55) 0%, rgba(10, 14, 23, 0.82) 70%, var(--bg) 100%);
}

.hero-land .hero-bg { background-image: url('/static/assets/images/hero-land-250.jpg'); }
.hero-land-small .hero-bg { background-image: url('/static/assets/images/hero-sales.jpg'); }
.hero-game .hero-bg { background-image: url('/static/assets/images/bgdota.jpg'); }

.hero .container,
.hero .container-fluid {
  position: relative;
  z-index: 1;
}

.hero .page-header {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(60px, 10vw, 120px) 0 clamp(48px, 8vw, 96px);
  text-align: center;
}

.hero .page-header h1 {
  margin: 0 0 14px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7);
}

.hero .page-header p {
  font-size: 1.08rem;
  margin-bottom: 28px;
}

/* generic page headers outside the hero */
.page-header,
.page-header1,
.order-page-header {
  padding: 36px 0 12px;
}

.page-title { margin-bottom: 8px; }

/* boost-page hero (the form lives in here) */
section.hero-candy {
  position: relative;
  background:
    linear-gradient(180deg, rgba(10, 14, 23, 0.82), rgba(10, 14, 23, 0.94)),
    url('/static/assets/images/hero-candy.jpg') center / cover no-repeat;
  border-bottom: 1px solid var(--border);
}

section.hero-candy::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--faction-gradient);
  opacity: 0.7;
}

section.hero-candy.sales { padding-top: 40px; }

.hero-background {
  background:
    radial-gradient(900px 400px at 80% 0%, rgba(47, 127, 232, 0.12), transparent 60%),
    #0d1320;
}

/* --------------------------------------------------------------------------
   8. Sections & content blocks
   -------------------------------------------------------------------------- */
section { position: relative; }

section.elements { padding: 48px 0; }

/* section heading style used by the review carousel */
.title.outline {
  text-align: center;
  margin-bottom: 36px;
}

.title.outline h4 {
  display: inline-block;
  position: relative;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  padding-bottom: 14px;
}

.title.outline h4::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 72px;
  height: 3px;
  border-radius: 3px;
  background: var(--faction-gradient);
}

.title.outline h5 { color: var(--text-muted); font-family: var(--font-body); font-weight: 400; }
.title.outline h5 b { color: var(--gold); font-size: 1.15em; }

/* "feel free to get in touch" strip */
.tab-select {
  padding: 8px 16px;
}
.tab-select.empty p { margin: 0; color: var(--text-muted); }

/* info feature blocks on the homepage */
.info { margin-bottom: 28px; }
.info-horizontal { display: flex; gap: 16px; text-align: left; }
.info .info-title,
.info .info-title1 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--text);
}
.info .description { color: var(--text-muted); }
.info-hover:hover .info-title { color: var(--primary); }

.icon { font-size: 1.6rem; color: var(--primary); }
.icon-info { color: var(--primary); }

.feature__img { border-radius: var(--radius); box-shadow: var(--shadow-2); }

.promo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.lazy-image { border-radius: var(--radius); }

.caption { font-size: 0.85rem; color: var(--text-faint); }
.category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   9. Filter tabs (boost service switcher) & tab panes
   -------------------------------------------------------------------------- */
ul.filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 6px;
  margin: 0 0 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
}

ul.filter li a {
  display: block;
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

ul.filter li a:hover { color: var(--text); }

ul.filter li.active a {
  background: linear-gradient(180deg, #3a8cf0, var(--primary-strong));
  color: #fff;
  box-shadow: 0 2px 10px rgba(47, 127, 232, 0.4);
}

@media (max-width: 575.98px) {
  ul.filter { border-radius: var(--radius-lg); }
  ul.filter li { flex: 1 1 auto; }
  ul.filter li a { text-align: center; }
}

/* tab panes (markup keeps Bootstrap-3 tab classes) */
.tab-content { position: relative; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.fade { transition: opacity 0.15s linear; opacity: 0; }
.fade.in { opacity: 1; }

/* --------------------------------------------------------------------------
   10. Forms
   -------------------------------------------------------------------------- */
.form-control {
  display: block;
  width: 100%;
  padding: 12px 14px;
  background: rgba(8, 12, 20, 0.7);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control::placeholder { color: var(--text-faint); }

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.form-control[disabled] { opacity: 0.5; cursor: not-allowed; }

textarea.form-control { min-height: 130px; resize: vertical; }

.form-group { margin-bottom: 18px; }
.form-row { display: flex; flex-wrap: wrap; gap: 12px; }
.form-vertical .form-group { display: block; }

/* MMR input group: label on top, steppers flanking a big number input */
.form-group-skill-rating {
  text-align: center;
  margin-bottom: 14px;
}

.form-group-skill-rating label {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: 0.12em;
}


/* hide number spinners */
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type='number'] { -moz-appearance: textfield; appearance: textfield; }

/* input groups (contact / steam forms) */
.input-group {
  display: flex;
  width: 100%;
}

.input-group .form-control {
  flex: 1;
  border-radius: 0 10px 10px 0;
}

.input-group-addon,
.addon {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  border-right: 0;
  border-radius: 10px 0 0 10px;
  color: var(--text-muted);
}

/* demo/order markup nests <div class="input-group addon"> as a WRAPPER —
   undo the chip styling on it and keep it as a flex group */
.input-group.addon {
  flex: 1;
  display: flex;
  align-items: stretch;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
}

.form-row > .col { flex: 1 1 220px; }

.input-icon-left { position: relative; }

/* checkboxes */
.checkbox { margin: 8px 0; }
.checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
}

.checkbox input[type='checkbox'],
.checkbox-control,
.order-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

.checkbox-inline { display: inline-flex; margin-right: 16px; }
.checkbox-primary input { accent-color: var(--primary); }

.validate:invalid { border-color: var(--dire); }

.g-recaptcha-submit { margin-top: 16px; }

/* --------------------------------------------------------------------------
   11. Slider caption (replaces legacy static tooltips)
   -------------------------------------------------------------------------- */
.slider-caption {
  margin: 4px 0 2px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.slider-caption .fa { color: var(--primary); margin-right: 4px; }
.slider-caption b { color: var(--text); }


/* --------------------------------------------------------------------------
   12. Checkout summary
   -------------------------------------------------------------------------- */
.checkout-summary {
  margin-top: 40px;
  padding: 26px 22px;
  background: rgba(18, 24, 38, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  text-align: center;
  color: #fff;
  font-size: 1.05rem;
}

.checkout-summary b { color: var(--radiant); font-size: 1.1em; }

.mmr-checkout {
  max-width: min(420px, 100%) !important; /* overrides legacy inline 33% cap */
  margin-inline: auto !important;
}

.review-summary { color: var(--text-muted); }

/* --------------------------------------------------------------------------
   13. Reviews / testimonials (slick carousel)
   -------------------------------------------------------------------------- */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  min-height: 200px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 127, 232, 0.4);
}

.testimonial p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.testimonial em { font-style: normal; }

.testimonial em::before { content: '\201C'; color: var(--primary); font-weight: 700; }
.testimonial em::after { content: '\201D'; color: var(--primary); font-weight: 700; }

.testimonial .stars {
  display: flex;
  gap: 2px;
  margin: 10px 0 6px;
}

.testimonial .stars img { width: 18px; height: 18px; }

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  margin-left: 0 !important;
}

.testimonial-name span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--text-faint);
}

.slick-list { margin: 0 -10px; }
.slick-slide > div { padding: 0 0; }
.slick-track { display: flex; }
.slick-track .slick-slide { height: auto; }
.slick-slide .testimonial { height: 100%; }

/* reviews page: responsive card grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
  padding-top: 10px;
}

.reviews-grid .testimonial { min-height: 170px; }

/* footer support items */
.footer-support-item {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-support-item .fa {
  color: var(--radiant);
  margin-right: 6px;
}

/* --------------------------------------------------------------------------
   14. Cards, panels, alerts, badges, labels
   -------------------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--border-strong);
}

.card-header {
  margin: 0;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
}

.card-body { padding: 20px; }
.card-title { margin-bottom: 8px; }
.card-text { color: var(--text-muted); }
.card-img { width: 100%; border-radius: 0; }

.card-order-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.card-order-summary-details { color: var(--text-muted); }

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.panel-default { border-color: var(--border); }
.panel-body { padding: 18px 20px; }

.alert-info {
  padding: 14px 18px;
  background: var(--primary-soft);
  border: 1px solid rgba(47, 127, 232, 0.4);
  border-radius: var(--radius);
  color: #aecdf7;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--surface-3);
  color: var(--text);
}

.badge-info { background: var(--primary-soft); color: #7db4f5; }
.badge-success { background: rgba(52, 210, 123, 0.15); color: var(--radiant); }
.badge-lose { background: rgba(232, 74, 74, 0.15); color: #f08a8a; }

.label {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}

.label-primary { background: var(--primary); color: #fff; }
.label-success { background: var(--radiant); color: #06120b; }
.label-online {
  background: rgba(52, 210, 123, 0.15);
  color: var(--radiant);
}
.label-online::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--radiant);
}

/* --------------------------------------------------------------------------
   15. Tables & progress
   -------------------------------------------------------------------------- */
.table-responsive { overflow-x: auto; }

.table {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.table th,
.table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.table th {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
}

.table tr:last-child td { border-bottom: 0; }
.table tbody tr:hover td { background: rgba(255, 255, 255, 0.025); }

.progress {
  height: 18px;
  background: var(--surface-3);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-width: fit-content;
  padding-inline: 10px;
  border-radius: 999px;
  background: var(--faction-gradient);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  transition: width 0.4s ease;
}

/* --------------------------------------------------------------------------
   16. Order page & chat
   -------------------------------------------------------------------------- */
.order-page-header {
  padding: 20px 0;
  background: linear-gradient(180deg, rgba(18, 24, 38, 0.85), rgba(13, 19, 32, 0.85));
  border-block: 1px solid var(--border);
}

.order-page-header-content { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.order-page-header-content > img { height: 44px; width: auto; flex-shrink: 0; }
.order-page-header .order-status h4 { margin: 0; }
.order-page-header .desc-order { font-weight: 400; }

.order-header {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 14px 0 10px;
}

.order-header-elem {
  display: flex;
  flex-direction: column-reverse;
  gap: 2px;
  padding: 2px 22px;
  border-left: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.order-header-elem small {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.order-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  margin-right: 22px;
}

.order-status { font-weight: 700; color: var(--radiant); }

/* pause / spectate ghost buttons */
.order-actions { margin-left: auto; }
.area-button {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.area-button:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
}
.order-description, .desc-order { color: var(--text-muted); }
.order-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.order-qa-elem {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 12px;
}

.order-qa-question {
  font-size: 0.98rem;
  margin-bottom: 6px;
  color: var(--text);
}

.order-qa-answer {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.chat-message {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 10px;
  max-width: 85%;
}

.chat-message.me {
  margin-left: auto;
  background: var(--primary-soft);
  border-color: rgba(47, 127, 232, 0.35);
}

.chat-name { font-weight: 700; font-size: 0.8rem; color: var(--primary); }

#chat-messages { padding: 4px 0 10px; }
#chat-messages .row { display: block; margin: 0; }
#chat-messages [class*='col'] { padding: 0; }
#chat-messages .me .chat-message { margin-left: auto; }

#chat-form textarea.form-control {
  min-height: 46px;
  resize: none;
  padding: 12px 44px 12px 14px !important;
}

#send-message {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--primary);
}

#send-message::before {
  content: '\27A4';
  font-size: 1rem;
}

#send-message.disabled { color: var(--text-faint); pointer-events: none; }
.chat-time { font-size: 0.72rem; color: var(--text-faint); }
.chat-message-text { color: var(--text); }

/* --------------------------------------------------------------------------
   17. Blog / content pages
   -------------------------------------------------------------------------- */
.post { margin-bottom: 40px; }
.post-single .lead { font-size: 1.05rem; }
.post-title { margin-bottom: 10px; }
.post-header { margin-bottom: 20px; }
.post-meta,
.post-author {
  font-size: 0.85rem;
  color: var(--text-faint);
}
.post-thumbnail { border-radius: var(--radius-lg); margin-bottom: 24px; box-shadow: var(--shadow-2); }
.post img { border-radius: var(--radius); }

.sidebar .widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
}

.widget-list { list-style: none; padding: 0; margin: 0; }
.widget-list li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.widget-list li:last-child { border-bottom: 0; }
.widget-list-title { font-weight: 600; }
.widget-list-meta { font-size: 0.8rem; color: var(--text-faint); }

/* --------------------------------------------------------------------------
   18. Embeds, misc components
   -------------------------------------------------------------------------- */
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
}

.embed-responsive-16by9 { aspect-ratio: 16 / 9; }

.embed-responsive .embed-responsive-item,
.embed-responsive iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.accounts .card { height: 100%; }
.coach-platform { color: var(--text-muted); }
.area-button { display: inline-block; }
.leftside { text-align: left; }
.rightside { text-align: right; }
.image { max-width: 100%; }

/* legacy "now-ui" icon hooks: the icon font is gone, render clean glyph fallbacks */
.now-ui-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  font-style: normal;
  font-size: 1.2rem;
}
.now-ui-icons-multiple-11::before { content: '\2694'; }
.now-ui-icons-chart-bar-33::before { content: '\25B2'; }

/* standout review variant */
.testimonial-primary {
  border-color: rgba(47, 127, 232, 0.45);
  background: linear-gradient(180deg, rgba(47, 127, 232, 0.08), var(--surface));
}

/* simple entrance animation hooks used in markup */
.animated { animation-duration: 0.7s; animation-fill-mode: both; }
.animate1 { animation-delay: 0.1s; }

@keyframes bounceInDown {
  from { opacity: 0; transform: translate3d(0, -40px, 0); }
  60% { opacity: 1; transform: translate3d(0, 6px, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.bounceInDown { animation-name: bounceInDown; }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
footer {
  margin-top: 64px;
  background: #070b13;
  border-top: 1px solid var(--border);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--faction-gradient);
  opacity: 0.5;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  max-width: 1140px;
  margin-inline: auto;
  padding: 56px 20px 40px;
}

.footer-copyrights {
  flex: 1 1 360px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-logo { height: 32px; width: auto; margin-bottom: 18px; }

.footer-disclaimer { font-size: 0.78rem; color: var(--text-faint); }
.footer-copyright { font-size: 0.78rem; color: var(--text-faint); }

.footer-pages-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  flex: 1 1 380px;
}

.footer-pages { min-width: 140px; }

.footer-section-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}

.footer-pages ul li { padding: 5px 0; }

.footer-pages a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-pages a:hover { color: var(--text); }

/* --------------------------------------------------------------------------
   20. rc-slider theme override (loaded after rc-slider/assets/index.css)
   -------------------------------------------------------------------------- */
.rc-slider { margin: 8px 0 36px; }
.rc-slider-rail { background: var(--surface-3); height: 8px; border-radius: 999px; }
.rc-slider-track { background: linear-gradient(90deg, var(--radiant), var(--primary)); height: 8px; }
.rc-slider-handle {
  width: 22px;
  height: 22px;
  margin-top: -7px;
  background: #fff;
  border: 3px solid var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.rc-slider-handle:active,
.rc-slider-handle:focus {
  border-color: var(--radiant);
  box-shadow: 0 0 0 4px var(--primary-soft);
}
.rc-slider-mark-text { color: var(--text-faint); font-size: 0.74rem; }
.rc-slider-mark-text-active { color: var(--text-muted); }
.rc-slider-dot { background: var(--surface-3); border-color: var(--border-strong); }
.rc-slider-dot-active { border-color: var(--primary); }
.rc-slider-disabled { background: transparent; opacity: 0.5; }

/* ==========================================================================
   21. PREMIUM PASS — boost-page form refinements
   ========================================================================== */

/* --- MMR input cards: uniform anatomy across ALL services ------------------ */
/* GEOMETRY IS FIXED. Content never decides size: any row holding skill cards
   becomes a strict 1fr/1fr grid; every internal slot has a locked height.   */
.row:has(> .form-group-skill-rating) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-inline: 0;
  position: relative;
}

/* single-input services (Coaching, Low Priority, Battle Cup): one centered card */
.row:has(> .form-group-skill-rating) > .form-group-skill-rating:only-child {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 320px;
  margin-inline: auto !important;
}

/* arrow between the two fields (only when there are two) */
.row:has(> .form-group-skill-rating)
  > .form-group-skill-rating:first-child:not(:only-child)::after {
  content: '\2192';
  position: absolute;
  top: 50%;
  right: -16.5px;
  transform: translateY(-50%);
  color: var(--text-faint);
  font-size: 0.95rem;
  pointer-events: none;
}

@media (max-width: 575.98px) {
  .row:has(> .form-group-skill-rating) { grid-template-columns: 1fr; }
  .row:has(> .form-group-skill-rating)
    > .form-group-skill-rating:first-child::after { display: none; }
}

.form-group-skill-rating {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto !important;
  margin: 0 !important;
  padding: 16px 12px 12px !important;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.15s ease;
}

.form-group-skill-rating:focus-within {
  border-color: rgba(47, 127, 232, 0.5);
}

.form-group-skill-rating br { display: none; }

/* fixed-height medal slot keeps both cards identical */
.form-group-skill-rating img,
.rank-medal {
  display: block;
  width: auto;
  height: 52px;
  flex: 0 0 52px;
  object-fit: contain;
  margin: 2px auto 0 !important;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
}

/* SkillInput internal slots */
.skill-input {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.skill-input { width: 100%; }

.skill-input label {
  display: block;
  height: 14px;
  margin: 0 0 10px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  line-height: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* the joined control: [-][input][+] or [input], always the same footprint */
.skill-input-controls {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 168px;
  margin-inline: auto;
  height: 46px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: rgba(8, 12, 20, 0.7);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.skill-input-controls:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.skill-input-controls .form-control {
  flex: 1;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 0 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.skill-input-controls .form-control:focus {
  border: 0;
  box-shadow: none;
  outline: none;
}

.stepper {
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-size: 0.78rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.stepper-minus { border-right: 1px solid var(--border); color: #f08a8a; }
.stepper-plus { border-left: 1px solid var(--border); color: var(--radiant); }

.stepper:hover { background: rgba(255, 255, 255, 0.09); }
.stepper-minus:hover { color: #f4a5a5; }
.stepper-plus:hover { color: #5fe09a; }

.stepper[disabled] { opacity: 0.4; cursor: not-allowed; }

.stepper:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

/* hint slot is ALWAYS rendered at a FIXED height, so cards never drift */
.skill-hint-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  margin-top: 6px;
  overflow: hidden;
  padding-inline: 4px;
}

.skill-hint {
  font-size: 0.72rem;
  line-height: 1.3;
  color: var(--text-muted);
}

/* --- Boost option add-ons: toggle switches --------------------------------- */
.row:has(> .order-checkbox) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
  margin-inline: 0;
}

.order-checkbox {
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.order-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  margin: 0;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
  transition: border-color 0.15s ease, background 0.15s ease;
  user-select: none;
}

.order-option:hover { border-color: var(--border-strong); }

/* row lights up when its (hidden) checkbox is on */
.order-option:has(.order-option-input:checked) {
  border-color: rgba(52, 210, 123, 0.55);
  background: rgba(52, 210, 123, 0.07);
}

.order-option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.72rem;
}

.order-option-name {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.order-option-topup {
  flex-shrink: 0;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--radiant);
}

.order-option-info {
  flex-shrink: 0;
  color: var(--text-faint);
  cursor: help;
  transition: color 0.15s ease;
}

.order-option-info:hover { color: var(--text); }

/* hidden native checkbox keeps a11y + the original onClick handler */
.order-option-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

/* the switch */
.order-option-switch {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 22px;
  margin-left: auto;
  border-radius: 999px;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.order-option-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #aeb9d2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), background 0.18s ease;
}

.order-option-input:checked ~ .order-option-switch {
  background: var(--radiant);
  border-color: var(--radiant);
}

.order-option-input:checked ~ .order-option-switch::after {
  transform: translateX(16px);
  background: #06120b;
}

.order-option-input:focus-visible ~ .order-option-switch {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* boost-type selector heading + its info icon */
.order-create .pull-right[data-tooltip-id] {
  color: var(--text-faint);
  cursor: help;
  margin-top: -28px;
}
.order-create .pull-right[data-tooltip-id]:hover { color: var(--text); }

/* --- Checkout summary & dark react-select --------------------------------- */
.checkout-summary {
  font-size: 1rem;
}

.checkout-summary [class*='orderDescriptionContainer'] {
  gap: 6px 14px;
  font-size: 1.02rem;
}

.mmr-checkout { margin-top: 22px !important; }
.mmr-checkout .btn { width: 100%; }

/* --- Slider: slightly stronger marks -------------------------------------- */
.rc-slider-mark-text { color: #7d89a6; }
.rc-slider-mark-text-active { color: #aeb9d2; }

/* ==========================================================================
   22. FULL-SITE REDESIGN — homepage, boost layout, demo, animations
   ========================================================================== */

/* --- shared bits ----------------------------------------------------------- */
.text-gradient {
  background: linear-gradient(90deg, #5fa0f2, #34d27b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.eyebrow img { width: 26px; height: 26px; }

/* --- animations ------------------------------------------------------------ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.06); }
}

/* entrance: children of .stagger fade up in sequence on load */
.stagger > * {
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.13s; }
.stagger > *:nth-child(3) { animation-delay: 0.21s; }
.stagger > *:nth-child(4) { animation-delay: 0.29s; }
.stagger > *:nth-child(5) { animation-delay: 0.37s; }
.stagger > *:nth-child(6) { animation-delay: 0.45s; }

/* scroll reveal: progressive enhancement, fully visible where unsupported */
@supports (animation-timeline: view()) {
  .reveal {
    animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-timeline: view();
    animation-range: entry 0% entry 38%;
  }
}

/* --- HOMEPAGE: hero -------------------------------------------------------- */
.home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 480px at 78% 30%, rgba(47, 127, 232, 0.16), transparent 65%),
    radial-gradient(560px 420px at 12% 85%, rgba(52, 210, 123, 0.07), transparent 60%),
    url('/static/assets/images/bgdota.jpg') center / cover no-repeat;
}

.home-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 14, 23, 0.96) 35%, rgba(10, 14, 23, 0.72) 70%, rgba(10, 14, 23, 0.55));
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 40px;
  padding: clamp(56px, 8vw, 104px) 0 clamp(40px, 6vw, 80px);
}

.home-hero-copy h1 {
  margin: 22px 0 18px;
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  line-height: 1.08;
}

.home-hero-copy .lead { max-width: 56ch; }

.home-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 34px;
}

.home-hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  width: fit-content;
  padding-right: 36px;
}

.home-hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
}

.home-hero-stats .stat span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.home-hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}

.home-hero-art img {
  position: relative;
  z-index: 1;
  max-height: 480px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.6));
  animation: floatY 7s ease-in-out infinite;
}

.home-hero-glow {
  position: absolute;
  inset: 12% 6%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(47, 127, 232, 0.35), transparent 70%);
  filter: blur(28px);
  animation: glowPulse 7s ease-in-out infinite;
}

@media (max-width: 991.98px) {
  .home-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .home-hero-copy .lead { margin-inline: auto; }
  .home-hero-cta, .home-hero-stats { justify-content: center; margin-inline: auto; padding-right: 0; }
  .home-hero-art { order: -1; }
  .home-hero-art img { max-height: 280px; }
}

/* --- HOMEPAGE: service cards ------------------------------------------------ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 127, 232, 0.5);
  box-shadow: var(--shadow-3);
  color: inherit;
}

.service-card-art {
  position: relative;
  height: 190px;
  background:
    radial-gradient(360px 200px at 50% 110%, rgba(47, 127, 232, 0.22), transparent 70%),
    linear-gradient(180deg, #0d1320, #131a2a);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.service-card-art::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(18, 24, 38, 0.9));
}

.service-card-art img {
  position: relative;
  max-height: 175px;
  width: auto;
  transition: transform 0.25s ease;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.service-card:hover .service-card-art img { transform: translateY(-6px) scale(1.04); }

.service-card-body {
  position: relative;
  z-index: 1;
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-card-body p { color: var(--text-muted); font-size: 0.94rem; flex: 1; }

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
}

.service-card-link .fa { transition: transform 0.2s ease; font-size: 0.75rem; }
.service-card:hover .service-card-link .fa { transform: rotate(90deg); }

/* --- HOMEPAGE: trust statement + stats ---------------------------------------- */
.trust-statement {
  max-width: 21ch;
  margin: 0 0 48px;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: 0.005em;
}

.trust-statement-strong { color: var(--text); }
.trust-statement-muted { color: #6f7c9a; }

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

@media (max-width: 991.98px) {
  .trust-stats { grid-template-columns: 1fr; gap: 18px; margin-bottom: 44px; }
  .trust-statement { max-width: none; margin-bottom: 36px; }
}

.trust-stat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.trust-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--primary-soft);
  border: 1px solid rgba(47, 127, 232, 0.35);
  color: var(--primary);
  font-size: 1.05rem;
}

.trust-stat h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.trust-stat p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* --- HOMEPAGE: trust split --------------------------------------------------- */
.home-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 44px;
  align-items: center;
}

.home-trust-art {
  margin: 0;
  position: relative;
}

.home-trust-art img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-3);
}

.home-trust-art::before {
  content: '';
  position: absolute;
  inset: -14px -14px auto auto;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-lg);
  background: var(--faction-gradient);
  opacity: 0.25;
  filter: blur(34px);
  z-index: -1;
}

@media (max-width: 991.98px) {
  .home-trust-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* --- HOMEPAGE: feature tiles -------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-tile {
  text-align: center;
  padding: 30px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-tile:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.feature-tile-icon {
  width: 116px;
  height: 116px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(47, 127, 232, 0.16), transparent),
    var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-tile-icon img { max-width: 86px; max-height: 92px; width: auto; }

.feature-tile h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-tile p { color: var(--text-muted); font-size: 0.93rem; margin: 0; }

/* --- HOMEPAGE: CTA band --------------------------------------------------------- */
.cta-band {
  margin: 24px 0;
  padding: clamp(44px, 6vw, 72px) 0;
  background:
    radial-gradient(640px 300px at 50% 120%, rgba(255, 255, 255, 0.14), transparent 70%),
    linear-gradient(110deg, #1f63c4, #2f7fe8 55%, #1c9a5c);
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.cta-band .btn .fa { margin-left: 4px; }

.home-faq { padding-block: 64px; }
.home-faq .lead { max-width: 60ch; margin-inline: auto; }
.home-faq .btn { margin-top: 8px; }

/* --- BOOST PAGES: product layout (copy left, sticky widget right) ---------------- */
.product-tabs {
  padding: 16px 0 0;
}

.product-tabs ul.filter { margin: 0 auto; }

.product {
  position: relative;
  padding: 32px 0 56px;
}

.product-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(820px 420px at 92% -5%, rgba(47, 127, 232, 0.13), transparent 65%),
    radial-gradient(520px 380px at 0% 30%, rgba(52, 210, 123, 0.05), transparent 60%);
  pointer-events: none;
}

.product .container-fluid { position: relative; }

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 432px;
  gap: 44px;
  align-items: start;
}

@media (max-width: 1099.98px) {
  .product-grid { grid-template-columns: minmax(0, 1fr) 400px; gap: 28px; }
}

@media (max-width: 991.98px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-info { order: 2; }
  .product-widget { order: 1; }
}

/* left column */
.boost-title {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
}

.product-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.product-rating-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.product-rating strong { color: var(--text); }
.product-rating-sep { color: var(--text-faint); }

.product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.product-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(47, 127, 232, 0.4);
  border-radius: 999px;
  background: rgba(47, 127, 232, 0.08);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.product-pill .fa { color: var(--radiant); font-size: 0.75rem; }

.product-info > .lead { max-width: 62ch; }

.product-wins { margin-top: 30px; }

.product-wins h2,
.product-faq h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.product-wins ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-wins li {
  position: relative;
  padding: 9px 0 9px 32px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.product-wins li:last-child { border-bottom: 0; }

.product-wins li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 9px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(52, 210, 123, 0.14);
  color: var(--radiant);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-wins li b { color: var(--text); }

/* "your account is safe" block */
.product-safety { margin-top: 36px; }

.product-safety h2 { font-size: 1.3rem; margin-bottom: 16px; }

.product-safety ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 767.98px) {
  .product-safety ul { grid-template-columns: 1fr; }
}

.product-safety li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.product-safety-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(52, 210, 123, 0.12);
  border: 1px solid rgba(52, 210, 123, 0.35);
  color: var(--radiant);
  font-size: 0.85rem;
}

.product-safety li b {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 3px;
  color: var(--text);
}

.product-safety li p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.product-faq { margin-top: 34px; }

.boost-assist {
  font-size: 0.88rem;
  color: var(--text-faint);
  margin: 16px 0 0;
}

/* right column: sticky order widget */
.product-widget {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  background: rgba(18, 24, 38, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
  padding: 20px;
  overflow: hidden;
}

.product-widget::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--faction-gradient);
  z-index: 2;
}

/* per-service hero art bleeding from the top-right of the widget.
   The source art has a black background; screen-blending on the dark
   card makes the black vanish. */
.product-widget-art {
  position: absolute;
  top: 0;
  right: 0;
  width: 88%;
  height: 290px;
  background-size: cover;
  background-position: right top;
  mix-blend-mode: screen;
  opacity: 0.78;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(195deg, #000 32%, transparent 78%);
  mask-image: linear-gradient(195deg, #000 32%, transparent 78%);
  animation: artDrift 9s ease-in-out infinite;
}

/* colored aura behind the hero, hue set per service via --art-glow */
.product-widget-art::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -8%;
  width: 75%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--art-glow, rgba(47, 127, 232, 0.3)), transparent 72%);
  filter: blur(22px);
}

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

.product-widget-body {
  position: relative;
  z-index: 1;
}

.product-widget-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.product-widget-head h4 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

@media (max-width: 991.98px) {
  .product-widget { position: static; }
}

/* numbered steps */
.boost-step { margin-bottom: 22px; }
.boost-step:last-of-type { margin-bottom: 0; }

.boost-step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.boost-step-head h4 {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
}

.boost-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--primary-soft);
  border: 1px solid rgba(47, 127, 232, 0.45);
  color: #7db4f5;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
}

/* compact form bits inside the widget */
.product-widget .skill-input-controls { max-width: 158px; height: 44px; }
.product-widget .form-group-skill-rating img,
.product-widget .rank-medal { height: 48px; flex-basis: 48px; }

.product-widget .boost-slider {
  margin-top: 14px;
  padding: 14px 16px 4px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.product-widget .rc-slider { margin: 6px 0 30px; }
.product-widget .rc-slider-mark-text { font-size: 0.68rem; }
.product-widget .slider-caption { font-size: 0.74rem; }

/* BoostSelector inside widget */
.product-widget h4.no-padding-top {
  margin: 0 0 10px !important;
  font-size: 0.92rem !important;
  letter-spacing: 0.05em;
}
.product-widget .margin-top-50 { margin-top: 0 !important; }
.product-widget ul.filter {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  width: 100%;
  margin: 0 0 12px;
  border-radius: var(--radius);
  padding: 5px;
}
.product-widget ul.filter li a {
  text-align: center;
  padding: 8px 10px;
  font-size: 0.82rem;
  border-radius: 9px;
  white-space: normal;
}
.product-widget .pull-right[data-tooltip-id] { margin-top: -26px; color: var(--text-faint); cursor: help; }

/* add-on toggles: single column in the widget */
.product-widget .row:has(> .order-checkbox) { grid-template-columns: 1fr; gap: 8px; margin-top: 0; }
.product-widget .order-option { padding: 10px 12px; font-size: 0.85rem; }

/* checkout area pinned to widget bottom */
.product-widget .checkout-summary {
  margin: 22px -20px -20px;
  padding: 18px 20px 20px;
  border: 0;
  border-top: 1px solid var(--border-strong);
  border-radius: 0;
  background: rgba(8, 12, 20, 0.55);
  box-shadow: none;
  font-size: 0.95rem;
}

.product-widget .checkout-summary [class*='orderDescriptionContainer'] { font-size: 0.95rem; }
.product-widget .mmr-checkout { max-width: 100% !important; margin-top: 14px !important; }

/* credibility row pinned under the form, above the checkout edge */
.widget-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.widget-meta b { color: var(--text); }
.widget-meta .fa { color: var(--primary); margin-right: 4px; }

/* payment trust strip under the CTA (all 5 services, zero markup changes) */
.mmr-checkout::after {
  content: '';
  display: block;
  height: 26px;
  margin-top: 14px;
  background: url('/static/assets/images/redesign/payments.svg') center / contain no-repeat;
  opacity: 0.9;
}

/* animated slider track */
.rc-slider-track {
  background: linear-gradient(90deg, var(--radiant), var(--primary), var(--radiant));
  background-size: 200% 100%;
  animation: gradientShift 4s linear infinite;
}

/* --- DEMO sections (boost pages) ---------------------------------------------- */
.demo-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: center;
}

.demo-split-art { display: flex; justify-content: center; }

.demo-split-art img {
  max-height: 380px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.55));
  animation: floatY 8s ease-in-out infinite;
}

.demo-step {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 44px;
}

.demo-step:last-child { margin-bottom: 0; }

.demo-step-reverse .demo-step-copy { order: 2; }
.demo-step-reverse .demo-step-shot { order: 1; }

.demo-step-shot {
  margin: 0;
}

.demo-step-shot img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-3);
}

@media (max-width: 991.98px) {
  .demo-split,
  .demo-step { grid-template-columns: 1fr; gap: 24px; }
  .demo-step-reverse .demo-step-copy { order: 0; }
  .demo-step-reverse .demo-step-shot { order: 1; }
  .demo-split-art img { max-height: 240px; }
}

/* add-on row wrapper (layout handled by :has grid above) */
.boost-options { margin: 0; }