/* ==========================================
   LANDING PAGE STYLING
   ========================================== */
.main-content {
  padding: 48px 24px;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-text h1 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
  color: var(--color-text);
}

.hero-text h1 span {
  color: var(--color-primary);
  display: block;
}

.hero-text p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.hero-illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 420px;
  height: 400px;
  background: linear-gradient(135deg, #e0f2fe 0%, #ccfbf1 100%);
  border-radius: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 6px solid #ffffff;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.hero-image-placeholder svg {
  width: 75%;
  height: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.feature-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--roundness);
  background-color: var(--color-surface);
  border: 1px solid var(--border-color-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
  width: 72px;
  height: 72px;
  background-color: var(--color-primary-light);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin: 0 auto 24px auto;
  box-shadow: var(--shadow-sm);
  color: var(--color-primary);
  transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon-wrapper {
  transform: rotate(10deg) scale(1.1);
  background-color: var(--color-secondary-light);
  color: var(--color-secondary);
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 968px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.25rem;
  }
  
  .hero-image-placeholder {
    height: 300px;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
  }
}
