/* Pricing Section */
.pricing-section {
    background: #f8f9fa;
}

.price-promise-card,
.price-examples-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid #e9ecef;
}

.promise-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.promise-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.promise-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.promise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #2c3e50;
    font-weight: 500;
}

.promise-item:last-child {
    border-bottom: none;
}

.promise-item svg {
    flex-shrink: 0;
}

.examples-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
    transition: all 0.3s ease;
}

.price-item:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

.service-info {
    flex-grow: 1;
}

.service-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.service-details {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
}

.price-tag {
    font-size: 18px;
    font-weight: 900;
    color: #0066cc;
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid #0066cc;
    min-width: 80px;
    text-align: center;
}

.price-note {
    background: rgba(0, 102, 204, 0.05);
    border: 1px solid rgba(0, 102, 204, 0.1);
    border-radius: 12px;
    padding: 16px;
}

.note-text {
    font-size: 14px;
    color: #495057;
    margin: 0;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
}

.faq-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 32px 0;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    border-left: 3px solid #0066cc;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.faq-answer {
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

/* Price CTA */
.price-cta {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.price-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.cta-content {
    margin-bottom: 24px;
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: white;
}

.cta-text {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
    font-weight: 500;
}

.price-cta-btn {
    background: white;
    color: #0066cc;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.price-cta-btn:hover {
    color: #004499;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .price-promise-card,
    .price-examples-card {
        padding: 24px;
        margin-bottom: 24px;
    }
    
    .promise-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .promise-title,
    .examples-title {
        font-size: 20px;
    }
    
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
    }
    
    .price-tag {
        align-self: flex-end;
        min-width: auto;
    }
    
    .faq-section {
        padding: 24px;
    }
    
    .faq-title {
        font-size: 22px;
    }
    
    .price-cta {
        padding: 32px 24px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-text {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .price-promise-card,
    .price-examples-card {
        padding: 20px;
    }
    
    .promise-item {
        padding: 10px 0;
        font-size: 14px;
    }
    
    .service-name {
        font-size: 15px;
    }
    
    .service-details {
        font-size: 12px;
    }
    
    .price-tag {
        font-size: 16px;
        padding: 6px 12px;
    }
    
    .faq-item {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .faq-question {
        font-size: 15px;
    }
    
    .faq-answer {
        font-size: 13px;
    }
    
    .price-cta {
        padding: 24px 20px;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .cta-text {
        font-size: 15px;
    }
    
    .price-cta-btn {
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* Hover animations */
.price-promise-card:hover,
.price-examples-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #e3f2fd;
    transition: background 0.3s ease;
}