body.adhesion {
    background: #F0F8FF 0% 0% no-repeat padding-box;
    min-height: 100vh;
}

.adhesion__paragraph {
    font-size: calc(1* var(--basePX) + 6px);
    line-height: 1.2;
    font-family: "Poppins-Medium", sans-serif;
    letter-spacing: 0px;
}

.form-section-title {
    font-size: calc(1* var(--basePX) + 8px);
    font-weight: bold;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--black);
}

.form-label {
    font-family: "Poppins-Bold", sans-serif;
    font-size: calc(1* var(--basePX) + 4px);
    font-weight: 600;
    letter-spacing: 0px;
    color: var(--black);
    margin-bottom: 6px;
    display: block;
    text-align: center;
    text-transform: uppercase;
}

.form-control::placeholder { 
    color: #707070; 
    text-align: center;
}

input.form-control,
select.form-control {
    border: 1px solid #e0e0e0;
    border-radius: 28px;
    padding: 10px 18px;
    background: var(--white) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    transition: border-color 0.2s;
    height: 55px;
    text-align: center;
}
.form-control:focus {
    border-color: var(--main-color_esn-forfait);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26,107,186,0.1);
}

.error-feedback {
    text-align: center;
}

.btn-rib,
.btn-help,
.btn-connexion {
    color: var(--black);
    border: 1px solid var(--black);
    border-radius: 20px;
    padding: 9px 20px;
    font-size: calc(1* var(--basePX) + 4px);
    font-family: "Poppins-Medium", sans-serif;
    font-weight: bold;
    letter-spacing: 0px;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    text-decoration: none;
}

.btn-help:hover,
.btn-connexion:hover {
    text-decoration: none;
}

.btn-rib:hover {
    background: var(--black);
    color: white;
}

.btn-next {
    color: var(--white);
    border: 1px solid var(--black);
    background: var(--black);
    border-radius: 20px;
    padding: 9px 20px;
    font-size: calc(1* var(--basePX) + 4px);
    font-family: "Poppins-Medium", sans-serif;
    font-weight: bold;
    letter-spacing: 0px;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    text-decoration: none;
    margin-top: 8px;
    margin-bottom: 8px;
}

.btn-next:hover {
    color: var(--black);
    border: 1px solid var(--black);
    background: var(--white);
}

.btn-prev {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    border-radius: 20px;
    padding: 9px 20px;
    font-size: calc(1* var(--basePX) + 4px);
    font-family: "Poppins-Medium", sans-serif;
    font-weight: bold;
    letter-spacing: 0px;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    margin-top: 8px;
    margin-bottom: 8px;
}

.btn-prev:hover {
    background: var(--black);
    color: var(--white);
    text-decoration: none;
}

.page-title {
    font-size: calc(1* var(--basePX) + 22px);
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 8px;
    color: var(--black);
    font-family: 'Poppins-Medium', sans-serif;
}
.page-subtitle {
    font-size: calc(1* var(--basePX) + 6px);
    text-align: center;
    color: var(--black);
    letter-spacing: 0px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Poppins-Medium', sans-serif;
}

/* ── Progress bar ── */
.progress-wrapper {
    margin-bottom: 6px;
    position: relative;
    padding-top: 22px;
}

.progress-percent {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    font-size: calc(1* var(--basePX) + 4px);
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 1.2;
    color: var(--black);
    white-space: nowrap;
    display: block;
    font-family: 'Poppins', sans-serif;
}

.progress {
    height: 16px;
    border-radius: 8px;
    background: #C2BFBF 0% 0% no-repeat padding-box;
    overflow: visible;
}
.progress-bar {
    background: var(--main-color_esn-forfait) 0% 0% no-repeat padding-box;
    border-radius: 8px;
    opacity: 1;
}
.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    margin-bottom: 28px;
}
.progress-steps .ps {
    font-size: calc(1* var(--basePX) + 3px);
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 1.2;
    color: #C2BFBF;
    flex: 1;
    text-align: center;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}
.progress-steps .ps.active,
.progress-steps .ps.done { color: var(--black); }

.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 18px 16px;
    font-size: calc(1* var(--basePX) + 4px);
    color: var(--black);
    letter-spacing: 0px;
    line-height: 1.2;
    box-shadow: 0px 3px 6px #00000029;
    max-width: 300px;
    font-family: 'Poppins-Regular', sans-serif;
}
.info-card .info-title {
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 15px;
    font-family: 'Poppins-Bold', sans-serif;
}
.info-card .check-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 6px;
}
.info-card .check-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}
.info-card .note {
    font-style: italic;
    font-size: calc(1* var(--basePX) + 3px);
    margin-top: 15px;
    margin-bottom: 5px;
}
.info-card .contact-link {
    font-weight: 700;
}

/* ── Radio civilité ── */
.civilite-group {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}
.civilite-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: calc(1* var(--basePX) + 4px);
    font-weight: 600;
    letter-spacing: 0px;
    font-family: 'Poppins-Bold', sans-serif;
    cursor: pointer;
    color: var(--black);
}
.civilite-group input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--black);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s;
}
.civilite-group input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    background: var(--black);
    border-radius: 50%;
}

.cnil {
    font-family: 'Poppins-Regular', sans-serif;
    font-size: calc(1* var(--basePX) + 1px);
    color: var(--black);
    text-align: center;
    letter-spacing: 0px;
}

.price {
    font-family: 'Poppins-Bold', sans-serif;
    font-size: calc(1* var(--basePX) + 1px);
    color: var(--black);
    text-align: center;
    letter-spacing: 0px;
}

option.placeholder{
    color: #707070; 
    text-align: center;
    font-size: 11px;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}
select.form-control:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231a6bba' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.title-abo {
    color: var(--black);
    letter-spacing: 0px;
    font-size: calc(1* var(--basePX) + 4px);
    font-family: 'ClanOT-Medium', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.label-ht {
    color: var(--black);
    font-family: 'Poppins-Bold', sans-serif;
    font-size: calc(1* var(--basePX) + 10px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0px;
}

.label-price {
    color: var(--black);
    font-family: 'Poppins-Bold', sans-serif;
    font-size: calc(1* var(--basePX) + 30px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0px;
}



.confirmation-card h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.4;
}

.confirmation-card .intro {
    font-size: 0.88rem;
    color: var(--black);
    margin-bottom: 16px;
}

.confirmation-card .step-text {
    font-size: 0.88rem;
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 14px;
}

.confirmation-card .step-text strong {
    color: var(--black);
    font-weight: 700;
}

.btn-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.recap-card {
    background: var(--white) 0% 0% no-repeat padding-box;
    border-radius: 28px;
    padding: 28px 32px;
    box-shadow: 0px 3px 6px #00000029;
    margin-bottom: 40px;
}

 /* ── Field ── */
.field-label {
    font-family: 'Poppins-Medium', sans-serif;
    font-size: calc(1* var(--basePX) + 4px);
    font-weight: 700;
    letter-spacing: 0px;
    color: var(--main-color_esn-forfait);
    margin-bottom: 4px;
}

.field-value {
    font-family: 'Poppins-Medium', sans-serif;
    font-size: calc(1* var(--basePX) + 4px);
    font-weight: 400;
    letter-spacing: 0px;
    color: var(--black);
    margin-bottom: 0;
    text-transform: uppercase;
}

.field-group {
    margin-bottom: 20px;
}

/* ── User card number badge ── */
.user-card-inner {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.user-number {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--black);
    flex-shrink: 0;
    padding-top: 4px;
    min-width: 70px;
    margin: auto;
    text-align: center;
}

.user-fields {
    flex: 1;
    width: 100%;
}

.contact-card {
    border-radius: 30px;
    border: 1px solid var(--black);
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 300px;
}

.contact-number {
    color: var(--black);
    min-width: 28px;
    padding-top: 4px;
    margin:auto;
}

.contact-info {
    flex: 1;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    text-align: left;
}

.contact-avatar {
    color: var(--black);
}

.contact-name {
    color: var(--black);
    margin: 0;
}

.contact-actions {
    display: flex;
    justify-content: space-between;
}


/* Password wrapper with toggle eye */
.input-password-wrapper {
    position: relative;
}

.input-password-wrapper .form-control {
    padding-right: 44px;
}

.btn-toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #aaa;
    display: flex;
    align-items: center;
}

.btn-toggle-password:hover { color: #1a6bba; }

.page-navigation {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* ── CGU checkbox ── */
.cgu-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
}
.cgu-wrapper input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--main-color_esn-forfait);
    cursor: pointer;
}
.cgu-wrapper label {
    font-size: 0.85rem;
    font-family: 'Poppins-Regular', sans-serif;
    color: var(--black);
    margin: 0;
    cursor: pointer;
    text-align: center;
}
.cgu-wrapper label a {
    font-weight: 700;
    font-family: 'Poppins-Regular', sans-serif;
    color: var(--black);
    text-decoration: underline;
}
.cgu-wrapper label a:hover { color: #1a6bba; }