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

:root {
  --gold: #ffd700;
  --gold-dark: #cc9900;
  --gold-light: #ffe866;
  --green: #00c853;
  --green-dark: #009624;
  --purple: #1a0a2e;
  --purple-mid: #2d1b4e;
  --purple-light: #3d2568;
  --dark: #0d0118;
  --card-bg: rgba(30, 12, 58, 0.9);
  --text: #e8e0f0;
  --text-dim: #a090c0;
  --red: #ff3b3b;
  --orange: #ff8c00;
  --radius: 16px;
  --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.25);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== BACKGROUND PARTICLES ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(45, 27, 78, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(0, 200, 83, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(26, 10, 46, 0.9) 0%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 1, 24, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  width: 44px;
  height: 44px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s;
  letter-spacing: 0.3px;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: linear-gradient(135deg, #00c853, #009624);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  transition: box-shadow 0.25s, transform 0.2s !important;
  box-shadow: 0 0 16px rgba(0, 200, 83, 0.3);
}

.nav-cta:hover {
  box-shadow: 0 0 28px rgba(0, 200, 83, 0.6) !important;
  transform: translateY(-1px);
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(61, 37, 104, 0.7) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(0, 150, 36, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #0d0118 0%, #1a0a2e 50%, #0d0118 100%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '●';
  color: #00c853;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #1a0a2e;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(255, 215, 0, 0.4);
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item { text-align: center; }

.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== BANNER IMAGE ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 215, 0, 0.15), var(--shadow-gold);
  transition: transform 0.4s;
}

.banner-wrapper:hover {
  transform: translateY(-6px) scale(1.01);
}

.banner-wrapper img {
  width: 100%;
  max-width: 500px;
  display: block;
}

.banner-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #1a0a2e;
  font-weight: 900;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
}

.banner-play-btn {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00c853, #009624);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.5);
  transition: all 0.3s;
}

.banner-play-btn:hover {
  box-shadow: 0 8px 30px rgba(0, 200, 83, 0.7);
  transform: translateX(-50%) translateY(-2px);
}

/* ===== SECTION BASE ===== */
.section {
  padding: 90px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title .gold { color: var(--gold); }

.section-desc {
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
  margin: 0 24px;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}

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

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* ===== GAMES CARDS ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.game-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), var(--shadow-gold);
}

.game-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
  background: linear-gradient(135deg, #2d1b4e, #1a0a2e);
}

.game-card:hover .game-card-img {
  transform: scale(1.05);
}

.game-card-img-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, #2d1b4e, #1a0a2e);
}

.game-card-body {
  padding: 22px;
}

.game-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}

.game-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.game-card-rtp {
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 6px;
}

.game-card-desc {
  font-size: 0.83rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 18px;
}

.game-card-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #1a0a2e;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 11px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.25);
}

.game-card-btn:hover {
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.5);
  transform: translateY(-1px);
}

/* ===== BONUSES ===== */
.bonuses-section {
  background: linear-gradient(180deg, transparent, rgba(45, 27, 78, 0.3), transparent);
  padding: 0;
}

.bonuses-inner {
  padding: 90px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.bonus-card {
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-card:hover {
  transform: translateY(-6px);
}

.bonus-card.primary {
  background: linear-gradient(135deg, #2d1b4e, #1a0a2e);
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: var(--shadow-gold);
}

.bonus-card.secondary {
  background: linear-gradient(135deg, #0d2818, #0a1f12);
  border: 1px solid rgba(0, 200, 83, 0.3);
  box-shadow: 0 0 30px rgba(0, 200, 83, 0.15);
}

.bonus-card.tertiary {
  background: linear-gradient(135deg, #1a0a2e, #2d1b4e);
  border: 1px solid rgba(255, 140, 0, 0.3);
  box-shadow: 0 0 30px rgba(255, 140, 0, 0.1);
}

.bonus-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.primary .bonus-card-label { color: var(--gold); }
.secondary .bonus-card-label { color: var(--green); }
.tertiary .bonus-card-label { color: var(--orange); }

.bonus-amount {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.primary .bonus-amount {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.secondary .bonus-amount { color: var(--green); }
.tertiary .bonus-amount { color: var(--orange); }

.bonus-subtitle {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  font-weight: 500;
}

.bonus-perks {
  list-style: none;
  margin-bottom: 28px;
}

.bonus-perks li {
  font-size: 0.87rem;
  color: var(--text-dim);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bonus-perks li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
}

.bonus-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
}

.primary .bonus-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a0a2e;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.secondary .bonus-btn {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
}

.tertiary .bonus-btn {
  background: linear-gradient(135deg, var(--orange), #cc6600);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 140, 0, 0.3);
}

.bonus-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* ===== TEXT CONTENT ===== */
.content-section {
  padding: 80px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
  margin-top: 50px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.content-section h2:first-child { margin-top: 0; }

.content-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  margin-top: 30px;
}

.content-section p {
  color: var(--text-dim);
  margin-bottom: 18px;
  font-size: 0.97rem;
  line-height: 1.8;
}

.content-section ul {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 4px;
}

.content-section ul li {
  color: var(--text-dim);
  font-size: 0.95rem;
  padding: 5px 0 5px 24px;
  position: relative;
}

.content-section ul li::before {
  content: '▸';
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, #2d1b4e 0%, #1a0a2e 50%, #0d0a18 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-band h2 span { color: var(--gold); }

.cta-band p {
  color: var(--text-dim);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}

.cta-band-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step-counter;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  counter-increment: step-counter;
  transition: all 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.25);
}

.step-card::before {
  content: "0" counter(step-counter);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #1a0a2e;
  font-weight: 900;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: 50px;
}

.step-icon { font-size: 2.5rem; margin-bottom: 14px; }

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.step-text {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #060010;
  border-top: 1px solid rgba(255, 215, 0, 0.08);
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-dim);
  max-width: 260px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(160, 144, 192, 0.5);
  max-width: 600px;
  line-height: 1.5;
  text-align: right;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--text-dim);
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.floating-btn {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #1a0a2e;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.5);
  transition: all 0.3s;
  animation: pulse-gold 2.5s infinite;
}

.floating-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.7);
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 8px 32px rgba(255, 215, 0, 0.5); }
  50% { box-shadow: 0 8px 48px rgba(255, 215, 0, 0.8), 0 0 0 8px rgba(255, 215, 0, 0.1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 24px 40px;
  }
  .hero-desc { margin: 0 auto 28px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .banner-wrapper img { max-width: 360px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2rem; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }
  .floating-cta { bottom: 16px; right: 16px; }
}

/* ===== TRUST LOGOS ===== */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 24px;
  opacity: 0.5;
  align-items: center;
}

.trust-item {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  font-weight: 700;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* ===== NOTICE BANNER ===== */
.notice-banner {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.12), rgba(255, 60, 0, 0.08));
  border: 1px solid rgba(255, 140, 0, 0.25);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 24px 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.notice-icon { font-size: 1.4rem; flex-shrink: 0; }

.notice-text {
  font-size: 0.87rem;
  color: var(--text-dim);
}

.notice-text a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

/* ===== FAQ (видимый блок под JSON-LD FAQPage) ===== */
.faq-section .faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--card-bg);
  transition: border-color 0.25s;
}

.faq-item.open {
  border-color: rgba(255, 215, 0, 0.35);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.4;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-a {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item.open .faq-a {
  display: block;
}

.faq-a-inner {
  padding: 16px 22px 20px;
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.65;
}
