.pricing-modal-container{
    min-width: 100%;
}

.pricing-modal-content{
    position: relative;
    animation: fadeInDown var(--transition-normal);
    min-width: 100%;
    min-height: 100vh;
}

#pricing{
    margin: 0;
    min-height: 100vh;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
}

section:not(.hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-xl);
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-primary);
}

.btn-primary{
    text-decoration: none;
}
