/* ============================================
   NOVA SPOT — Home Page Styles
   ============================================ */

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.7) 40%,
    rgba(10, 22, 40, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: var(--space-32) 0 var(--space-20);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(242, 101, 34, 0.15);
  border: 1px solid rgba(242, 101, 34, 0.3);
  border-radius: var(--radius-full);
  color: var(--color-orange-light);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  margin-bottom: var(--space-6);
  animation: fadeInDown var(--duration-slower) var(--ease-out);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: var(--font-black);
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: var(--space-6);
  animation: fadeInUp var(--duration-slower) var(--ease-out) 100ms both;
}

.hero-title span {
  color: var(--color-orange);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, var(--text-xl));
  color: var(--color-gray-300);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  max-width: 560px;
  animation: fadeInUp var(--duration-slower) var(--ease-out) 200ms both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  animation: fadeInUp var(--duration-slower) var(--ease-out) 300ms both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp var(--duration-slower) var(--ease-out) 500ms both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-gray-400);
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-gray-400);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  animation: float 3s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-orange), transparent);
}

@media (max-width: 768px) {
  .hero-content {
    padding: var(--space-24) 0 var(--space-16);
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-scroll {
    display: none;
  }
}

/* --- Trust Counter Section --- */
.section-counters {
  background: var(--color-navy-deep);
  position: relative;
  overflow: hidden;
}

.section-counters::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(242, 101, 34, 0.05);
}

/* --- Categories Section --- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
}

.categories-grid .card-category:nth-child(1),
.categories-grid .card-category:nth-child(2) {
  grid-column: span 1;
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Why Nova Spot --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Featured Products --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

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

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

/* --- Before & After --- */
.section-before-after {
  background: var(--color-gray-50);
}

/* --- Buying Process --- */
.section-process {
  background: var(--color-white);
}

/* --- Reviews Section --- */
.section-reviews {
  background: var(--color-gray-50);
  overflow: hidden;
}

/* --- Sell Section --- */
.section-sell {
  position: relative;
  overflow: hidden;
}

.sell-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.sell-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.sell-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .sell-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* --- Instagram Section --- */
.section-instagram {
  background: var(--color-white);
}

/* --- FAQ Section --- */
.section-faq-home {
  background: var(--color-gray-50);
}

.faq-home-grid {
  max-width: 800px;
  margin: 0 auto;
}

/* --- Final CTA --- */
.section-final-cta {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-hover) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--color-white);
}

.section-final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(-15deg);
}

.section-final-cta::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.03);
  transform: rotate(10deg);
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta-content .text-h2 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.final-cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-xl);
  margin-bottom: var(--space-8);
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* --- Trust Banner --- */
.section-trust-banner {
  background: var(--color-gray-50);
  border-bottom: 1px solid var(--color-gray-200);
}
