.hero-wrap {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
      circle at 50% 30%,
      rgba(37, 99, 235, 0.15),
      #ffffff 65%
  );
  text-align: center;
  padding: 80px 20px;
}

.hero-inner {
  max-width: 1050px;
  margin: 0 auto;
}

/* Small Tag */
.hero-tag {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #2563eb;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
}

/* Main Title */
.hero-title {
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 1.8rem;
}

.hero-title span {
  color: #2563eb;
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.25rem;
  color: #475569;
  max-width: 680px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Buttons Wrapper */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Button Base */
.btn-primary-xl,
.btn-secondary-xl,
.btn-warning-xl {
  height: 60px;
  padding: 0 38px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

/* Primary Blue */
.btn-primary-xl {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.btn-primary-xl:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.45);
}

/* White Outline */
.btn-secondary-xl {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  color: #0f172a;
}

.btn-secondary-xl:hover {
  border-color: #2563eb;
  color: #2563eb;
  transform: translateY(-3px);
}

/* Orange */
.btn-warning-xl {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
}

.btn-warning-xl:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(249, 115, 22, 0.45);
}

/* Login Text */
.hero-login {
  font-size: 1rem;
  color: #64748b;
}

.hero-login a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.hero-login a:hover {
  text-decoration: underline;
}

/* =========================
   SUBSCRIPTION SECTION
========================= */

.subscription-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.subscription-container {
  max-width: 1200px;
  margin: 0 auto;
}

.subscription-header {
  text-align: center;
  margin-bottom: 50px;
}

.subscription-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.subscription-header p {
  font-size: 18px;
  color: #6c757d;
}

.subscription-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.plan-card {
  background: white;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  border: 3px solid transparent;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(59, 130, 246, 0.2);
}

.plan-card.popular {
  border-color: #3b82f6;
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
}

.plan-card.popular:hover {
  transform: scale(1.03) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.plan-name {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.plan-duration {
  font-size: 15px;
  color: #6c757d;
  margin-bottom: 20px;
  font-weight: 500;
}

.plan-price {
  margin-bottom: 25px;
}

.plan-price .currency {
  font-size: 28px;
  font-weight: 700;
  color: #3b82f6;
  vertical-align: top;
}

.plan-price .amount {
  font-size: 56px;
  font-weight: 700;
  color: #3b82f6;
  line-height: 1;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: left;
}

.plan-features li {
  padding: 8px 0;
  font-size: 14px;
  color: #495057;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features i {
  color: #10b981;
  font-size: 16px;
}

.plan-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
  color: white;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .hero-wrap {
    min-height: auto;
    padding: 60px 15px;
  }

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

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .btn-primary-xl,
  .btn-secondary-xl,
  .btn-warning-xl {
    width: 100%;
    max-width: 320px;
    height: 54px;
    font-size: 1rem;
  }

  .subscription-section {
    padding: 60px 20px;
  }

  .subscription-header h2 {
    font-size: 32px;
  }

  .subscription-plans {
    grid-template-columns: 1fr;
  }

  .plan-card.popular {
    transform: scale(1);
  }

  .plan-card.popular:hover {
    transform: translateY(-10px);
  }

}
