#ls-pricing-section {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 40px;
    color: var(--text);
}

#ls-pricing-section .zone-header { text-align: left; margin-bottom: 50px; }
#ls-pricing-section .zone-pre { display: block; font-size: .72rem; letter-spacing: .4em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
#ls-pricing-section .zone-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin: 0; }
#ls-pricing-section .zone-rule { width: 60px; height: 2px; background: var(--brand); margin: 20px 0; border: none; }

#ls-pricing-section .tarifs-grid {
    display: flex;
    gap: 30px;
    align-items: stretch;
    flex-wrap: wrap;
}

#ls-pricing-section .table-card {
    background: var(--surface-2);
    border-radius: var(--radius);
    border: 1px solid color-mix(in srgb, var(--muted) 15%, transparent);
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding-bottom: 0; /* CORRECTION : Supprimer le padding inférieur pour que le SVG touche le bas */
}

#ls-pricing-section .card-body { padding: 32px 32px 72px 32px; flex-grow: 1; text-align: left; } /* CORRECTION : Espacement ajusté en bas pour la vague */
#ls-pricing-section .card-title { font-size: 1.25rem; font-weight: 700; color: var(--brand); margin-bottom: 8px; text-transform: uppercase; text-align: left; }
#ls-pricing-section .card-subtitle { font-size: 0.85rem; color: var(--muted); margin-bottom: 30px; display: block; text-align: left; }

#ls-pricing-section table { width: 100%; border-collapse: collapse; }
#ls-pricing-section th { text-align: left; font-size: 0.7rem; text-transform: uppercase; color: var(--muted); letter-spacing: 0.15em; padding: 12px 0; border-bottom: 1px solid color-mix(in srgb, var(--muted) 20%, transparent); }
#ls-pricing-section td { padding: 16px 0; border-bottom: 1px solid color-mix(in srgb, var(--muted) 10%, transparent); font-size: 0.95rem; }
#ls-pricing-section .text-right { text-align: right; }

#ls-pricing-section .price { font-family: ui-monospace, monospace; font-weight: 700; white-space: nowrap; }
#ls-pricing-section .price-brand { color: var(--brand); }

#ls-pricing-section .wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
    z-index: 10; /* Optionnel : pour s'assurer qu'il est au-dessus */
}

#ls-pricing-section .wave-container svg {
    position: absolute;
    top: -1px; /* CORRECTION : Légère superposition pour éviter la bande de fond visible en bas */
    width: 200%; 
    height: 100%;
    fill: var(--main-blue);
    shape-rendering: geometricPrecision;
}

#ls-pricing-section .wave-anim {
    animation: ls-waveMove 8s linear infinite;
    will-change: transform;
}

@keyframes ls-waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

#ls-pricing-section .price-disclaimer {
    text-align: center;
    margin-top: 40px;
    color: var(--muted);
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    #ls-pricing-section .tarifs-grid { flex-direction: column; }
    #ls-pricing-section .table-card { min-width: 100%; }
}

#ls-impact-wrapper {
    width: 60vw !important;
    margin-left: 50% !important;
    transform: translateX(-50%) !important;
    display: block !important;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

#ls-impact-wrapper .impact-sub {
    width: 100% !important;
    max-width: none !important;
}