/* ===== PRICING HERO SECTION ===== */
.pricing-hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    overflow: hidden;
    padding-top: 80px; /* Account for fixed header */
}

/* ===== PRICING ANIMATED BACKGROUND ===== */
.pricing-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background-image: url('../../images/zenciahero-background.svg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.4;
    filter: brightness(0.8);
}

/* Enhanced gradient overlay for pricing */
.pricing-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 217, 213, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(0, 139, 139, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 75%, rgba(64, 224, 208, 0.08) 0%, transparent 50%);
    animation: pricingGradientShift 18s ease-in-out infinite;
    z-index: 2;
}

@keyframes pricingGradientShift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    33% {
        transform: translate(30px, -20px) scale(1.05);
        opacity: 0.9;
    }
    66% {
        transform: translate(-30px, 20px) scale(1.08);
        opacity: 0.85;
    }
}

/* SVG Background overlay */
.pricing-svg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(0, 217, 213, 0.03) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(0, 139, 139, 0.03) 50%, transparent 60%);
    animation: overlayShift 25s ease-in-out infinite;
    z-index: 3;
}

@keyframes overlayShift {
    0%, 100% {
        background-position: 0% 0%, 0% 0%;
    }
    50% {
        background-position: 100% 100%, -100% 100%;
    }
}

/* Enhanced floating particles for pricing */
.pricing-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.pricing-hero-particles .particle {
    position: absolute;
    background: var(--primary-teal);
    border-radius: 50%;
    opacity: 0.2;
    animation: pricingFloat 25s infinite ease-in-out;
}

.pricing-hero-particles .particle:nth-child(1) {
    width: 3px;
    height: 3px;
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.pricing-hero-particles .particle:nth-child(2) {
    width: 5px;
    height: 5px;
    top: 25%;
    left: 85%;
    animation-delay: 3s;
}

.pricing-hero-particles .particle:nth-child(3) {
    width: 4px;
    height: 4px;
    top: 70%;
    left: 20%;
    animation-delay: 6s;
}

.pricing-hero-particles .particle:nth-child(4) {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 75%;
    animation-delay: 9s;
}

.pricing-hero-particles .particle:nth-child(5) {
    width: 2px;
    height: 2px;
    top: 45%;
    left: 10%;
    animation-delay: 12s;
}

.pricing-hero-particles .particle:nth-child(6) {
    width: 4px;
    height: 4px;
    top: 80%;
    left: 90%;
    animation-delay: 15s;
}

@keyframes pricingFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-80px) translateX(40px) scale(1.2);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-120px) translateX(-30px) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-60px) translateX(60px) scale(1.1);
        opacity: 0.3;
    }
}

/* ===== PRICING HERO CONTENT ===== */
.pricing-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 2rem 0;
}

.pricing-hero-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-hero-text.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HERO BADGE ===== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 217, 213, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 217, 213, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    color: var(--primary-teal);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== PRICING HERO TITLE ===== */
.pricing-hero-title {
    font-size: clamp(2.3rem, 4vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.pricing-hero-title .title-line {
    display: block;
    margin-bottom: 0.2rem;
}

.pricing-hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-turquoise) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(0, 217, 213, 0.4);
    animation: pricingGlow 3s ease-in-out infinite;
}

@keyframes pricingGlow {
    0%, 100% {
        filter: brightness(1);
        text-shadow: 0 0 60px rgba(0, 217, 213, 0.4);
    }
    50% {
        filter: brightness(1.3);
        text-shadow: 0 0 80px rgba(0, 217, 213, 0.6);
    }
}

/* ===== PRICING HERO DESCRIPTION ===== */
.pricing-hero-description {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* ===== TRUST INDICATORS ===== */
.pricing-trust-indicators {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 213, 0.08);
    border-radius: 25px;
    border: 1px solid rgba(0, 217, 213, 0.15);
    transition: all var(--transition-base);
}

.trust-item:hover {
    transform: translateY(-2px);
    background: rgba(0, 217, 213, 0.12);
    border-color: rgba(0, 217, 213, 0.25);
}

.trust-icon {
    color: var(--primary-teal);
    font-weight: bold;
    font-size: 0.9rem;
}

.trust-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== PRICING HERO BUTTONS ===== */
.pricing-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.pricing-cta-button {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 217, 213, 0.3);
}

.pricing-cta-button:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(0, 217, 213, 0.4);
}

.pricing-demo-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(0, 217, 213, 0.5);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.pricing-demo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 213, 0.1), transparent);
    transition: left 0.5s;
}

.pricing-demo-btn:hover::before {
    left: 100%;
}

.pricing-demo-btn:hover {
    background: rgba(0, 217, 213, 0.1);
    border-color: var(--primary-teal);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 217, 213, 0.2);
}

/* ===== PRICING STATS ===== */
.pricing-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s backwards;
}

.pricing-stats .stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    background: rgba(0, 217, 213, 0.06);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 217, 213, 0.12);
    transition: all var(--transition-base);
    min-width: 120px;
}

.pricing-stats .stat-item:hover {
    transform: translateY(-8px);
    background: rgba(0, 217, 213, 0.1);
    border-color: rgba(0, 217, 213, 0.25);
    box-shadow: 0 15px 40px rgba(0, 217, 213, 0.15);
}

.pricing-stats .stat-number {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-turquoise) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.pricing-stats .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

/* ===== ENHANCED SCROLL INDICATOR ===== */
.pricing-hero .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: fadeIn 1s ease-out 1.5s backwards;
}

.pricing-hero .mouse {
    width: 28px;
    height: 45px;
    border: 2px solid var(--primary-teal);
    border-radius: 15px;
    position: relative;
    animation: pricingBounce 2.5s ease-in-out infinite;
}

.pricing-hero .wheel {
    width: 3px;
    height: 8px;
    background: var(--primary-teal);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: pricingScroll 2.5s ease-in-out infinite;
}

@keyframes pricingScroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes pricingBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.pricing-hero .scroll-indicator p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .pricing-hero {
        padding-top: 70px;
    }
    
    .pricing-trust-indicators {
        gap: 1.5rem;
    }
    
    .pricing-stats {
        gap: 2rem;
    }
    
    .pricing-stats .stat-item {
        padding: 1.2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        min-height: 100vh;
        height: auto;
        padding-top: 80px;
        padding-bottom: 3rem;
    }
    
    .hero-badge {
        margin-bottom: 1.5rem;
    }
    
    .pricing-hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .pricing-hero-buttons .button,
    .pricing-demo-btn {
        width: 100%;
        min-width: auto;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .pricing-trust-indicators {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .trust-item {
        justify-content: center;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .pricing-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .pricing-stats .stat-item {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding-top: 70px;
    }
    
    .hero-badge {
        padding: 0.6rem 1.2rem;
        gap: 0.5rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .pricing-hero-title {
        margin-bottom: 1rem;
    }
    
    .pricing-hero-description {
        margin-bottom: 2rem;
    }
    
    .pricing-hero-buttons .button,
    .pricing-demo-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .trust-item {
        padding: 0.4rem 0.8rem;
    }
    
    .trust-text {
        font-size: 0.8rem;
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
@media (prefers-reduced-motion: reduce) {
    .pricing-hero-particles .particle,
    .pricing-hero-background::before,
    .pricing-svg-overlay,
    .pricing-hero .mouse,
    .pricing-hero .wheel {
        animation: none;
    }
    
    .pricing-hero-text {
        opacity: 1;
        transform: none;
    }
}

/* ===== ENHANCED BUTTON HOVER EFFECTS ===== */
.pricing-hero-buttons .btn-text-default,
.pricing-hero-buttons .btn-text-hover {
    display: inline-block;
    transition: all 0.3s ease;
}

.pricing-demo-btn {
    position: relative;
    overflow: hidden;
}

.pricing-demo-btn .btn-text-hover {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 100%);
    opacity: 0;
}

.pricing-demo-btn:hover .btn-text-default {
    transform: translateY(-100%);
    opacity: 0;
}

.pricing-demo-btn:hover .btn-text-hover {
    transform: translate(-50%, -50%);
    opacity: 1;
}