/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(27, 94, 32, 0.85) 50%, rgba(0, 0, 0, 0.9) 100%), url('../images/hero-1600.jpg') center/cover;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 108px 0 76px;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--color-bg) 0%, transparent 100%);
  pointer-events: none;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hero-content {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.badge {
  display: inline-block;
  background-color: var(--color-cta);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-telugu);
}

.hero-content h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 15px;
  overflow-wrap: normal;
}

.hero-subtitle {
  color: var(--color-cta); /* Sunset orange */
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: anywhere;
}

.hero-desc {
  color: #FFFFFF;
  font-size: 18px;
  margin: 0 auto 30px auto;
  max-width: 550px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-image {
  display: none; /* Hidden since it's now in the background */
}

.hero-product-image {
  border-radius: 20px;
}

.glow-effect {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.glow-effect img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 24px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-20px) translateX(-50%); }
  60% { transform: translateY(-10px) translateX(-50%); }
}

/* Stats Section styling */
.stats-section {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid #E8F5E9;
  position: relative;
  transition: transform 0.3s ease;
}

.stat-item:last-child {
  border-right: none;
}

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

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 15px;
  color: var(--color-text-muted);
  font-weight: 600;
  font-family: var(--font-telugu);
}

/* Innovator Section styling */
.innovator-section {
  background-color: var(--color-bg);
  padding: 100px 0;
  position: relative;
}

.innovator-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.innovator-content h2 {
  font-size: 15px;
  color: var(--color-cta);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: var(--font-body);
}

.innovator-content h3 {
  font-size: 38px;
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: 800;
  font-family: var(--font-telugu);
}

.innovator-content p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 32px;
  font-family: var(--font-telugu);
}

.innovator-award-card {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.innovator-award-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.award-icon-wrapper {
  width: 54px;
  height: 54px;
  background: #FFB300;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 14px rgba(255, 179, 0, 0.35);
  flex-shrink: 0;
}

.award-card-details {
  flex: 1;
}

.award-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #E65100;
  background: rgba(230, 81, 0, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: var(--font-body);
}

.award-card-title {
  font-size: 18px;
  color: #3E2723;
  margin-bottom: 6px;
  font-family: var(--font-telugu);
  font-weight: 700;
}

.award-card-text {
  font-size: 14px;
  color: #5D4037;
  line-height: 1.65;
  font-family: var(--font-telugu);
  margin-bottom: 4px;
}

.award-card-meta {
  font-size: 12px;
  color: #795548;
  font-weight: 600;
  font-family: var(--font-telugu);
}

.innovator-achievements {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 0;
  margin-bottom: 0;
}

.innovator-achievements li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.innovator-achievements li i {
  font-size: 18px;
  color: var(--color-primary);
  background: #E8F5E9;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 6px rgba(27, 94, 32, 0.08);
}

.innovator-achievements li span {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
  font-family: var(--font-telugu);
  flex: 1;
}

.innovator-image {
  position: relative;
}

.innovator-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  box-shadow: 
    0 0 0 4px #E8F5E9,
    0 20px 48px rgba(27, 94, 32, 0.15);
  transition: transform 0.3s ease;
  display: block;
}

.innovator-image:hover img {
  transform: translateY(-4px);
}

/* Problem Statement Section */
.problem-section {
  background-color: var(--color-problem);
  color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title.light {
  color: white;
}

.section-title.dark {
  color: var(--color-primary);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.problem-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.problem-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.problem-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.problem-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.problem-card p {
  color: #FFCDD2;
  font-size: 15px;
}

/* Products Overview */
.products-section {
  background-color: var(--color-bg);
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 50px;
  font-size: 18px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: white;
  border: none;
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.product-card.weedcut::before { background-color: var(--color-weedcut); }
.product-card.nemato::before { background-color: var(--color-nemato); }
.product-card.grow::before { background-color: var(--color-grow); }

.product-card.weedcut { border-top: 4px solid var(--color-weedcut); }
.product-card.nemato { border-top: 4px solid var(--color-nemato); }
.product-card.grow { border-top: 4px solid var(--color-grow); }

.product-badge {
  display: inline-block;
  background: #E8F5E9;
  color: var(--color-primary);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.product-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.product-card.weedcut h3 { color: var(--color-weedcut); }
.product-card.nemato h3 { color: var(--color-nemato); }
.product-card.grow h3 { color: var(--color-grow); }

.product-subtitle {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 500;
}

.product-desc {
  margin-bottom: 20px;
  font-size: 15px;
}

.dosage-badge {
  display: inline-block;
  background-color: #E8F5E9;
  color: var(--color-primary);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.product-link {
  font-weight: 600;
  font-family: var(--font-telugu);
}

.product-card.weedcut .product-link { color: var(--color-weedcut); }
.product-card.nemato .product-link { color: var(--color-nemato); }
.product-card.grow .product-link { color: var(--color-grow); }

/* Double Power Combo Banner */
.combo-banner {
  background-color: var(--color-combo);
  padding: 60px 0;
  color: white;
}

.combo-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.combo-content {
  flex: 1;
}

.combo-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.combo-subtitle {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
}

.combo-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-tile {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.benefit-tile:hover {
  transform: translateY(-5px);
}

.benefit-tile i {
  color: #FFF59D;
  margin-top: 3px;
}

/* How It Works */
.how-it-works {
  background-color: white;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: border-box;
  border-top: 2px dashed var(--color-primary);
  z-index: 1;
}

.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.step-circle {
  width: 70px;
  height: 70px;
  background-color: white;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.step-circle:hover {
  transform: scale(1.1);
}

.timeline-step h3 {
  color: var(--color-primary);
  margin-bottom: 10px;
  font-size: 18px;
}

/* Benefits Strip */
.benefits-strip {
  background-color: var(--color-primary);
  padding: 40px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-item {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.benefit-item i {
  color: var(--color-primary);
  font-size: 32px;
  margin-bottom: 14px;
}

.benefit-item h4 {
  color: var(--color-primary);
  font-size: 18px;
}

.benefits-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.benefit-chip {
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
}

/* Usage Notes */
.usage-notes {
  background-color: var(--color-notes);
  color: white;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.note-card {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #7986CB;
  padding: 25px;
  border-radius: 0 8px 8px 0;
}

.note-card h4 {
  color: #9FA8DA;
  margin-bottom: 10px;
  font-size: 18px;
}

.note-card p {
  color: #E8EAF6;
}

/* Enquire CTA */
.enquire-section {
  background-color: white;
  text-align: center;
  padding: 100px 0;
}

.enquire-section h2 {
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.enquire-section p {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .hero-content {
    width: 100%;
    text-align: center;
    padding: 0;
  }
  .hero-desc {
    margin: 0 auto 30px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image {
    display: none;
  }
  .combo-container {
    flex-direction: column;
  }
  .innovator-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .innovator-image {
    max-width: 380px;
    margin: 0 auto;
    order: -1;
  }
  .innovator-award-card {
    text-align: left;
  }
  .innovator-achievements li {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100svh;
    align-items: center;
  }
  .hero-content h1 {
    font-size: 48px;
  }
  .hero-subtitle {
    font-size: 26px;
  }
  .problem-grid, .products-grid, .product-showcase, .notes-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  .stats-section {
    margin-top: -30px;
    padding: 0 10px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid #E8F5E9;
    padding: 30px 20px;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline {
    flex-direction: column;
    gap: 40px;
  }
  .timeline::before {
    display: none;
  }
  .cta-buttons {
    flex-direction: column;
    padding: 0 20px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 100svh;
    padding: 112px 0 72px;
  }
  .hero-content {
    padding: 0;
  }
  .badge {
    max-width: 100%;
    border-radius: 12px;
    line-height: 1.5;
  }
  .hero-content h1 {
    font-size: 42px;
  }
  .hero-subtitle {
    font-size: 24px;
    line-height: 1.55;
    max-width: 330px;
  }
  .hero-desc {
    font-size: 16px;
    line-height: 1.75;
    max-width: 330px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-buttons .btn {
    width: 100%;
    min-height: 52px;
    padding: 12px 18px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .innovator-section {
    padding: 60px 0;
  }
  .innovator-content h3 {
    font-size: 30px;
  }
  .innovator-award-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .innovator-award-card .award-card-tag {
    margin-bottom: 8px;
  }
}

/* ══════════════════════════════════════
   INNOVATIONS SPOTLIGHT SECTION (Home)
══════════════════════════════════════ */
.innovations-spotlight-section {
  background: linear-gradient(160deg, #f0fdf4 0%, #fafffe 50%, #f0f4ff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.innovations-spotlight-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(27,94,32,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.spotlight-header {
  text-align: center;
  margin-bottom: 60px;
}
.spotlight-eyebrow {
  display: inline-block;
  background: linear-gradient(90deg, #1B5E20, #388E3C);
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 18px;
  font-family: var(--font-body);
}
.spotlight-title {
  font-size: 40px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 14px;
  line-height: 1.25;
}
.spotlight-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.spotlight-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.spotlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 16px 16px 0 0;
}
.spotlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}
.sp-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  flex-shrink: 0;
}
.sp-body { flex: 1; }
.sp-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 7px;
  font-family: var(--font-body);
}
.sp-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  font-family: var(--font-telugu);
  line-height: 1.3;
}
.sp-body p {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
  font-family: var(--font-telugu);
}

/* Colour variants */
.spotlight-card.green::before { background: #1B5E20; }
.spotlight-card.green .sp-icon { background: linear-gradient(135deg, #1B5E20, #43A047); }
.spotlight-card.green .sp-tag { background: #E8F5E9; color: #1B5E20; }
.spotlight-card.blue::before { background: #1565C0; }
.spotlight-card.blue .sp-icon { background: linear-gradient(135deg, #1565C0, #42A5F5); }
.spotlight-card.blue .sp-tag { background: #E3F2FD; color: #1565C0; }
.spotlight-card.amber::before { background: #E65100; }
.spotlight-card.amber .sp-icon { background: linear-gradient(135deg, #E65100, #FFA726); }
.spotlight-card.amber .sp-tag { background: #FFF3E0; color: #E65100; }
.spotlight-card.teal::before { background: #00695C; }
.spotlight-card.teal .sp-icon { background: linear-gradient(135deg, #00695C, #26A69A); }
.spotlight-card.teal .sp-tag { background: #E0F2F1; color: #00695C; }
.spotlight-card.purple::before { background: #6A1B9A; }
.spotlight-card.purple .sp-icon { background: linear-gradient(135deg, #6A1B9A, #AB47BC); }
.spotlight-card.purple .sp-tag { background: #F3E5F5; color: #6A1B9A; }
.spotlight-card.rose::before { background: #C62828; }
.spotlight-card.rose .sp-icon { background: linear-gradient(135deg, #C62828, #EF5350); }
.spotlight-card.rose .sp-tag { background: #FFEBEE; color: #C62828; }
.spotlight-card.indigo::before { background: #283593; }
.spotlight-card.indigo .sp-icon { background: linear-gradient(135deg, #283593, #5C6BC0); }
.spotlight-card.indigo .sp-tag { background: #E8EAF6; color: #283593; }
.spotlight-card.pink::before { background: #880E4F; }
.spotlight-card.pink .sp-icon { background: linear-gradient(135deg, #880E4F, #EC407A); }
.spotlight-card.pink .sp-tag { background: #FCE4EC; color: #880E4F; }

.spotlight-cta { text-align: center; }

@media (max-width: 768px) {
  .spotlight-grid { grid-template-columns: 1fr; }
  .spotlight-title { font-size: 28px; }
}

