/* ============================================
   PFCA — SECTION ANIMATIONS CSS
   ============================================ */

/* LED Film 3D Card */
.pfc-led-card {
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
    will-change: transform;
}

/* Curtain Reveal */
.pfc-curtain {
    clip-path: inset(0 100% 0 0);
}

/* Counter Numbers */
.pfc-counter {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #0A192F;
    line-height: 1;
    display: inline-block;
}

/* Pricing Cards Float */
.pfc-pricing-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(10, 25, 47, 0.06);
    transition: box-shadow 0.5s ease, border-color 0.5s ease;
    will-change: transform;
}

.pfc-pricing-card:hover {
    box-shadow: 0 40px 100px rgba(10, 25, 47, 0.12);
    border-color: rgba(0, 212, 170, 0.2);
}

.pfc-pricing-card.featured {
    border-color: rgba(0, 212, 170, 0.35);
    box-shadow: 0 25px 80px rgba(0, 212, 170, 0.12);
    transform: scale(1.03);
    z-index: 2;
}

/* Most Popular Badge */
.badge-most-popular {
    display: inline-block;
    background: linear-gradient(90deg, #C9A227 0%, #E8D179 25%, #C9A227 50%, #E8D179 75%, #C9A227 100%);
    background-size: 200% 100%;
    color: #0A192F;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 7px 18px;
    border-radius: 30px;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

/* Testimonials Marquee */
.pfc-testimonials-container {
    overflow: hidden;
    padding: 3rem 0;
}

.pfc-testimonial-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
}

.pfc-testimonial-card {
    flex-shrink: 0;
    width: 420px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(10, 25, 47, 0.05);
    box-shadow: 0 10px 40px rgba(10, 25, 47, 0.04);
}

.pfc-testimonial-card .quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #0A192F;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.pfc-testimonial-card .author {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #2D3436;
}

.pfc-testimonial-card .role {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #2D3436;
    opacity: 0.6;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .pfc-led-card, .pfc-pricing-card, .pfc-testimonial-track {
        transition: none !important;
        animation: none !important;
    }
}
