/* ============================================
   Lucky Bear Casino — Design Tokens & Styles
   Brand: blue (#3B9EFF) + black + green eyes accent
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Brand Colors — Blue/Black theme */
  --color-bg:             #08090d;
  --color-surface:        #0e1017;
  --color-surface-2:      #14161e;
  --color-surface-offset: #191c26;
  --color-surface-3:      #1f2230;
  --color-border:         #262a3a;
  --color-border-light:   #363b50;
  --color-divider:        #1a1d28;

  /* Text */
  --color-text:           #e4e7f0;
  --color-text-muted:     #8d92a8;
  --color-text-faint:     #555a70;
  --color-text-inverse:   #08090d;

  /* Brand Blue */
  --color-accent:         #3B9EFF;
  --color-accent-hover:   #5BB2FF;
  --color-accent-active:  #2488E8;
  --color-accent-glow:    rgba(59, 158, 255, 0.15);
  --color-accent-soft:    rgba(59, 158, 255, 0.08);

  /* Green Eyes Accent */
  --color-green:          #34D058;
  --color-green-soft:     rgba(52, 208, 88, 0.1);

  /* Status */
  --color-success:        #34D058;
  --color-warning:        #f0a030;
  --color-error:          #e5534b;

  /* Fonts */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.6);
  --shadow-blue: 0 4px 24px rgba(59,158,255,0.2);
  --shadow-glow: 0 0 60px rgba(59,158,255,0.08);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* ============================================
   GLOBAL
   ============================================ */

body {
  background: var(--color-bg);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(59,158,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(52,208,88,0.02) 0%, transparent 60%);
}

.container {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 13, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-3) 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-text);
}

.header__logo-icon {
  height: 38px;
  width: 38px;
  object-fit: contain;
}

.header__logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.header__logo-lucky {
  color: var(--color-accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav__link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
}

.nav__link:hover {
  color: var(--color-text);
  background: var(--color-accent-soft);
}

.nav__cta {
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: var(--text-sm);
  box-shadow: var(--shadow-blue);
}

.nav__cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 30px rgba(59,158,255,0.3);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

.hero {
  position: relative;
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0 clamp(var(--space-10), 6vw, var(--space-20));
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(59,158,255,0.07) 0%, transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(52,208,88,0.03) 0%, transparent 40%);
  pointer-events: none;
}

.hero__bear {
  display: block;
  width: clamp(160px, 20vw, 240px);
  height: auto;
  margin: 0 auto var(--space-6);
  filter: drop-shadow(0 8px 32px rgba(59,158,255,0.2));
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-accent-soft);
  border: 1px solid rgba(59,158,255,0.2);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__title {
  font-size: var(--text-3xl);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-6);
  position: relative;
}

.hero__title .blue {
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  border: none;
  line-height: 1.4;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(59,158,255,0.35);
}

.btn--secondary {
  background: var(--color-surface-2);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn--secondary:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-soft);
}

.btn--large {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base);
}

/* Hero Stats */
.hero__stats {
  display: flex;
  justify-content: center;
  gap: clamp(var(--space-6), 4vw, var(--space-16));
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.hero__stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: clamp(var(--space-12), 6vw, var(--space-24)) 0;
}

.section--alt {
  background: var(--color-surface);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-16));
}

.section__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}

.section__title {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.section__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-6);
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}

.section--alt .feature-card {
  background: var(--color-surface-2);
}

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

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  font-size: 24px;
}

.feature-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.feature-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   REGISTRATION STEPS
   ============================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
  counter-reset: step;
}

.step {
  position: relative;
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 800;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  line-height: 1;
}

.step__title {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.step__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   SLOTS
   ============================================ */

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
}

.slot-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.slot-card__name {
  font-size: var(--text-base);
  font-weight: 700;
}

.slot-card__provider {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.slot-card__rtp {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-success);
  background: var(--color-green-soft);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  width: fit-content;
}

.slot-card__btn {
  margin-top: auto;
  text-align: center;
  padding: var(--space-2) var(--space-4);
  background: var(--color-accent-soft);
  border: 1px solid rgba(59,158,255,0.2);
  color: var(--color-accent);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  text-decoration: none;
}

.slot-card__btn:hover {
  background: rgba(59,158,255,0.15);
  border-color: var(--color-accent);
}

/* ============================================
   BONUS TABLE
   ============================================ */

.bonus-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.bonus-table thead {
  background: var(--color-surface-2);
}

.bonus-table th {
  text-align: left;
  padding: var(--space-4) var(--space-5);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.bonus-table td {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--color-divider);
  color: var(--color-text);
  vertical-align: top;
}

.bonus-table tr:last-child td {
  border-bottom: none;
}

.bonus-table .highlight {
  color: var(--color-accent);
  font-weight: 600;
}

/* ============================================
   PAYMENTS
   ============================================ */

.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-5);
}

.payment-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.payment-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.payment-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.payment-card__title {
  font-size: var(--text-base);
  font-weight: 700;
}

.payment-card__subtitle {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.payment-card__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.payment-card__row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
}

.payment-card__row span:first-child {
  color: var(--color-text-muted);
}

.payment-card__row span:last-child {
  font-weight: 600;
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  cursor: pointer;
}

.faq-item__question::after {
  content: '+';
  font-size: var(--text-lg);
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--color-surface-2), var(--color-surface-offset));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-10), 5vw, var(--space-16));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(59,158,255,0.3), transparent, rgba(59,158,255,0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cta-banner__title {
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.cta-banner__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   REVIEWS
   ============================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-5);
}

.review-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.review-card__stars {
  color: var(--color-accent);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
  letter-spacing: 2px;
}

.review-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.review-card__author {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text);
}

.review-card__date {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ============================================
   MIRROR
   ============================================ */

.mirror-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
}

.mirror-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.mirror-feature__icon {
  flex-shrink: 0;
  font-size: 20px;
  margin-top: 2px;
}

.mirror-feature__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.mirror-feature__text strong {
  color: var(--color-text);
  display: block;
  margin-bottom: var(--space-1);
}

/* ============================================
   SEO CONTENT
   ============================================ */

.seo-content {
  max-width: 880px;
  margin: 0 auto;
}

.seo-content h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

.seo-content p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}

.seo-content ul {
  list-style: none;
  margin-bottom: var(--space-5);
}

.seo-content ul li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.seo-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

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

.footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-12) 0 var(--space-8);
  background: var(--color-surface);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.footer__brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-4);
}

.footer__brand-logo-icon {
  height: 32px;
  width: 32px;
  object-fit: contain;
}

.footer__brand-logo-text {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.footer__brand-logo-lucky {
  color: var(--color-accent);
}

.footer__brand-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 320px;
}

.footer__col-title {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer__disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  max-width: 500px;
  text-align: right;
  line-height: 1.5;
}

.footer__pplx {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-decoration: none;
}

.footer__pplx:hover {
  color: var(--color-text-muted);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
}

.animate-in.visible {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.stagger > .animate-in:nth-child(1) { animation-delay: 0.05s; }
.stagger > .animate-in:nth-child(2) { animation-delay: 0.1s; }
.stagger > .animate-in:nth-child(3) { animation-delay: 0.15s; }
.stagger > .animate-in:nth-child(4) { animation-delay: 0.2s; }
.stagger > .animate-in:nth-child(5) { animation-delay: 0.25s; }
.stagger > .animate-in:nth-child(6) { animation-delay: 0.3s; }

/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: var(--space-4);
    gap: var(--space-1);
  }

  .nav.active {
    display: flex;
  }

  .nav__link {
    width: 100%;
    padding: var(--space-3) var(--space-4);
  }

  .nav__cta {
    width: 100%;
    text-align: center;
    margin-top: var(--space-2);
  }

  .mobile-toggle {
    display: flex;
  }

  .hero__title {
    font-size: var(--text-2xl);
  }

  .hero__bear {
    width: clamp(120px, 30vw, 180px);
  }

  .hero__stats {
    gap: var(--space-6);
  }

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

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

  .footer__disclaimer {
    text-align: center;
  }

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

  .btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

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

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