@charset "UTF-8";

/* =============================================
   FONTS
   ============================================= */

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-ExtraBold.woff2") format("woff2"),
       url("../fonts/Rubik-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Bold.woff2") format("woff2"),
       url("../fonts/Rubik-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Medium.woff2") format("woff2"),
       url("../fonts/Rubik-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.woff2") format("woff2"),
       url("../fonts/Rubik-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2"),
       url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"),
       url("../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"),
       url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =============================================
   VARIABLES
   ============================================= */

:root {
  --gold: #D4AF37;
  --gold-light: #F5D06B;
  --gold-dark: #A07820;
  --red: #C0392B;
  --red-bright: #E74C3C;
  --bg-dark: #0A0608;
  --bg-card: rgba(255, 255, 255, 0.04);
  --border-gold: rgba(212, 175, 55, 0.35);
  --text-main: #F0E8D0;
  --text-muted: rgba(240, 232, 208, 0.65);
}

/* =============================================
   RESET & BASE
   ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rubik', 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  min-height: 100vh;
}

/* =============================================
   KEYFRAMES
   ============================================= */

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(212,175,55,0.4), 0 0 60px rgba(212,175,55,0.15), 0 8px 32px rgba(0,0,0,0.5); }
  50%       { box-shadow: 0 0 40px rgba(212,175,55,0.7), 0 0 100px rgba(212,175,55,0.3), 0 8px 32px rgba(0,0,0,0.5); }
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-8px) rotate(1deg); }
  66%       { transform: translateY(4px) rotate(-1deg); }
}

@keyframes particle-rise {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  20%  { opacity: 1; }
  80%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-120px) scale(1.5); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes border-glow {
  0%, 100% { border-color: rgba(212,175,55,0.3); }
  50%       { border-color: rgba(212,175,55,0.8); }
}

@keyframes confetti-fall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100px) rotate(360deg); opacity: 0; }
}

@keyframes ring-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* =============================================
   PARTICLES
   ============================================= */

.particles-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  animation: particle-rise linear infinite;
}

/* =============================================
   HEADER
   ============================================= */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10,6,8,0.98) 0%, rgba(10,6,8,0.85) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  transition: all 0.3s ease;
}

.header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header__logo {
  height: 36px;
  width: auto;
  display: block;
}

.header__btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn-yellow,
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-yellow {
  background: linear-gradient(135deg, #F5D06B 0%, #D4AF37 50%, #A07820 100%);
  color: #1A0F00;
}

.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.5);
}

.btn-yellow img {
  width: 16px;
  height: 16px;
  filter: brightness(0);
}

.btn-red {
  background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
  color: #fff;
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.5);
}

.btn-red img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

/* CTA Button */

.btn-cta-wrap {
  position: relative;
  display: inline-block;
  animation: fade-up 0.7s ease 0.45s both;
}

.btn-cta-ring {
  position: absolute;
  inset: -12px;
  border-radius: 60px;
  border: 2px solid var(--gold);
  animation: ring-pulse 2s ease-out infinite;
}

.btn-cta-ring:nth-child(2) {
  animation-delay: 0.7s;
}

.btn-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  border-radius: 60px;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 2.2vw, 20px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1A0F00;
  background: linear-gradient(135deg, #F5D06B 0%, #D4AF37 40%, #F0C030 60%, #A07820 100%);
  background-size: 200% auto;
  border: none;
  cursor: pointer;
  animation: pulse-glow 2.5s ease infinite, shimmer 3s linear infinite;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-cta:hover {
  transform: scale(1.06) translateY(-3px);
  filter: brightness(1.1);
}

.btn-cta:active {
  transform: scale(0.98);
}

.btn-cta svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Confetti */

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  animation: confetti-fall 2.5s ease infinite;
  pointer-events: none;
}

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../img/main-bg.png') center center / cover no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,6,8,0.35)  0%,
    rgba(10,6,8,0.15) 30%,
    rgba(10,6,8,0.45) 70%,
    rgba(10,6,8,0.95) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  animation: fade-up 0.8s ease both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.12);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  animation: fade-up 0.6s ease 0.1s both;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse-glow 2s ease infinite;
}

.hero__title {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 7vw, 84px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  animation: fade-up 0.7s ease 0.2s both;
}

.hero__title-vip {
  display: block;
  background: linear-gradient(90deg, #A07820 0%, #F5D06B 30%, #D4AF37 50%, #F5D06B 70%, #A07820 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite, fade-up 0.7s ease 0.2s both;
}

.hero__cashback {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: clamp(64px, 14vw, 160px);
  line-height: 1;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5D06B 40%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(212,175,55,0.4));
  animation: fade-up 0.7s ease 0.25s both, float 6s ease-in-out 1s infinite;
  margin-bottom: 4px;
}

.hero__subtitle {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 36px;
  animation: fade-up 0.7s ease 0.35s both;
}

.hero__subtitle strong {
  color: var(--gold-light);
  font-weight: 700;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}

.hero__scroll svg {
  animation: bounce-arrow 1.5s ease infinite;
}

/* =============================================
   STATS BAR
   ============================================= */

.stats-bar {
  position: relative;
  z-index: 10;
  background: linear-gradient(90deg, rgba(212,175,55,0.08) 0%, rgba(212,175,55,0.04) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 20px 0;
}

.stats-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 20px;
  border-right: 1px solid var(--border-gold);
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 40px);
  background: linear-gradient(135deg, #F5D06B, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
  text-align: center;
}

/* =============================================
   FEATURES
   ============================================= */

.features {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-title span {
  background: linear-gradient(90deg, #F5D06B, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 52px;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: border-glow 4s ease infinite;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.7);
  box-shadow: 0 20px 60px rgba(212,175,55,0.12), 0 4px 20px rgba(0,0,0,0.4);
}

.feature-icon {
  display: block;
  margin-bottom: 20px;
  animation: float 5s ease-in-out infinite;
}

.feature-icon svg {
  width: 52px;
  height: 52px;
  display: block;
}

.feature-card:nth-child(2) .feature-icon { animation-delay: 0.5s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 1s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 1.5s; }

.feature-title {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.feature-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-text strong {
  color: var(--text-main);
}

/* =============================================
   CTA MID SECTION
   ============================================= */

.cta-section {
  padding: 0 24px 80px;
  display: flex;
  justify-content: center;
}

.cta-block {
  max-width: 680px;
  width: 100%;
  background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(160,120,32,0.05) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-block__title {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 34px);
  margin-bottom: 12px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.cta-block__title-gold {
  background: linear-gradient(90deg, #F5D06B, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-block__text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-block__text strong {
  color: var(--gold-light);
}

.cta-block .btn-cta-wrap {
  animation: none;
}

.cta-block .btn-cta {
  font-size: 17px;
  padding: 16px 42px;
}

/* =============================================
   TERMS SECTION
   ============================================= */

.terms-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(212,175,55,0.03) 50%, transparent 100%);
}

.terms-inner {
  max-width: 860px;
  margin: 0 auto;
}

.terms-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.terms-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(212,175,55,0.12);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color 0.2s ease;
}

.terms-list li:last-child {
  border-bottom: none;
}

.terms-list li:hover {
  color: var(--text-main);
}

.terms-num {
  min-width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #1A0F00;
  margin-top: 1px;
  flex-shrink: 0;
}

.terms-highlight {
  color: var(--gold-light);
  font-weight: 700;
}

.terms-highlight-red {
  color: var(--red-bright);
  font-weight: 700;
}

.terms-note {
  margin-top: 28px;
  padding: 18px 22px;
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.25);
  border-radius: 12px;
  font-size: 13px;
  color: rgba(240,232,208,0.6);
  line-height: 1.6;
}

/* =============================================
   DIVIDER
   ============================================= */

.divider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: linear-gradient(180deg, rgba(10,6,8,0) 0%, rgba(10,6,8,1) 100%);
  border-top: 1px solid var(--border-gold);
  padding-top: 40px;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-providers {
  margin-bottom: 32px;
}

.footer-providers .body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 32px;
}

.footer-providers a {
  opacity: 0.5;
  transition: opacity 0.3s ease, filter 0.3s ease;
  display: flex;
}

.footer-providers a:hover {
  opacity: 1;
}

.footer-providers img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.footer-providers a:hover img {
  filter: none;
}

.footer-bottom {
  padding: 24px 0 32px;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(212,175,55,0.1);
}

.footer-bottom-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.footer-bottom-col_text p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-col_flex {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-age img,
.footer-license img,
.joc-icon img {
  height: 32px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-age img:hover,
.footer-license img:hover {
  opacity: 1;
}

.footer-bottom-license {
  font-size: 11px;
  color: rgba(240,232,208,0.35);
  line-height: 1.7;
}

.footer-bottom-license a {
  color: rgba(212,175,55,0.6);
  text-decoration: none;
}

.footer-bottom-license a:hover {
  color: var(--gold-light);
}

/* =============================================
   CONFETTI PIECES
   ============================================= */

.confetti-1 { background: #D4AF37; top: -10px; left: 20%;   animation-delay: 0s;   animation-duration: 2.2s; transform: rotate(30deg); }
.confetti-2 { background: #E74C3C; top: -10px; right: 25%;  animation-delay: 0.4s; animation-duration: 1.8s; transform: rotate(-20deg); }
.confetti-3 { background: #F5D06B; top: -10px; left: 60%;   animation-delay: 0.9s; animation-duration: 2.5s; transform: rotate(55deg); }
.confetti-4 { background: #ffffff; top: -10px; left: 40%;   animation-delay: 1.3s; animation-duration: 2s;   transform: rotate(-40deg); }

/* =============================================
   REVEAL DELAYS
   ============================================= */

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =============================================
   SCROLL REVEAL
   ============================================= */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

@media (max-width: 768px) {
  .header { position: static; }
  .hero__bg { background-position: 10% center; }
  .header .container { padding: 12px 16px; }
  .btn-yellow span, .btn-red span { font-size: 13px; }
  .btn-yellow, .btn-red { padding: 9px 14px; gap: 6px; }
  .hero { padding: 40px 16px 50px; }
  .btn-cta { padding: 16px 32px; font-size: 15px; }
  .features { padding: 60px 16px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .cta-block { padding: 36px 24px; }
  .terms-section { padding: 60px 16px; }
  .footer .container { padding: 0 16px; }
  .footer-bottom-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-bottom-col_flex { flex-wrap: wrap; }

  /* Stats: 2×2 grid on tablet/mobile */
  .stats-bar .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }
  .stat-item {
    min-width: 0;
    padding: 16px 12px;
    border-right: none;
    border-bottom: 1px solid var(--border-gold);
  }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--border-gold);
  }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }
  .stat-item:nth-child(1),
  .stat-item:nth-child(3) {
    border-right: 1px solid var(--border-gold);
  }
}

@media (max-width: 480px) {
  .header__btns { gap: 6px; }
  .btn-yellow span, .btn-red span { display: none; }
  .btn-yellow, .btn-red { padding: 10px 12px; }
  .stat-value { font-size: clamp(24px, 7vw, 34px); }
  .stat-label { font-size: 11px; }
  .hero__cashback { font-size: clamp(56px, 18vw, 120px); }
}
