/* ============== HERO ============== */
.hr-hero {
  padding: 80px 0 40px;
  text-align: center;
  background: radial-gradient(60% 80% at 50% 0%, rgba(124,58,237,.12), transparent 60%),
              radial-gradient(40% 60% at 80% 30%, rgba(6,182,212,.08), transparent 60%),
              #fff;
  overflow: hidden;
  position: relative;
}

.hr-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,70,229,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hr-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #4f46e514;
  color: #4f46e5;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  animation: fadeInUp .6s ease both;
}

.hr-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 14px;
  letter-spacing: -.02em;
  animation: fadeInUp .6s ease .1s both;
}

.hr-title span {
  background: linear-gradient(90deg, #4f46e5, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hr-sub {
  max-width: 640px;
  margin: 0 auto 22px;
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.6;
  animation: fadeInUp .6s ease .2s both;
}

/* ============== SINGLE PLAN CARD ============== */
.hr-single-plan {
  padding: 20px 0 70px;
  background: #fff;
  position: relative;
}

.hr-single-plan::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, #fff, #f8fafc);
  pointer-events: none;
}

.hr-plan-wrapper {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Main premium card */
.hr-premium-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, #1e1b4b 0%, #312e81 25%, #4f46e5 55%, #06b6d4 100%);
  box-shadow: 0 40px 80px -30px rgba(79,70,229,.45),
              0 0 0 1px rgba(255,255,255,.08) inset;
  animation: fadeInScale .7s ease .2s both;
}

.hr-premium-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,.25), transparent 60%);
  pointer-events: none;
}

.hr-premium-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,.2), transparent 60%);
  pointer-events: none;
}

.hr-card-inner {
  position: relative;
  z-index: 2;
  padding: 48px 44px;
}

/* Top badge & title */
.hr-plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.hr-plan-info {
  flex: 1;
  min-width: 240px;
}

.hr-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,.12);
}

.hr-plan-badge i {
  font-size: .85rem;
  color: #fbbf24;
}

.hr-plan-name {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -.02em;
}

.hr-plan-tagline {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

.hr-plan-cta-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.hr-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 16px;
  background: #fff;
  color: #4f46e5;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.2);
  border: none;
  cursor: pointer;
}

.hr-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -10px rgba(0,0,0,.3);
  background: #f0edff;
  color: #3730a3;
}

.hr-cta-btn i {
  transition: transform .2s ease;
}

.hr-cta-btn:hover i {
  transform: translateX(3px);
}

.hr-cta-trust {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}

/* Divider */
.hr-plan-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.2), transparent);
  margin: 0 0 32px;
}

/* Features grid */
.hr-features-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hr-features-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.1);
}

.hr-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px 24px;
  margin-bottom: 36px;
}

.hr-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  transition: all .2s ease;
}

.hr-feature-item:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.12);
  transform: translateX(4px);
}

.hr-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.hr-feature-icon.is-green {
  background: rgba(16,185,129,.15);
  color: #34d399;
}

.hr-feature-icon.is-blue {
  background: rgba(6,182,212,.15);
  color: #22d3ee;
}

.hr-feature-icon.is-purple {
  background: rgba(168,85,247,.15);
  color: #c084fc;
}

.hr-feature-icon.is-amber {
  background: rgba(245,158,11,.15);
  color: #fbbf24;
}

.hr-feature-icon.is-rose {
  background: rgba(244,63,94,.15);
  color: #fb7185;
}

.hr-feature-text {
  font-size: .9rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
  line-height: 1.35;
}

.hr-feature-text small {
  display: block;
  font-size: .76rem;
  color: rgba(255,255,255,.45);
  font-weight: 400;
  margin-top: 2px;
}

/* Bottom CTA inside card */
.hr-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hr-card-bottom-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hr-stat {
  display: flex;
  flex-direction: column;
}

.hr-stat__val {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.hr-stat__label {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}

/* ============== TRUST / STATS ROW ============== */
.hr-trust {
  padding: 40px 0 0;
  position: relative;
  z-index: 3;
}

.hr-trust-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hr-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px -8px rgba(15,23,42,.08);
  animation: fadeInUp .5s ease both;
}

.hr-trust-item:nth-child(1) { animation-delay: .3s; }
.hr-trust-item:nth-child(2) { animation-delay: .4s; }
.hr-trust-item:nth-child(3) { animation-delay: .5s; }
.hr-trust-item:nth-child(4) { animation-delay: .6s; }

.hr-trust-item i {
  font-size: 1.2rem;
  color: #4f46e5;
}

.hr-trust-item span {
  font-size: .88rem;
  font-weight: 600;
  color: #334155;
}

/* ============== CTA ============== */
.hr-cta {
  padding: 70px 0;
  background: #f8fafc;
}

.hr-cta__inner {
  background: linear-gradient(120deg, #4f46e5, #7c3aed 60%, #06b6d4);
  border-radius: 22px;
  padding: 40px 44px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  box-shadow: 0 25px 50px -25px rgba(79,70,229,.5);
}

.hr-cta__inner h2 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  font-weight: 800;
}

.hr-cta__inner p {
  margin: 0;
  opacity: .9;
}

.hr-cta__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}

.hr-btn--ghost {
  background: rgba(255,255,255,.15);
  color: #fff;
  backdrop-filter: blur(6px);
}

.hr-btn--ghost:hover {
  background: rgba(255,255,255,.25);
}

.hr-btn--primary {
  background: #fff;
  color: #4f46e5;
}

.hr-btn--primary:hover {
  transform: translateY(-2px);
}

/* ============== ANIMATIONS ============== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(.96) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.hr-shimmer {
  background: linear-gradient(90deg, transparent 25%, rgba(255,255,255,.08) 50%, transparent 75%);
  background-size: 200% 100%;
  animation: shimmer 3s ease infinite;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 768px) {
  .hr-card-inner {
    padding: 32px 24px;
  }

  .hr-plan-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hr-plan-cta-area {
    align-items: flex-start;
    width: 100%;
  }

  .hr-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .hr-features-grid {
    grid-template-columns: 1fr;
  }

  .hr-card-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hr-trust-row {
    gap: 12px;
  }

  .hr-trust-item {
    flex: 1 1 140px;
    justify-content: center;
  }

  .hr-cta__inner {
    padding: 28px 24px;
    flex-direction: column;
    text-align: center;
  }

  .hr-cta__btns {
    justify-content: center;
    width: 100%;
  }

  .hr-btn {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hr-hero {
    padding: 60px 0 28px;
  }

  .hr-card-bottom-info {
    gap: 16px;
  }
}
