/* =====================================================
   HOME PAGE STYLES – Modern, Bold Design
   ===================================================== */

/* HERO SECTION – Full-width red gradient with bold typography */
.hero {
  background: linear-gradient(135deg, #ff0a06 0%, #cc0805 50%, #1a1a1a 100%);
  color: var(--white);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 58, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  opacity: 0.95;
  line-height: 1.5;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-primary {
  background: var(--white);
  color: var(--brand-red);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 18px 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-weight: 600;
  font-size: 1.125rem;
  padding: 18px 48px;
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
}

/* TRUST RIBBON – Badges with red accents */
.trust-ribbon {
  background: var(--white);
  padding: var(--spacing-xxl) 0;
  border-bottom: 1px solid var(--light-grey);
}

.trust-ribbon h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: var(--spacing-xl);
  color: var(--dark-text);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.badge {
  background: var(--light-bg);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.badge:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-red);
}

.badge-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  font-size: 2rem;
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.badge h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--dark-text);
}

.badge p {
  font-size: 0.9375rem;
  color: var(--mid-grey);
  line-height: 1.6;
  margin: 0;
}

/* FEATURED PRODUCTS */
.featured-products {
  padding: var(--spacing-xxl) 0;
  background: var(--light-bg);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xxl);
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  color: var(--dark-text);
}

.section-header .highlight {
  color: var(--brand-red);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--mid-grey);
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
}

.product-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-red);
}

.product-image {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.product-image::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

.product-content {
  padding: var(--spacing-lg);
}

.product-category {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-red);
  margin-bottom: var(--spacing-xs);
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--dark-text);
}

.product-card p {
  font-size: 1rem;
  color: var(--mid-grey);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.product-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.product-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(255, 10, 6, 0.1);
  color: var(--brand-red);
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card .btn-secondary {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
}

/* WHY SECTION */
.why-section {
  padding: var(--spacing-xxl) 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xxl);
}

.why-card {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--light-bg);
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
  border: 2px solid transparent;
}

.why-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-red);
  transform: translateY(-8px);
}

.why-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  font-size: 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--dark-text);
}

.why-card p {
  font-size: 1rem;
  color: var(--mid-grey);
  line-height: 1.7;
  margin: 0;
}

/* QUALITY PREVIEW – Red background section */
.quality-preview {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  color: var(--white);
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.quality-preview::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.quality-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.quality-content h2 {
  font-size: 3rem;
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.quality-content p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
}

.quality-badges {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-xl);
}

.quality-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.quality-badge:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: var(--white);
  transform: translateY(-4px);
}

.quality-preview .btn-primary {
  background: var(--white);
  color: var(--brand-red);
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.quality-preview .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

/* RESEARCH PREVIEW */
.research-preview {
  padding: var(--spacing-xxl) 0;
  background: var(--light-bg);
}

.research-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
}

.research-text h2 {
  font-size: 2.75rem;
  margin-bottom: var(--spacing-lg);
  color: var(--dark-text);
}

.research-text p {
  font-size: 1.125rem;
  color: var(--mid-grey);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

.research-visual {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xxl);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-red);
  position: relative;
  overflow: hidden;
}

.research-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.research-visual-content {
  position: relative;
  z-index: 2;
}

.research-stat {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.research-stat-label {
  font-size: 1.25rem;
  font-weight: 600;
  opacity: 0.9;
}

/* TESTIMONIALS */
.testimonials {
  padding: var(--spacing-xxl) 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xxl);
}

.testimonial-card {
  background: var(--light-bg);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--brand-red);
  transition: var(--transition);
}

.testimonial-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--dark-text);
  margin-bottom: var(--spacing-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.author-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--dark-text);
}

.author-info p {
  font-size: 0.875rem;
  color: var(--mid-grey);
  margin: 0;
}

/* BLOG PREVIEW */
.blog-preview {
  padding: var(--spacing-xxl) 0;
  background: var(--light-bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xxl);
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-red);
}

.blog-image {
  background: linear-gradient(135deg, var(--brand-red-light) 0%, var(--brand-red) 100%);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
}

.blog-content {
  padding: var(--spacing-lg);
}

.blog-meta {
  font-size: 0.875rem;
  color: var(--brand-red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-sm);
}

.blog-card h3 {
  font-size: 1.375rem;
  margin-bottom: var(--spacing-sm);
  color: var(--dark-text);
}

.blog-excerpt {
  font-size: 1rem;
  color: var(--mid-grey);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.blog-card a {
  color: var(--brand-red);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.blog-card a:hover {
  gap: 12px;
}

/* FINAL CTA */
.final-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--white);
  padding: var(--spacing-xxl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-red-light) 100%);
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: 3rem;
  margin-bottom: var(--spacing-lg);
}

.final-cta p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
}

.final-cta .btn-primary {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 18px 48px;
  box-shadow: var(--shadow-red);
}

.final-cta .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(255, 10, 6, 0.4);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .research-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero .btn-primary,
  .hero .btn-secondary {
    width: 100%;
    padding: 16px 32px;
  }

  .section-header h2 {
    font-size: 2.25rem;
  }

  .products-grid,
  .why-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .quality-content h2,
  .final-cta h2 {
    font-size: 2.25rem;
  }

  .research-text h2 {
    font-size: 2rem;
  }

  .research-stat {
    font-size: 3.5rem;
  }
}
