/* ==========================================================================
   Landing Page Styles
   ========================================================================== */

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  background: #ffffff;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

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

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: var(--spacing-xl);
}

.hero-title .highlight {
  color: var(--primary-color);
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
}

.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg);
  min-height: 400px;
}

/* Hero Image Container */
.hero-image-container {
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-image {
  width: 100%;
  height: auto;
  max-width: 450px;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}


/* Visual Caption */
.hero-visual-caption {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
  max-width: 400px;
  margin-top: 0.5rem;
}


/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.feature-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* How It Works Section */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto var(--spacing-3xl);
}

.step {
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  position: relative;
  transition: all var(--transition-base);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.step::after {
  content: '→';
  position: absolute;
  right: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 700;
}

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

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto var(--spacing-lg);
  box-shadow: var(--shadow-md);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.step-description {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  flex: 1;
}

.step-arrow {
  display: none;
}

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

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
}

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

.cta-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }

  .step::after {
    display: none;
  }

  .step {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 5rem 0 3rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
    order: 2;
  }

  .hero-visual {
    order: 1;
    min-height: 250px;
    padding: 0 var(--spacing-md);
  }

  .hero-image-container {
    padding: 1.5rem;
  }

  .hero-image {
    max-width: 400px;
  }

  .hero-visual-caption {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1rem;
    padding: 0 var(--spacing-md);
  }

  .hero-actions {
    flex-direction: column;
    padding: 0 var(--spacing-md);
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .feature-card {
    padding: var(--spacing-lg);
  }

  .feature-icon {
    font-size: 2.5rem;
  }

  .feature-title {
    font-size: 1.25rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 100%;
  }

  .step {
    min-height: auto;
    padding: var(--spacing-xl);
  }

  .step::after {
    display: none;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .step-title {
    font-size: 1.125rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 0 2rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.9375rem;
  }

  .hero-visual {
    min-height: 200px;
  }

  .hero-image-container {
    padding: 1rem;
  }

  .hero-image {
    max-width: 350px;
  }

  .hero-visual-caption {
    font-size: 0.9375rem;
  }

  .step {
    padding: var(--spacing-lg);
  }
}
