.pricing-section {
    padding: 70px 0 40px 0;
    background-color: #ffffff;
}

/* Reduced top padding for FAQ on pricing page */
.faq-section {
    padding-top: 10px;
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(48, 92, 222, 0.3);
}

.pricing-card.popular {
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: #fff;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-main);
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
}

.price span {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-header p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-main);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: 800;
}

.pricing-card .cta-button {
    width: 100%;
    justify-content: center;
    padding: 14px;
}

.pricing-card .cta-button.secondary {
    background: #fff;
    color: var(--text-main) !important;
    border: 1px solid var(--border-color);
    box-shadow: none;
}

.pricing-card .cta-button.secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary-blue);
}

.roi-teaser {
    background: #0f172a;
    border-radius: var(--radius-xl);
    padding: 44px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.roi-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(48, 92, 222, 0.1) 0%, transparent 70%);
}

.roi-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.roi-content h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #fff;
}

.roi-content p {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 30px;
    line-height: 1.7;
}

.roi-content strong {
    color: #fff;
    font-weight: 700;
}

.roi-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.2s ease;
}

.roi-link:hover {
    color: #60a5fa;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .roi-teaser {
        padding: 40px 24px;
    }

    .roi-content h2 {
        font-size: 22px;
    }

    .price {
        font-size: 32px;
    }
}