/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #1a1209;
  --bg-card: #2a1f12;
  --bg-card-hover: #352a1a;
  --accent-gold: #d4a24e;
  --accent-orange: #e8922f;
  --accent-bright: #f5a623;
  --text-white: #ffffff;
  --text-light: #c4b89a;
  --text-muted: #8a7e6b;
  --border-dark: #3d2e1c;
  --border-gold: #d4a24e44;
  --gradient-gold: linear-gradient(135deg, #e8922f, #d4a24e, #f5c862);
  --shadow-glow: 0 0 30px rgba(212, 162, 78, 0.15);
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: 
    linear-gradient(180deg, rgba(26, 18, 9, 0.7) 0%, rgba(26, 18, 9, 0.95) 100%),
    url('https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=1600&q=80') center/cover no-repeat;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(212, 162, 78, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid var(--accent-gold);
  border-radius: 50px;
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: rgba(212, 162, 78, 0.08);
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== COUNTDOWN ===== */
.countdown-section {
  margin-bottom: 30px;
}

.countdown-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 90px;
  text-align: center;
  box-shadow: var(--shadow-glow);
  transition: transform 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-3px);
}

.countdown-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-bright);
  line-height: 1;
  margin-bottom: 6px;
}

.countdown-unit {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== FORM ===== */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  margin: 0 auto 16px;
  width: 100%;
}

.signup-form input {
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--border-dark);
  background: var(--bg-card);
  color: var(--text-white);
  font-size: 0.95rem;
  font-family: var(--font-main);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.signup-form input::placeholder {
  color: var(--text-muted);
}

.signup-form input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 162, 78, 0.15);
}

.btn-primary {
  padding: 16px 32px;
  background: var(--gradient-gold);
  color: #1a1209;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--font-main);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 162, 78, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== STATS ===== */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 40px 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-bright);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
  border-color: var(--border-gold);
}

.product-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border-radius: 12px;
  background: rgba(212, 162, 78, 0.1);
}

.product-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #1f170d 50%, var(--bg-dark) 100%);
}

.how-content {
  max-width: 1100px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 30px 22px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.step-number {
  position: absolute;
  top: -14px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: var(--gradient-gold);
  color: #1a1209;
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-bright);
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  background: 
    linear-gradient(180deg, var(--bg-dark) 0%, rgba(42, 31, 18, 0.6) 50%, var(--bg-dark) 100%),
    url('https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=1600&q=80') center/cover no-repeat;
  background-attachment: fixed;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(212, 162, 78, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 14px;
}

.cta-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.cta-disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid var(--border-dark);
}

.footer p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }
.animate-in:nth-child(5) { animation-delay: 0.5s; }
.animate-in:nth-child(6) { animation-delay: 0.6s; }
.animate-in:nth-child(7) { animation-delay: 0.7s; }
.animate-in:nth-child(8) { animation-delay: 0.8s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .products-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 600px) {
  .products-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .countdown {
    gap: 10px;
  }

  .countdown-item {
    min-width: 70px;
    padding: 12px 14px;
  }

  .countdown-number {
    font-size: 1.8rem;
  }

  .stats-bar {
    gap: 30px;
  }

  .section-header h2,
  .cta-content h2 {
    font-size: 1.8rem;
  }
}