/* ── Hero ── */
.hero-section {
  background: linear-gradient(
    135deg,
    #ecfdf5 0%,
    #f0fdfa 40%,
    #e0f2fe 100%
  );
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(5, 150, 105, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(8, 145, 178, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 48px 0 64px;
  }
}

/* ── Pill badge ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.pill-green {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.pill-blue {
  background: #e0f2fe;
  color: #0c4a6e;
  border: 1px solid #bae6fd;
}
.pill-amber {
  background: #fef3c7;
  color: #78350f;
  border: 1px solid #fde68a;
}

/* ── Buttons ── */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #059669;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
  text-decoration: none;
}
.btn-hero-primary:hover {
  background: #047857;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #fff;
  color: #059669;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid #059669;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-hero-secondary:hover {
  background: #ecfdf5;
  transform: translateY(-1px);
}
.btn-outline-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 999px;
  background: transparent;
  color: #059669;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid #059669;
  transition: all 0.15s;
  text-decoration: none;
}
.btn-outline-primary:hover {
  background: #ecfdf5;
}
.btn-outline-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 999px;
  background: transparent;
  color: #0891b2;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid #0891b2;
  transition: all 0.15s;
  text-decoration: none;
}
.btn-outline-secondary:hover {
  background: #e0f2fe;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  background: #fff;
  color: #059669;
  font-size: 15px;
  font-weight: 700;
  border: none;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}
.btn-white:hover {
  background: #f0fdf4;
  transform: translateY(-1px);
}

/* ── Hero visual card ── */
.hero-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.07),
    0 1px 4px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.hero-card-stat {
  background: #f8fafc;
  border-radius: 16px;
  padding: 16px 20px;
  border: 1px solid #e2e8f0;
}

/* ── Cards ── */
.card-clean {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 24px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.card-clean:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}
.card-flat {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
}
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box-green {
  background: #d1fae5;
  color: #059669;
}
.icon-box-blue {
  background: #e0f2fe;
  color: #0891b2;
}
.icon-box-amber {
  background: #fef3c7;
  color: #d97706;
}
.icon-box-red {
  background: #fee2e2;
  color: #dc2626;
}
.icon-box-purple {
  background: #ede9fe;
  color: #7c3aed;
}

/* ── Steps ── */
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  flex: 1;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #059669;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}
.step-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #a7f3d0, #bae6fd);
  margin-top: -24px;
  margin-bottom: 0;
}

/* ── Stats strip ── */
.stats-strip {
  background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
  color: #fff;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
}
.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}

/* ── Article cards ── */
.article-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}
.article-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='28'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
}

/* ── FAQ ── */
.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-align: left;
  gap: 16px;
}
.faq-content {
  padding: 0 24px 20px;
  display: none;
}
.faq-content.open {
  display: block;
}
.faq-icon {
  transition: transform 0.2s;
  flex-shrink: 0;
  color: #059669;
}
.faq-icon.rotate {
  transform: rotate(45deg);
}

/* ── Section header ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #059669;
  margin-bottom: 12px;
}

/* ── Animations (subtle) ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fadeup {
  animation: fadeUp 0.5s ease forwards;
}
.delay-100 {
  animation-delay: 0.1s;
  opacity: 0;
}
.delay-200 {
  animation-delay: 0.2s;
  opacity: 0;
}
.delay-300 {
  animation-delay: 0.3s;
  opacity: 0;
}
