/* HOMEPAGE SPECIFIC LAYOUTS - NEXTGEN ENTERPRISES */

/* 1. HERO BANNER */
.hero-section {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding: 9.5rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.08) 0%, rgba(139, 92, 246, 0.05) 50%, var(--bg-main) 100%);
  overflow: hidden;
}

.hero-glow-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, rgba(139, 92, 246, 0.05) 70%, transparent 100%);
  top: -100px;
  right: -50px;
  z-index: 0;
  filter: blur(40px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
  z-index: 1;
}

.hero-content {
  max-width: 700px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(30, 64, 175, 0.08);
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.5rem 1.1rem;
  border-radius: 40px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(6, 182, 212, 0.15);
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  margin-right: 0.5rem;
  box-shadow: 0 0 10px var(--accent);
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.6rem;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 1.4rem;
}

.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  background: var(--white);
  padding: 0.5rem;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

/* 2. SECTION HEADER COMMONS */
.section-header-top {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5.5rem auto;
}

.section-title {
  font-size: 2.85rem;
  color: var(--primary);
  letter-spacing: -0.03em;
  margin-top: 0.6rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* 3. BENTO SMART SOLUTIONS GRID */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.bento-card {
  padding: 3rem 2.4rem;
}

.bento-card-wide {
  grid-column: span 2;
}

.service-icon-box {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(6, 182, 212, 0.15);
}

.bento-card h3 {
  font-size: 1.45rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

/* 4. WHY CHOOSE US (GLASS CARDS WITH HOVER GLOW) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.why-card {
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--highlight) 100%);
}

/* 5. ANIMATED STATISTICS BAR */
.stats-bar {
  background: var(--bg-dark);
  color: var(--white);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1.5px solid rgba(6, 182, 212, 0.15);
  border-bottom: 1.5px solid rgba(6, 182, 212, 0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  text-align: center;
}

.stat-card h3 {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--white);
  font-family: var(--font-title);
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card p {
  font-size: 0.95rem;
  color: #94A3B8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* 6. INDUSTRIES SERVED */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.industry-card {
  padding: 2.5rem 1.6rem;
  text-align: center;
}

.industry-icon {
  font-size: 2.4rem;
  margin-bottom: 1.1rem;
}

.industry-card h4 {
  font-size: 1.15rem;
  color: var(--primary);
}

/* 7. INNOVATION TIMELINE */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: rgba(30, 64, 175, 0.15);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 4rem;
  padding: 0 3rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-box {
  position: relative;
  padding: 2.5rem;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border: 4px solid var(--white);
  border-radius: 50%;
  top: 28px;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.6);
  z-index: 2;
}

.timeline-item:nth-child(odd)::after {
  right: -10px;
}

.timeline-item:nth-child(even)::after {
  left: -10px;
}

.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 0.9rem;
}

/* 8. DIGITAL PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-card {
  padding: 2.6rem 2rem;
  position: relative;
}

.step-num {
  font-size: 3.2rem;
  font-weight: 900;
  color: rgba(6, 182, 212, 0.12);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  line-height: 1;
}

.process-card h4 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-top: 1rem;
}

/* 9. FAQs ACCORDION */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1.3rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: var(--shadow-md);
}

.faq-header {
  padding: 1.8rem 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  user-select: none;
}

.faq-icon-indicator {
  transition: var(--transition);
  color: var(--accent);
}

.faq-item.active .faq-icon-indicator {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 2.2rem 2rem 2.2rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-body {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-card-wide {
    grid-column: span 2;
  }
  .why-grid, .stats-grid, .industries-grid, .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card-wide {
    grid-column: span 1;
  }
  .why-grid, .stats-grid, .industries-grid, .process-grid {
    grid-template-columns: 1fr;
  }
  .timeline-container::before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 3.5rem;
    padding-right: 0;
    text-align: left !important;
  }
  .timeline-item::after {
    left: 10px !important;
  }
}
