/* ============================================================
   1xSlots Partners — styles.css
   Methodology: BEM (Block__Element--Modifier)
   ============================================================ */

/* ===================== CUSTOM PROPERTIES ===================== */
:root {
  /* Brand Colors */
  --clr-gold:         #F5A623;
  --clr-gold-light:   #FFD076;
  --clr-gold-dark:    #C07A00;
  --clr-gold-glow:    rgba(245, 166, 35, 0.20);
  --clr-gold-border:  rgba(245, 166, 35, 0.28);
  --clr-gold-bg:      rgba(245, 166, 35, 0.08);

  /* Backgrounds */
  --clr-bg:           #090B12;
  --clr-bg-2:         #0E1018;
  --clr-bg-3:         #141720;
  --clr-card:         #181B28;
  --clr-card-2:       #1E2235;
  --clr-card-3:       #242840;

  /* Text */
  --clr-text:         #F0F2F8;
  --clr-muted:        #7880A0;
  --clr-muted-2:      #48506A;

  /* Social Colors */
  --clr-tg:           #27A3FF;
  --clr-ig-start:     #f09433;
  --clr-ig-end:       #bc1888;
  --clr-li:           #0A66C2;
  --clr-mail:         #2ECC71;

  /* Semantic */
  --clr-danger:       #E63946;
  --clr-success:      #2ECC71;

  /* Typography */
  --ff-display:       'Oswald', sans-serif;
  --ff-body:          'Montserrat', sans-serif;

  /* Spacing */
  --sp-xs:   4px;
  --sp-sm:   8px;
  --sp-md:   16px;
  --sp-lg:   24px;
  --sp-xl:   40px;
  --sp-2xl:  64px;
  --sp-3xl:  96px;

  /* Border radius */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-full: 9999px;

  /* Transitions */
  --tr-fast:   0.15s ease;
  --tr-base:   0.22s ease;
  --tr-slow:   0.35s ease;

  /* Layout */
  --container-max: 1100px;
  --container-pad: 20px;
  --header-h:      70px;
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--clr-text);
  background: var(--clr-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

button {
  font-family: var(--ff-body);
  cursor: pointer;
}

/* ===================== UTILITY ===================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ===================== ANIMATED BACKGROUND ===================== */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-layer__pattern {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Ctext y='44' font-size='28' fill='%23F5A623' opacity='0.055' font-family='serif'%3E%E2%99%A0%3C/text%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Ctext y='48' x='10' font-size='22' fill='%23F5A623' opacity='0.045' font-family='serif'%3E%E2%99%A6%3C/text%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='50' x='30' font-size='16' fill='%23F5A623' opacity='0.04' font-family='serif'%3E%E2%98%85%3C/text%3E%3C/svg%3E");
  background-size: 100px 100px, 80px 80px, 130px 130px;
  background-position: 0 0, 40px 40px, 70px 15px;
  animation: bg-drift 50s linear infinite;
}

@keyframes bg-drift {
  from { background-position: 0 0, 40px 40px, 70px 15px; }
  to   { background-position: 100px 100px, 140px 140px, 200px 145px; }
}

.bg-layer__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.bg-layer__glow--tl {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
}

.bg-layer__glow--br {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(245,166,35,0.04) 0%, transparent 70%);
}

/* All sections above bg-layer */
.header,
.hero,
.stats,
.links-page,
.features,
.badges-section,
.cta-banner,
.footer,
.mobile-nav,
.mobile-nav__overlay {
  position: relative;
  z-index: 1;
}

/* ===================== LOGO ===================== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__badge {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--clr-gold-glow);
}

.logo__badge--sm {
  width: 34px;
  height: 34px;
  font-size: 14px;
}

.logo__name {
  display: block;
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: 0.3px;
}

.logo--sm .logo__name {
  font-size: 15px;
}

.logo__sub {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-top: 1px;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--r-full);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--tr-base);
  white-space: nowrap;
  padding: 10px 22px;
}

.btn--gold {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: #000;
  box-shadow: 0 4px 16px var(--clr-gold-glow);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  box-shadow: 0 6px 28px rgba(245, 166, 35, 0.40);
  transform: translateY(-1px);
}

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

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--clr-gold-border);
  color: var(--clr-gold);
}

.btn--outline:hover {
  background: var(--clr-gold-bg);
  border-color: var(--clr-gold);
  box-shadow: 0 4px 16px var(--clr-gold-glow);
}

.btn--lg {
  font-size: 14px;
  padding: 14px 32px;
}

.btn--full {
  width: 100%;
}

.btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ===================== HEADER ===================== */
.header {
  height: var(--header-h);
  background: rgba(9, 11, 18, 0.90);
  border-bottom: 1px solid rgba(245, 166, 35, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--tr-base), border-color var(--tr-base);
}

.header--scrolled {
  background: rgba(9, 11, 18, 0.97);
  border-color: var(--clr-gold-border);
}

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

/* Nav */
.header__nav {
  margin-left: auto;
}

.nav__list {
  display: flex;
  gap: 4px;
}

.nav__link {
  display: block;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--clr-muted);
  border-radius: var(--r-full);
  transition: color var(--tr-fast), background var(--tr-fast);
}

.nav__link:hover {
  color: var(--clr-gold);
  background: var(--clr-gold-bg);
}

.nav__link--active {
  color: var(--clr-gold);
}

/* CTA */
.header__cta {
  margin-left: var(--sp-sm);
  flex-shrink: 0;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--clr-gold-border);
  border-radius: var(--r-sm);
  padding: 8px;
  margin-left: auto;
  transition: border-color var(--tr-fast);
}

.burger:hover {
  border-color: var(--clr-gold);
}

.burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: transform var(--tr-base), opacity var(--tr-base);
}

.burger--open .burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger--open .burger__line:nth-child(2) { opacity: 0; }
.burger--open .burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== MOBILE NAV ===================== */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(14, 16, 24, 0.98);
  border-bottom: 1px solid var(--clr-gold-border);
  padding: var(--sp-md) var(--sp-md) var(--sp-lg);
  z-index: 99;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform var(--tr-slow), opacity var(--tr-slow);
  backdrop-filter: blur(16px);
}

.mobile-nav--open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  margin-bottom: var(--sp-md);
}

.mobile-nav__link {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--clr-muted);
  border-radius: var(--r-sm);
  transition: color var(--tr-fast), background var(--tr-fast);
}

.mobile-nav__link:hover {
  color: var(--clr-gold);
  background: var(--clr-gold-bg);
}

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-slow);
}

.mobile-nav__overlay--show {
  opacity: 1;
  pointer-events: all;
}

/* ===================== HERO ===================== */
.hero {
  padding-top: calc(var(--header-h) + var(--sp-2xl));
  padding-bottom: var(--sp-2xl);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-2xl);
  align-items: center;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-gold);
  opacity: 0.85;
  margin-bottom: var(--sp-md);
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--clr-gold-glow);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px var(--clr-gold-glow); }
  50%       { box-shadow: 0 0 18px rgba(245, 166, 35, 0.5); }
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: var(--sp-lg);
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--clr-muted);
  max-width: 500px;
  margin-bottom: var(--sp-xl);
}

.hero__actions {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
  margin-bottom: var(--sp-lg);
}

.hero__trust {
  display: flex;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.hero__trust-item {
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-muted);
  letter-spacing: 0.3px;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
}

.hero__card-stack {
  position: relative;
  width: 220px;
  height: 300px;
}

.hero__card {
  position: absolute;
  width: 200px;
  height: 280px;
  border-radius: var(--r-xl);
  border: 1px solid var(--clr-gold-border);
}

.hero__card--back {
  background: var(--clr-card);
  top: 20px;
  left: 40px;
  transform: rotate(12deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__card--mid {
  background: var(--clr-card-2);
  top: 10px;
  left: 20px;
  transform: rotate(6deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__card--front {
  background: linear-gradient(145deg, var(--clr-card-3), var(--clr-card-2));
  top: 0;
  left: 0;
  transform: rotate(-2deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px var(--clr-gold-glow);
  border-color: var(--clr-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__card-inner {
  text-align: center;
  padding: var(--sp-lg);
}

.hero__card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 8px;
}

.hero__card-val {
  font-family: var(--ff-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.hero__card-sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-muted);
  letter-spacing: 0.5px;
}

.hero__card-suit {
  font-size: 80px;
  opacity: 0.07;
}

.hero__coin {
  position: absolute;
  font-size: 28px;
  animation: float-coin 4s ease-in-out infinite;
}

.hero__coin--1 { top: 20px;  right: 20px;  animation-delay: 0s; }
.hero__coin--2 { bottom: 40px; right: 40px; animation-delay: 1.3s; }
.hero__coin--3 { top: 60%;  left: 10px;  animation-delay: 0.7s; }

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

/* ===================== STATS ===================== */
.stats {
  background: var(--clr-bg-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: var(--sp-xl) 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.stats__item {
  background: var(--clr-bg-2);
  padding: var(--sp-xl) var(--sp-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: background var(--tr-base);
}

.stats__item:hover {
  background: var(--clr-card);
}

.stats__num {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.stats__lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-muted);
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.4;
}

/* ===================== SECTION HEAD ===================== */
.section-head {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.section-head__title {
  font-family: var(--ff-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: 0.3px;
  /*margin-bottom: 10px;*/
  background: linear-gradient(135deg, var(--clr-text), rgba(240,242,248,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 680px;
  margin: 0 auto 10px !important;
}

.section-head__sub {
  font-size: 14px;
  color: var(--clr-muted);
}

/* ===================== LINKS PAGE ===================== */
.links-page {
  padding: var(--sp-3xl) 0;
}

/* Link Group */
.link-group {
  margin-bottom: var(--sp-xl);
}

.link-group__header {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
}

.link-group__line {
  flex: 1;
  height: 1px;
  background: var(--clr-gold-border);
}

.link-group__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-gold);
  white-space: nowrap;
  opacity: 0.8;
}

.link-group__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 680px;
  margin: 0 auto;
}

/* Link Card */
.link-card {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: 16px 20px;
  background: var(--clr-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-lg);
  transition: background var(--tr-base), border-color var(--tr-base),
              transform var(--tr-base), box-shadow var(--tr-base);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.link-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--clr-gold), var(--clr-gold-dark));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--tr-base);
  border-radius: 0 0 0 var(--r-lg);
}

.link-card:hover {
  background: var(--clr-card-2);
  border-color: var(--clr-gold-border);
  transform: translateX(4px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.link-card:hover::before {
  transform: scaleY(1);
}

.link-card--featured {
  border-color: var(--clr-gold-border);
  background: linear-gradient(135deg, var(--clr-card-3), var(--clr-card-2));
}

.link-card--featured::before {
  transform: scaleY(1);
}

/* Link card icon */
.link-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--tr-base);
}

.link-card__icon svg {
  width: 24px;
  height: 24px;
}

.link-card:hover .link-card__icon {
  transform: scale(1.08);
}

.link-card__icon--web {
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.25);
}
.link-card__icon--web svg { fill: var(--clr-gold); }

.link-card__icon--tg {
  background: rgba(39, 163, 255, 0.12);
  border: 1px solid rgba(39, 163, 255, 0.25);
}
.link-card__icon--tg svg { fill: var(--clr-tg); }

.link-card__icon--ig {
  background: rgba(225, 48, 108, 0.12);
  border: 1px solid rgba(225, 48, 108, 0.25);
}

.link-card__icon--li {
  background: rgba(10, 102, 194, 0.12);
  border: 1px solid rgba(10, 102, 194, 0.25);
}
.link-card__icon--li svg { fill: var(--clr-li); }

.link-card__icon--mail {
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.25);
}
.link-card__icon--mail svg { fill: var(--clr-mail); }

/* Link card body */
.link-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.link-card__title {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--tr-fast);
}

.link-card:hover .link-card__title {
  color: var(--clr-gold);
}

.link-card__sub {
  font-size: 12px;
  color: var(--clr-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Badge */
.link-card__badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  background: var(--clr-gold);
  padding: 3px 10px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}

/* Arrow */
.link-card__arrow {
  width: 20px;
  height: 20px;
  color: var(--clr-muted-2);
  flex-shrink: 0;
  transition: transform var(--tr-base), color var(--tr-base);
}

.link-card__arrow svg {
  width: 100%;
  height: 100%;
}

.link-card:hover .link-card__arrow {
  color: var(--clr-gold);
  transform: translateX(4px);
}

/* ===================== FEATURES ===================== */
.features {
  padding: var(--sp-3xl) 0;
  background: var(--clr-bg-2);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.feature-card {
  background: var(--clr-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-lg);
  padding: var(--sp-xl) var(--sp-lg);
  transition: border-color var(--tr-base), transform var(--tr-base), box-shadow var(--tr-base);
}

.feature-card:hover {
  border-color: var(--clr-gold-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.feature-card__icon {
  font-size: 36px;
  margin-bottom: var(--sp-md);
  display: block;
}

.feature-card__title {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--sp-sm);
  color: var(--clr-gold);
}

.feature-card__text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--clr-muted);
}

/* ===================== BADGES SECTION (footer reference) ===================== */
.badges-section {
  padding: var(--sp-2xl) 0;
  background: var(--clr-bg-3);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.badges-section__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-md);
}

.badge-tile {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-xl) var(--sp-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}

.badge-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.badge-tile__num {
  font-family: var(--ff-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.badge-tile__lbl {
  font-size: 12px;
  font-weight: 500;
  color: #555;
  line-height: 1.4;
  text-align: center;
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  padding: var(--sp-2xl) 0;
}

.cta-banner__inner {
  background: linear-gradient(135deg, var(--clr-card-3), var(--clr-card-2));
  border: 1px solid var(--clr-gold-border);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl) var(--sp-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  position: relative;
  overflow: hidden;
}

.cta-banner__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(245,166,35,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 100% 50%, rgba(245,166,35,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner__text {
  position: relative;
}

.cta-banner__title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  margin-bottom: 8px;
}

.cta-banner__sub {
  font-size: 14px;
  color: var(--clr-muted);
}

.cta-banner .btn {
  position: relative;
  flex-shrink: 0;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--clr-bg-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--sp-2xl) 0 var(--sp-xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--clr-muted);
  margin-top: var(--sp-md);
  max-width: 280px;
}

.footer__col-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-md);
  opacity: 0.8;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 13px;
  color: var(--clr-muted);
  transition: color var(--tr-fast);
  display: inline-block;
}

.footer__link:hover {
  color: var(--clr-gold);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 12px;
  color: var(--clr-muted-2);
}

.footer__disclaimer {
  font-size: 12px;
  color: var(--clr-muted-2);
  font-weight: 600;
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.reveal--d1 { transition-delay: 0.05s; }
.reveal--d2 { transition-delay: 0.12s; }
.reveal--d3 { transition-delay: 0.19s; }
.reveal--d4 { transition-delay: 0.26s; }
.reveal--d5 { transition-delay: 0.33s; }

/* ===================== RESPONSIVE ===================== */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }

  .hero__visual {
    display: none;
  }

  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats__item:nth-child(4),
  .stats__item:nth-child(5) {
    grid-column: span 1;
  }

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

  .badges-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: span 2;
  }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  :root {
    --container-pad: 16px;
  }

  /* Header */
  .header__nav,
  .header__cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding-top: calc(var(--header-h) + 32px);
    padding-bottom: 40px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__desc {
    font-size: 14px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn--lg {
    width: 100%;
    max-width: 360px;
  }

  /* Stats */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__item:last-child {
    grid-column: span 2;
  }

  /* Links */
  .links-page { padding: 48px 0; }

  .link-group__list {
    max-width: 100%;
  }

  .link-card {
    padding: 13px 16px;
  }

  .link-card__icon {
    width: 42px;
    height: 42px;
  }

  .link-card__icon svg {
    width: 20px;
    height: 20px;
  }

  /* Features */
  .features__grid {
    grid-template-columns: 1fr;
  }

  /* Badges */
  .badges-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .badges-section__grid .badge-tile:last-child {
    grid-column: span 2;
  }

  /* CTA */
  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
    padding: var(--sp-xl) var(--sp-lg);
  }

  .cta-banner .btn {
    width: 100%;
    max-width: 340px;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: span 1;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .stats__item:last-child {
    grid-column: span 1;
  }

  .badges-section__grid {
    grid-template-columns: 1fr;
  }

  .badges-section__grid .badge-tile:last-child {
    grid-column: span 1;
  }

  .hero__trust {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
