/* =====================================================
   HERO SECTION IMPROVEMENTS v2.1
   - Primary CTA (green, larger)
   - Mobile carousel visibility
   - Facebook social proof
   ===================================================== */

/* ===== PRIMARY CTA BUTTON - GREEN, LARGER, PROMINENT ===== */
.pk-hero-v2__cta.pk-hero-v2__cta--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: var(--font-family, 'Inter', sans-serif);
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4),
              0 0 0 0 rgba(16, 185, 129, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  min-width: 280px;
  text-align: center;
}

.pk-hero-v2__cta.pk-hero-v2__cta--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.pk-hero-v2__cta.pk-hero-v2__cta--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5),
              0 0 0 4px rgba(16, 185, 129, 0.15);
  color: #FFFFFF;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.pk-hero-v2__cta.pk-hero-v2__cta--primary:hover::before {
  left: 100%;
}

.pk-hero-v2__cta.pk-hero-v2__cta--primary:active {
  transform: translateY(-1px) scale(1.01);
}

/* CTA icon styling */
.pk-hero-v2__cta.pk-hero-v2__cta--primary svg {
  flex-shrink: 0;
}

.pk-hero-v2__cta.pk-hero-v2__cta--primary svg:last-child {
  transition: transform 0.3s ease;
}

.pk-hero-v2__cta.pk-hero-v2__cta--primary:hover svg:last-child {
  transform: translateX(4px);
}

/* Mobile CTA adjustments */
@media (max-width: 767px) {
  .pk-hero-v2__cta.pk-hero-v2__cta--primary {
    width: 100%;
    max-width: 100%;
    min-width: unset;
    padding: 16px 24px;
    font-size: 1rem;
  }
}

/* ===== FACEBOOK SOCIAL PROOF ===== */
.pk-hero-v2__social-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  margin-top: 8px;
}

.pk-hero-v2__social-proof:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.pk-hero-v2__social-proof-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #1877F2;
  border-radius: 8px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.pk-hero-v2__social-proof-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pk-hero-v2__social-proof-number {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.pk-hero-v2__social-proof-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

.pk-hero-v2__social-proof-arrow {
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.pk-hero-v2__social-proof:hover .pk-hero-v2__social-proof-arrow {
  color: rgba(255, 255, 255, 0.9);
  transform: translate(3px, -3px);
}

/* Mobile social proof */
@media (max-width: 767px) {
  .pk-hero-v2__social-proof {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
  }

  .pk-hero-v2__social-proof-number {
    font-size: 1rem;
  }

  .pk-hero-v2__social-proof-label {
    font-size: 0.75rem;
  }
}

/* ===== MOBILE CAROUSEL VISIBILITY ===== */
/* Show carousel on mobile - compact version */
@media (max-width: 1023px) {
  .pk-hero-v2__visual {
    display: block !important;
    position: relative;
    width: 100%;
    margin-top: 24px;
    padding: 0 16px;
  }

  .pk-hero-carousel {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .pk-hero-carousel__track {
    height: auto;
    min-height: 380px;
    margin-bottom: 16px;
  }

  .pk-hero-product {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .pk-hero-product__image {
    height: 160px;
    padding: 12px;
  }

  .pk-hero-product__info {
    padding: 16px;
  }

  .pk-hero-product__name {
    font-size: 0.9375rem;
    line-height: 1.4;
  }

  /* Simplify on very small screens */
  @media (max-width: 400px) {
    .pk-hero-carousel {
      max-width: 260px;
    }

    .pk-hero-carousel__track {
      min-height: 340px;
    }

    .pk-hero-product__image {
      height: 140px;
    }

    .pk-hero-product__info {
      padding: 12px;
      gap: 8px;
    }
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .pk-hero-v2__visual {
    max-width: 350px;
    margin: 32px auto 0;
  }

  .pk-hero-carousel {
    max-width: 350px;
  }

  .pk-hero-carousel__track {
    min-height: 420px;
  }

  .pk-hero-product {
    max-width: 320px;
  }

  .pk-hero-product__image {
    height: 180px;
  }
}

/* ===== HERO CONTENT REORDER FOR BETTER FLOW ===== */
.pk-hero-v2__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Ensure proper spacing */
.pk-hero-v2__headline {
  margin-bottom: 4px;
}

.pk-hero-v2__subheadline {
  margin-bottom: 8px;
}

/* Stats section spacing */
.pk-hero-v2__stats {
  margin-top: 8px;
}

/* ===== DECORATIVE ELEMENTS - HIDE ON MOBILE ===== */
@media (max-width: 767px) {
  .pk-hero-visual__decoration {
    display: none;
  }
}

/* ===== CAROUSEL INDICATORS MOBILE ===== */
@media (max-width: 1023px) {
  .pk-hero-carousel__indicators {
    padding: 8px 16px;
    gap: 10px;
  }

  .pk-hero-carousel__dot {
    width: 8px;
    height: 8px;
  }
}
