.hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-green-700), var(--color-green-900));
  color: var(--color-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: url('../../public/home-banner.jpg');
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  padding: 6rem 0;
}

.hero-content .container {
  max-width: 48rem;
  margin: 0;
}

.badge {
  display: inline-block;
  background: rgba(22, 163, 74, 0.5);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  color: rgb(220, 252, 231);
  font-size: 0.875rem;
}

.hero-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgb(220, 252, 231);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.2s;
  text-align: center;
}

.btn-primary {
  background: var(--color-white);
  color: var(--color-green-900);
}

.btn-primary:hover {
  background: var(--color-green-50);
}

.btn-secondary {
  background: rgba(22, 163, 74, 0.5);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: var(--color-green-800);
}

.btn-light {
  background: var(--color-white);
  color: var(--color-green-900);
}

.btn-light:hover {
  background: var(--color-green-50);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.value-section {
  padding: 4rem 0;
  background: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
  font-weight: 700;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-gray-600);
  max-width: 48rem;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  background: var(--color-white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: var(--color-green-600);
  border-radius: 0 0 4px 4px;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--color-green-600);
}

.card-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(22, 163, 74, 0.2);
}

.card-icon svg {
  width: 2.25rem;
  height: 2.25rem;
}

.card-icon i {
  font-size: 2.25rem;
}

.card-icon-green,
.card-icon-blue,
.card-icon-purple {
  background: linear-gradient(135deg, var(--color-green-500), var(--color-green-600));
  color: var(--color-white);
}

.card-title {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
  font-weight: 600;
}

.card-text {
  color: var(--color-gray-600);
  line-height: 1.75;
  font-size: 1rem;
}

.stats-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--color-green-600), var(--color-green-700));
  color: var(--color-white);
}

.stats-section .section-title {
  color: var(--color-white);
}

.stats-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.stat-number {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-text {
  color: rgb(220, 252, 231);
}

.feature-section {
  padding: 4rem 0;
  background: var(--color-white);
}

.feature-section.feature-reverse {
  background: var(--color-gray-50);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-image img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-content {
  padding: 1rem 0;
}

.feature-title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  color: var(--color-gray-900);
  font-weight: 700;
}

@media (min-width: 768px) {
  .feature-title {
    font-size: 2.25rem;
  }
}

.feature-description {
  font-size: 1.125rem;
  color: var(--color-gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
  color: var(--color-green-600);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-item span {
  color: var(--color-gray-700);
}

.how-it-works {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--color-white), var(--color-gray-50));
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: var(--color-green-600);
  border-radius: 0 0 4px 4px;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--color-green-600);
}

.step-number {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-green-500), var(--color-green-700));
  color: var(--color-white);
  box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.3);
  position: relative;
}

.step-number-blue,
.step-number-purple {
  background: linear-gradient(135deg, var(--color-green-500), var(--color-green-700));
  box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.3);
}

.step-title {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
  font-weight: 600;
}

.step-text {
  color: var(--color-gray-600);
  line-height: 1.75;
  font-size: 1rem;
}

.cta-section {
  padding: 4rem 0;
  background: var(--color-green-600);
  color: var(--color-white);
  text-align: center;
}

.cta-section .container {
  max-width: 64rem;
}

.cta-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgb(220, 252, 231);
}

.cta-section .button-group {
  justify-content: center;
}

.cta-note {
  font-size: 0.875rem;
  color: rgb(220, 252, 231);
  margin-top: 1.5rem;
}

.footer {
  background: var(--color-green-900);
  color: var(--color-white);
  padding: 2rem 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-container {
    padding: 0 2rem;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-image {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.footer-description {
  color: rgb(220, 252, 231);
  font-size: 0.875rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: rgb(220, 252, 231);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--color-white);
}

.footer-info-text {
  color: rgb(220, 252, 231);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  max-width: 1280px;
  margin: 2rem auto 0;
  padding: 1.5rem 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgb(220, 252, 231);
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    padding: 1.5rem 1.5rem 0;
  }
}

@media (min-width: 1024px) {
  .footer-bottom {
    padding: 1.5rem 2rem 0;
  }
}
