/* Pricing Hero */
.pricing-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    text-align: center;
}

.pricing-hero h1 {
    font-size: 44px;
    color: white;
    margin-bottom: 16px;
}

.pricing-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--bg);
}

.pricing-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card-full {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px 32px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card-full:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.pricing-card-full.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
    transform: scale(1.02);
}

.pricing-card-full.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-card-full .pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pricing-tagline {
    font-size: 14px;
    color: var(--text-light);
}

.pricing-amount {
    text-align: center;
    margin-bottom: 8px;
}

.pricing-amount .currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-body);
    vertical-align: top;
}

.pricing-amount .price {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -2px;
}

.pricing-amount .period {
    font-size: 16px;
    color: var(--text-light);
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-features-list h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-features-list ul {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.5;
}

.pricing-features-list li i {
    color: var(--primary);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-features-list li strong {
    color: var(--text-dark);
}

.pricing-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border);
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4 i {
    color: var(--primary);
}

.faq-item p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--text-dark);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--text-dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid-full {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .pricing-card-full.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card-full.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 120px 0 50px;
    }
    
    .pricing-hero h1 {
        font-size: 32px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}
