* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --rza-turquoise: #009898;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
}
.dl-form {
    display: none;
}
.accent {
    color: var(--rza-turquoise);
}
.italic {
    font-style: italic;
}
.hero {
    background: white;
    padding-top: 5rem;
    width: 100%;
}
.hero-container {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}
.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    color: var(--slate-900);
    margin-bottom: 2rem;
    line-height: 1.05;
    letter-spacing: -0.025em;
}
.hero-subtitle {
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}
.kb-content .bricks-background-secondary:hover {
    color: #fff !important;
    background-color: #009898 !important;
}
.kb-content .bricks-background-secondary:hover * {
    color: #fff;
}
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}
.wizard-area {
    flex-grow: 1;
    width: 100%;
}
.wizard-card {
    background: white;
    border-radius: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--slate-100);
    overflow: visible;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}
.progress-container {
    padding: 2rem 2rem 0;
    margin-bottom: 2rem;
}
.progress-bar {
    height: 0.5rem;
    width: 100%;
    background-color: var(--slate-50);
    border-radius: 9999px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background-color: var(--rza-turquoise);
    transition: width 0.7s ease-out;
    width: 20%;
}
.step-content {
    padding: 2rem;
    flex-grow: 1;
    animation: fadeSlideIn 0.5s ease-out;
}
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.step-title {
    color: var(--slate-900);
    margin-bottom: 1rem;
}
.step-desc {
    color: var(--slate-400);
    margin-bottom: 2.5rem;
}
.options-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
button.options-button {
    display: flex;
    flex-direction: column;
}
.option-btn {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid var(--slate-50);
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    width: 100%;
}
.option-btn:hover {
    border-color: var(--slate-100);
}
.option-btn.selected {
    background-color: var(--slate-50);
    border-color: var(--rza-turquoise);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}
.option-checkbox {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.5rem;
    border: 2px solid var(--slate-200);
    margin-right: 1.5rem;
    margin-top: 0.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.option-btn.selected .option-checkbox {
    background-color: var(--rza-turquoise);
    border-color: var(--rza-turquoise);
}
.option-checkbox svg {
    display: none;
    color: white;
}
.option-btn.selected .option-checkbox svg {
    display: block;
}
.option-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.option-index {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--slate-400);
    opacity: 0.5;
}
.option-label {
    font-weight: 700;
    color: var(--slate-800);
}
.option-desc {
    color: var(--slate-400);
    margin-top: 0.25rem;
}
.binary-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.binary-label {
    font-weight: 700;
    color: var(--slate-800);
    display: block;
    transition: transform 0.2s;
}
.options-button .binary-desc {
    color: var(--slate-400);
    font-size: 1.4rem;
}
.wizard-footer {
    padding: 2rem;
    background: rgba(248, 250, 252, 0.3);
    border-top: 1px solid var(--slate-50);
    display: flex;
    justify-content: space-between;
}
.bricks-button:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}
.results-container {
    text-align: center;
    animation: zoomIn 0.7s ease-out;
}
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.results-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    background-color: var(--rza-turquoise);
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.results-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--slate-900);
    margin-bottom: 3rem;
    letter-spacing: -0.05em;
}
.results-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}
.software-card {
    background: white;
    border-radius: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid var(--slate-100);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    transition: all 0.5s;
}
.software-card:hover {
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.2);
    transform: translateY(-0.5rem);
}
.card-header {
    height: 8rem;
    position: relative;
    overflow: hidden;
}
.card-header-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 24px 24px;
}
.card-header-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.1), transparent);
}
.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 20;
    padding: 0.375rem 0.75rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.card-icon-wrapper {
    margin-right: 15px;
}
.card-icon-box {
    overflow: hidden;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    color: white;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
.card-content {
    padding: 3.5rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    text-align: center;
}
.card-name {
    color: var(--slate-900);
    margin-bottom: 0.25rem;
    line-height: 1.2;
    font-family: -apple-system,"system-ui",Segoe UI,roboto,helvetica,arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
}
.card-subline {
    font-size: 1.4rem;
    color: var(--slate-400);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    min-height: 30px;
}
.card-tag {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    background: var(--slate-50);
    color: var(--slate-400);
    border: 1px solid var(--slate-100);
    text-transform: uppercase;
}
.card-buttons {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.card-btn-secondary {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--slate-900);
    text-decoration: none;
    transition: color 0.2s;
}
.doc-management-box {
    max-width: 42rem;
    margin: 0 auto 3rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 2.5rem;
    padding: 2.5rem 3.5rem;
    border: 1px solid var(--slate-100);
    position: relative;
    overflow: hidden;
}
.doc-management-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--slate-800);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}
.doc-management-desc {
    color: var(--slate-400);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}
.doc-management-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rza-turquoise);
    text-decoration: none;
    transition: gap 0.2s;
}
.doc-management-link:hover {
    gap: 1rem;
}
.download-cta {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}
.restart-container {
    margin-top: 2rem;
    padding-bottom: 3rem;
    display: flex;
    justify-content: center;
}
@media (min-width: 768px) {
    .wizard-footer {
        padding: 2rem 4rem;
    }
}
@media (max-width: 767px) {
    .doc-management-box {
        padding: 2rem;
    }
}
