/* ========================================
   Landing Page — Ma Valeur Pro
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700;800&display=swap');

:root {
    --lp-accent: #ed1c24;
    --lp-accent-dark: #c41018;
    --lp-green: #27AE60;
    --lp-yellow: #F39C12;
    --lp-red: #E74C3C;
    --lp-dark: #1a1a2e;
    --lp-gray: #6c757d;
    --lp-light: #f8f9fa;
    --lp-white: #ffffff;
    --lp-radius: 12px;
    --lp-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --lp-transition: 0.3s ease;
}

/* Reset LP */
#lp-root {
    font-family: 'Rubik', sans-serif;
    color: #333;
}

#lp-root *,
#lp-root *::before,
#lp-root *::after {
    box-sizing: border-box;
}

/* ---- Header ---- */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 12px 0;
}

.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-logo img {
    height: 45px;
}

.lp-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ---- Buttons ---- */
.btn-lp-primary {
    background: var(--lp-accent);
    color: var(--lp-white);
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--lp-transition);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-lp-primary:hover {
    background: var(--lp-accent-dark);
    color: var(--lp-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(237, 28, 36, 0.3);
}

/* ---- Hero ---- */
.lp-hero {
    padding: 120px 0 80px;
    background: url('/images/hero-vae-dees.jpg') center center / cover no-repeat;
    position: relative;
}
.lp-hero.hero-me { background-image: url('/images/hero-vae-me.jpg'); }
.lp-hero.hero-caferuis { background-image: url('/images/hero-vae-caferuis.jpg'); }
.lp-hero.hero-banque { background-image: url('/images/hero-vae-banque.jpg'); }

.lp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.67);
    z-index: 0;
}

.lp-hero > .container {
    position: relative;
    z-index: 1;
}

.lp-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--lp-white);
    margin-bottom: 20px;
}

.text-accent {
    color: var(--lp-accent);
}

.lp-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
}

.lp-hero-cta {
    margin-bottom: 30px;
}

.lp-hero-cta-sub {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.lp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--lp-white);
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lp-badge img {
    height: 75px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .lp-badge img {
        height: 55px;
    }
}

.lp-qualiopi-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.lp-qualiopi-link {
    display: inline-block;
    background: var(--lp-white);
    border-radius: 10px;
    padding: 15px 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s;
}

.lp-qualiopi-link:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.lp-qualiopi-link img {
    height: 140px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .lp-qualiopi-section {
        padding: 30px 0;
    }

    .lp-qualiopi-link img {
        height: 100px;
    }
}

/* Hero Stats */
.lp-hero-visual {
    padding: 30px;
}

.lp-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--lp-radius);
    padding: 20px;
    text-align: center;
}

.lp-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--lp-accent);
}

.lp-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

/* ---- Diagnostic Form ---- */
.lp-diagnostic {
    padding: 80px 0;
    background: var(--lp-white);
}

.lp-section-header {
    margin-bottom: 40px;
}

.lp-section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lp-dark);
    margin-bottom: 10px;
}

.lp-section-header p {
    font-size: 1.1rem;
    color: var(--lp-gray);
}

.lp-form-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
    padding: 40px;
    border: 1px solid #e9ecef;
}

/* Progress Bar */
.lp-progress-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin-bottom: 8px;
    overflow: hidden;
}

.lp-progress-fill {
    height: 100%;
    background: var(--lp-accent);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.lp-progress-text {
    text-align: right;
    font-size: 13px;
    color: var(--lp-gray);
    margin-bottom: 30px;
}

/* Steps */
.lp-step {
    display: none;
    animation: fadeInStep 0.3s ease;
}

.lp-step.active {
    display: block;
}

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

.lp-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp-dark);
    margin-bottom: 8px;
}

.lp-step-hint {
    font-size: 14px;
    color: var(--lp-gray);
    margin-bottom: 20px;
}

.lp-step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 10px;
}

/* Checkbox/Radio Cards */
.lp-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.lp-checkbox-grid-2col {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lp-checkbox-card,
.lp-radio-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--lp-transition);
    background: var(--lp-white);
}

.lp-checkbox-card:hover,
.lp-radio-card:hover {
    border-color: var(--lp-accent);
    background: #fef2f2;
}

.lp-checkbox-card input:checked + .lp-checkbox-label,
.lp-radio-card input:checked + .lp-radio-label {
    color: var(--lp-accent);
    font-weight: 600;
}

.lp-checkbox-card:has(input:checked),
.lp-radio-card:has(input:checked) {
    border-color: var(--lp-accent);
    background: #fef2f2;
}

.lp-checkbox-label,
.lp-radio-label {
    font-size: 14px;
    color: #444;
    user-select: none;
}

.lp-checkbox-sm {
    padding: 8px 12px;
}

.lp-checkbox-sm .lp-checkbox-label {
    font-size: 13px;
}

.lp-radio-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Activites groups */
.lp-activites-group {
    margin-bottom: 10px;
}

.lp-group-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--lp-accent);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid rgba(237, 28, 36, 0.25);
}

/* Tooltip icon */
.lp-tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: var(--lp-gray);
    color: var(--lp-white);
    font-size: 11px;
    font-weight: 700;
    cursor: help;
    margin-left: auto;
    line-height: 1;
}

.lp-tooltip-icon:hover {
    background: var(--lp-accent);
}

/* Input */
.lp-input-wrapper {
    max-width: 500px;
}

.lp-input {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    transition: var(--lp-transition);
}

.lp-input:focus {
    border-color: var(--lp-accent);
    box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.1);
}

.lp-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #444;
}

.lp-conditional {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Checkbox inline */
.lp-checkbox-inline {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.lp-checkbox-inline input {
    margin-top: 3px;
}

/* Contact form */
.lp-contact-form {
    max-width: 400px;
    margin: 0 auto;
}

/* Submit button */
.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 17px;
}

/* Validation error */
.lp-step-error {
    color: var(--lp-red);
    font-size: 13px;
    margin-top: 5px;
}

/* ---- Result Section ---- */
.lp-result {
    padding: 80px 0;
    background: var(--lp-light);
}

.lp-result-standalone {
    min-height: 100vh;
}

.lp-result-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
    padding: 40px;
}

.lp-result-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--lp-dark);
}

/* Score Circle */
.lp-score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 20px 0;
    border: 6px solid #e9ecef;
    transition: border-color 0.5s ease;
}

.lp-score-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.lp-score-percent {
    font-size: 1.2rem;
    font-weight: 600;
}

.lp-score-circle.lp-score-elevee,
.lp-score-circle.score-green {
    border-color: var(--lp-green);
    color: var(--lp-green);
}

.lp-score-circle.lp-score-moderee,
.lp-score-circle.score-yellow {
    border-color: var(--lp-yellow);
    color: var(--lp-yellow);
}

.lp-score-circle.lp-score-faible,
.lp-score-circle.score-red {
    border-color: var(--lp-red);
    color: var(--lp-red);
}

/* Precalcul score preview (Q8) */
#precalcul-score-circle.score-green { background-color: var(--lp-green); }
#precalcul-score-circle.score-yellow { background-color: var(--lp-yellow); }
#precalcul-score-circle.score-red { background-color: var(--lp-red); }

.lp-score-label {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Recommendation */
.lp-result-recommendation {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid var(--lp-accent);
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* DC Bars */
.lp-result-details {
    margin: 30px 0;
}

.lp-result-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.lp-dc-bars {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lp-dc-bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 14px;
}

.lp-dc-bar-value {
    font-weight: 700;
}

.lp-dc-bar-bg {
    height: 12px;
    background: #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.lp-dc-bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1s ease;
    background: var(--lp-accent);
}

.lp-bar-color-green { background: var(--lp-green); }
.lp-bar-color-yellow { background: var(--lp-yellow); }
.lp-bar-color-red { background: var(--lp-red); }

.lp-dc-recommandation {
    font-size: 13px;
    color: #666;
    margin-top: 6px;
    padding-left: 4px;
}

/* Result recommandations */
.lp-result-recommandations {
    margin: 20px 0;
}

.lp-result-recommandations h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.lp-recommandation-item {
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

/* Callback card */
.lp-result-callback {
    margin: 30px 0;
}

.lp-callback-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--lp-radius);
    padding: 30px;
    text-align: center;
    border: 2px solid var(--lp-accent);
}

.lp-callback-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lp-dark);
    margin-bottom: 8px;
}

.lp-callback-card p {
    font-size: 14px;
    color: var(--lp-gray);
    margin-bottom: 20px;
}

.lp-callback-form {
    max-width: 400px;
    margin: 0 auto;
}

.lp-callback-form .input-group {
    border-radius: 8px;
    overflow: hidden;
}

.lp-callback-form .input-group .lp-input {
    border-radius: 8px 0 0 8px;
}

.lp-callback-form .input-group .btn {
    border-radius: 0 8px 8px 0;
    white-space: nowrap;
}

.lp-callback-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 8px;
    color: var(--lp-green);
    font-weight: 600;
    font-size: 14px;
}

.lp-callback-error {
    margin-top: 10px;
    color: var(--lp-red);
    font-size: 13px;
}

.lp-result-cta {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

/* ---- Timeline ---- */
.lp-timeline-section {
    padding: 80px 0;
    background: var(--lp-light);
}

.lp-timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.lp-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #dee2e6;
}

.lp-timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.lp-timeline-marker {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: var(--lp-accent);
    color: var(--lp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    z-index: 1;
}

.lp-timeline-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-dark);
    margin-bottom: 4px;
}

.lp-timeline-content p {
    font-size: 14px;
    color: var(--lp-gray);
    margin: 0;
}

/* ---- Offres ---- */
.lp-offres {
    padding: 80px 0;
    background: var(--lp-white);
}

.lp-pricing-card {
    background: var(--lp-white);
    border: 2px solid #e9ecef;
    border-radius: var(--lp-radius);
    border-bottom: 9px solid var(--lp-accent);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--lp-transition);
    position: relative;
}

.lp-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow);
}

.lp-pricing-featured {
    border-color: var(--lp-accent);
    box-shadow: 0 8px 32px rgba(237, 28, 36, 0.15);
}

.lp-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-accent);
    color: var(--lp-white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.lp-pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.lp-pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--lp-dark);
    margin-bottom: 10px;
}

.lp-pricing-price {
    margin-bottom: 10px;
}

.lp-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lp-accent);
}

.lp-price-currency {
    font-size: 1.2rem;
    color: var(--lp-gray);
}

.lp-pricing-desc {
    font-size: 13px;
    color: var(--lp-gray);
}

.lp-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex-grow: 1;
}

.lp-pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    padding-left: 20px;
    position: relative;
}

.lp-pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-green);
}

/* ---- Temoignages ---- */
.lp-temoignages {
    padding: 80px 0;
    background: var(--lp-light);
}

.lp-testimonial-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 25px;
    box-shadow: var(--lp-shadow);
    height: 100%;
}

.lp-testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.lp-testimonial-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.lp-testimonial-author strong {
    display: block;
    color: var(--lp-dark);
    font-size: 14px;
}

.lp-testimonial-author span {
    font-size: 12px;
    color: var(--lp-gray);
}

/* ---- FAQ ---- */
.lp-faq {
    padding: 80px 0;
    background: var(--lp-white);
}

.lp-accordion {
    max-width: 720px;
    margin: 0 auto;
}

.lp-accordion .accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 8px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.lp-accordion .accordion-button {
    font-weight: 600;
    font-size: 15px;
    color: var(--lp-dark);
    padding: 16px 20px;
}

.lp-accordion .accordion-button:not(.collapsed) {
    background: #fef2f2;
    color: var(--lp-accent);
}

.lp-accordion .accordion-button:focus {
    box-shadow: none;
}

.lp-accordion .accordion-body {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* ---- CTA Final ---- */
.lp-cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--lp-dark) 0%, #16213e 100%);
    color: var(--lp-white);
}

.lp-cta-final h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.lp-cta-text {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
}

.lp-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.lp-cta-sub {
    font-size: 13px;
    color: #999;
}

/* ---- Footer ---- */
.lp-footer {
    padding: 60px 0 30px;
    background: #111;
    color: #ccc;
}

.lp-footer h4 {
    color: var(--lp-white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.lp-footer p {
    font-size: 14px;
    line-height: 1.7;
}

.lp-footer a {
    color: #ccc;
    text-decoration: none;
    transition: color var(--lp-transition);
}

.lp-footer a:hover {
    color: var(--lp-accent);
}

.lp-footer-links {
    list-style: none;
    padding: 0;
}

.lp-footer-links li {
    margin-bottom: 8px;
}

.lp-footer-links a {
    font-size: 14px;
}

.lp-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin: 12px 0;
}

.lp-footer-badges img {
    height: 60px;
    width: auto;
    background: #fff;
    border-radius: 6px;
    padding: 5px;
    display: block;
}

.lp-footer-qualiopi {
    margin-top: 12px;
    background: #fff;
    border-radius: 6px;
    padding: 8px 12px;
    display: inline-block;
}

.lp-footer-qualiopi img {
    height: 100px;
    width: auto;
    display: block;
}

.lp-footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
}

.lp-footer-bottom p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .lp-hero-title {
        font-size: 2rem;
    }

    .lp-hero {
        padding: 100px 0 60px;
    }

    .lp-checkbox-grid-2col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .lp-hero-title {
        font-size: 1.6rem;
    }

    .lp-hero-subtitle {
        font-size: 1rem;
    }

    .lp-section-header h2 {
        font-size: 1.5rem;
    }

    .lp-form-wrapper {
        padding: 25px 20px;
    }

    .lp-checkbox-grid {
        grid-template-columns: 1fr;
    }

    .lp-step-actions {
        flex-direction: column;
    }

    .lp-step-actions .btn {
        width: 100%;
    }

    .lp-result-wrapper {
        padding: 25px 20px;
    }

    .lp-cta-final h2 {
        font-size: 1.5rem;
    }

    .lp-pricing-card {
        padding: 20px;
    }
}

/* ---- Gratuit Banner ---- */
.lp-gratuit-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    position: relative;
    overflow: hidden;
}

.lp-gratuit-inner {
    position: relative;
    z-index: 1;
}

.lp-gratuit-badge {
    display: inline-block;
    background: var(--lp-green);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.lp-gratuit-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--lp-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.lp-gratuit-title span {
    color: var(--lp-green);
}

.lp-gratuit-text {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.6;
}

.lp-gratuit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.lp-gratuit-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.lp-gratuit-visual {
    text-align: center;
}

.lp-gratuit-icon {
    margin-bottom: 16px;
}

.lp-gratuit-visual-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lp-green);
    line-height: 1.4;
}

@media (max-width: 767.98px) {
    .lp-gratuit-banner {
        padding: 50px 0;
    }

    .lp-gratuit-title {
        font-size: 1.6rem;
    }

    .lp-gratuit-list {
        flex-direction: column;
        gap: 12px;
    }
}

/* ---- Utility ---- */
.text-success { color: var(--lp-green) !important; }
.text-warning { color: var(--lp-yellow) !important; }
.text-danger { color: var(--lp-red) !important; }
