.sa-reset-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.sa-reset-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sa-reset-hero__text {
    max-width: 520px;
}

.sa-reset-hero__text h1 {
    margin: 0 0 24px;
    font-size: 35px;
    line-height: 1.05;
    font-weight: 600;
    color: #343434;
    letter-spacing: -1.2px;
}

.sa-reset-hero__text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #343434;
}

.sa-reset-hero__text strong {
    color: #343434;
    font-weight: 700;
}

.sa-reset-hero__visual {
    flex: 0 0 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sa-reset-hero__visual img {
    max-width: 100%;
    height: auto;
    display: block;
}

.sa-reset-card-wrap {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 50px;
}

.sa-reset-card {
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    border: 1px solid #edf1f5;
    border-radius: 5px;
    box-shadow: 0 20px 50px rgba(31, 42, 68, 0.07);
    padding: 30px 50px;
}

.sa-reset-intro h2 {
    margin-bottom: 5px;
    font-size: 25px;
}

.sa-reset-intro {
    text-align: center;
    color: #343434;
    font-size: 16px;
    margin-bottom: 26px;
}

.sa-reset-message {
    border-radius: 5px;
    padding: 16px 18px;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
}

.sa-reset-message--success {
    background: #eefaf4;
    border: 1px solid #d8f1e2;
    color: #2d7a54;
}

.sa-reset-message--warning {
    background: #fff8ef;
    border: 1px solid #f4dfbf;
    color: #9b6a19;
}

.sa-reset-form {
    margin: 0;
}

.sa-reset-field {
    position: relative;
}

.sa-reset-field::before {
    content: "✉";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 23px;
    color: #97a7b9;
    line-height: 1;
    z-index: 2;
}

.sa-reset-field input[type="text"],
.sa-reset-field input[type="email"] {
    color: #55657a;
    box-shadow: none;
    border-radius: 5px;
    font-size: 14px;
    padding: 0 20px 0 50px;
}

.sa-reset-field input[type="text"]::placeholder,
.sa-reset-field input[type="email"]::placeholder {
    color: #8e9bae;
}

.sa-reset-field input[type="text"]:focus,
.sa-reset-field input[type="email"]:focus {
    border-color: #42c59a;
    box-shadow: 0 0 0 3px rgba(66, 197, 154, 0.10);
}

.sa-reset-actions {
    text-align: center;
    margin-top: 25px;
}

.sa-reset-submit {
    cursor: pointer;
    font-size: 14px;
    font-weight: 501;
    line-height: initial;
    padding: 10px 20px;
}

.sa-reset-submit:hover {
    background: #343434;
    transform: translateY(-1px);
}

.sa-reset-back {
    margin-top: 10px;
    text-align: center;
}

.sa-reset-back a {
    color: #343434;
    font-size: 14px;
    text-decoration: none;
}

.sa-reset-back a:hover {
    color: #42c59a;
}

.sa-reset-faq {
    max-width: 1040px;
    margin: 0 auto;
}

.sa-reset-faq h2 {
    margin: 0 0 34px;
    text-align: center;
    font-size: 56px;
    line-height: 1.1;
    color: #343434;
    font-weight: 800;
    letter-spacing: -1px;
}

.sa-reset-faq__item {
    background: #ffffff;
    border: 1px solid #edf1f5;
    border-radius: 5px;
    box-shadow: 0 6px 18px rgba(31, 42, 68, 0.04);
    margin-bottom: 14px;
    overflow: hidden;
}

.sa-reset-faq__question {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 30px;
    font-size: 22px;
    font-weight: 700;
    color: #343434;
}

.sa-reset-faq__question span:last-child {
    color: #42c59a;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
}

/* Petit nettoyage visuel au cas où UM injecte des éléments résiduels */
.sa-reset-page .um,
.sa-reset-page .um-form,
.sa-reset-page .um-field-block,
.sa-reset-page .um-field,
.sa-reset-page .um-col-alt,
.sa-reset-page .um-col-alt-b {
    width: 100%;
}

.sa-reset-icon-circle {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(63, 192, 149, 0.14);
    box-shadow: 0 12px 26px rgba(63, 192, 149, 0.16);
}

.sa-reset-icon-circle svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: #20a87c;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 920px) {
    .sa-reset-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .sa-reset-hero__visual {
        flex: none;
        width: 100%;
        justify-content: flex-start;
    }

    .sa-reset-page {
        padding: 20px;
    }

    .sa-reset-card-wrap {
        margin-bottom: 10px;
        margin-top: 0;
    }

    .sa-reset-hero__text h1 {
        font-size: 30px;
    }

    .sa-reset-hero__text p {
        font-size: 14px;
    }

    .sa-reset-card {
        padding: 20px;
    }

    .sa-reset-hero {
        gap: 20px;
    }

    .site-content .ast-container {
        padding: 0;
    }

    .sa-reset-hero__text {
        text-align: center;
        margin: auto;
    }

    .sa-reset-hero__visual img {
        width: 250px;
        margin: auto;
    }

    .sa-reset-intro h2 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .sa-reset-intro p {
        margin: 0;
    }

    .sa-reset-intro {
        margin-bottom: 15px;
    }
}
