.hero {
  position: relative;
  padding: 120px 20px 100px;
  background: radial-gradient(circle at top, #f5fbff 0%, #eef7fb 40%, #ffffff 80%);
  text-align: center;
  overflow: hidden;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #e6f8fd;
  color: #007ea7;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
}

/* Title */
.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-title span {
  position: relative;
  color: #0f172a;
}

.hero-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 16px;
  background: linear-gradient(90deg, #00B98E, #00B98E);
  z-index: -1;
  opacity: 0.15;
  border-radius: 6px;
}

/* Subtitle */
.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #64748b;
  max-width: 760px;
  margin: 0 auto 44px;
}

/* Buttons */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 60px;
}

.btn-primary {
  background: linear-gradient(180deg, #00B98E, #00B98E);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 12px 25px rgba(14, 165, 233, 0.3);
}

.btn-primary span {
  margin-left: 6px;
}

.btn-outline {
  border: 2px solid #00B98E;
  color: #00B98E;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  background: #ffffff;
}

/* Divider */
.hero-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #e2e8f0, transparent);
  margin-bottom: 40px;
}

/* Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.stat h3 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
}

.stat p {
  font-size: 14px;
  color: #64748b;
  margin-top: 4px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    padding: 90px 16px 80px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 26px;
  }
}

.features {
  padding: 100px 0;
  background: #f8fafc;
}

.features-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.features-label {
  font-size: 12px;
  letter-spacing: 1.2px;
  font-weight: 600;
  color: #00B98E;
}

.features-head h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  margin: 14px 0 18px;
  line-height: 1.25;
}

.features-head p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

/* GRID */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.feature-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid #e8edf3;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

/* ICON */
.feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(180deg, #00B98E, #00B98E);
  border-radius: 10px;
  color: #ffffff;
  font-size: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;
}

/* TEXT */
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features {
    padding: 80px 0;
  }

  .features-head h2 {
    font-size: 30px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.pricing {
  padding: 110px 0;
  background: #f8fafc;
}

.pricing-head {
  text-align: center;
  margin-bottom: 70px;
}

.pricing-label {
  font-size: 12px;
  letter-spacing: 1.2px;
  font-weight: 600;
  color: #00B98E;
}

.pricing-head h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 12px 0;
  color: #0f172a;
}

.pricing-head p {
  color: #64748b;
  font-size: 16px;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* CARD */
.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 26px;
  border: 1px solid #e8edf3;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 600;
}

.plan-desc {
  font-size: 13px;
  color: #64748b;
  margin: 6px 0 18px;
}

.price {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.price span {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
}

.trial {
  font-size: 12px;
  color: #00B98E;
  background: #e0f2fe;
  padding: 6px 10px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 18px;
}

/* META */
.plan-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  font-size: 13px;
  margin-bottom: 18px;
}

.plan-meta span {
  color: #64748b;
}

/* FEATURES */
.features-list {
  list-style: none;
  padding: 18px 0;
  margin: 0;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
  flex-grow: 1;
}

.features-list li {
  font-size: 13px;
  color: #334155;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00B98E;
  font-weight: 700;
}

/* BUTTONS */
.full {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

.btn-outline {
  border: 2px solid #00B98E;
  color: #00B98E;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(180deg, #00B98E, #00B98E);
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
}

/* POPULAR */
.popular {
  border: 2px solid #00B98E;
  transform: translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #00B98E;
  color: #fff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .popular {
    transform: none;
  }
}

.cta {
  padding: 100px 0;
  background: linear-gradient(180deg, #00B98E 0%, #00B98E 100%);
  color: #ffffff;
  text-align: center;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

.cta p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
}

/* BUTTONS */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.cta-btn.primary {
  background: #ffffff;
  color: #00B98E;
}

.cta-btn.outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

/* MOBILE */
@media (max-width: 768px) {
  .cta {
    padding: 80px 16px;
  }

  .cta h2 {
    font-size: 30px;
  }

  .cta-actions {
    flex-direction: column;
  }
}