/* ===========================================
   DGA AI Act Wizard — Clean, minimal, no conflicts
   =========================================== */

/* Font reset */
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    background: #f9fbfd;
    color: #1b1b1b;
}

/* Hide main site nav */
header, nav, .nav, .nav-inner {
    display: none !important;
}

/* Centered container */
.wizard-container {
    max-width: 720px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Headings */
h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}
h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

/* Text */
p {
    line-height: 1.6;
    color: #344054;
}

/* Buttons */
.button-primary {
    display: inline-block;
    background: #0e6cff;
    color: white;
    padding: 14px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}
.button-primary:hover {
    background: #005ce6;
}

.button-secondary {
    display: inline-block;
    background: #e4e7ec;
    color: #344054;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
}

/* Option buttons */
.option {
    padding: 16px 20px;
    border: 2px solid #d0d7e2;
    background: white;
    border-radius: 10px;
    margin-bottom: 14px;
    cursor: pointer;
    transition: .2s;
}
.option:hover {
    border-color: #0e6cff;
    background: #f0f6ff;
}

/* Navigation row */
.nav-row {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

/* Step counter */
.step-counter {
    margin-bottom: 20px;
    font-size: .95rem;
    opacity: .7;
}

/* Fade animation */
.fade-in {
    animation: fadeIn .3s ease-out;
}
@keyframes fadeIn {
    from { opacity:0; transform: translateY(8px); }
    to { opacity:1; transform: translateY(0); }
}
