/* Modern Pricing Section Styles */
.pricing-section {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.pricing-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(30,74,115,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.pricing-title {
    font-size: 2.25rem;
    color: #1e4a73;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(30, 74, 115, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(30,74,115,0.4);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 1);
    border: 2px solid #1e4a73;
    position: relative;
}

.pricing-card.featured::after {
    display: none;
}

.pricing-card.featured:hover {
    transform: translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b35;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(30, 74, 115, 0.2);
}

.pricing-header-card {
    padding: 50px 30px 40px;
    text-align: center;
    border-bottom: 1px solid rgba(30, 74, 115, 0.1);
}

.package-name {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
}

.currency {
    font-size: 1.4rem;
    color: #64748b;
    margin-right: 8px;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    color: #1e4a73;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.package-duration {
    color: #64748b;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.pricing-features {
    padding: 40px 30px;
    flex: 1;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    color: #475569;
    font-size: 1rem;
    border-bottom: 1px solid rgba(30, 74, 115, 0.1);
    font-weight: 400;
}

.feature-label {
    font-weight: 500;
    color: #1e293b;
}

.feature-rating {
    display: flex;
    gap: 2px;
}

.feature-rating .star {
    color: #e5e7eb;
    font-size: 16px;
    font-weight: bold;
}

.feature-rating .star.filled {
    color: #1e4a73;
}

.feature-value {
    color: #1e4a73;
    font-weight: 600;
    text-align: right;
    max-width: 60%;
    font-size: 0.9rem;
}

/* Tech Stack Section */
.tech-stack-section {
    padding: 30px;
    border-top: 1px solid rgba(30, 74, 115, 0.1);
    background: rgba(248, 250, 252, 0.5);
}

.tech-stack-title {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 600;
    text-align: center;
}

.tech-stack-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tech-logo-small {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(20%);
}

.tech-logo-small:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.pricing-action {
    padding: 0 30px 50px;
    margin-top: auto;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 28px;
    background: rgba(30, 74, 115, 0.08);
    color: #1e4a73;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.2s ease;
    border: 1px solid rgba(30, 74, 115, 0.2);
}

.pricing-btn:hover {
    background: rgba(30, 74, 115, 0.15);
    transform: translateY(-2px);
    color: #1e4a73;
}

.pricing-btn.featured-btn {
    background: #ff6b35;
    border: 1px solid #ff6b35;
    color: #ffffff;
}

.pricing-btn.featured-btn:hover {
    background: #e55a2b;
    color: #ffffff;
}

.pricing-btn i {
    font-size: 1.2rem;
}

.pricing-footer {
    margin-top: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pricing-note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #475569;
    padding: 20px 32px;
    border-radius: 16px;
    font-size: 1.1rem;
    border: 1px solid rgba(30, 74, 115, 0.2);
    font-weight: 500;
}

.pricing-note i {
    color: #ff6b35;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        gap: 30px;
        padding: 0 20px;
    }
    
    .pricing-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-header {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .pricing-header-card {
        padding: 30px 20px 20px;
    }
    
    .pricing-features {
        padding: 20px;
    }
    
    .pricing-action {
        padding: 0 20px 30px;
    }
    
    .pricing-title {
        font-size: 1.75rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .pricing-note {
        margin: 0 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
