/*
 * Lumzea Homepage Layout Styles
 */

/* Hero Section */
.hero-sec {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 140px;
  padding-bottom: 6rem;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-tagline {
  margin-bottom: 1.5rem;
}

.hero-desc {
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 2rem;
  }
}

/* Floating Tech Icon Circles */
.hero-floating-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

.tech-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.tech-icon-wrapper:hover {
  transform: translateY(-5px) scale(1.1);
  color: var(--color-indigo);
  border-color: var(--color-indigo);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.15);
}

.tech-icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Trusted By Brand Section */
.trusted-sec {
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(6, 6, 12, 0.3);
}

.trusted-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2rem;
}

.brand-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.brand-item {
  height: 32px;
  opacity: 0.4;
  transition: opacity var(--transition-fast);
  color: var(--text-primary);
}

.brand-item:hover {
  opacity: 0.8;
}

.brand-item svg {
  height: 100%;
  fill: currentColor;
}

@media (max-width: 768px) {
  .brand-grid {
    justify-content: center;
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-indigo);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

/* Our Process Timeline */
.process-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '→';
  position: absolute;
  top: 25px;
  right: -20px;
  font-size: 1.5rem;
  color: var(--border-color);
  font-weight: 300;
}

.process-step:last-child::after {
  display: none;
}

.process-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 auto 1.25rem auto;
  transition: all var(--transition-normal);
}

.process-step:hover .process-num {
  border-color: var(--color-indigo);
  background: var(--gradient-indigo-purple);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
  transform: scale(1.1);
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1.5rem;
  }
  .process-step::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Why Us Feature List */
.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  margin-top: 2rem;
}

.why-feature-item {
  display: flex;
  gap: 1rem;
}

.why-feature-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(6, 182, 212, 0.1);
  color: var(--color-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.why-feature-check svg {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

.why-feature-content h4 {
  margin-bottom: 0.25rem;
}

.why-feature-content p {
  font-size: 0.95rem;
}

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

/* Statistics Counter Section */
.stats-sec {
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(6, 6, 12, 0.8) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Call To Action Card */
.cta-wrapper {
  background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%), var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

.cta-wrapper .glow-blob {
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
}

.cta-content {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  margin-bottom: 1.5rem;
}

.cta-content p {
  margin-bottom: 2.5rem;
  font-size: 1.15rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .cta-wrapper {
    padding: 3rem 1.5rem;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
