/* Pricing Page Specific Styles */

.pricing-hero {
    background: linear-gradient(135deg, #F9FAFB 0%, #E5E7EB 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.pricing-hero-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero-text {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.highlight {
    color: #DC2626;
    font-weight: 600;
}

.pricing-hero-subtitle {
    font-size: 1rem;
    color: #6B7280;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #87CEEB, #1E3A8A);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.modeling {
    background: linear-gradient(135deg, #EBF8FF 0%, #DBEAFE 100%);
}

.pricing-card.monitoring {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
}

.pricing-card.negotiation {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #DC2626;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-unit {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-content {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4B5563;
}

.pricing-features {
    margin-top: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #374151;
}

.feature-icon {
    color: #10B981;
    flex-shrink: 0;
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    text-align: center;
    color: white;
}

.offer-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.free-text {
    color: #FEF08A;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.offer-subtitle {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offer-section .contact-widget {
    margin-top: 2rem;
}

.offer-section .contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 100px 0 60px;
    }
    
    .pricing-hero-title {
        font-size: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .offer-section {
        padding: 60px 0;
    }
    
    .offer-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 90px 0 50px;
    }
    
    .pricing-section,
    .offer-section {
        padding: 60px 0;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}

/* Animation for pricing cards */
.pricing-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .pricing-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

