/* Override base container for pricing page */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.25rem;
}

.pricing-period {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pricing-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-feats-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-feat-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.pricing-feat-icon {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.pricing-feat-icon.included {
    color: #28a745;
}

.pricing-feat-icon.not-included {
    color: #dc3545;
}

.pricing-feat-name {
    flex-grow: 1;
    font-weight: 500;
    color: #333;
}

.pricing-feat-value {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.pricing-feat-value.coming-soon {
    color: #28a745;
    font-style: italic;
}

.pricing-cta {
    text-align: center;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    min-width: 150px;
}

.btn-primary {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
}

.btn-outline-primary {
    background: transparent;
    color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:hover {
    background: #007bff;
    color: white;
}

.btn-outline-success {
    background: transparent;
    color: #28a745;
    border-color: #28a745;
    cursor: not-allowed;
    opacity: 0.7;
}

.pricing-hero {
    text-align: center;
    padding: 5rem 2rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #2c3e50;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: #57606a;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.roi-banner {
    background: #ffffff;
    border: 1px solid #c8e6c9;
    border-left: 5px solid #2ea44f;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem auto 4rem;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.roi-math {
    font-weight: 700;
    font-size: 1.4rem;
    margin-top: 1rem;
    color: #1a7f37;
    line-height: 1.4;
}
.roi-label {
    font-weight: 600;
    color: #2e7d32;
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.roi-subtext {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
    
}

/* Ensure pricing content has some padding */
.pricing-content {
    padding: 0 2rem 5rem;
    background: linear-gradient(180deg, #e9ecef 0%, #ffffff 10%);
}

.guarantee-box {
    text-align: center;
    max-width: 600px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px dashed #adb5bd;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
}