/**
 * Hero Block - Styles
 */

.hero-block-wrapper {
  background-color: #fff;
  color: #0f1419;
  display: flex;
  align-items: center;
  padding: 3rem 1.5rem;
  hyphens: none;
}

.hero-block-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-block-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge Styles */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  background-color: rgba(0, 208, 132, 0.1);
  border: 1px solid rgba(0, 208, 132, 0.3);
  border-radius: 9999px;
  color: #00a86b;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-badge-icon {
  width: 1rem;
  height: 1rem;
  color: #00a86b;
}

/* Heading Styles */
.hero-heading {
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  color: #0f1419;
  max-width: 900px;
}

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

.hero-heading-accent {
  background: linear-gradient(90deg, #0f1419, #00a86b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle Styles */
.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #5a5f67;
  margin: 0 0 2rem 0;
  max-width: 700px;
}

/* Buttons Styles */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: inherit;
}

.hero-button--primary {
  background-color: #00d084;
  color: #fff;
}

.hero-button--primary:hover {
  background-color: #00b870;
}

.hero-button--secondary {
  background-color: transparent;
  color: #0f1419;
  border: 1px solid #d1d5db;
}

.hero-button--secondary:hover {
  background-color: #f3f4f6;
  border-color: #9ca3af;
}

.hero-button-icon {
  width: 1rem;
  height: 1rem;
}

/* Features Grid */
.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

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

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.hero-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background-color: #f0fdf4;
  border: 1px solid #d1fae5;
}

.hero-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #00a86b;
}

.hero-feature-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0f1419;
  margin: 0;
}

.hero-feature-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}
