/* Landing Pages Styles */

.landing-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #00BFA6 0%, #0F3D2E 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.landing-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.landing-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.landing-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.landing-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.landing-form {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(59, 130, 246, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.15);
}

.landing-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #60A5FA, #3B82F6, #3B82F6);
    background-size: 300% 100%;
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.landing-form::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Compteur de progression */
.form-completion-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #3B82F6;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Messages d'encouragement */
.encouragement-message {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border-radius: 12px;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.encouragement-message.show {
    opacity: 1;
    transform: translateY(0);
}

.encouragement-message p {
    margin: 0;
    font-size: 0.9rem;
    color: #059669;
    font-weight: 600;
}

/* Blocs de formulaire */
.form-block {
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.03);
    border-radius: var(--border-radius);
    border-left: 3px solid #3B82F6;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-block-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Radio buttons */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.radio-label span {
    color: #1e293b;
}

.radio-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3B82F6, #60A5FA);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.radio-label::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(96, 165, 250, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.radio-label:hover {
    border-color: #3B82F6;
    background: #f1f5f9;
    transform: translateX(6px) translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.1);
}

.radio-label:hover::after {
    opacity: 1;
}

.radio-label:has(input[type="radio"]:checked)::before {
    transform: scaleY(1);
}

.radio-label:has(input[type="radio"]:checked)::after {
    opacity: 1;
}

.radio-label input[type="radio"] {
    width: 22px;
    height: 22px;
    margin: 0;
    cursor: pointer;
    accent-color: #3B82F6;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked {
    transform: scale(1.1);
}

.radio-label input[type="radio"]:checked + span {
    font-weight: 700;
    color: #60A5FA;
    transform: translateX(4px);
    transition: all 0.3s ease;
}

.radio-label:has(input[type="radio"]:checked) {
    border-color: #3B82F6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
    transform: translateX(4px);
}

.radio-label span {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-primary);
}

/* Champs conditionnels */
.conditional-field {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.conditional-field:focus {
    outline: none;
    border-color: #3B82F6;
}

.form-disclaimer {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: var(--border-radius);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.landing-form input,
.landing-form select,
.landing-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    color: #1e293b;
    position: relative;
    font-family: inherit;
    /* Amélioration tactile */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
}

/* Empêcher le zoom automatique sur iOS pour les champs de formulaire */
@supports (-webkit-touch-callout: none) {
    .landing-form input[type="text"],
    .landing-form input[type="email"],
    .landing-form input[type="tel"],
    .landing-form input[type="url"],
    .landing-form select,
    .landing-form textarea {
        font-size: 16px;
    }
}

.landing-form input::placeholder,
.landing-form textarea::placeholder {
    color: #94a3b8;
}

.landing-form select {
    color: #1e293b;
    background: #ffffff;
    border: 2px solid #e2e8f0;
}

.landing-form select option {
    background: #ffffff;
    color: #1e293b;
    padding: 0.5rem;
}

.landing-form .field-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.landing-form .field-wrapper input,
.landing-form .field-wrapper select {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 1.125rem;
    padding-bottom: 1.125rem;
}

.landing-form .field-wrapper input:focus,
.landing-form .field-wrapper select:focus {
    padding-left: 3.25rem;
}

.landing-form input:focus,
.landing-form select:focus,
.landing-form textarea:focus {
    outline: none;
    border-color: #3B82F6;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 4px 12px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.landing-form input:valid:not(:placeholder-shown),
.landing-form select:valid:not([value=""]),
.landing-form textarea:valid:not(:placeholder-shown) {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.15);
}

.landing-form input:invalid:not(:placeholder-shown):not(:focus) {
    border-color: #ef4444;
    animation: shake 0.3s ease-in-out;
}

/* Icônes de validation */
.field-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.field-icon {
    position: absolute;
    left: 1.125rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.field-icon svg {
    width: 100%;
    height: 100%;
    stroke: #64748b;
    transition: all 0.3s ease;
}

.landing-form input:focus ~ .field-icon,
.landing-form select:focus ~ .field-icon {
    transform: translateY(-50%) scale(1.1);
}

.landing-form input:focus ~ .field-icon svg,
.landing-form select:focus ~ .field-icon svg {
    stroke: #60A5FA;
    filter: drop-shadow(0 2px 4px rgba(96, 165, 250, 0.5));
}

.landing-form input:valid:not(:placeholder-shown) ~ .field-icon svg,
.landing-form select:valid:not([value=""]) ~ .field-icon svg {
    stroke: #34d399;
    animation: iconSuccess 0.4s ease;
}

.field-check {
    position: absolute;
    right: 1.125rem;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 24px;
    height: 24px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.landing-form input:valid:not(:placeholder-shown) ~ .field-check,
.landing-form select:valid:not([value=""]) ~ .field-check {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    background: #10b981;
}

.field-check svg {
    width: 14px;
    height: 14px;
    stroke: white;
    stroke-width: 3;
}

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

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

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes progressShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Amélioration des champs avec icônes */
.field-wrapper {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.field-wrapper.field-focused {
    transform: translateY(-2px);
}

.field-wrapper input:focus,
.field-wrapper select:focus {
    padding-left: 3.5rem;
}

.field-wrapper input:valid:not(:placeholder-shown) ~ .field-icon svg,
.field-wrapper select:valid:not([value=""]) ~ .field-icon svg {
    stroke: #10b981;
    animation: iconSuccess 0.4s ease;
}

@keyframes iconSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.2) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* Animation du bouton premium */
.premium-button {
    position: relative;
    overflow: hidden;
}

.premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5) !important;
}

.premium-button:active {
    transform: translateY(0);
}

/* Animation de la barre de progression */
.progress-bar-enhanced {
    position: relative;
    overflow: hidden;
}

.progress-bar-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.field-wrapper {
    animation: slideIn 0.4s ease-out;
    animation-fill-mode: both;
}

.landing-form .field-wrapper:nth-of-type(1) { animation-delay: 0.1s; }
.landing-form .field-wrapper:nth-of-type(2) { animation-delay: 0.15s; }
.landing-form .field-wrapper:nth-of-type(3) { animation-delay: 0.2s; }
.landing-form .field-wrapper:nth-of-type(4) { animation-delay: 0.25s; }
.landing-form .field-wrapper:nth-of-type(5) { animation-delay: 0.3s; }
.landing-form .field-wrapper:nth-of-type(6) { animation-delay: 0.35s; }

.landing-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-privacy {
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Message d'explication du formulaire */
.form-explanation {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 16px;
    border-left: 4px solid #3B82F6;
}

.form-explanation p {
    font-size: 0.95rem;
    color: #1e293b;
    margin: 0;
    line-height: 1.7;
    font-weight: 500;
}

/* Amélioration de l'accessibilité tactile */
.landing-form input[type="radio"],
.landing-form input[type="checkbox"] {
    min-width: 22px;
    min-height: 22px;
    cursor: pointer;
}

/* Amélioration des selects pour mobile */
.landing-form select {
    cursor: pointer;
    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='%231e293b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 3rem;
}

/* Amélioration de l'apparence des inputs number/tel pour mobile */
.landing-form input[type="tel"],
.landing-form input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
}

.landing-form input[type="tel"]::-webkit-inner-spin-button,
.landing-form input[type="tel"]::-webkit-outer-spin-button,
.landing-form input[type="number"]::-webkit-inner-spin-button,
.landing-form input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Labels pour accessibilité */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
}

/* Amélioration du focus visible pour accessibilité */
.landing-form input:focus-visible,
.landing-form select:focus-visible,
.landing-form textarea:focus-visible {
    outline: 2px solid #3B82F6;
    outline-offset: 2px;
}

/* Tablettes */
@media (max-width: 1024px) and (min-width: 769px) {
    .landing-content {
        max-width: 650px;
    }
    
    .landing-form {
        padding: 2.25rem 2rem;
    }
    
    .form-row {
        gap: 1.25rem;
    }
}

/* Mobile - Tablettes */
@media (max-width: 768px) {
    .landing-hero {
        padding-top: 8.5rem !important; /* Padding-top très généreux pour compenser navbar, status bar et safe-area - 136px */
        padding-bottom: 40px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        min-height: auto;
    }

    .landing-content {
        padding: 0 1rem;
    }

    .landing-content h1 {
        font-size: clamp(2rem, 5.5vw, 3rem) !important; /* Taille augmentée pour mieux voir */
        margin-bottom: 1.25rem !important; /* Réduit pour mobile */
        margin-top: 0 !important; /* Pas de margin-top pour éviter l'espace inutile */
        line-height: 1.3 !important;
        font-weight: 800 !important;
    }
    
    .landing-subtitle {
        margin-top: 0.5rem !important; /* Espace réduit après le titre */
        margin-bottom: 1.5rem !important; /* Réduit pour mobile */
    }

    .landing-subtitle {
        font-size: clamp(1rem, 3vw, 1.125rem);
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .landing-benefits {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .benefit-item {
        justify-content: center;
        font-size: clamp(0.95rem, 2.5vw, 1rem);
    }

    /* Messages d'explication responsive */
    .form-explanation,
    .landing-content > div[style*="background: rgba"] {
        margin: 1.5rem 1rem !important;
        padding: 1.25rem !important;
        font-size: clamp(0.9rem, 2.5vw, 0.95rem) !important;
    }

    .form-explanation p,
    .landing-content > div[style*="background: rgba"] p {
        line-height: 1.6 !important;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .landing-form {
        padding: 1.5rem 1.25rem !important; /* Réduction : 2rem → 1.5rem */
        gap: 1.25rem !important; /* Réduction : 1.5rem → 1.25rem */
        margin: 0 1rem;
        border-radius: 20px;
    }
    
    /* Champs de formulaire plus grands sur mobile pour faciliter la saisie tactile */
    .landing-form input,
    .landing-form select,
    .landing-form textarea {
        padding: 1.125rem 1rem;
        font-size: 16px; /* Empêche le zoom automatique sur iOS */
        min-height: 52px; /* Zone tactile minimale recommandée */
        border-radius: 14px;
    }

    .landing-form .field-wrapper input,
    .landing-form .field-wrapper select {
        padding-left: 3.5rem;
        padding-right: 1rem;
        padding-top: 1.125rem;
        padding-bottom: 1.125rem;
    }

    /* Textarea plus grande sur mobile */
    .landing-form textarea {
        min-height: 120px;
        padding: 1.125rem 1rem;
        font-size: 16px;
        line-height: 1.6;
    }
    
    .form-block {
        padding: 1.5rem 1.25rem;
        gap: 1rem;
        border-radius: 16px;
    }
    
    .form-block-title {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }
    
    /* Radio buttons plus grands et plus espacés sur mobile */
    .radio-group {
        gap: 1rem;
    }
    
    .radio-label {
        padding: 1.125rem 1rem;
        font-size: 1rem;
        min-height: 56px;
        border-radius: 14px;
        align-items: center;
    }
    
    .radio-label input[type="radio"] {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    
    .radio-label span {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Champs conditionnels */
    .conditional-field {
        padding: 1rem;
        font-size: 16px;
        min-height: 52px;
        margin-top: 0.75rem;
    }

    /* Boutons plus grands sur mobile */
    .cta-button {
        width: 100%;
        padding: 1.125rem 2rem;
        font-size: 1.05rem;
        min-height: 56px;
        font-weight: 700;
        border-radius: 14px;
        margin-top: 1rem;
    }
    
    .cta-button.large {
        padding: 1.25rem 2.25rem;
        font-size: 1.125rem;
        min-height: 60px;
    }

    /* Form header premium responsive */
    .form-header-enhanced {
        padding: 1.75rem 1.25rem !important;
        margin-bottom: 1.75rem !important;
    }

    .form-header-enhanced p {
        font-size: clamp(1.125rem, 4vw, 1.5rem) !important;
    }

    /* Progress counter responsive */
    .form-completion-counter-enhanced {
        padding: 1rem 1.25rem !important;
        margin-bottom: 1.5rem !important;
    }

    .form-progress-enhanced {
        margin-bottom: 1.75rem !important;
    }

    /* Messages d'aide et tips */
    p[style*="font-size: 0.8rem"][style*="color: #64748b"] {
        font-size: 0.85rem !important;
        margin-top: 0.5rem !important;
        margin-bottom: 1rem !important;
        padding: 0 0.5rem !important;
        line-height: 1.5 !important;
    }

    /* Trust badges responsive */
    div[style*="display: flex"][style*="align-items: center"][style*="justify-content: center"] {
        flex-direction: column !important;
        gap: 1rem !important;
        padding: 1.25rem 1rem !important;
    }

    .benefits-detail-section {
        padding: 60px 0 !important;
    }

    .benefits-detail-section .section-header {
        margin-bottom: 2.5rem !important;
        padding: 0 1rem;
    }

    .benefits-detail-section .section-header h2 {
        font-size: clamp(1.5rem, 4vw, 2rem) !important;
        padding: 0 0.5rem;
    }

    .benefits-detail-section .section-header p {
        font-size: clamp(1rem, 3vw, 1.125rem) !important;
        padding: 0 0.5rem;
    }

    .benefits-detail-section [style*="grid-template-columns: 80px 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 1.75rem 1.5rem !important;
        text-align: center;
    }

    .benefits-detail-section [style*="font-size: 3rem"] {
        font-size: clamp(2rem, 5vw, 2.5rem) !important;
        margin-bottom: 1rem !important;
    }

    .benefits-detail-section h3 {
        font-size: clamp(1.125rem, 3vw, 1.5rem) !important;
    }

    .benefits-detail-section p {
        font-size: clamp(0.95rem, 2.5vw, 1.125rem) !important;
    }

    /* Sections de compétences responsive */
    .prestataires-competences-section,
    .accompagnement-valeur-section {
        padding: 3rem 0 !important;
    }

    .prestataires-competences-section .container,
    .accompagnement-valeur-section .container {
        padding: 0 1rem;
    }

    /* Grid responsive pour les cards d'information */
    div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
}

/* Petits mobiles */
@media (max-width: 480px) {
    .landing-hero {
        padding-top: 8rem !important; /* Padding-top très généreux pour compenser navbar, status bar et safe-area - 128px */
        padding-bottom: 30px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .landing-content {
        padding: 0 0.75rem;
    }

    .landing-content h1 {
        font-size: clamp(1.875rem, 6vw, 2.5rem) !important; /* Taille augmentée pour mieux voir */
        margin-bottom: 1rem !important; /* Encore plus réduit sur petits mobiles */
        margin-top: 0 !important;
        line-height: 1.3 !important;
        font-weight: 800 !important;
    }
    
    .landing-subtitle {
        margin-top: 0.375rem !important; /* Espace minimal */
        margin-bottom: 1.25rem !important; /* Réduit pour petits mobiles */
    }

    .landing-subtitle {
        font-size: clamp(0.95rem, 3.5vw, 1.05rem);
        margin-bottom: 1.5rem;
    }

    .landing-benefits {
        margin-bottom: 1.5rem;
        gap: 0.875rem;
    }

    .benefit-item {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    /* Messages d'explication plus compacts */
    .form-explanation,
    .landing-content > div[style*="background: rgba"] {
        margin: 1.25rem 0.5rem !important;
        padding: 1rem !important;
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
    }

    .form-explanation p,
    .landing-content > div[style*="background: rgba"] p {
        line-height: 1.5 !important;
    }

    .landing-form {
        padding: 1.25rem 1rem !important; /* Réduction : 1.5rem → 1.25rem */
        gap: 1rem !important; /* Réduction : 1.25rem → 1rem */
        margin: 0 0.5rem;
        border-radius: 18px;
    }
    
    /* Champs toujours assez grands pour la saisie tactile */
    .landing-form input,
    .landing-form select,
    .landing-form textarea {
        padding: 1rem 0.875rem;
        font-size: 16px;
        min-height: 50px;
        border-radius: 12px;
    }

    .landing-form .field-wrapper input,
    .landing-form .field-wrapper select {
        padding-left: 3.25rem;
        padding-right: 0.875rem;
    }
    
    .landing-form textarea {
        min-height: 110px;
        padding: 1rem 0.875rem;
    }
    
    .form-block {
        padding: 1.25rem 1rem;
        gap: 0.875rem;
        border-radius: 14px;
    }
    
    .form-block-title {
        font-size: 0.98rem;
        margin-bottom: 0.875rem;
    }
    
    /* Radio buttons toujours confortables */
    .radio-group {
        gap: 0.875rem;
    }
    
    .radio-label {
        padding: 1rem 0.875rem;
        font-size: 0.95rem;
        min-height: 52px;
        border-radius: 12px;
    }
    
    .radio-label input[type="radio"] {
        width: 22px;
        height: 22px;
    }
    
    .radio-label span {
        font-size: 0.9rem;
    }

    .conditional-field {
        padding: 0.875rem;
        font-size: 16px;
        min-height: 50px;
        margin-top: 0.625rem;
    }

    /* Boutons toujours confortables */
    .cta-button {
        padding: 1rem 1.75rem;
        font-size: 1rem;
        min-height: 52px;
        border-radius: 12px;
    }
    
    .cta-button.large {
        padding: 1.125rem 2rem;
        font-size: 1.05rem;
        min-height: 56px;
    }

    /* Form header plus compact */
    .form-header-enhanced {
        padding: 1.5rem 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .form-header-enhanced > div[style*="font-size: 2.5rem"] {
        font-size: 2rem !important;
        margin-bottom: 0.875rem !important;
    }

    .form-header-enhanced p {
        font-size: clamp(1rem, 4.5vw, 1.25rem) !important;
    }

    .form-completion-counter-enhanced {
        padding: 0.875rem 1rem !important;
        margin-bottom: 1.25rem !important;
    }

    .form-progress-enhanced {
        margin-bottom: 1.5rem !important;
    }

    /* Messages d'aide compacts */
    p[style*="font-size: 0.8rem"][style*="color: #64748b"] {
        font-size: 0.8rem !important;
        margin-top: 0.375rem !important;
        margin-bottom: 0.875rem !important;
        padding: 0 !important;
    }

    /* Trust badges empilés */
    div[style*="display: flex"][style*="align-items: center"][style*="justify-content: center"] {
        padding: 1rem 0.75rem !important;
        gap: 0.875rem !important;
    }

    div[style*="display: flex"][style*="align-items: center"][style*="justify-content: center"] span {
        font-size: 0.8rem !important;
    }

    .benefits-detail-section {
        padding: 40px 0 !important;
    }

    .benefits-detail-section .section-header {
        padding: 0 0.75rem;
        margin-bottom: 2rem !important;
    }

    .benefits-detail-section .section-header h2 {
        padding: 0;
    }

    .benefits-detail-section .section-header p {
        padding: 0;
    }

    .benefits-detail-section [style*="grid-template-columns: 80px 1fr"] {
        padding: 1.5rem 1.25rem !important;
        gap: 1.25rem !important;
    }

    .benefits-detail-section [style*="grid-template-columns: 80px 1fr"] > div[style*="font-size: clamp(2rem"] {
        font-size: 1.75rem !important;
    }

    /* Certification et avertissements compacts */
    label[style*="display: flex"][style*="align-items: start"] {
        padding: 0.875rem !important;
        margin-top: 0.875rem !important;
    }

    label[style*="display: flex"][style*="align-items: start"] input[type="checkbox"] {
        width: 20px !important;
        height: 20px !important;
        margin-top: 0.125rem !important;
    }

    label[style*="display: flex"][style*="align-items: start"] span {
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
    }

    div[style*="margin-top: 1rem"][style*="padding: 1rem"][style*="background: rgba"] {
        padding: 0.875rem !important;
        margin-top: 0.875rem !important;
    }

    div[style*="margin-top: 1rem"][style*="padding: 1rem"][style*="background: rgba"] p {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }
}

