/* ==========================================================
   LANDING PAGES - SOS Dératiseur Paris
   CSS ultra-léger optimisé conversion Google Ads
   ========================================================== */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --cta-green: #2e7d32;
    --cta-green-hover: #1b5e20;
    --urgency-orange: #e65100;
    --urgency-orange-light: #fff3e0;
    --star-gold: #f9a825;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --text-dark: #1a1a1a;
    --text-muted: #5f6368;
    --text-white: #ffffff;
    --border-light: #e0e0e0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 50px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- STICKY HEADER --- */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    padding: 0 16px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.lp-header__logo {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.lp-header__logo svg { flex-shrink: 0; }

.lp-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cta-green);
    color: var(--text-white);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.2s;
    white-space: nowrap;
}

.lp-header__cta:hover { background: var(--cta-green-hover); }

.lp-header__cta--wa {
    background: #25D366;
}
.lp-header__cta--wa:hover { background: #1da851; }

.lp-header__cta svg { flex-shrink: 0; }

.lp-header__ctas {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-header__phone-label { display: none; }
.lp-header__phone-short { display: inline; }

/* --- HERO --- */
.lp-hero {
    padding: 100px 20px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--text-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46,125,50,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.lp-hero__image {
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.lp-hero__image img {
    width: 280px;
    height: auto;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffd54f;
}

.lp-hero h1 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.lp-hero h1 span {
    color: #81c784;
}

.lp-hero__subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.lp-hero__stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 28px;
    font-size: 1.1rem;
}

.lp-hero__stars svg { color: var(--star-gold); }

.lp-hero__stars span {
    margin-left: 8px;
    opacity: 0.85;
    font-size: 1.05rem;
    font-weight: 700;
}

.lp-hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 36px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--cta-green);
    color: var(--text-white);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-size: 1.15rem;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(46,125,50,0.4);
    transition: all 0.2s;
    width: 100%;
    max-width: 380px;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-cta-primary:hover {
    background: var(--cta-green-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(46,125,50,0.5);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--text-white);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.2s;
    width: 100%;
    max-width: 380px;
    cursor: pointer;
    text-align: center;
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

/* --- WhatsApp CTA --- */
.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: var(--text-white);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: all 0.2s;
    width: 100%;
    max-width: 380px;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-cta-whatsapp:hover {
    background: #1da851;
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(37,211,102,0.45);
}

.btn-cta-whatsapp svg { flex-shrink: 0; }

.btn-cta-whatsapp--sm {
    padding: 14px 28px;
    font-size: 1rem;
    width: auto;
    max-width: none;
}

/* --- Tertiary CTA (rappel link) --- */
.btn-cta-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    padding: 8px 0;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn-cta-tertiary:hover { color: var(--text-white); }
.btn-cta-tertiary svg { opacity: 0.7; flex-shrink: 0; }

/* Trust badges row */
.lp-hero__trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
}

.trust-badge svg { color: #81c784; flex-shrink: 0; }

/* --- URGENCY BANNER --- */
.lp-urgency {
    background: linear-gradient(90deg, var(--urgency-orange), #ff6d00);
    color: var(--text-white);
    text-align: center;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lp-urgency svg { animation: shake 3s infinite; }

/* --- SECTION COMMON --- */
.lp-section {
    padding: 56px 20px;
}

.lp-section--alt { background: var(--bg-light); }
.lp-section--dark {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: var(--text-white);
}

.lp-container {
    max-width: 800px;
    margin: 0 auto;
}

.lp-section__title {
    font-size: 1.65rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.lp-section__subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lp-section--dark .lp-section__subtitle { color: rgba(255,255,255,0.7); }

/* --- PROBLEM CARDS --- */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.problem-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: center;
    transition: box-shadow 0.2s;
}

.problem-card:hover { box-shadow: var(--shadow-md); }

.problem-card__img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.problem-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.problem-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    padding: 12px 12px 0;
}

.problem-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
    padding: 0 12px 14px;
}

/* --- TRUST / WHY US --- */
.trust-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.trust-item__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item__icon svg { color: var(--cta-green); }

.trust-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- PROCESS / STEPS --- */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    margin-bottom: 32px;
}

.step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 32px;
}

.step:last-child { padding-bottom: 0; }

.step__number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--cta-green);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.step::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    bottom: 0;
    width: 2px;
    background: #c8e6c9;
}

.step:last-child::after { display: none; }

.step__content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    padding-top: 2px;
}

.step__content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- TESTIMONIALS --- */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.testimonial {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    position: relative;
}

.testimonial__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.testimonial__stars svg { color: var(--star-gold); width: 18px; height: 18px; }

.testimonial__text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial__name {
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial__source {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.testimonial__source svg { width: 16px; height: 16px; }

/* --- PRICING --- */
.pricing-box {
    background: var(--bg-white);
    border: 2px solid var(--cta-green);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    margin-bottom: 32px;
}

.pricing-box__label {
    display: inline-block;
    background: #e8f5e9;
    color: var(--cta-green);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.pricing-box__price {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-box__price span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-box__detail {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.pricing-box__includes {
    text-align: left;
    margin-bottom: 24px;
}

.pricing-box__includes li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.95rem;
}

.pricing-box__includes li svg { color: var(--cta-green); flex-shrink: 0; width: 18px; height: 18px; }

.pricing-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* --- ZONE GRID --- */
.zone-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.zone-tag {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.zone-note {
    text-align: center;
    font-weight: 700;
    color: var(--cta-green);
    font-size: 1rem;
}

/* --- FAQ --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-white);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    user-select: none;
    gap: 12px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    color: var(--text-dark);
}

.faq-question:hover { background: var(--bg-light); }

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--text-muted);
}

.faq-item.active .faq-question svg { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer__inner {
    padding: 0 18px 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- FINAL CTA --- */
.lp-final-cta {
    background: linear-gradient(135deg, #b71c1c, #c62828, #e53935);
    color: var(--text-white);
    text-align: center;
    padding: 48px 20px;
}

.lp-final-cta h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.lp-final-cta p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-final {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    color: #b71c1c;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-size: 1.15rem;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.2s;
}

.btn-cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.btn-cta-final--wa {
    background: #25D366;
    color: var(--text-white);
}

.btn-cta-final--wa:hover {
    background: #1da851;
}

.lp-final-cta__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- FOOTER --- */
.lp-footer {
    background: #111;
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
}

.lp-footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: underline;
}

/* --- FORM DEVIS --- */
.lp-hero__form-wrap {
    flex-shrink: 0;
    width: 100%;
    max-width: 400px;
    margin: 32px auto 0;
    padding-bottom: 40px;
}

.lp-form {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}

.lp-form--light {
    border: 2px solid var(--cta-green);
    margin-top: 40px;
}

.lp-form__photo {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    margin: -28px -24px 0;
}

.lp-form__photo img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.lp-form__photo + .lp-form__header {
    margin-top: 20px;
}

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

.lp-form__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.lp-form__subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.lp-form__field {
    margin-bottom: 14px;
}

.lp-form__field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.lp-form__field input,
.lp-form__field select,
.lp-form__field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: border-color 0.2s;
}

.lp-form__field input:focus,
.lp-form__field select:focus,
.lp-form__field textarea:focus {
    outline: none;
    border-color: var(--cta-green);
    box-shadow: 0 0 0 3px rgba(46,125,50,0.12);
}

.lp-form__field input.invalid,
.lp-form__field select.invalid {
    border-color: #e53935;
    box-shadow: 0 0 0 3px rgba(229,57,53,0.1);
}

.lp-form__field textarea { resize: vertical; min-height: 50px; }

.lp-form__row {
    display: flex;
    gap: 12px;
}

.lp-form__row .lp-form__field { flex: 1; }

.lp-form__submit {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: var(--cta-green);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 4px 15px rgba(46,125,50,0.3);
}

.lp-form__submit:hover {
    background: var(--cta-green-hover);
    transform: translateY(-1px);
}

.lp-form__submit:active { transform: translateY(0); }

.lp-form__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.lp-form__success {
    text-align: center;
    padding: 20px 16px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    display: none;
}

.lp-form__success.visible {
    display: flex;
}

.lp-form__success p {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cta-green);
}

.lp-form__note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.lp-form__note a {
    color: var(--cta-green);
    font-weight: 700;
    text-decoration: underline;
}

.lp-form-section {
    max-width: 600px;
    margin: 0 auto;
}

/* --- FLOATING MOBILE CTA --- */
.lp-float-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.lp-float-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--cta-green);
    color: var(--text-white);
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(46,125,50,0.3);
}

.lp-float-cta__split {
    display: flex;
    gap: 8px;
}

.lp-float-cta__phone {
    flex: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--cta-green);
    color: var(--text-white);
    padding: 14px 12px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(46,125,50,0.3);
}

.lp-float-cta__wa {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: var(--text-white);
    padding: 14px 12px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

/* --- CTA INLINE DIVIDERS --- */
.cta-divider {
    text-align: center;
    padding: 32px 20px;
    background: #e8f5e9;
}

.cta-divider p {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.cta-divider .btn-cta-primary {
    display: inline-flex;
    width: auto;
    max-width: none;
    padding: 14px 32px;
    font-size: 1rem;
}

.cta-divider__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* --- BADGES CONFIANCE (images) --- */
.badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.badges-row img {
    height: 150px;
    width: auto;
    object-fit: contain;
}

/* --- TRUST SECTION PHOTO --- */
.trust-photo {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
}

.trust-photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* --- STEP IMAGES --- */
.step__image {
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-top: 10px;
}

.step__image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* --- TESTIMONIAL AVATARS --- */
.testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-light);
    flex-shrink: 0;
}

.testimonial__author-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* --- ZONE SECTION PHOTO --- */
.zone-photo {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 24px;
}

.zone-photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* --- FINAL CTA WITH BACKGROUND --- */
.lp-final-cta--img {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lp-final-cta--img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(183,28,28,0.88), rgba(198,40,40,0.85));
}

.lp-final-cta--img .lp-container {
    position: relative;
    z-index: 1;
}

/* --- SOCIAL PROOF : LIVE STATS BAR --- */
.sp-bar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.sp-bar__item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.sp-bar__item svg { flex-shrink: 0; }

.sp-bar__number {
    font-weight: 800;
    color: var(--cta-green);
    font-variant-numeric: tabular-nums;
}

.sp-bar__item--available .sp-bar__number { color: var(--cta-green); }
.sp-bar__item--interventions .sp-bar__number { color: var(--urgency-orange); }

.sp-bar__live {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.sp-bar__live-dot {
    width: 6px;
    height: 6px;
    background: #e53935;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

/* --- SOCIAL PROOF : TOAST NOTIFICATIONS --- */
.sp-toast-container {
    position: fixed;
    bottom: 100px;
    left: 16px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
    max-width: 340px;
}

.sp-toast {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
}

.sp-toast.visible {
    transform: translateX(0);
    opacity: 1;
}

.sp-toast.hiding {
    transform: translateX(-120%);
    opacity: 0;
}

.sp-toast__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-toast__icon--devis {
    background: #e3f2fd;
}
.sp-toast__icon--devis svg { color: #1976d2; }

.sp-toast__icon--intervention {
    background: #e8f5e9;
}
.sp-toast__icon--intervention svg { color: var(--cta-green); }

.sp-toast__icon--technicien {
    background: #fff3e0;
}
.sp-toast__icon--technicien svg { color: var(--urgency-orange); }

.sp-toast__body {
    flex: 1;
    min-width: 0;
}

.sp-toast__text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.35;
}

.sp-toast__time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.sp-toast__close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 2px;
    font-size: 0;
    line-height: 0;
    flex-shrink: 0;
}

/* --- ANIMATIONS --- */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes shake {
    0%, 90%, 100% { transform: rotate(0); }
    92% { transform: rotate(-8deg); }
    94% { transform: rotate(8deg); }
    96% { transform: rotate(-5deg); }
    98% { transform: rotate(5deg); }
}

/* --- TABLET & DESKTOP (min 768px) --- */
@media (min-width: 768px) {
    .lp-container { max-width: 960px; }

    .lp-header { padding: 0 32px; height: 64px; }
    .lp-header__cta { padding: 10px 22px; font-size: 0.95rem; }

    .lp-hero {
        padding: 100px 32px 0;
        text-align: left;
    }

    .lp-hero .lp-container {
        display: flex;
        align-items: center;
        gap: 40px;
        max-width: 1100px;
    }

    .lp-hero__content { flex: 1; padding-bottom: 60px; }

    .lp-hero__form-wrap { margin-top: 0; flex-shrink: 0; width: 400px; }

    .lp-hero__stars { justify-content: flex-start; }
    .lp-hero__trust { justify-content: flex-start; }

    .lp-hero__ctas {
        flex-direction: row;
        align-items: flex-start;
    }

    .lp-hero h1 { font-size: 2.4rem; }
    .lp-hero__subtitle { font-size: 1.15rem; margin-left: 0; margin-right: 0; }

    .btn-cta-primary,
    .btn-cta-secondary,
    .btn-cta-whatsapp {
        width: auto;
        max-width: none;
    }

    .lp-section { padding: 72px 32px; }
    .lp-section__title { font-size: 2rem; }

    .problem-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }

    .trust-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .trust-photo img { height: 260px; }

    .steps {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px;
    }
    .step__image img { height: 280px; }

    .testimonials {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }

    .lp-final-cta { padding: 64px 32px; }
    .lp-final-cta h2 { font-size: 2rem; }

    .lp-float-cta { display: none !important; }

    .sp-toast-container { bottom: 24px; left: 24px; }

    .badges-row { gap: 24px; padding: 20px 32px; }
    .badges-row img { height: 150px; }

    .zone-photo img { height: 260px; }
}

/* --- LARGE DESKTOP (min 1100px) --- */
@media (min-width: 1100px) {
    .lp-container { max-width: 1060px; }

    .lp-header { padding: 0 48px; }
    .lp-header__cta { padding: 10px 28px; }
    .lp-header__phone-label { display: inline; }
    .lp-header__phone-short { display: none; }

    .lp-hero { padding: 110px 48px 0; }
    .lp-hero .lp-container { max-width: 1100px; gap: 56px; }
    .lp-hero__form-wrap { width: 420px; }
    .lp-hero h1 { font-size: 2.8rem; }
    .lp-hero__subtitle { font-size: 1.25rem; }

    .lp-section { padding: 80px 48px; }
    .lp-section__title { font-size: 2.2rem; }
    .lp-section__subtitle { font-size: 1.1rem; }

    .trust-photo img { height: 320px; }

    .trust-list { gap: 20px; }

    .steps { max-width: 750px; }
    .step__image img { height: 320px; }

    .testimonials { gap: 24px; }
    .testimonial { padding: 24px; }

    .pricing-box { padding: 40px 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

    .zone-photo img { height: 320px; }

    .badges-row img { height: 150px; }
    .badges-row { gap: 32px; padding: 24px 48px; }

    .lp-final-cta { padding: 80px 48px; }
    .lp-final-cta h2 { font-size: 2.4rem; }
    .lp-final-cta p { font-size: 1.1rem; }

    .cta-divider { padding: 40px 48px; }
    .cta-divider p { font-size: 1.1rem; }
}

/* --- MOBILE SPECIFIC --- */
@media (max-width: 767px) {
    .lp-float-cta { display: block; }

    body { padding-bottom: 80px; }

    .lp-header__phone-label { display: none; }

    .lp-hero__form-wrap { max-width: 100%; margin-top: 24px; }
    .lp-form__row { flex-direction: column; gap: 0; }

    .sp-bar { gap: 14px; font-size: 0.8rem; padding: 8px 14px; }
    .sp-bar__item:nth-child(3) { display: none; }

    .sp-toast-container { left: 10px; right: 10px; bottom: 90px; max-width: none; }

    .problem-grid { grid-template-columns: 1fr 1fr; }

    .testimonials { gap: 12px; }

    .lp-hero h1 { font-size: 1.85rem; }

    /* Hide all in-content CTAs on mobile — sticky footer handles it */
    .lp-hero__ctas { display: none; }
    .cta-divider { display: none; }
    .cta-divider__buttons { display: none; }
    .lp-final-cta { display: none; }
}

/* Small phones */
@media (max-width: 374px) {
    .lp-hero h1 { font-size: 1.55rem; }
    .btn-cta-primary { font-size: 1rem; padding: 14px 24px; }
    .problem-grid { grid-template-columns: 1fr; }
}
