/* ==========================================
   CTA HELP - Premium Redesign
   Modern, creative design within site aesthetics
   ========================================== */
.pp-cta-help {
  padding: 100px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 50%, #FAFBFC 100%);
  position: relative;
  overflow: hidden;
}

.pp-cta-help__wrapper {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1E1B4B 0%, #2E2A69 50%, #39429d 100%);
  border-radius: 32px;
  padding: 80px 70px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(30, 27, 75, 0.4), 
              0 15px 30px -10px rgba(0, 0, 0, 0.2),
              0 1px 0 rgba(255, 255, 255, 0.1) inset;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Background Pattern */
.pp-cta-help__bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

/* Decorative Orbs */
.pp-cta-help__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  pointer-events: none;
  animation: float-orb 15s ease-in-out infinite;
}

.pp-cta-help__bg-orb--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
  animation-delay: 0s;
}

.pp-cta-help__bg-orb--2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, transparent 70%);
  animation-delay: 7s;
}

@keyframes float-orb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -20px) scale(1.1);
  }
  66% {
    transform: translate(-15px, 15px) scale(0.9);
  }
}

.pp-cta-help__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge */
.pp-cta-help__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pp-cta-help__badge svg {
  width: 16px;
  height: 16px;
}

/* Title */
.pp-cta-help__title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.pp-cta-help__title strong {
  display: block;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pp-cta-help__title-light {
  display: block;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 8px;
}

/* Description */
.pp-cta-help__desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 48px;
  max-width: 600px;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;
}

/* Contact Options Grid */
.pp-cta-help__options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.pp-cta-help__option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 2px dotted rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.pp-cta-help__option::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pp-cta-help__option:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  border-style: dotted;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.3), 
              0 6px 16px -6px rgba(0, 0, 0, 0.2);
}

.pp-cta-help__option:hover::before {
  opacity: 1;
}

/* Primary Option (Phone) */
.pp-cta-help__option--primary {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.3);
}

.pp-cta-help__option--primary:hover {
  background: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
}

.pp-cta-help__option--primary .pp-cta-help__option-icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, #6366f1 100%);
  color: #FFFFFF;
}

.pp-cta-help__option--primary .pp-cta-help__option-label {
  color: var(--color-muted);
}

.pp-cta-help__option--primary .pp-cta-help__option-value {
  color: var(--color-dark);
}

.pp-cta-help__option-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}

.pp-cta-help__option:hover .pp-cta-help__option-icon {
  transform: scale(1.1) rotate(-5deg);
}

.pp-cta-help__option-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.pp-cta-help__option-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pp-cta-help__option-value {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

/* Stats Row */
.pp-cta-help__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.pp-cta-help__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pp-cta-help__stat strong {
  font-size: 28px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.pp-cta-help__stat span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .pp-cta-help__wrapper {
    padding: 60px 50px;
  }
  
  .pp-cta-help__title {
    font-size: 44px;
  }
  
  .pp-cta-help__options {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .pp-cta-help__stats {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .pp-cta-help {
    padding: 80px 0;
  }
  
  .pp-cta-help__wrapper {
    padding: 50px 30px;
    border-radius: 24px;
  }
  
  .pp-cta-help__title {
    font-size: 36px;
  }
  
  .pp-cta-help__desc {
    font-size: 16px;
    margin-bottom: 36px;
  }
  
  .pp-cta-help__options {
    margin-bottom: 36px;
  }
  
  .pp-cta-help__option {
    padding: 20px;
  }
  
  .pp-cta-help__option-icon {
    width: 48px;
    height: 48px;
  }
  
  .pp-cta-help__option-value {
    font-size: 15px;
  }
  
  .pp-cta-help__stats {
    flex-direction: column;
    gap: 24px;
    padding-top: 32px;
  }
  
  .pp-cta-help__stat strong {
    font-size: 24px;
  }
}

/* Force center description */
.pp-cta-help .pp-cta-help__content .pp-cta-help__desc,
.pp-cta-help__desc {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
