/* ===== Variables ===== */
:root {
  --purple-deep: #3a0057;
  --purple-main: #500078;
  --purple-mid: #6b1a9a;
  --purple-light: #8b2fc9;
  --yellow-bright: #ffea00;
  --yellow-gold: #ffd700;
  --white: #ffffff;
  --black: #0a0a0a;
  --red-accent: #e63946;
  --gray-100: #f5f0fa;
  --gray-300: #c4b0d4;
  --shadow-glow: 0 0 60px rgba(255, 234, 0, 0.25);
  --radius: 16px;
  --radius-lg: 24px;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-h: 72px;
  --switcher-h: 88px;
  --top-offset: calc(var(--header-h) + var(--switcher-h) + 2.5rem);
}

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

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

body {
  font-family: var(--font-body);
  background: linear-gradient(160deg, var(--purple-deep) 0%, var(--purple-main) 40%, #2d0044 100%);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ===== Background Pattern ===== */
.bg-pattern {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='5' y='25' font-size='18' fill='%23fff'%3E♠%3C/text%3E%3Ctext x='35' y='50' font-size='14' fill='%23fff'%3E♦%3C/text%3E%3Ctext x='30' y='20' font-size='12' fill='%23fff'%3E●%3C/text%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.floating-chips {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.chip {
  position: absolute;
  font-size: 2rem;
  opacity: 0.08;
  animation: float 8s ease-in-out infinite;
}

.chip-1 { top: 15%; left: 8%; animation-delay: 0s; }
.chip-2 { top: 60%; left: 5%; animation-delay: 2s; }
.chip-3 { top: 30%; right: 10%; animation-delay: 1s; }
.chip-4 { top: 75%; right: 15%; animation-delay: 3s; }
.chip-5 { top: 45%; left: 45%; animation-delay: 1.5s; color: var(--yellow-bright); }
.chip-6 { top: 85%; left: 30%; animation-delay: 4s; color: var(--red-accent); }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(58, 0, 87, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 234, 0, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
  position: relative;
}

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

.logo-img {
  height: 32px;
  width: auto;
  display: block;
  border-radius: 8px;
}

.logo-img-footer {
  height: 36px;
  margin: 0 auto;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-300);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--yellow-bright);
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ===== Language Switcher ===== */
.lang-switcher {
  position: relative;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  height: 2.25rem;
  padding: 0 0.7rem 0 0.55rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--gray-300);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.lang-trigger:hover,
.lang-switcher.open .lang-trigger {
  color: var(--white);
  border-color: rgba(255, 234, 0, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.lang-trigger-icon,
.lang-trigger-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: inherit;
}

.lang-trigger-chevron {
  width: 0.875rem;
  height: 0.875rem;
  opacity: 0.75;
  transition: transform 0.2s ease;
}

.lang-switcher.open .lang-trigger-chevron {
  transform: rotate(180deg);
}

.lang-current {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding-top: 1px;
}

.lang-current .lang-code {
  display: none;
}

.lang-menu-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 11.25rem;
  z-index: 120;
  background: var(--purple-deep);
  border: 1px solid rgba(255, 234, 0, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.lang-menu-panel[hidden] {
  display: none;
}

.lang-menu-viewport {
  position: relative;
}

.lang-menu {
  max-height: min(13rem, 50vh);
  overflow-y: auto;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 234, 0, 0.45) transparent;
}

.lang-menu li {
  margin: 0;
  padding: 0;
}

.lang-menu::-webkit-scrollbar {
  width: 5px;
}

.lang-menu::-webkit-scrollbar-track {
  background: transparent;
}

.lang-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 234, 0, 0.4);
  border-radius: 999px;
}

.lang-scroll-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.lang-scroll-fade-top {
  top: 0;
  background: linear-gradient(to bottom, var(--purple-deep), transparent);
}

.lang-scroll-fade-bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--purple-deep), transparent);
}

.lang-menu-panel.show-fade-top .lang-scroll-fade-top,
.lang-menu-panel.show-fade-bottom .lang-scroll-fade-bottom {
  opacity: 1;
}

.lang-scroll-indicator {
  display: none;
  align-items: center;
  justify-content: center;
  height: 1.35rem;
  color: var(--yellow-bright);
  background: rgba(35, 0, 52, 0.98);
  border-top: 1px solid rgba(255, 234, 0, 0.12);
}

.lang-scroll-indicator svg {
  display: block;
  animation: langScrollPulse 1.4s ease-in-out infinite;
}

.lang-menu-panel.show-scroll-hint .lang-scroll-indicator {
  display: flex;
}

@keyframes langScrollPulse {
  0%, 100% { transform: translateY(-2px); opacity: 0.55; }
  50% { transform: translateY(2px); opacity: 1; }
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.25rem;
  padding: 0.45rem 0.55rem;
  background: none;
  border: none;
  border-radius: 10px;
  color: var(--gray-300);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.lang-option-mark {
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lang-option-mark::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s, box-shadow 0.2s;
}

.lang-option.active .lang-option-mark::before {
  background: var(--yellow-bright);
  box-shadow: 0 0 8px rgba(255, 234, 0, 0.45);
}

.lang-option-label {
  flex: 1;
  min-width: 0;
}

.lang-option:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.lang-option.active {
  color: var(--yellow-bright);
  background: rgba(255, 234, 0, 0.08);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--yellow-bright);
  color: var(--black);
  box-shadow: 0 4px 24px rgba(255, 234, 0, 0.4);
}

.btn-primary:hover {
  background: var(--yellow-gold);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--yellow-bright);
  color: var(--yellow-bright);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 1;
  padding: var(--top-offset) 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-visual {
  position: relative;
}

.hero-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--yellow-bright) 0%, #f5c800 100%);
  border-radius: 50%;
  z-index: 0;
  box-shadow: 0 0 80px rgba(255, 234, 0, 0.3);
}

.hero-banner {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  /* box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4); */
}

.hero-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  z-index: 2;
  background: var(--white);
  color: var(--purple-deep);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  animation: pulse-badge 2s ease-in-out infinite;
}

.badge-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple-mid);
}

.badge-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red-accent);
  line-height: 1.1;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-content {
  position: relative;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 234, 0, 0.15);
  border: 1px solid rgba(255, 234, 0, 0.3);
  color: var(--yellow-bright);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  font-family: var(--font-display);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.line-white {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  letter-spacing: 0.04em;
}

.line-yellow {
  display: block;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--yellow-bright);
  letter-spacing: 0.02em;
  text-shadow: 0 0 40px rgba(255, 234, 0, 0.5);
}

.line-white-sm {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--white);
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

.hero-sub-bar {
  background: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  margin: 1.25rem 0 0.75rem;
  max-width: 420px;
}

.hero-sub-bar p {
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}

.hero-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 1.25rem;
}

.hero-dots span {
  display: block;
  background: var(--yellow-bright);
  border-radius: 50%;
  animation: dot-pulse 1.5s ease-in-out infinite;
}

.hero-dots span:nth-child(1) { width: 8px; height: 8px; }
.hero-dots span:nth-child(2) { width: 12px; height: 12px; animation-delay: 0.2s; }
.hero-dots span:nth-child(3) { width: 16px; height: 16px; animation-delay: 0.4s; }
.hero-dots span:nth-child(4) { width: 12px; height: 12px; animation-delay: 0.6s; }
.hero-dots span:nth-child(5) { width: 8px; height: 8px; animation-delay: 0.8s; }

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-desc {
  color: var(--gray-300);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 1.75rem;
}

.hero-desc strong {
  color: var(--yellow-bright);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--yellow-bright);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== Promo Strip ===== */
.promo-strip {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.25);
  border-block: 1px solid rgba(255, 234, 0, 0.15);
  padding: 1rem 0;
}

.promo-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.promo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-100);
}

.promo-icon {
  font-size: 1.2rem;
}

/* ===== Sections ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  color: var(--yellow-bright);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--gray-300);
  font-size: 1.05rem;
}

.highlight {
  color: var(--yellow-bright);
}

/* ===== Steps ===== */
.steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 234, 0, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow-bright);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  /* color: rgba(255, 234, 0, 0.2); */
      color: var(--yellow-bright);
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--gray-300);
  font-size: 0.9rem;
}

.step-connector {
  width: 40px;
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow-bright), var(--purple-light));
  flex-shrink: 0;
}

/* ===== Benefits ===== */
.benefits-section {
  background: rgba(0, 0, 0, 0.15);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 234, 0, 0.3);
}

.benefit-card.featured {
  /* border-color: var(--yellow-bright); */
  background: linear-gradient(135deg, rgba(255, 234, 0, 0.1) 0%, rgba(107, 26, 154, 0.3) 100%);
}

.benefit-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 234, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.benefit-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--gray-300);
  font-size: 0.9rem;
}

/* ===== Earnings ===== */
.earnings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.earnings-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  line-height: 1.05;
}

.earnings-desc {
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

.earnings-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.earnings-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--yellow-bright);
  color: var(--black);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.earnings-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.earn-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 0 1rem;
  align-items: center;
  transition: transform 0.3s;
}

.earn-card:hover {
  transform: translateX(6px);
}

.earn-card.popular {
  border-color: var(--yellow-bright);
  background: linear-gradient(135deg, rgba(255, 234, 0, 0.12), rgba(107, 26, 154, 0.2));
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--yellow-bright);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.earn-card.elite .earn-amount {
  color: var(--yellow-bright);
  text-shadow: 0 0 20px rgba(255, 234, 0, 0.4);
}

.earn-tier {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-300);
  grid-column: 1;
}

.earn-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  grid-column: 1;
  line-height: 1;
}

.earn-period {
  font-size: 0.85rem;
  color: var(--gray-300);
  grid-column: 2;
  grid-row: 2;
  align-self: end;
}

.earn-note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--gray-300);
  margin-top: 0.25rem;
}

/* ===== CTA ===== */
.cta-section {
  padding-bottom: 6rem;
}

.cta-box {
  position: relative;
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--purple-deep) 100%);
  border: 2px solid rgba(255, 234, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.cta-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 30px solid var(--yellow-bright);
  opacity: 0.3;
}

.cta-gifts .gift {
  position: absolute;
  font-size: 3rem;
  bottom: 1rem;
  opacity: 0.6;
}

.gift-left { left: 1.5rem; }
.gift-right { right: 1.5rem; }

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.cta-content > p {
  color: var(--gray-300);
  margin-bottom: 2rem;
}

.cta-content > .btn-block {
  margin-top: 0.5rem;
}
  font-size: 0.8rem;
  color: var(--gray-300);
}

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand p {
  color: var(--gray-300);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--gray-300);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--yellow-bright);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== Program Switcher ===== */
.program-switcher-wrap {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(45, 0, 68, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 234, 0, 0.15);
  padding: 0.85rem 0 1.25rem;
}

.program-switcher {
  display: flex;
  gap: 0.75rem;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  padding: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.program-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
  min-height: 56px;
}

.program-tab:hover {
  background: rgba(255, 255, 255, 0.06);
}

.program-tab.active {
  background: #b436ee;
  box-shadow: 0 4px 20px rgba(255, 234, 0, 0.35);
}

.tab-brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.tab-logo {
  height: 26px;
  width: auto;
  border-radius: 4px;
  display: block;
}

.program-tab.active .tab-logo {
  filter: none;
}

.program-tab:not(.active) .tab-logo {
  opacity: 0.9;
}

.tab-sublabel {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow-bright);
  line-height: 1;
  white-space: nowrap;
}

.program-tab.active .tab-sublabel {
  /* color: var(--yellow-bright); */
      color: #000000;
    padding: 3px 7px;
    background: #ffea00;
    border-radius: 10px;
}

.program-tab:not(.active) .tab-sublabel {
  /* color: var(--gray-300); */
      color: #000000;
    padding: 3px 7px;
    background: #ffea00;
    border-radius: 10px;
}

/* ===== Program Views ===== */
.program-view {
  display: none;
}

.program-view.active {
  display: block;
}

.hero-visual-referral {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

.hero-visual-referral .hero-circle {
  width: 90%;
  opacity: 0.85;
}

.hero-banner-referral {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  /* box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4); */
  width: 100%;
  height: auto;
  object-fit: contain;
}

.steps-4 .step-card {
  max-width: 240px;
}

@media (min-width: 901px) {
  .steps-4 .step-card {
    max-width: none;
    flex: 1;
  }

  .steps-4 .step-connector {
    width: 20px;
    flex-shrink: 0;
  }
}

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

.cta-logo {
  height: 44px;
  width: auto;
  margin: 0 auto 1rem;
  border-radius: 8px;
}

.affiliate-cta-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.affiliate-cta-brand span {
  color: var(--yellow-bright);
}

/* ===== FAQ / SEO Section ===== */
.faq-section {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 234, 0, 0.1);
  padding-bottom: 4rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 234, 0, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.25s;
}

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

.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--yellow-bright);
  line-height: 1.4;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.6;
}

.faq-item a {
  color: var(--yellow-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-keywords-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  :root {
    --header-h: 64px;
    --switcher-h: 76px;
    --top-offset: calc(var(--header-h) + var(--switcher-h) + 1.75rem);
  }

  .header-inner {
    padding: 0.75rem 0;
    gap: 1rem;
  }

  .logo-img {
    height: 28px;
  }

  .nav { display: none; }
  .header-inner .btn-sm { display: none; }

  .menu-toggle { display: flex; }

  .lang-trigger {
    height: 2rem;
    padding: 0 0.55rem 0 0.45rem;
    font-size: 0.78rem;
    gap: 0.3rem;
  }

  .lang-current .lang-name { display: none; }
  .lang-current .lang-code { display: inline; }

  .lang-menu-panel {
    width: 10.5rem;
  }

  .lang-menu {
    max-height: min(12rem, 46vh);
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: var(--purple-deep);
    padding: 1.25rem;
    gap: 0.75rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 234, 0, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    z-index: 110;
  }

  .nav.open a {
    padding: 0.65rem 0.5rem;
    font-size: 1rem;
  }

  .program-switcher-wrap {
    padding: 0.65rem 0 1rem;
  }

  .hero {
    padding-bottom: 3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    order: -1;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }

  .hero-content {
    text-align: center;
  }

  .hero-sub-bar {
    margin-inline: auto;
    max-width: 100%;
  }

  .hero-dots {
    justify-content: center;
  }

  .hero-desc {
    margin-inline: auto;
    font-size: 1rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .hero-badge {
    right: 0.5rem;
    bottom: 0.5rem;
  }

  .promo-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem 1rem;
    justify-items: center;
  }

  .promo-item {
    font-size: 0.8rem;
    text-align: left;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-head {
    margin-bottom: 2.5rem;
  }

  .section-head h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .step-card {
    max-width: 100%;
    width: 100%;
  }

  .step-connector {
    width: 2px;
    height: 28px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--yellow-bright), var(--purple-light));
  }

  .benefits-grid,
  .benefits-grid-3 {
    grid-template-columns: 1fr;
  }

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

  .earnings-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .earnings-content {
    text-align: center;
  }

  .earnings-list {
    align-items: flex-start;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .steps-4 .step-card {
    max-width: 100%;
  }

  .program-switcher {
    max-width: 100%;
    gap: 0.5rem;
  }

  .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .cta-gifts .gift {
    font-size: 2rem;
    bottom: 0.5rem;
  }

  .gift-left { left: 0.5rem; }
  .gift-right { right: 0.5rem; }

  .footer-links {
    gap: 1.25rem 1.75rem;
  }
}

@media (max-width: 600px) {
  .promo-inner {
    grid-template-columns: 1fr;
  }

  .promo-item {
    justify-content: center;
    text-align: center;
  }

  .stat {
    min-width: 80px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 58px;
    --switcher-h: 70px;
    --top-offset: calc(var(--header-h) + var(--switcher-h) + 1.25rem);
  }

  .container {
    width: min(1200px, 94vw);
  }

  .logo-img {
    height: 26px;
  }

  .program-switcher {
    padding: 0.3rem;
    border-radius: 40px;
  }

  .program-tab {
    padding: 0.4rem 0.35rem;
    min-height: 48px;
  }

  .tab-logo {
    height: 20px;
  }

  .tab-sublabel {
    font-size: 0.5rem;
    letter-spacing: 0.04em;
  }

  .hero-tag {
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
  }

  .line-white {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .line-yellow {
    font-size: clamp(2rem, 11vw, 3.2rem);
    word-break: break-word;
  }

  .line-white-sm {
    font-size: clamp(1.2rem, 5.5vw, 1.75rem);
  }

  .hero-sub-bar {
    padding: 0.6rem 0.85rem;
  }

  .hero-sub-bar p {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .hero-desc {
    font-size: 0.92rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    margin-bottom: 2rem;
  }

  .hero-cta .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.88rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-visual-referral .hero-circle {
    display: none;
  }

  .hero-circle {
    width: 80%;
  }

  .hero-badge {
    padding: 0.5rem 0.85rem;
  }

  .badge-amount {
    font-size: 1.5rem;
  }

  .section {
    padding: 2.75rem 0;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .section-head p {
    font-size: 0.92rem;
    padding: 0 0.25rem;
  }

  .step-card {
    padding: 1.5rem 1.25rem;
  }

  .step-num {
    font-size: 2.25rem;
  }

  .benefit-card {
    padding: 1.5rem 1.25rem;
  }

  .earn-card {
    padding: 1.15rem 1rem;
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .earn-period {
    grid-column: 1;
    grid-row: auto;
    align-self: auto;
  }

  .earn-amount {
    font-size: 1.85rem;
  }

  .popular-badge {
    right: 10px;
    font-size: 0.62rem;
    padding: 0.2rem 0.5rem;
  }

  .cta-box {
    padding: 2rem 1rem;
  }

  .cta-content h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .cta-gifts .gift {
    display: none;
  }

  .btn {
    white-space: normal;
  }

  .footer {
    padding: 2rem 0;
  }

  .footer-copy {
    padding: 0 0.5rem;
    line-height: 1.5;
  }
}

@media (max-width: 360px) {
  .tab-sublabel {
    font-size: 0.45rem;
  }

  .program-tab {
    min-height: 44px;
  }
}
