.home {
  width: 100%;
}

/* Hero Section */
.hero {
  background: var(--dark-gradient);
  color: white;
  padding: 10rem 2rem 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: var(--primary-gradient);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(100px);
  animation: pulse-glow 10s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--bg-white), transparent);
  pointer-events: none;
}

/* Hero decorative shapes */
.hero-blob-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -200px;
  right: -150px;
  filter: blur(80px);
  animation: blob 15s ease-in-out infinite;
}

.hero-blob-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -100px;
  left: 10%;
  filter: blur(80px);
  animation: blob 12s ease-in-out infinite reverse;
}

.hero-blob-3 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: 40%;
  right: 30%;
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 0.5rem;
  color: white;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  font-size: 4rem;
  margin-bottom: 2rem;
  color: #c4b5fd;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-text {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero .cta-button {
  background: white;
  color: #111111;
  box-shadow: 0 4px 25px rgba(255, 255, 255, 0.3);
}

.hero .cta-button:hover {
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

.hero .cta-button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.hero .cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.hero-scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* Section Badge */
.section-badge {
  display: inline-block;
  background: rgba(124, 58, 237, 0.08);
  color: var(--highlight-color);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-badge.light {
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
}

/* Solutions Section */
.solutions-overview {
  padding: 8rem 0;
  background: var(--bg-white);
}

.solutions-overview h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 3.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.25rem;
  max-width: 650px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

/* Solution Cards */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.solution-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.solution-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.solution-card:nth-child(4) {
  grid-column: span 2;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 4px;
  background: var(--highlight-gradient);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity var(--transition);
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
}

.solution-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  transition: all var(--transition);
}

.solution-card:hover .card-icon {
  background: var(--highlight-gradient);
  color: white;
  transform: scale(1.1);
}

.solution-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.solution-card p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-medium);
  margin-bottom: 1.25rem;
}

.solution-card .learn-more {
  margin-top: auto;
}

/* Multilocation Data */
.multilocation-data {
  padding: 8rem 0;
  background: var(--dark-gradient);
  position: relative;
  color: white;
}

.multilocation-data::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--highlight-gradient);
}

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

.multilocation-data h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 2rem;
}

.multilocation-data p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.data-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.data-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.data-feature span {
  font-weight: 600;
  font-size: 1rem;
  color: white;
}

/* Comparison Section */
.enabling-comparison {
  padding: 8rem 0;
  background: white;
}

.enabling-comparison h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.comparison-card {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-xl);
  border: 2px solid var(--bg-light);
  transition: all var(--transition-smooth);
  position: relative;
}

.comparison-card:hover {
  border-color: var(--highlight-light);
  box-shadow: var(--shadow-lg);
}

.card-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.08);
  line-height: 1;
}

.comparison-card h3 {
  color: var(--highlight-color);
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.comparison-card h3::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--highlight-gradient);
  border-radius: 50%;
}

.comparison-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-medium);
}

.comparison-card li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.comparison-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--highlight-color);
}

.comparison-card ul {
  padding-left: 0;
  list-style: none;
  margin: 1.5rem 0;
}

.card-highlight {
  color: var(--highlight-color) !important;
  font-weight: 600;
  font-size: 1.1rem !important;
  margin-top: 1.5rem;
}

/* Mission Section */
.mission {
  background: var(--dark-gradient);
  color: white;
  text-align: center;
  padding: 10rem 2rem;
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.mission .container {
  position: relative;
  z-index: 1;
}

.mission h2 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  font-weight: 600;
}

.mission .mission-statement {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #c4b5fd !important;
  line-height: 1.4;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  -webkit-text-fill-color: #c4b5fd;
}

.mission .mission-statement.highlight {
  color: white !important;
  -webkit-text-fill-color: white;
  font-weight: 700;
}

/* How It Works */
.how-it-works {
  padding: 8rem 0;
  background: var(--bg-light);
}

.how-it-works h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.work-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: all var(--transition-smooth);
  text-align: center;
  position: relative;
}

.work-card::before {
  content: attr(data-step);
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  background: var(--highlight-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.work-card h3 {
  color: var(--highlight-color);
  margin-bottom: 1.25rem;
  margin-top: 1rem;
  font-size: 1.5rem;
}

.work-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-medium);
}

/* CTA Section */
.cta-section {
  background: white;
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--highlight-light), transparent);
}

.cta-section h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: var(--text-medium);
  font-size: 1.375rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }

  .solution-card.featured,
  .solution-card:nth-child(4) {
    grid-column: span 1;
  }

  .work-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 8rem 1.5rem 6rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    font-size: 2.25rem;
  }

  .hero-text {
    font-size: 1.125rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .solutions-overview,
  .multilocation-data,
  .enabling-comparison,
  .mission,
  .how-it-works,
  .cta-section {
    padding: 5rem 0;
  }

  .solutions-overview h2,
  .multilocation-data h2,
  .enabling-comparison h2,
  .how-it-works h2,
  .cta-section h2 {
    font-size: 2.25rem;
  }

  .mission {
    padding: 6rem 1.5rem;
  }

  .mission-statement {
    font-size: 1.75rem;
  }

  .solution-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .solution-card,
  .comparison-card,
  .work-card {
    padding: 2rem;
  }

  .data-features {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}
