/* V3.1 Audit & Interactive Hub - Premium System */

.v3-audit-page {
    position: relative;
    min-height: 100vh;
    background: #010208;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.v3-interactive-hub {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 160px 1.5rem 80px;
    width: 100%;
}

.v3-glass-form {
    width: 100%;
    max-width: 900px;
    background: rgba(6, 9, 18, 0.4);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3rem;
    padding: 3rem;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

@media (min-width: 768px) {
    .v3-glass-form {
        padding: 5rem;
    }
}

.v3-form-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .v3-form-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.v3-input-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .v3-input-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.v3-form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.v3-form-group:focus-within {
    border-color: #0070f3;
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 112, 243, 0.1);
}

.v3-form-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
}

.v3-form-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.v3-sector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .v3-sector-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.v3-sector-btn {
    padding: 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: 0.3s;
    cursor: pointer;
}

.v3-sector-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.v3-sector-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15);
}

.v3-form-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .v3-form-footer {
        flex-direction: row;
    }
}

.v3-btn-nav {
    flex: 1;
    padding: 1.5rem;
    border-radius: 1.5rem;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.v3-btn-prev {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    background: transparent;
}

.v3-btn-prev:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.v3-btn-next {
    background: #fff;
    color: #000;
    flex: 2;
    border: none;
}

.v3-btn-next:hover {
    background: #0070f3;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 112, 243, 0.3);
    transform: translateY(-3px);
}

.v3-step-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.v3-step-dot {
    height: 4px;
    width: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.v3-step-dot.active {
    background: #0070f3;
    box-shadow: 0 0 10px #0070f3;
}