/* =====================================================
   LP Motion Design · biux.fr
   Standalone landing page stylesheet
   Depends on: main.css (design system tokens)
   ===================================================== */

/* ===== Hide site chrome on LP ===== */
.lp-page { min-height: 100vh }
.lp-page .navigation-wrap,
.lp-page .footer-section,
.lp-page .cta-float-wrapper { display: none !important }

/* ===== Fallback tokens (if main.css fails to load) ===== */
.lp-page {
    --bg: #00030f;
    --bg-light: #0a0d18;
    --bg-card: #0f1220;
    --blue: #206dff;
    --blue-hover: #1a5ad4;
    --white: #ffffff;
    --text: rgba(255,255,255,0.8);
    --border: rgba(255,255,255,0.1);
    --radius: 0.25rem;
    --radius-lg: 0.375rem;
    --max-w: 1280px;
    --pad: 2rem;
    --ease: 0.3s cubic-bezier(0.33,1,0.68,1);
    background: var(--bg);
    color: var(--white);
}

/* ===== TOPBAR ===== */
.lp-topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0.85rem 0;
    background: rgba(0,3,15,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-topbar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 var(--pad);
}
.lp-topbar-logo { height: 2.25rem; width: auto }
.lp-topbar-cta {
    display: inline-flex; align-items: center;
    padding: 0.4rem 1.25rem;
    background: var(--blue); color: #fff;
    font-family: var(--font); font-size: 0.9375rem; font-weight: 500;
    border-radius: var(--radius);
    transition: background var(--ease);
    text-decoration: none;
}
.lp-topbar-cta:hover { background: var(--blue-hover) }

/* ===== HERO ===== */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    padding: 8rem 0 5rem;
    background: var(--bg);
}
.lp-hero-bg { position: absolute; inset: 0; z-index: 0 }
.lp-hero-bg iframe {
    position: absolute;
    width: max(100vw, 177.78vh);
    height: max(100vh, 56.25vw);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: 0;
}
.lp-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,3,15,0.92) 0%, rgba(0,3,15,0.7) 50%, rgba(0,3,15,0.5) 100%);
    z-index: 1;
}
.lp-hero-content {
    position: relative; z-index: 2;
    max-width: 720px; text-align: center;
    display: flex; flex-direction: column; align-items: center;
}
.lp-hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: rgba(32,109,255,0.12);
    border: 1px solid rgba(32,109,255,0.3);
    border-radius: 2rem;
    font-size: 0.8125rem; color: var(--blue);
    margin-bottom: 1.5rem; font-weight: 400;
}
.lp-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 400; line-height: 1.15; letter-spacing: -0.01em;
    margin-bottom: 1.25rem; color: #fff;
}
.lp-hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 580px;
}
.lp-hero-cta-wrap {
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}
.lp-hero-cta-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.55rem 1.5rem;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius);
    font-family: var(--font); font-size: 1rem; font-weight: 400;
    text-decoration: none;
    transition: border-color var(--ease), background var(--ease);
    cursor: pointer;
}
.lp-hero-cta-ghost:hover {
    border-color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.04);
}
.lp-hero-cta-ghost svg { width: 1rem; height: 1rem; stroke: currentColor }
.lp-hero-proof {
    display: flex; align-items: center; justify-content: center;
    gap: 1.25rem; flex-wrap: wrap;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
}
.lp-hero-proof-item { display: inline-flex; align-items: center; gap: 0.5rem }
.lp-hero-proof img { height: 1.1rem; width: auto }
.lp-hero-proof-divider {
    width: 1px; height: 1rem;
    background: rgba(255,255,255,0.25);
    display: inline-block;
}

/* ===== SHARED · section titles ===== */
.lp-label {
    font-family: var(--font);
    font-size: 0.8125rem;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--blue); font-weight: 500;
    margin-bottom: 0.75rem;
}
.lp-section-title { text-align: center; margin-bottom: 3rem }
.lp-section-title h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 400; line-height: 1.2;
    letter-spacing: -0.01em;
    color: #fff;
}
.lp-section-title-sub { color: rgba(255,255,255,0.75); margin-top: 0.75rem }
.lp-light-section .lp-section-title-sub { color: #555 }

/* ===== DARK sections ===== */
.lp-dark-section { background: var(--bg-light) }
.lp-dark-section .lp-section-title h2 { color: #fff }
.lp-dark-section .lp-section-title p { color: rgba(255,255,255,0.75) }

/* Default bg on sections that were bare */
.lp-solution-section,
.lp-final-cta { background: var(--bg) }

/* ===== LIGHT sections ===== */
.lp-light-section { background: #eef2ff }
.lp-light-section .lp-section-title h2 { color: #111 }
.lp-light-section .lp-section-title p { color: #555 }

/* ===== 2. SOCIAL PROOF ===== */
.lp-socialproof { padding: 2rem 0 3rem; background: var(--bg) }
.lp-trustpilot-wrap { margin-top: 1.25rem }

/* ===== 2b. PROJECTS SECTION ===== */
.lp-projets-section { background: #eef2ff }
.lp-projets-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.lp-projets-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem; font-weight: 400;
    color: #111; margin-bottom: 0.5rem;
}
.lp-projets-header p { color: #555; font-size: 1rem }
.lp-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.lp-project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #111;
    cursor: pointer;
}
.lp-project-video,
.lp-project-poster {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 0;
}
.lp-project-video {
    width: 177.78%; height: 177.78%;
    pointer-events: none;
}
.lp-project-poster {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.lp-project-card:hover .lp-project-poster { transform: translate(-50%, -50%) scale(1.04) }
.lp-project-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    pointer-events: none;
}
.lp-project-label {
    position: absolute; bottom: 0.75rem; left: 0.75rem;
    z-index: 2;
    display: inline-flex; align-items: center;
    padding: 0.35rem 0.65rem;
    background: rgba(40,40,50,0.3);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 0.35rem;
    font-family: var(--font); font-size: 1rem; font-weight: 300;
    color: #fff;
}

/* ===== 3. PROBLEM ===== */
.lp-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.lp-problem-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    display: flex; flex-direction: column; gap: 0.75rem;
}
.lp-problem-icon {
    width: 44px; height: 44px;
    background: rgba(32,109,255,0.1);
    border-radius: 0.5rem;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.25rem;
}
.lp-problem-icon svg { width: 26px; height: 26px; stroke: var(--blue); stroke-width: 1.5; fill: none }
.lp-problem-card h3 {
    font-family: var(--font);
    font-size: 1.125rem; font-weight: 500; color: #fff;
}
.lp-problem-card p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* ===== 4. SOLUTION ===== */
.lp-solution-block {
    background: var(--bg-card);
    border: 1px solid rgba(32,109,255,0.2);
    border-radius: 0.75rem;
    padding: 3rem;
    text-align: center;
}
.lp-solution-block h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400; line-height: 1.3;
    margin-bottom: 1.5rem; color: #fff;
}
.lp-solution-block > p {
    color: rgba(255,255,255,0.8);
}
.lp-solution-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 2rem;
    text-align: left;
}
.lp-pillar h3 {
    font-size: 1.0625rem; font-weight: 500; color: #fff;
    margin-bottom: 0.5rem;
}
.lp-pillar p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* ===== 5. BENEFITS ===== */
.lp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.lp-benefit-card {
    padding: 2rem;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex; flex-direction: column; gap: 0.75rem;
}
.lp-benefit-icon {
    width: 48px; height: 48px;
    background: rgba(32,109,255,0.08);
    border-radius: 0.5rem;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.25rem;
}
.lp-benefit-icon svg { width: 28px; height: 28px; stroke: var(--blue); stroke-width: 1.5; fill: none }
.lp-benefit-card h3 {
    font-family: var(--font);
    font-size: 1.0625rem; font-weight: 600; color: #111;
}
.lp-benefit-card p {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.6;
}

/* ===== 6. PROCESS ===== */
.lp-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}
.lp-step {
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex; flex-direction: column; gap: 0.75rem;
    position: relative;
}
.lp-step h3 { min-height: 2.5em }
.lp-step-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem; font-weight: 300;
    color: var(--blue); line-height: 1;
    margin-bottom: 0.25rem;
}
.lp-step h3 {
    font-family: var(--font);
    font-size: 1.0625rem; font-weight: 600; color: #111;
}
.lp-step p {
    font-size: 0.9375rem; color: #555; line-height: 1.6;
}

/* ===== 7. TESTIMONIALS ===== */
.lp-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.lp-testi-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    display: flex; flex-direction: column; gap: 1rem;
}
.lp-testi-result {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem; font-weight: 500;
    line-height: 1.3; color: #fff;
    letter-spacing: -0.01em;
}
.lp-testi-result .text-span { font-weight: 500 }
.lp-testi-stars { color: #f5b731; font-size: 1rem; letter-spacing: 2px }
.lp-testi-quote {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    font-style: italic;
}
.lp-testi-author {
    display: flex; align-items: center; gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: auto;
}
.lp-testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.lp-testi-name {
    font-weight: 500; font-size: 0.9375rem; color: #fff;
}
.lp-testi-role {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.65);
}

/* ===== 8. FAQ ===== */
.lp-faq-list { max-width: 720px; margin: 0 auto }
.lp-faq-item { border-bottom: 1px solid rgba(255,255,255,0.08) }
.lp-faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08) }
.lp-faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 0;
    padding-inline: 0;
    cursor: pointer;
    font-family: var(--font);
    font-weight: 500; font-size: 1rem;
    color: #fff;
    width: 100%; text-align: left;
    gap: 1rem;
    background: none;
    border: 0;
}
.lp-faq-q:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 4px;
}
.lp-faq-chevron {
    flex-shrink: 0;
    width: 1.1rem; height: 1.1rem;
    color: rgba(255,255,255,0.55);
    transition: transform var(--ease);
    stroke: currentColor; stroke-width: 2;
    fill: none;
}
.lp-faq-q[aria-expanded="true"] .lp-faq-chevron {
    transform: rotate(180deg);
}
.lp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.lp-faq-item.is-open .lp-faq-a {
    max-height: 40rem;
    padding-bottom: 1.25rem;
}
.lp-faq-a p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== 9. OFFER ===== */
.lp-offer { background: var(--bg-light) }
.lp-offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.lp-offer h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem; font-weight: 400; line-height: 1.2;
    color: #fff; margin-bottom: 1.5rem;
}
.lp-offer-intro {
    color: rgba(255,255,255,0.75);
    font-size: 1rem; line-height: 1.6;
    margin-bottom: 2rem;
}
.lp-offer-list {
    display: flex; flex-direction: column; gap: 1rem;
}
.lp-offer-item {
    display: flex; align-items: flex-start; gap: 0.75rem;
}
.lp-offer-item > span {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.5;
    flex: 1;
}
.lp-offer-check {
    flex-shrink: 0;
    width: 24px; height: 24px;
    background: rgba(32,109,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.lp-offer-icon {
    width: 28px; height: 28px;
    stroke: var(--blue); stroke-width: 1.5;
    fill: none;
}

/* ===== 10. FINAL CTA ===== */
.lp-final-cta { text-align: center; padding: 6rem 0 }
.lp-final-cta h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400; line-height: 1.2;
    margin-bottom: 1rem; color: #fff;
}
.lp-final-cta-intro {
    color: rgba(255,255,255,0.8);
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto; margin-right: auto;
}
.lp-final-cta-button {
    font-size: 1.125rem;
    padding: 0.6rem 2rem;
}
.lp-reassurance {
    display: flex; align-items: center; justify-content: center;
    gap: 2rem; margin-top: 1.5rem;
    flex-wrap: wrap;
}
.lp-reassurance span {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
}

/* ===== MINI FOOTER ===== */
.lp-footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    background: var(--bg);
}
.lp-footer p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
}
.lp-footer a {
    color: rgba(255,255,255,0.55);
    text-decoration: underline;
}

/* ===== LOGO SECTION text ===== */
.lp-logo-text {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    font-family: var(--font);
    font-weight: 300;
}

/* ===== STICKY CTA MOBILE ===== */
.lp-sticky-cta {
    position: fixed;
    bottom: 1.5rem; right: 1.5rem;
    z-index: 99;
    display: none;
    align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--blue);
    color: #fff;
    border-radius: 999px;
    font-family: var(--font);
    font-size: 0.9375rem; font-weight: 500;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(32,109,255,0.35), 0 2px 8px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, background var(--ease);
    pointer-events: none;
}
.lp-sticky-cta svg { width: 1rem; height: 1rem; stroke: currentColor; stroke-width: 2; fill: none }
.lp-sticky-cta:hover { background: var(--blue-hover) }
.lp-sticky-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .lp-hero { min-height: auto; padding: 7rem 0 3rem; align-items: flex-start }
    .lp-problem-grid,
    .lp-benefits-grid { grid-template-columns: 1fr }
    .lp-solution-pillars { grid-template-columns: 1fr }
    .lp-process-steps { grid-template-columns: repeat(2, 1fr) }
    .lp-proof-grid { grid-template-columns: 1fr }
    .lp-offer-grid { grid-template-columns: 1fr }
    .lp-projects-grid { grid-template-columns: repeat(2, 1fr) }
    .lp-sticky-cta { display: inline-flex }
}

@media (max-width: 479px) {
    .lp-process-steps { grid-template-columns: 1fr }
    .lp-projects-grid { grid-template-columns: 1fr }
    .lp-hero-cta-wrap { flex-direction: column; align-items: stretch }
    .lp-hero-cta-wrap .button,
    .lp-hero-cta-wrap .lp-hero-cta-ghost { width: 100%; justify-content: center }
    .lp-solution-block { padding: 2rem 1.5rem }
    .lp-offer h2 { font-size: 1.75rem }
    .lp-projets-header h2 { font-size: 1.75rem }
}

/* =============================================================================
   BIUX 2.4.8 — AUTOPLAY PERMANENT pour les .lp-project-card
   Override des regles "lazy hover" : l'iframe est inseree au load via IO et
   reste visible en permanence. Le poster fade-out apres iframe load.
   ============================================================================= */
.lp-project-card {
    isolation: isolate; /* fix Safari z-index iframe instable */
}
.lp-project-card .lp-project-video {
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}
.lp-project-card .lp-project-poster {
    z-index: 2;
    transition: opacity 0.5s ease, transform 0.6s ease;
    pointer-events: none;
}
.lp-project-card.is-loaded .lp-project-poster {
    opacity: 0;
}
.lp-project-overlay {
    z-index: 3; /* au-dessus de l'iframe et du poster pour le contraste */
}
.lp-project-label {
    z-index: 4;
}
/* Scroll smooth pour les ancres CTA -> #lp-devis-form */
html { scroll-behavior: smooth; }

/* =============================================================================
   BIUX 2.4.8 — FORMULAIRE INLINE DE DEVIS (bas de chaque LP)
   Section sombre pour rappeler la charte Biux. Compatible LP dark + LP light.
   ============================================================================= */
.lp-devis-section {
    background: #0a0d18;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.lp-devis-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(32, 109, 255, 0.18), transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(32, 109, 255, 0.12), transparent 45%);
    pointer-events: none;
    z-index: 0;
}
.lp-devis-section > * { position: relative; z-index: 1; }
.lp-devis-section .lp-label {
    color: #6ea1ff;
}
.lp-devis-section h2 {
    color: #fff;
    font-size: clamp(2rem, 3.4vw, 2.75rem);
    line-height: 1.15;
    margin: 0.5rem 0 1rem;
}
.lp-devis-section .lp-devis-accroche {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 36rem;
}
.lp-devis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.lp-devis-intro { padding-top: 0.5rem; }
.lp-devis-reassurance {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
}
.lp-devis-reassurance li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}
.lp-devis-reassurance svg { flex-shrink: 0; }

/* --- Form card --- */
.lp-devis-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 2.25rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.lp-devis-alert {
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(248, 113, 113, 0.4);
    color: #fecaca;
    border-radius: 0.65rem;
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}
.lp-devis-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.lp-devis-field { margin-bottom: 1.1rem; }
.lp-devis-field label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}
.lp-devis-field label span[aria-hidden] { color: #6ea1ff; }
.lp-devis-field input,
.lp-devis-field textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.85rem 1rem;
    border-radius: 0.6rem;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}
.lp-devis-field input::placeholder,
.lp-devis-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.lp-devis-field input:focus,
.lp-devis-field textarea:focus {
    outline: none;
    border-color: #206dff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(32, 109, 255, 0.25);
}
.lp-devis-field textarea {
    resize: vertical;
    min-height: 130px;
}
.lp-devis-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
.lp-devis-submit {
    width: 100%;
    margin-top: 0.5rem;
    cursor: pointer;
    border: 0;
}
.lp-devis-legal {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}
.lp-devis-legal a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
}
.lp-devis-legal a:hover { color: #fff; }

@media (max-width: 991px) {
    .lp-devis-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .lp-devis-form { padding: 1.75rem; }
}
@media (max-width: 479px) {
    .lp-devis-row { grid-template-columns: 1fr; }
    .lp-devis-form { padding: 1.5rem 1.25rem; }
    .lp-devis-section h2 { font-size: 1.75rem; }
}
