*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-primary: #3a7d34;
    --green-dark: #2a5c26;
    --green-light: #6abf4b;
    --blue-accent: #2c5aa0;
    --bg-gradient: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --red-500: #ef4444;
    --red-50: #fef2f2;
    --green-50: #f0fdf4;
    --green-600: #16a34a;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-800);
    line-height: 1.6;
}

.auth-container {
    width: 100%;
    max-width: 440px;
    padding: 20px;
}

.auth-container.wide {
    max-width: 640px;
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-light), var(--blue-accent));
}

.logo-wrapper {
    text-align: center;
    margin-bottom: 32px;
}

.logo-wrapper img {
    width: 130px;
    height: auto;
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.subtitle {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.subtitle-2 {
    /* text-align: center; */
    color: var(--gray-600);
    font-size: .9rem;
    font-weight: 550;
    margin-bottom: 10px;
}

/* ---- Badge « 100% Gratuite » ---- */
.badge-free {
    display: flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin: 12px auto 26px;
    padding: 6px 16px;
    background: var(--green-50);
    color: var(--green-600);
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.badge-free svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    background: var(--gray-50);
}

.form-group input:focus {
    border-color: var(--green-primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(58, 125, 52, 0.1);
}

.form-group input::placeholder {
    color: var(--gray-400);
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-400);
    font-size: 1.1rem;
    padding: 4px;
    transition: var(--transition);
}

.password-toggle:hover {
    color: var(--green-primary);
}

.btn {
    width: 100%;
    padding: 13px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--white);
    box-shadow: 0 4px 12px rgba(58, 125, 52, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(58, 125, 52, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.forgot-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: var(--blue-accent);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.forgot-link:hover {
    color: var(--green-primary);
    text-decoration: underline;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--green-primary);
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Masque l'alerte tant qu'elle n'a pas de message (sinon .alert display:flex
   l'emporte sur l'attribut [hidden] du navigateur). */
.alert[hidden] {
    display: none;
}

.alert-error {
    background: var(--red-50);
    color: var(--red-500);
    border: 1px solid #fecaca;
}

.alert-success {
    background: var(--green-50);
    color: var(--green-600);
    border: 1px solid #bbf7d0;
}

.alert-info {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.password-rules {
    background: var(--gray-50);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.password-rules p {
    font-weight: 600;
    margin-bottom: 6px;
}

.password-rules ul {
    list-style: none;
    padding: 0;
}

.password-rules ul li {
    padding: 2px 0;
    padding-left: 18px;
    position: relative;
}

.password-rules ul li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--green-primary);
}

.footer-text {
    text-align: center;
    margin-top: 24px;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.signup-text {
    text-align: center;
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.signup-text a {
    color: var(--blue-accent);
    font-weight: 600;
    text-decoration: none;
}

.signup-text a:hover {
    color: var(--green-primary);
    text-decoration: underline;
}

/* ---- Récapitulatif (étape 2) ---- */
.recap-list {
    margin: 8px 0 24px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.recap-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    transition: background 0.2s ease;
}

.recap-item + .recap-item {
    border-top: 1px solid var(--gray-100);
}

.recap-item:hover {
    background: var(--gray-50);
}

.recap-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--green-50);
    font-size: 1.15rem;
}

.recap-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.recap-item dt {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.recap-item dd {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    word-break: break-word;
}

/* Deux boutons côte à côte (Retour / Valider) */
.form-actions {
    display: flex;
    gap: 12px;
}

.form-actions .btn {
    flex: 1;
}

/* ---- Section succès (étape 3) ---- */
.success-icon {
    width: 76px;
    height: 76px;
    margin: 4px auto 16px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green-50);
    border: 2px solid #bbf7d0;
    font-size: 2.2rem;
    animation: successPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-text {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.success-note {
    text-align: center;
    background: var(--green-50);
    border: 1px solid #bbf7d0;
    color: var(--green-600);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.redirect-hint {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.8rem;
}

.countdown {
    display: inline-block;
    min-width: 1.4em;
    font-weight: 700;
    color: var(--green-600);
}

.redirect-hint a {
    color: var(--blue-accent);
    text-decoration: none;
}

.redirect-hint a:hover {
    text-decoration: underline;
}

@keyframes successPop {
    from { opacity: 0; transform: scale(0.6); }
    to   { opacity: 1; transform: scale(1); }
}

/* ---- Ligne à 2 colonnes (desktop) qui passe à 1 colonne sur petit écran ---- */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

/* ---- Champ grisé (lecture seule) ---- */
.form-group input:disabled,
.form-group input[readonly] {
    background: var(--gray-100);
    color: var(--gray-400);
    border-color: var(--gray-200);
    cursor: not-allowed;
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* ---- Bouton secondaire ---- */
.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-600);
}

.btn-secondary:hover {
    background: var(--gray-200);
}

.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ---- Section contact rapide (appel + WhatsApp) ---- */
.contact-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 28px 0 18px;
    color: var(--gray-400);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.contact-actions {
    display: grid;
    grid-template-columns: 1fr; /* 1 seule colonne : bouton WhatsApp masqué. Repasser à « 1fr 1fr » pour le réactiver. */
    gap: 12px;
}

.contact-actions .btn {
    text-decoration: none;
}

.contact-actions .btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Bouton "Appeler" — style contour vert (outline) */
.btn-call {
    background: var(--white);
    color: var(--green-primary);
    border: 2px solid var(--gray-200);
}

.btn-call:hover {
    border-color: var(--green-primary);
    background: var(--green-50);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(58, 125, 52, 0.15);
}

.btn-call:active {
    transform: translateY(0);
}

/* Bouton "WhatsApp" — couleur officielle de la marque */
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .contact-actions {
        grid-template-columns: 1fr;
    }

    .contact-divider {
        margin: 20px 0 14px;
    }
}

/* ---- Modal de confirmation ---- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(31, 41, 55, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
    animation: overlayFade 0.2s ease;
}

.modal-overlay[hidden] {
    display: none;
}

.modal {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    width: 100%;
    padding: 32px 28px;
    text-align: center;
    animation: modalPop 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.modal-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.modal-actions {
    display: flex;
    gap: 12px;
}

.modal-actions .btn {
    flex: 1;
}

@keyframes overlayFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.94); }
    to   { opacity: 1; transform: scale(1); }
}

@media (max-width: 480px) {
    body {
        align-items: flex-start;
        padding: 16px 0;
    }

    .auth-container {
        padding: 12px 16px;
    }

    .auth-card {
        padding: 20px 18px;
    }

    .logo-wrapper {
        margin-bottom: 16px;
    }

    .logo-wrapper img {
        width: 80px;
    }

    h1 {
        font-size: 1.15rem;
        margin-bottom: 4px;
    }

    .subtitle {
        font-size: 0.82rem;
        margin-bottom: 16px;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-group input {
        padding: 10px 14px;
    }

    .btn {
        padding: 11px 20px;
        font-size: 0.95rem;
    }

    .forgot-link {
        margin-top: 14px;
    }

    .password-rules {
        padding: 10px 12px;
        margin-bottom: 14px;
    }

    .footer-text {
        margin-top: 16px;
    }

    .back-link {
        margin-bottom: 12px;
    }
}

/* ============================================================
   PAGE PARTENAIRE — landing 2 colonnes
   ------------------------------------------------------------
   Mobile  : une seule colonne. L'argumentaire (colonne gauche)
             vient en premier dans le document, le formulaire
             s'atteint en faisant défiler la page.
   Desktop : 2 colonnes côte à côte (argumentaire | formulaire).
   Tout est scopé sous « .partner-page » : les autres pages du
   site (connexion, mot de passe oublié…) ne sont pas affectées.
   ============================================================ */

body.partner-page {
    display: block;
    align-items: initial;
    justify-content: initial;
    padding: 0;
}

.partner-layout {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px 18px 36px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
}

/* ---- Colonne gauche : argumentaire ---- */
.partner-pitch {
    min-width: 0;
}

.pitch-logo {
    margin-bottom: 18px;
}

.pitch-logo img {
    width: 116px;
    height: auto;
}

.pitch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: var(--green-50);
    color: var(--green-600);
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.pitch-badge svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* Accroche : badge, titre et phrase d'intro centrés (jusqu'au titre
   « Comment ça fonctionne ? », qui est déjà centré lui aussi). */
.pitch-head {
    text-align: center;
}

.pitch-title {
    text-align: center;
    font-size: clamp(1.75rem, 6.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--gray-800);
    margin: 18px 0 0;
}

/* Le montant occupe sa propre ligne, comme sur la maquette. */
.pitch-amount {
    display: block;
    margin: 2px 0 4px;
}

.pitch-amount-value {
    position: relative;
    display: inline-block;
    font-size: clamp(3.2rem, 13vw, 4.75rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    color: var(--green-primary);
}

/* Petites « étincelles » décoratives à droite du montant. */
.pitch-spark {
    position: absolute;
    left: 100%;
    top: 8%;
    width: 0.34em;
    height: auto;
    margin-left: 0.06em;
    color: var(--green-light);
}

.pitch-title-tail {
    display: block;
    font-size: clamp(1rem, 3.4vw, 1.3rem);
    font-weight: 700;
    line-height: 1.3;
}

.pitch-lead {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-top: 14px;
}

.pitch-heading {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    color: var(--gray-800);
    margin: 30px 0 16px;
}

/* ---- Les 3 étapes ---- */
.steps {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.step {
    position: relative;
    min-width: 0;
    text-align: center;
}

.step-media {
    position: relative;
    aspect-ratio: 1 / 1;
}

.step-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}

/* Chevron de liaison : ancré sur « .step-media », donc « top: 50% » se
   calcule sur la hauteur de la vignette — il reste centré verticalement
   quelle que soit la longueur de la légende en dessous. */
.step:not(:last-child) .step-media::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 8px);
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--gray-400);
    border-right: 2px solid var(--gray-400);
    transform: translateY(-50%) rotate(45deg);
}

/* La pastille chevauche le coin de la vignette : elle est donc posée sur
   « .step » et non dans « .step-media », qui rogne son contenu. */
.step-num {
    position: absolute;
    top: -10px;
    left: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--green-primary);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    border: 2px solid var(--white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.step-label {
    margin-top: 8px;
    font-size: 0.74rem;
    line-height: 1.35;
    font-weight: 800;
    color: var(--gray-600);
}

/* ---- Bloc « avantages » : un seul conteneur, lignes séparées ---- */
.perks {
    list-style: none;
    margin: 0 0 16px;
    padding: 0 18px;
    background: #f3f7f3;
    border: 1px solid #e3ece3;
    border-radius: 16px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
}

.perk + .perk {
    border-top: 1px solid #e0e9e0;
}

/* Pastille pleine vert foncé à glyphe blanc, comme sur la maquette. */
.perk-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green-primary);
    color: var(--white);
}

.perk-icon svg {
    width: 22px;
    height: 22px;
}

.perk-body {
    flex: 1;
    min-width: 0;
}

.perk-title {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--gray-800);
}

.perk-text {
    font-size: 0.78rem;
    color: var(--gray-600);
    margin-top: 2px;
}

/* Visuels de droite : icônes nues, sans encadré, comme sur la maquette. */
.perk-visuals {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    color: var(--gray-600);
}

.perk-visual {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    color: var(--gray-400);
}

.perk-visual-doc {
    width: 30px;
    height: 35px;
}

/* Vignette « carte cadeau » */
.gift-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 8px;
    border-radius: 6px;
    background: var(--green-primary);
    color: var(--white);
}

.gift-badge svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.gift-badge-text {
    font-size: 0.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* ---- Preuve sociale ---- */
.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.avatars {
    display: flex;
    flex-shrink: 0;
}

.avatars img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
}

.avatars img + img {
    margin-left: -13px;
}

.social-proof-body {
    min-width: 0;
}

.social-proof-text {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--gray-800);
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.stars {
    display: inline-flex;
    gap: 1px;
}

.stars svg {
    width: 15px;
    height: 15px;
    fill: #f5b301;
}

.rating-value {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray-800);
}

/* ---- Bandeau de réassurance ---- */
.assurances {
    list-style: none;
    margin: 14px 0 0;
    padding: 16px 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background: #f3f7f3;
    border: 1px solid #e3ece3;
    border-radius: 16px;
}

.assurance {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-size: 0.76rem;
    line-height: 1.3;
    color: var(--gray-600);
}

.assurance svg {
    width: 25px;
    height: 25px;
    color: var(--green-primary);
}

/* ---- Colonne droite : carte formulaire ---- */
.partner-form-col {
    min-width: 0;
}

.partner-page .auth-card {
    padding: 30px 26px;
}

/* La maquette ne montre pas le liseré dégradé en haut de la carte. */
.partner-page .auth-card::before {
    display: none;
}

/* Champs empilés sur une seule colonne, comme sur la maquette. */
.partner-page .form-row {
    grid-template-columns: 1fr;
}

.card-emoji {
    font-size: 2.1rem;
    line-height: 1;
    text-align: center;
    margin-bottom: 12px;
}

/* Titre de carte : reprend l'apparence du h1 tout en laissant le
   h1 unique de la page au titre de l'argumentaire. */
.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--gray-800);
    margin-bottom: 8px;
}

/* ---- Mentions de réassurance sous le formulaire ---- */
.trust-list {
    list-style: none;
    margin: 12px 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--gray-600);
}

.trust-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gray-400);
}

/* ---- Mono-colonne (mobile / tablette) : on borne la largeur pour éviter
       des lignes de texte et des champs démesurés sur les tablettes. ---- */
@media (max-width: 959px) {
    .partner-layout {
        max-width: 560px;
    }
}

/* ---- Desktop : deux colonnes de largeur équivalente, comme la maquette ---- */
@media (min-width: 960px) {
    .partner-layout {
        max-width: 1040px;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 44px;
        padding: 44px 24px 52px;
    }

    /* La colonne gauche est la plus haute : on centre la carte formulaire
       sur sa hauteur pour équilibrer les deux colonnes. En mono-colonne
       (< 960px) la règle ne s'applique pas, l'ordre reste argumentaire
       puis formulaire. */
    .partner-form-col {
        align-self: center;
    }

    .pitch-lead {
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.8rem;
    }
}

/* ---- Ajustements petits écrans ---- */
@media (max-width: 480px) {
    .partner-layout {
        padding: 18px 14px 30px;
        gap: 22px;
    }

    .partner-page .auth-card {
        padding: 22px 18px;
    }

    .pitch-logo img {
        width: 92px;
    }

    .steps {
        gap: 18px;
    }

    .step:not(:last-child) .step-media::after {
        left: calc(100% + 5px);
    }

    .perks {
        padding: 0 13px;
    }

    .perk {
        padding: 13px 0;
        gap: 11px;
    }

    .perk-visual {
        width: 25px;
        height: 25px;
    }

    .perk-visual-doc {
        width: 25px;
        height: 29px;
    }

    .assurances {
        padding: 14px 6px;
        gap: 6px;
    }

    .assurance {
        font-size: 0.7rem;
    }

    .card-title {
        font-size: 1.25rem;
    }
}
