/* =============================================
   VARIABLES & RESET
============================================= */
:root {
    --gold:        #C8960C;
    --gold-light:  #E5B430;
    --gold-dark:   #9A7209;
    --gold-glow:   rgba(200, 150, 12, 0.25);
    --black:       #080808;
    --dark:        #111111;
    --dark-card:   #191919;
    --border:      rgba(200, 150, 12, 0.3);
    --border-soft: rgba(200, 150, 12, 0.12);
    --white:       #FFFFFF;
    --muted:       #999999;
    --muted-dark:  #555555;
    --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
p  { color: var(--muted); line-height: 1.8; }

.gold-gradient {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   LAYOUT
============================================= */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
}

section { padding: 6rem 0; }

.section-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
}

.divider {
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 1.4rem auto;
}
.divider-left { margin: 1.4rem 0; }

.section-center {
    text-align: center;
    margin-bottom: 4rem;
}

/* =============================================
   SVG ICONS
============================================= */
.icon {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
    display: block;
}
.icon-lg {
    width: 30px;
    height: 30px;
}

/* =============================================
   SCROLL ANIMATIONS
============================================= */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.visible { opacity: 1; transform: none; }

/* =============================================
   NAVBAR
============================================= */
.navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    padding: 1.3rem 0;
    transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.navbar.scrolled {
    padding: 0.7rem 0;
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}
.nav-logo img { height: 42px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-text .brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.12em;
}
.nav-logo-text .tagline {
    font-size: 0.6rem;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--black) !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: 4px;
    font-weight: 700 !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.1em !important;
    box-shadow: 0 4px 18px var(--gold-glow);
    transition: all 0.3s var(--ease) !important;
}
.nav-cta:hover {
    box-shadow: 0 6px 28px rgba(200,150,12,0.55) !important;
    transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    text-decoration: none;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

/* =============================================
   HERO
============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('Image PC-DP/PC-DP-Laurent-LEMOUSSU-Bordeaux-plan-et-Maison-Couv-large-V1.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 1.2s var(--ease);
    blur: 4px;
     -webkit-filter: blur(5.5px);
     filter: blur(5px);
}
.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(8,8,8,0.96) 0%,
        rgba(8,8,8,0.82) 45%,
        rgba(8,8,8,0.55) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding-top: 6rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(200,150,12,0.12);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}
.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 2s ease infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.78);
    margin-bottom: 3rem;
    max-width: 580px;
    line-height: 1.85;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    opacity: 0.65;
    text-decoration: none;
}
.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}
.scroll-bar {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: drip 2s infinite;
}
@keyframes drip {
    0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* =============================================
   BUTTONS
============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 1rem 2.1rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    font-family: 'Inter', sans-serif;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    box-shadow: 0 6px 24px var(--gold-glow);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(200,150,12,0.5);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.28);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200,150,12,0.07);
}
.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

/* =============================================
   HERO IMAGE SHOWCASE (entre hero et stats)
============================================= */
.hero-img-showcase {
    background: var(--black);
    padding: 2.5rem 0 3rem;
}
.hero-img-showcase img {
    width: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--border-soft);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* =============================================
   STATS BAR
============================================= */
.stats-bar {
    background: var(--dark-card);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    padding: 2.75rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0 2rem;
    border-right: 1px solid var(--border-soft);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat-num sup { font-size: 1.4rem; vertical-align: super; }
.stat-label {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-align: center;
}

/* =============================================
   PROBLEM SECTION
============================================= */
.section-problem { background: var(--black); }

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.problem-card {
    background: var(--dark-card);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.problem-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.35s;
}
.problem-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.5);
    border-color: var(--border);
}
.problem-card:hover::after { opacity: 1; }

.p-icon {
    width: 56px;
    height: 56px;
    background: rgba(200,150,12,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.p-tag {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}
.problem-card h3 { color: var(--white); margin-bottom: 0.85rem; }
.problem-card p  { font-size: 0.88rem; }

.problem-callout {
    margin-top: 3rem;
    padding: 1.75rem 2.5rem;
    background: rgba(200,150,12,0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: center;
}
.problem-callout p {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}
.problem-callout p strong { color: var(--gold); font-style: normal; }

/* =============================================
   AUTHORITY SECTION
============================================= */
.section-authority {
    background: var(--dark);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}
.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.authority-visual { position: relative; }
.authority-img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.authority-img-wrap img { width: 100%; display: block; object-fit: cover; }
.authority-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(8,8,8,0.5) 100%);
    z-index: 1;
}
.authority-chip {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 12px 35px rgba(200,150,12,0.45);
    z-index: 2;
    border: 0.08rem solid;
}
.authority-chip .chip-label {
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.4;
}

.authority-content h2 { margin-bottom: 1.5rem; }
.authority-content > p { margin-bottom: 2.25rem; font-size: 0.95rem; }

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.75rem;
}
.check-list li { display: flex; gap: 1rem; align-items: flex-start; }
.check-list .tick {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: rgba(200,150,12,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 1px;
}
.check-list .txt { font-size: 0.93rem; color: var(--muted); }
.check-list .txt strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.97rem;
}

/* =============================================
   SERVICES SECTION
============================================= */
.section-services { background: var(--black); }

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.service-card {
    background: var(--dark-card);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 3rem 2.75rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s, box-shadow 0.35s;
}
.service-card:hover {
    border-color: var(--border);
    box-shadow: 0 30px 70px rgba(0,0,0,0.55);
}
.service-num {
    position: absolute;
    top: 1.75rem;
    right: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 700;
    color: rgba(200,150,12,0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.service-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(200,150,12,0.18), rgba(200,150,12,0.04));
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
}
.s-tag {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}
.service-card h3  { color: var(--white); font-size: 1.45rem; margin-bottom: 0.6rem; }
.service-card > p { font-size: 0.88rem; margin-bottom: 2rem; }

.s-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.s-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: var(--muted);
}
.s-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}
.s-list li strong { color: rgba(255,255,255,0.88); }

.service-footer {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sf-label { font-size: 0.78rem; color: var(--muted); }
.sf-arrow {
    color: var(--gold);
    font-size: 1.3rem;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s;
}
.service-card:hover .sf-arrow { transform: translateX(6px); }

.tarifs-note {
    margin-top: 2.5rem;
    padding: 1.25rem 2rem;
    background: rgba(200, 150, 12, 0.06);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: 6px;
    font-size: 0.94rem;
    color: var(--muted);
    font-style: italic;
    text-align: center;
}
.services-img-showcase {
    margin-top: 2.5rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.services-img-showcase img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* =============================================
   REASSURANCE SECTION
============================================= */
.section-reassurance {
    background: var(--dark);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.value-card {
    background: var(--dark-card);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.35s var(--ease), border-color 0.35s;
}
.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--border);
}
.v-icon {
    width: 56px;
    height: 56px;
    background: rgba(200,150,12,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.value-card h3 { color: var(--gold); font-size: 1.15rem; margin-bottom: 0.75rem; }
.value-card p  { font-size: 0.88rem; }

.promises-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.promise-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.75rem;
    background: rgba(200,150,12,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
}
.pi-icon {
    width: 46px;
    height: 46px;
    background: rgba(200,150,12,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.promise-item h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.promise-item p { font-size: 0.85rem; }

/* =============================================
   CONTACT SECTION
============================================= */
.section-contact { background: var(--black); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 5rem;
    align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2.5rem; font-size: 0.93rem; }

.c-details { display: flex; flex-direction: column; gap: 1.25rem; }
.c-item { display: flex; gap: 1rem; align-items: center; }
.c-ico {
    width: 46px;
    height: 46px;
    background: rgba(200,150,12,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.c-text { display: flex; flex-direction: column; }
.c-text .c-lbl {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}
.c-text a, .c-text .c-val {
    color: var(--white);
    text-decoration: none;
    font-size: 0.93rem;
    transition: color 0.3s;
}
.c-text a:hover { color: var(--gold); }
.c-text .c-sub { font-size: 0.78rem; color: var(--muted-dark); }

.map-wrap {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
}
.map-wrap iframe {
    width: 100%;
    height: 190px;
    display: block;
    filter: grayscale(85%) contrast(1.05);
}

/* Form */
.form-card {
    background: var(--dark-card);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 3rem 2.75rem;
}
.form-card h3 { color: var(--white); margin-bottom: 0.4rem; font-size: 1.35rem; }
.form-card > p { font-size: 0.83rem; margin-bottom: 2.25rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.fg {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
}
.fg label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}
.fg input,
.fg select,
.fg textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 0.82rem 1rem;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--muted-dark); }
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,150,12,0.12);
}
.fg select option { background: var(--dark-card); color: var(--white); }
.fg textarea { resize: vertical; min-height: 115px; }

/* Validation */
.fg .input-error {
    border-color: #e05555 !important;
    box-shadow: 0 0 0 3px rgba(224,85,85,0.15) !important;
}
.field-error {
    display: block;
    font-size: 0.72rem;
    color: #e07070;
    margin-top: 0.35rem;
}

/* Bannière d'erreur générale */
.form-error-banner {
    background: rgba(224,85,85,0.1);
    border: 1px solid rgba(224,85,85,0.35);
    border-radius: 6px;
    color: #e07070;
    font-size: 0.82rem;
    padding: 0.85rem 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.55;
}
.form-error-banner a { color: var(--gold); }

/* État succès */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 1rem;
    text-align: center;
}
.form-success svg {
    width: 52px;
    height: 52px;
    color: var(--gold);
    stroke: var(--gold);
}
.form-success h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin: 0;
}
.form-success p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

/* =============================================
   FOOTER
============================================= */
footer {
    background: var(--dark-card);
    border-top: 1px solid var(--border-soft);
    padding: 2rem 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.7rem; }
.footer-logo img { height: 34px; }
.footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.12em;
}
.footer-copy {
    font-size: 0.78rem;
    color: var(--muted-dark);
    text-align: center;
    line-height: 1.6;
}
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
}
.footer-siret {
    font-size: 0.73rem;
    color: var(--muted-dark);
    text-align: right;
}
.footer-social {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-soft);
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.footer-social a:hover {
    color: var(--gold);
    border-color: var(--border);
    background: rgba(200, 150, 12, 0.06);
}

/* =============================================
   REVIEWS SECTION
============================================= */
.section-reviews {
    background: var(--dark);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}
.section-reviews .container {
    max-width: 1600px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0 2.5rem;
}
.review-card {
    background: var(--dark-card);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 2.25rem 2.5rem;
    transition: border-color 0.35s, box-shadow 0.35s;
}
.review-card:hover {
    border-color: var(--border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.review-stars {
    color: #F4B942;
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
}
.review-text {
    font-size: 0.95rem;
    color: var(--light);
    line-height: 1.8;
    font-style: italic;
    margin: 0 0 1.75rem;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}
.review-date {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.15rem;
}
.reviews-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Bouton email masqué (anti-spam) */
.c-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(200,150,12,0.08);
    border: 1px solid var(--border);
    color: var(--gold) !important;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 0.9rem;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 0.2rem;
    transition: background 0.3s, border-color 0.3s;
}
.c-email-btn:hover {
    background: rgba(200,150,12,0.16);
    border-color: var(--gold-light);
}

/* =============================================
   BANDEAU STICKY MOBILE
============================================= */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    background: rgba(8, 8, 8, 0.97);
    border-top: 1px solid var(--border-soft);
    padding: 0.75rem 1.25rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
    gap: 0.75rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.msc-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: box-shadow 0.3s;
}
.msc-call:hover { box-shadow: 0 6px 20px rgba(200,150,12,0.5); }
.msc-call .icon { stroke: var(--black); width: 18px; height: 18px; }
.msc-contact {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: border-color 0.3s, color 0.3s;
}
.msc-contact:hover { border-color: var(--gold); color: var(--gold); }

/* =============================================
   FLOATING PHONE BUTTON
============================================= */
.float-phone {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 800;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    text-decoration: none;
    padding: 0.85rem 1.6rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 8px 30px rgba(200,150,12,0.45);
    transition: all 0.3s var(--ease);
}
.float-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 42px rgba(200,150,12,0.6);
}
.float-phone .icon { stroke: var(--black); }
.float-phone .ph-num { letter-spacing: 0.04em; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .authority-grid  { grid-template-columns: 1fr; gap: 3rem; }
    .authority-visual { max-width: 560px; }
    .reviews-grid    { grid-template-columns: repeat(2, 1fr); }
    .contact-grid    { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    section          { padding: 4.5rem 0; }
    .nav-links       { display: none; }
    .hamburger       { display: flex; }
    .problem-grid    { grid-template-columns: 1fr; }
    .services-grid   { grid-template-columns: 1fr; }
    .values-grid     { grid-template-columns: 1fr; }
    .promises-grid   { grid-template-columns: 1fr; }
    .stats-grid      { grid-template-columns: repeat(3, 1fr); }
    .form-row        { grid-template-columns: 1fr; }
    .footer-inner    { flex-direction: column; text-align: center; }
    .footer-left     { align-items: center; }
    .footer-right    { align-items: center; }
    .footer-siret    { text-align: center; }
    .reviews-grid    { grid-template-columns: 1fr; }
    .form-card       { padding: 2.25rem 1.75rem; }
    .service-card    { padding: 2.25rem 1.75rem; }
    .hero-content    { padding-top: 7rem; }
    /* Bandeau sticky mobile activé — float-phone masqué */
    .mobile-sticky-cta { display: flex; }
    .float-phone        { display: none; }
    body                { padding-bottom: 80px; }
}

@media (max-width: 500px) {
    .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
    .stat-item  {
        border-right: none;
        border-bottom: 1px solid var(--border-soft);
        padding-bottom: 2rem;
    }
    .stat-item:last-child { border-bottom: none; }
    .hero-actions { flex-direction: column; }
    .btn          { width: 100%; justify-content: center; }
    .float-phone .ph-num { display: none; }
}
