/* ===== INTELLIGENT ROUTING SECTION ===== */
.intelligent-router-section {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(11, 249, 27, 0.05), rgba(188, 19, 254, 0.05));
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.router-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #fff;
}

.router-subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.smart-question-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.question-text {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-green);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.route-option {
    background: rgba(20, 20, 30, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.route-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.route-option:hover::before {
    left: 100%;
}

.route-option:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(11, 249, 27, 0.3);
}

.solutions-opt:hover {
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(11, 249, 27, 0.3);
}

.income-opt:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.opt-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.route-option h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 900;
    color: #fff;
}

.route-option p {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.opt-arrow {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), #0a8012);
    color: #fff;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.income-opt .opt-arrow {
    background: linear-gradient(135deg, var(--gold), #FF6B00);
    color: #000;
}

.route-option:hover .opt-arrow {
    transform: scale(1.1);
}

.manual-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.nav-link-alt {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link-alt:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.divider {
    color: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .intelligent-router-section {
        padding: 1.5rem;
    }
    
    .router-title {
        font-size: 1.5rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .manual-nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .divider {
        display: none;
    }
}
