/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.25) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(160,120,48,0.2) 0%, transparent 70%);
  bottom: 100px; left: 5%;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,200,122,0.15) 0%, transparent 70%);
  top: 50%; left: 40%;
  animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.hero-slides { width: 100%; }

.hero-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  gap: 60px;
  opacity: 0;
  animation: fadeInHero 1s ease forwards 0.3s;
}

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

.hero-content { flex: 1; }

.hero-tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(44px, 5.5vw, 80px);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.7;
}

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

/* HERO VISUAL */
.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
}

.hero-circle {
  width: 280px; height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(160,120,48,0.05));
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateSlow 20s linear infinite;
}

.hero-circle-inner {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(10,10,15,0.8));
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-big-icon {
  font-size: 60px;
  color: var(--gold-light);
  animation: rotateSlow 20s linear infinite reverse;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-card-float {
  position: absolute;
  background: rgba(20, 20, 30, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  animation: floatCard 6s ease-in-out infinite;
}
.card-float-2 { animation-delay: -3s; bottom: 60px; right: 10px; }
.hero-card-float:first-child { top: 60px; left: 10px; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hc-icon { font-size: 26px; }
.hc-title { font-weight: 600; font-size: 14px; color: var(--text-primary); }
.hc-sub { font-size: 12px; color: var(--text-muted); }

/* SCROLL HINT */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* STATS BAR */
.stats-bar {
  background: var(--dark-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item { text-align: center; padding: 0 48px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px; height: 50px;
  background: var(--border);
}

/* WHY SECTION */
.why-section {
  padding: 100px 0;
  background: var(--dark);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--dark-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.why-card-accent {
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(10,10,15,0.8) 100%);
  border-color: rgba(201,168,76,0.3);
}
.why-icon { font-size: 36px; margin-bottom: 20px; }
.why-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.why-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.why-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.why-link:hover { letter-spacing: 1px; }

/* FEATURED PRODUCTS */
.featured-products {
  padding: 100px 0;
  background: var(--dark-3);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--dark-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}
.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}
.new-badge { background: #4CAF50; color: white; }
.product-img-wrap {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
  border-bottom: 1px solid var(--border-soft);
}
.product-img-placeholder { font-size: 80px; }
.product-info { padding: 24px; }
.product-info h4 { font-size: 20px; margin-bottom: 8px; }
.product-info p { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.product-bottom { display: flex; justify-content: space-between; align-items: center; }
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-light);
}

/* HOW IT WORKS */
.how-section {
  padding: 100px 0;
  background: var(--dark);
}
.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.step-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 220px;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(201,168,76,0.3);
  margin-bottom: 16px;
}
.step-item h4 { font-size: 20px; margin-bottom: 12px; }
.step-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.step-arrow {
  font-size: 24px;
  color: var(--gold);
  margin-top: 60px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 100px 0;
  background: var(--dark-3);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border); transform: translateY(-4px); }
.tc-featured {
  border-color: rgba(201,168,76,0.3);
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, var(--dark-card) 100%);
}
.stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 15px; color: var(--text-primary); }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* CTA BANNER */
.cta-banner {
  padding: 100px 0;
  background: var(--dark);
}
.cta-inner {
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(10,10,15,0.8) 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 24px;
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner h2 { font-size: clamp(36px, 4vw, 60px); margin-bottom: 20px; position: relative; }
.cta-inner p { font-size: 18px; color: var(--text-secondary); margin-bottom: 36px; position: relative; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-slide {
    flex-direction: column;
    text-align: center;
    padding: 120px 24px 60px;
  }
  .hero-btns { justify-content: center; }
  .hero-visual { min-height: 250px; }
  .hero-circle { width: 200px; height: 200px; }
  .hero-circle-inner { width: 140px; height: 140px; }
  .hero-card-float { display: none; }
  .stats-bar .container { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .steps-row { flex-direction: column; align-items: center; gap: 24px; }
  .step-arrow { display: none; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .products-grid, .testimonials-grid { grid-template-columns: 1fr; }
}
