/**
 * MINFIN_MK1 - Styles CSS
 */

/* ============================================
   RESET & BASE
   ============================================ */

   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: static;
    top: 0;
    z-index: 100;
}

/* Top Bar */
.top-bar {
    background: #fff;
    border-bottom: 1px solid #bebebe;
    padding: 0;
    position: relative;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.6em 1em;
    gap: 15px;
}

.lang-selector {
    display: inline-block;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.lang-btn {
    display: inline-block;
    padding: 0.1em 0.6em;
    color: #707070;
    text-decoration: none;
    border-radius: 0.3em;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    margin: 0;
    background-color: transparent;
    border: 1px solid transparent;
}

.lang-btn:hover {
    background-color: #666;
    color: #fff;
}

.lang-btn.active {
    background-color: #707070;
    color: #fff;
    border-radius: 0.3em;
}

.info-text {
    font-size: 13px;
    color: #666;
    text-align: right;
    max-width: 40%;
    flex-shrink: 1;
}

.info-text span {
    margin-right: 5px;
}

.info-text a {
    color: #666;
    text-decoration: none;
    font-weight: 600;
}

.info-text a:hover {
    text-decoration: none;
    color: #444;
}

.be-icon {
    height: 16px;
    width: auto;
    vertical-align: middle;
    margin-left: 5px;
}

/* Logo Section avec points plus visibles */
.logo-section {
    padding: 5px 0 15px 0;
    text-align: left;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.logo-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 15px;
    width: 55%;
    background-image: 
        radial-gradient(circle, #a8a8a8 0.42px, transparent 0.42px);
    background-size: 
        6px 6px;
    background-position: 0 0;
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    pointer-events: none;
}

.logo-img {
    height: 60px;
    width: auto;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
    flex: 1;
    padding: 20px 0 40px;
    display: flex;
    flex-direction: column;
}

/* Content Box Principale */
.content-box {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    padding: 35px 45px;
    max-width: 700px;
    margin: 0 auto 30px;
    width: 100%;
}

/* ============================================
   ICON
   ============================================ */

.icon-wrapper {
    text-align: center;
    margin-bottom: 15px;
}

.icon-info {
    width: 50px;
    height: 50px;
    color: #29b6f6;
    stroke-width: 1.8;
}

/* ============================================
   TITLE
   ============================================ */

.title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

/* ============================================
   ALERT BOX
   ============================================ */

.alert-box {
    background: #e3f2fd;
    border-left: 4px solid #29b6f6;
    padding: 15px 18px;
    margin-bottom: 25px;
    border-radius: 3px;
}

.alert-text {
    font-size: 14px;
    line-height: 1.6;
    color: #1e3a5f;
    margin: 0;
}

.alert-text strong {
    font-weight: 700;
    color: #0d47a1;
}

/* ============================================
   CTA BUTTON
   ============================================ */

.cta-wrapper {
    text-align: center;
    margin: 25px 0 20px;
}

.btn-primary {
    display: inline-block;
    background: #00acc1;
    color: #fff;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 172, 193, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 280px;
}

.btn-primary:hover {
    background: #0097a7;
    box-shadow: 0 5px 18px rgba(0, 172, 193, 0.45);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 172, 193, 0.3);
}

/* ============================================
   INSTRUCTIONS COMPACTES
   ============================================ */

.instructions-compact {
    text-align: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 3px;
    margin-top: 5px;
}

.compact-text {
    font-size: 13px;
    color: #0d47a1;
    font-weight: 600;
    margin: 0;
}

/* ============================================
   INFO SECTIONS (Nouvelles sections)
   ============================================ */

.info-section {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    padding: 30px 35px;
    max-width: 700px;
    margin: 0 auto 25px;
    width: 100%;
}

.info-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e3f2fd;
}

.section-icon {
    width: 28px;
    height: 28px;
    color: #29b6f6;
    flex-shrink: 0;
}

.section-title {
    font-size: 19px;
    font-weight: 700;
    color: #0d47a1;
    margin: 0;
}

.info-content {
    color: #444;
    font-size: 14px;
    line-height: 1.7;
}

.info-content p {
    margin-bottom: 12px;
}

.info-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   MODES DE PAIEMENT
   ============================================ */

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e3e3e3;
}

.payment-icon {
    width: 24px;
    height: 24px;
    color: #29b6f6;
    flex-shrink: 0;
}

.payment-method span {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.payment-note {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-top: 15px;
    padding: 12px;
    background: #f0f7fb;
    border-radius: 3px;
}

/* ============================================
   ÉTAPES DÉTAILLÉES
   ============================================ */

.steps-detailed {
    margin-top: 20px;
}

.step-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e8e8e8;
}

.step-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #29b6f6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 15px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   FAQ
   ============================================ */

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-question {
    font-size: 15px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* ============================================
   AIDE
   ============================================ */

.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.help-option {
    background: #f8f9fa;
    padding: 18px;
    border-radius: 4px;
    border: 1px solid #e3e3e3;
}

.help-option strong {
    display: block;
    font-size: 14px;
    color: #0d47a1;
    margin-bottom: 8px;
}

.help-option p {
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   SÉCURITÉ
   ============================================ */

.security-section {
    border-top: 3px solid #29b6f6;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #fff;
    padding: 30px 0 25px;
    border-top: 1px solid #e8e8e8;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-content p {
    margin: 0;
    font-size: 13px;
    color: #555;
    order: 2;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    order: 1;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.footer-links a:hover {
    color: #0d47a1;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 600px) {
    /* Container - Espacement égal des deux côtés */
    .container {
        padding: 0 18px;
    }
    
    /* Top Bar */
    .info-text {
        font-size: 12px;
        max-width: 50%;
        line-height: 1.4;
    }
    
    /* Logo */
    .logo-img {
        height: 50px;
    }
    
    .logo-section {
        padding: 0px 0 5px 0;
        text-align: left;
    }
    
    /* Main Content */
    .main-content {
        padding: 15px 0 30px;
    }
    
    /* Content Box */
    .content-box {
        padding: 25px 20px;
        margin: 0 0 20px 0;
    }
    
    /* Icon */
    .icon-wrapper {
        margin-bottom: 12px;
    }
    
    .icon-info {
        width: 42px;
        height: 42px;
    }
    
    /* Title */
    .title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    /* Alert Box */
    .alert-box {
        padding: 12px 15px;
        margin-bottom: 20px;
    }
    
    .alert-text {
        font-size: 13px;
    }
    
    /* Button */
    .cta-wrapper {
        margin: 20px 0 15px;
    }
    
    .btn-primary {
        padding: 13px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Instructions Compact */
    .instructions-compact {
        padding: 12px 15px;
    }
    
    .compact-text {
        font-size: 12px;
    }
    
    /* Info Sections */
    .info-section {
        padding: 25px 20px;
        margin: 0 0 20px 0;
    }
    
    .info-section-header {
        gap: 10px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .section-icon {
        width: 24px;
        height: 24px;
    }
    
    .section-title {
        font-size: 17px;
    }
    
    .info-content {
        font-size: 13px;
    }
    
    /* Payment Methods */
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .payment-method {
        padding: 10px 12px;
    }
    
    .payment-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Steps */
    .step-item {
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .step-title {
        font-size: 14px;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    /* FAQ */
    .faq-item {
        margin-bottom: 18px;
        padding-bottom: 18px;
    }
    
    .faq-question {
        font-size: 14px;
    }
    
    .faq-answer {
        font-size: 13px;
    }
    
    /* Help Options */
    .help-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .help-option {
        padding: 15px;
    }
    
    /* Footer */
    .footer {
        padding: 25px 0 20px;
        margin-top: 30px;
    }
    
    .footer-content {
        gap: 18px;
    }
    
    .footer-links {
        gap: 15px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .footer-content p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    /* Container - Espacement égal réduit */
    .container {
        padding: 0 12px;
    }
    
    .content-box {
        padding: 20px 18px;
        margin: 0 0 15px 0;
    }
    
    .info-section {
        padding: 20px 18px;
        margin: 0 0 15px 0;
    }
    
    .title {
        font-size: 17px;
    }
    
    .section-title {
        font-size: 16px;
    }
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */

@media (min-width: 768px) {
    .logo-section::after {
        width: 250px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-box,
.info-section {
    animation: fadeIn 0.5s ease;
}

.info-section:nth-child(2) {
    animation-delay: 0.1s;
}

.info-section:nth-child(3) {
    animation-delay: 0.2s;
}

.info-section:nth-child(4) {
    animation-delay: 0.3s;
}

.info-section:nth-child(5) {
    animation-delay: 0.4s;
}

.info-section:nth-child(6) {
    animation-delay: 0.5s;
}

/* ============================================
   BARRE DE PROGRESSION
   ============================================ */

.progress-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 700px;
    margin: 0 auto 25px;
    padding: 0 20px;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.progress-step:not(:last-child) .step-line {
    position: absolute;
    top: 22px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #d0d0d0;
    z-index: 0;
}

.progress-step.completed:not(:last-child) .step-line {
    background: #00acc1;
}

.progress-step.active:not(:last-child) .step-line {
    background: linear-gradient(to right, #00acc1 50%, #d0d0d0 50%);
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f0f0f0;
    border: 2px solid #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.progress-step.completed .step-circle {
    background: #00acc1;
    border-color: #00acc1;
}

.progress-step.active .step-circle {
    background: #ffffff;
    border-color: #00acc1;
    border-width: 3px;
}

.step-circle svg {
    width: 20px;
    height: 20px;
    color: #999;
}

.progress-step.completed .step-circle svg {
    color: #ffffff;
}

.progress-step.active .step-circle svg {
    color: #00acc1;
}

.step-label {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
    font-weight: 500;
    text-align: center;
}

.progress-step.completed .step-label {
    color: #00acc1;
    font-weight: 600;
}

.progress-step.active .step-label {
    color: #00acc1;
    font-weight: 700;
}

/* ============================================
   INFORMATIONS DOSSIER
   ============================================ */

.dossier-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: #f5f9fc;
    border-radius: 6px;
    padding: 18px 22px;
    margin-bottom: 30px;
    border: 1px solid #e3f2fd;
}

.dossier-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dossier-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.dossier-value {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.dossier-value.highlight {
    color: #00acc1;
    font-size: 18px;
}

/* ============================================
   FORMULAIRE - STYLES
   ============================================ */

   .form-box {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 50px 60px;
    max-width: 800px;
    margin: 40px auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 35px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Titre formulaire aligné à gauche */
.form-title {
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.form-intro-left {
    text-align: left;
    margin-bottom: 30px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Form Structure */
.main-form {
    margin-top: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex: 1 1 100%;
}

.form-group.form-group-small {
    flex: 0 0 150px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.required-mark {
    color: #999;
    font-weight: normal;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1.5px solid #d0d0d0;
    border-radius: 5px;
    background: #ffffff;
    color: #333;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #003d7a;
    box-shadow: 0 0 0 3px rgba(0, 61, 122, 0.1);
}

.form-input::placeholder {
    color: #999;
    font-size: 14px;
}

/* Validation visuelle - Bordure épaisse sur erreur */
.form-input.input-error,
.phone-input-container.input-error .phone-number-input {
    border-color: #00acc1;
    border-width: 2.5px;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Input Téléphone avec dropdown DANS l'input */
.phone-input-container {
    position: relative;
    display: flex;
    align-items: stretch;
}

.phone-prefix-select {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: auto;
    min-width: 95px;
    padding: 0 8px 0 12px;
    font-size: 14px;
    border: none;
    background: transparent;
    color: #333;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    z-index: 2;
    outline: none;
}

.phone-prefix-select::-ms-expand {
    display: none;
}

/* Petite flèche dropdown */
.phone-prefix-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 10px;
    padding-right: 20px;
}

.phone-number-input {
    width: 100%;
    padding-left: 105px !important;
    border: 1.5px solid #d0d0d0 !important;
}

.phone-number-input:focus {
    border-color: #003d7a !important;
    box-shadow: 0 0 0 3px rgba(0, 61, 122, 0.1) !important;
}

/* Validation erreur sur le container */
.phone-input-container.input-error .phone-number-input {
    border-color: #00acc1 !important;
    border-width: 2.5px !important;
}

/* Disclaimer */
.form-disclaimer {
    background: transparent;
    border-left: none;
    padding: 0;
    margin: 20px 0 0 0;
    border-radius: 0;
    text-align: center;
}

.form-disclaimer p {
    margin: 0;
    color: #999;
    line-height: 1.5;
    font-size: 12px;
}

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 0;
}

.btn-submit {
    min-width: 320px;
    padding: 16px 40px;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    /* Barre de progression */
    .progress-bar-wrapper {
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    .step-circle {
        width: 38px;
        height: 38px;
    }
    
    .step-circle svg {
        width: 18px;
        height: 18px;
    }
    
    .step-label {
        font-size: 11px;
        margin-top: 8px;
    }
    
    .progress-step:not(:last-child) .step-line {
        top: 19px;
    }
    
    /* Infos dossier */
    .dossier-info {
        flex-direction: column;
        gap: 15px;
        padding: 15px 18px;
    }
    
    .dossier-value.highlight {
        font-size: 16px;
    }
    
    /* Form */
    .form-box {
        padding: 35px 25px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 25px;
    }
    
    .form-group.form-group-small {
        flex: 1;
    }
    
    /* Téléphone */
    .phone-prefix-select {
        min-width: 90px;
        font-size: 13px;
    }
    
    .phone-number-input {
        padding-left: 100px !important;
    }
    
    .btn-submit {
        width: 100%;
        min-width: auto;
    }
}

/* ============================================
   PAYMENT - PAGE PAIEMENT CB
   ============================================ */

/* Logos cartes acceptées */
.cards-logo-wrapper {
    text-align: center;
    margin: 25px 0 35px;
}

.cards-logo {
    max-width: 220px;
    height: auto;
}

/* Numéro de carte avec icône type */
.card-number-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.card-type-icon {
    position: absolute;
    right: 15px;
    display: none;
    font-size: 11px;
    font-weight: 700;
    color: #666;
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 3px;
    text-transform: uppercase;
}

.card-type-icon.card-type-visa {
    display: block;
    color: #1434CB;
    background: #e8eeff;
}

.card-type-icon.card-type-visa::after {
    content: "VISA";
}

.card-type-icon.card-type-mastercard {
    display: block;
    color: #EB001B;
    background: #ffe8ec;
}

.card-type-icon.card-type-mastercard::after {
    content: "MC";
}

.card-type-icon.card-type-amex {
    display: block;
    color: #006FCF;
    background: #e6f2ff;
}

.card-type-icon.card-type-amex::after {
    content: "AMEX";
}

/* Security notice */
.payment-accepted {
    margin-top: 15px;
    font-size: 12px;
    color: #999;
    text-align: center;
    font-weight: 500;
}

/* Responsive payment */
@media (max-width: 768px) {
    .card-type-icon {
        font-size: 10px;
        padding: 3px 6px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    /* Barre de progression */
    .progress-bar-wrapper {
        padding: 0 5px;
    }
    
    .step-circle {
        width: 34px;
        height: 34px;
    }
    
    .step-circle svg {
        width: 16px;
        height: 16px;
    }
    
    .step-label {
        font-size: 10px;
    }
    
    .progress-step:not(:last-child) .step-line {
        top: 17px;
    }
    
    /* Infos dossier */
    .dossier-info {
        padding: 12px 15px;
    }
    
    .dossier-label {
        font-size: 11px;
    }
    
    .dossier-value {
        font-size: 13px;
    }
    
    .dossier-value.highlight {
        font-size: 15px;
    }
    
    .form-box {
        padding: 30px 20px;
    }
    
    .title {
        font-size: 19px;
    }
}