.brand-logo-top {
    position: fixed;
    top: 20px;
    left: 32px;
    z-index: 1000;
    width: 155px;
    height: 47px;
}

.brand-logo-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.onboarding-container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;

}

.onboarding-container::before {
    content: '';
    position: fixed;
    top: -100px;
    left: -100px;
    width: 608px;
    height: 371px;
    background-image: url('data:image/svg+xml;utf8,<svg width="608" height="371" viewBox="0 0 608 371" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M607.671 66.6389V-82.3568H485.433V66.6389C485.433 166.908 404.105 248.236 303.836 248.236C203.566 248.236 122.238 166.908 122.238 66.6389V-209.595C122.238 -277.121 67.5269 -331.833 0 -331.833V66.7093C0 234.506 136.04 370.545 303.836 370.545C471.632 370.545 607.671 234.506 607.671 66.7093V66.6389Z" fill="url(%23paint0_linear_53_4209)"/><defs><linearGradient id="paint0_linear_53_4209" x1="1002.48" y1="987.722" x2="-126.534" y2="-540.399" gradientUnits="userSpaceOnUse"><stop stop-color="%235931F8"/><stop offset="0.5" stop-color="%234123FD"/><stop offset="1" stop-color="%2311BEFD"/></linearGradient></defs></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    pointer-events: none;
    opacity: 0.1;
}

.onboarding-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px;
    row-gap: 40px;
    position: relative;
    z-index: 1;
}

.onboarding-header {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.brand-logo-small {
    width: 100px;
    height: 94px;
}

.onboarding-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    row-gap: 30px;
    margin-top: 5%;
}

.progress-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E0E0E0;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #5931F8;
}

.onboarding-text {
    text-align: center;
    row-gap: 12px;
    display: flex;
    flex-direction: column;
}

.onboarding-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.3;
}

.onboarding-subtitle {
    font-size: 16px;
    color: #999;
    margin: 0;
    line-height: 1.5;
}

.options-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 55%;
    max-width: 900px;
    /* margin-bottom: 40px; */
}

.option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 40px;
    border: 3px solid #E0E0E0;
    border-radius: 32px;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    min-height: 425px;
    justify-content: center;
}

.option-card:hover {
    border-color: #5931F8;
    box-shadow: 0 12px 40px rgba(89, 49, 248, 0.2);
}

.option-card.active {
    border-color: #5931F8;
    background: #F8F6FF;
    box-shadow: 0 12px 40px rgba(89, 49, 248, 0.2);
}

.option-header {
    position: relative;
    margin-bottom: 32px;
}

.option-icon {
    width: 80px;
    height: 80px;
    border: 3px solid #5931F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.checkmark {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 40px;
    height: 40px;
    background: #5931F8;
    border-radius: 50%;
    padding: 6px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(89, 49, 248, 0.3);
}

.option-card.active .checkmark {
    display: flex;
}

.option-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 0 16px 0;
}

.option-description {
    font-size: 16px;
    color: #999;
    margin: 0;
    line-height: 1.6;
}

.continue-btn {
    width: 550%;
    max-width: 937px;
    padding: 0;
    height: 60px;
    border: none;
    border-radius: 24px;
    background: linear-gradient(260.78deg, #5931F8 -4.91%, #3883f4 90.16%);
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 16px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.continue-btn:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 12px 40px rgba(89, 49, 248, 0.4);
}

.continue-btn:active {
    transform: translateX(-50%) translateY(-1px);
}

@media (max-width: 1024px) {
    .options-container {
        width: 90%;
    }

    .option-card {
        min-height: 350px;
        padding: 40px 30px;
    }

    .continue-btn {
        width: 550%;
        max-width: 937px;
        padding: 0;
        height: 60px;
        border: none;
        border-radius: 24px;
        background: linear-gradient(260.78deg, #5931F8 -4.91%, #3883f4 90.16%);
        color: #fff;
        font-size: 24px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin: 16px auto 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .brand-logo-top {
        width: 120px;
        height: 35px;
        top: 15px;
        left: 15px;
    }

    .onboarding-container {
        padding: 1rem 0.5rem;
    }

    .onboarding-wrapper {
        row-gap: 20px;
    }

    .onboarding-content {
        row-gap: 20px;
        margin-top: 10%;
    }

    .options-container {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 95%;
    }

    .option-card {
        min-height: 280px;
        padding: 30px 20px;
        border-radius: 20px;
    }

    .checkmark-icon {
        width: 35px;
        height: 35px;
        top: -10px;
        right: -10px;
    }

    .option-header {
        margin-bottom: 20px;
    }

    .option-icon {
        width: 60px;
        height: 60px;
        border: 2px solid #5931F8;
    }

    .option-title {
        font-size: 22px;
        margin: 0 0 12px 0;
    }

    .option-description {
        font-size: 14px;
    }

    .onboarding-title {
        font-size: 24px;
    }

    .onboarding-subtitle {
        font-size: 14px;
    }

    .continue-btn {
        width: 550%;
        max-width: 937px;
        padding: 0;
        height: 60px;
        border: none;
        border-radius: 24px;
        background: linear-gradient(260.78deg, #5931F8 -4.91%, #3883f4 90.16%);
        color: #fff;
        font-size: 24px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin: 16px auto 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin: 10px auto 0;
    }

    .progress-dots {
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .brand-logo-top {
        width: 100px;
        height: 30px;
        top: 10px;
        left: 10px;
    }

    .onboarding-container {
        padding: 0.5rem;
    }

    .onboarding-wrapper {
        row-gap: 15px;
    }

    .onboarding-content {
        row-gap: 15px;
        margin-top: 15%;
    }

    .options-container {
        width: 100%;
        gap: 12px;
    }

    .option-card {
        min-height: 250px;
        padding: 20px 15px;
        border-radius: 16px;
        border: 2px solid #E0E0E0;
    }

    .checkmark-icon {
        width: 30px;
        height: 30px;
        top: -8px;
        right: -8px;
    }

    .option-header {
        margin-bottom: 15px;
    }

    .option-icon {
        width: 50px;
        height: 50px;
        border: 2px solid #5931F8;
    }

    .option-title {
        font-size: 18px;
        margin: 0 0 8px 0;
    }

    .option-description {
        font-size: 12px;
        line-height: 1.4;
    }

    .onboarding-title {
        font-size: 20px;
    }

    .onboarding-subtitle {
        font-size: 12px;
    }

    .continue-btn {
        width: 450%;
        height: 50px;
        font-size: 16px;
        border-radius: 16px;
        margin: 8px auto 0;
        padding: 0;
    }

    .progress-dots {
        gap: 5px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }
}