/* V7 Specific Styles for Form and Pricing */
.pricing-section {
    padding: 10rem 0;
    background: #050505;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.price-card {
    background: #0a0a0a;
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 4rem;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 0 50px var(--accent-glow);
}

.price-card.featured {
    border-color: var(--accent);
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
}

.price-val {
    font-size: 4rem;
    font-weight: 900;
    margin: 2rem 0;
    color: var(--accent);
}

.price-val span {
    font-size: 1.5rem;
    color: var(--muted);
}

.price-features {
    list-style: none;
    margin-bottom: 3rem;
    color: var(--muted);
}

.price-features li {
    margin-bottom: 1rem;
}

/* Multi-step Form V7 */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: #0a0a0a;
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 5rem;
    position: relative;
}

.step {
    display: none;
}

.step.active {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-input {
    width: 100%;
    background: #111;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1.25rem;
    color: white;
    font-family: inherit;
    font-size: 1.1rem;
    margin-top: 2rem;
}

.form-input:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 10px var(--accent-glow);
}

.step-label {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    display: block;
    margin-bottom: 1rem;
}

.step-counter {
    color: var(--accent);
    font-weight: 900;
    margin-bottom: 2rem;
    display: block;
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 4rem;
}

.btn-prev {
    background: transparent;
    border: 1px solid var(--border);
    color: white;
    padding: 1.25rem 2.5rem;
    font-weight: 900;
    cursor: pointer;
    border-radius: 0.25rem;
    transform: skewX(-10deg);
}

.btn-next {
    flex: 1;
    background: var(--accent);
    border: none;
    color: white;
    padding: 1.25rem 2.5rem;
    font-weight: 900;
    cursor: pointer;
    border-radius: 0.25rem;
    transform: skewX(-10deg);
    box-shadow: 0 0 20px var(--accent-glow);
}