:root {
    --kodarium-teal: #00a4b2;
    --kodarium-bg: #F6F8FB;
    --kodarium-gray: #F2F4F7;
    --text-dark: #3b3b3b;
}

.setup-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: "Nunito", sans-serif;
    color: var(--text-dark);
}

.setup-nav {
    background: #fff;
    border: 1px solid #dfdfdf;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 50px;
}

.setup-nav h3 {
    margin-top: 0;
    font-size: 22px;
    color: #404040;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px 20px;
    background: var(--kodarium-gray);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover {
    background: var(--kodarium-teal);
    color: white;
}

.setup-step {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    scroll-margin-top: 100px;
}

.setup-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-info {
    flex: 1;
}

.step-badge {
    background: var(--kodarium-teal);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.step-info h2 {
    font-size: 28px;
    color: #404040;
    margin-bottom: 20px;
}

.step-info p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

.step-visual {
    flex: 1.2;
}

.step-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    display: block;
}

@media (max-width: 768px) {
    .setup-step, .setup-step:nth-child(even) {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .step-info h2 {
        font-size: 22px;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
    }
    .nav-links a {
        display: block;
        text-align: center;
    }
}

html { scroll-behavior: smooth; }