/* ============================================================
   OuiLockers — Styles principaux
   Elegance, simplicite, conversion douce
   ============================================================ */

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

:root {
    --dark: #083445;
    --green: #1C8756;
    --green-light: #2a9d68;
    --cream: #f8f7f4;
    --white: #ffffff;
    --gray: #6b7b82;
    --border: #e0e5e7;
    --gold: #c9a96e;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

/* ---- Layout ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-sm {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---- Header ---- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, padding 0.4s ease;
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(8, 52, 69, 0.97);
    backdrop-filter: blur(12px);
    padding: 10px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Logo — toutes les variantes de classes utilisées dans les pages */
.logo-link,
a.logo {
    display: block;
    height: 42px;
    flex-shrink: 0;
}

.logo-img,
.logo img,
a.logo img {
    height: 100%;
    width: auto;
    max-width: 140px;
    border-radius: 6px;
    object-fit: contain;
}

/* Nav toggle (mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.85);
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-lang {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.nav-lang a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.nav-lang a:hover {
    color: var(--white);
}

.btn-nav {
    display: inline-block;
    padding: 10px 22px;
    background: var(--green);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.25s ease;
}

.btn-nav:hover {
    background: var(--green-light);
}

/* ---- Buttons ---- */
.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: var(--green);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28,135,86,0.3);
}

.btn-wide {
    display: block;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.btn-ghost {
    display: inline-block;
    padding: 16px 36px;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border: 1px solid var(--dark);
    color: var(--dark);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8,52,69,0.55) 0%,
        rgba(8,52,69,0.35) 50%,
        rgba(8,52,69,0.65) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 120px 40px 80px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 540px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    opacity: 0.7;
    letter-spacing: 0.3px;
}

.hero-meta .stars {
    color: var(--gold);
    letter-spacing: 2px;
}

.hero-meta .sep {
    opacity: 0.4;
}

/* ---- Google Reviews Badge ---- */
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.1);
    border: 0.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 40px;
    padding: 5px 12px 5px 8px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.google-badge:hover,
.google-badge:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
    outline: none;
}

.google-badge:active {
    transform: scale(0.97);
}

/* Variante fond clair (sections blanches) */
.google-badge--light {
    background: rgba(8, 52, 69, 0.06);
    border: 0.5px solid rgba(8, 52, 69, 0.18);
}

.google-badge--light:hover,
.google-badge--light:focus-visible {
    background: rgba(8, 52, 69, 0.11);
    border-color: rgba(8, 52, 69, 0.3);
}

.google-badge--light .google-badge__score {
    color: var(--dark);
}

.google-badge--light .google-badge__cta {
    color: rgba(8, 52, 69, 0.6);
    border-left-color: rgba(8, 52, 69, 0.15);
}

/* Variante fond sombre explicit (testi-stats) */
.google-badge--dark {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.google-badge__logo {
    flex-shrink: 0;
    display: block;
}

.google-badge__stars {
    color: #FBBC05;
    font-size: 0.75rem;
    letter-spacing: 1px;
    line-height: 1;
}

.google-badge__score {
    font-size: 0.8rem;
    font-weight: 500;
    color: #fff;
}

.google-badge__cta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    border-left: 0.5px solid rgba(255, 255, 255, 0.2);
    padding-left: 8px;
    margin-left: 2px;
}

/* Mobile : badge pleine largeur centré */
@media (max-width: 768px) {
    .google-badge {
        justify-content: center;
    }

    .hero-meta .google-badge {
        width: auto;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .google-badge {
        padding: 6px 14px 6px 10px;
        gap: 8px;
    }

    .google-badge__stars {
        font-size: 0.8rem;
    }

    .google-badge__score {
        font-size: 0.85rem;
    }

    .google-badge__cta {
        font-size: 0.78rem;
    }
}

/* ---- Section labels ---- */
.label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 50px;
}

/* ---- Intro ---- */
.intro {
    padding: 100px 0;
    text-align: center;
}

.intro-lead {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 24px;
}

.intro-body {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Why section ---- */
.why {
    padding: 80px 0 100px;
    background: var(--dark);
    color: var(--white);
}

.why .section-title {
    text-align: center;
    color: var(--white);
    margin-bottom: 20px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    text-align: center;
    padding: 35px 25px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    transition: transform 0.3s ease, background 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.07);
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--green-light);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* ---- Steps ---- */
.steps-section {
    padding: 100px 0;
    background: var(--cream);
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.step {
    text-align: center;
}

.step-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 16px;
    line-height: 1;
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.step p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ---- Salon ---- */
.salon {
    background: var(--white);
}

.salon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.salon-img {
    overflow: hidden;
}

.salon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salon-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.salon-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    margin-bottom: 20px;
}

.salon-content > p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.salon-content ul {
    list-style: none;
}

.salon-content li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.9rem;
    color: var(--gray);
}

.salon-content li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--green);
}

/* ---- Pricing ---- */
.pricing {
    padding: 100px 0;
    text-align: center;
    background: var(--cream);
}

.price-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 55px 45px;
    box-shadow: var(--shadow);
    max-width: 480px;
    margin: 0 auto 50px;
    position: relative;
}

.price-header {
    margin-bottom: 30px;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 8px;
}

.price-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1;
}

.price-features {
    list-style: none;
    margin-bottom: 35px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--gray);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-note {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 20px;
    opacity: 0.8;
}

/* Promos */
.promos h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 25px;
}

.promo-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 700px;
    margin: 0 auto 15px;
}

.promo {
    background: var(--white);
    padding: 25px 15px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.promo-val {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--green);
    margin-bottom: 6px;
}

.promo-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.promo-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
}

.promo-highlight {
    background: var(--dark);
    color: var(--white);
}

.promo-highlight .promo-name {
    color: var(--white);
}

.promo-highlight .promo-desc {
    color: rgba(255,255,255,0.6);
}

.promo-note {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ---- Testimonials ---- */
.testimonials {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.testimonials .label {
    text-align: center;
}

.testimonials .section-title {
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testi {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 35px 30px;
}

.testi p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
    font-size: 0.95rem;
}

.testi footer {
    font-size: 0.8rem;
    opacity: 0.6;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.testi-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    text-align: center;
}

.testi-stats strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--green-light);
    line-height: 1.2;
}

.testi-stats span {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ---- Comparatif ---- */
.compare {
    padding: 100px 0;
    background: var(--white);
}

.compare .label,
.compare .section-title {
    text-align: center;
}

.compare-table {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.compare-table thead th {
    padding: 16px 20px;
    text-align: center;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--white);
    background: var(--dark);
}

.compare-table thead th:first-child {
    text-align: left;
}

.compare-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.compare-table tbody td:first-child {
    text-align: left;
    color: var(--gray);
}

.compare-table .yes {
    color: var(--green);
    font-weight: 500;
}

.compare-table .no {
    color: #c0392b;
    opacity: 0.7;
}

/* ---- FAQ ---- */
.faq {
    padding: 100px 0;
    background: var(--cream);
}

.faq .section-title {
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    padding: 24px 0;
    font-size: 1.05rem;
    font-weight: 400;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 40px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--green);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    padding: 0 0 24px;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ---- AEO ---- */
.aeo {
    padding: 80px 0;
    background: var(--cream);
}

.aeo .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.aeo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.aeo-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.aeo-card h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--dark);
}

.aeo-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ---- Location ---- */
.location {
    position: relative;
    min-height: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.loc-img {
    position: relative;
    overflow: hidden;
}

.loc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0%, rgba(8,52,69,0.7) 100%);
}

.loc-content {
    position: relative;
    background: var(--dark);
    color: var(--white);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.loc-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.2;
}

.loc-address {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.loc-detail {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 25px;
}

.loc-transports p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 6px;
}

.loc-content .btn-secondary {
    margin-top: 30px;
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
    align-self: flex-start;
}

.loc-content .btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

/* ---- CTA Final ---- */
.cta-final {
    padding: 120px 0;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.cta-final h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 15px;
}

.cta-final > p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-top: 20px;
    letter-spacing: 0.3px;
}

/* ---- Floating CTA ---- */
.floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.floating.visible {
    opacity: 1;
    pointer-events: auto;
}

.floating .btn-primary {
    box-shadow: 0 6px 25px rgba(28,135,86,0.35);
    padding: 14px 28px;
}

/* ---- Footer ---- */
.footer {
    background: #061f29;
    color: rgba(255,255,255,0.6);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
    border-radius: 5px;
}

.footer-brand p {
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-legal a {
    font-size: 0.8rem;
    opacity: 0.6;
    transition: opacity 0.25s ease;
}

.footer-legal a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.4;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
        margin: 50px auto 0;
    }

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

    .salon-img {
        min-height: 350px;
        order: -1;
    }

    .salon-content {
        padding: 60px 40px;
    }

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

    .loc-img {
        min-height: 300px;
    }

    .loc-content {
        padding: 60px 40px;
    }

    .aeo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-link,
    a.logo {
        height: 36px;
    }

    .logo-img,
    .logo img,
    a.logo img {
        max-width: 110px;
    }

    .container,
    .container-sm {
        padding: 0 20px;
    }

    .nav {
        padding: 0 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(8, 52, 69, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    .nav-lang {
        margin-top: 10px;
    }

    .nav-cta {
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-inner {
        padding: 100px 20px 60px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        max-width: 300px;
    }

    .hero-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-meta .sep {
        display: none;
    }

    .hero-meta .google-badge {
        font-size: 0.85rem;
        padding: 7px 14px 7px 10px;
    }

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

    .promo-row {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .testi-stats {
        gap: 30px;
    }

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

    .compare-table {
        font-size: 0.8rem;
    }

    .compare-table thead th,
    .compare-table tbody td {
        padding: 10px 12px;
    }

    .salon-content {
        padding: 50px 25px;
    }

    .loc-content {
        padding: 50px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }

    .floating {
        bottom: 15px;
        right: 15px;
        left: 15px;
    }

    .floating .btn-primary {
        width: 100%;
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .promo-row {
        grid-template-columns: 1fr;
    }

    .price-card {
        padding: 40px 25px;
    }

    .price-value {
        font-size: 2.8rem;
    }
}


/* ============================================================
   COOKIE BANNER (conservé des versions précédentes)
   ============================================================ */

#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 24px 20px;
    z-index: 10000;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.25);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p:first-child {
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 1rem;
}

.cookie-text p:last-child {
    opacity: 0.9;
    font-size: 0.85rem;
}

.cookie-text a {
    color: var(--green-light);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: white;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-sans);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn-refuse {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.3);
}

.cookie-btn-refuse:hover {
    background: rgba(255,255,255,0.1);
}

.cookie-btn-accept {
    background: var(--green);
    color: white;
    border-color: var(--green);
}

.cookie-btn-accept:hover {
    background: var(--green-light);
    border-color: var(--green-light);
}

.cookie-preferences {
    max-width: 1200px;
    margin: 20px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.pref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.pref-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 16px;
}

.pref-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 8px;
}

.pref-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--green);
}

.pref-item p {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-left: 28px;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}


/* ============================================================
   PAGE HEADER (FAQ, Legal pages)
   ============================================================ */

.page-header {
    background: var(--dark);
    padding: 140px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 400;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1rem;
    opacity: 0.7;
}

.faq-page {
    padding: 80px 0 120px;
    background: var(--cream);
}

.faq-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.faq-category {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.faq-category h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.faq-category p {
    font-size: 0.85rem;
    color: var(--gray);
}

.faq-section {
    margin-bottom: 50px;
}

.faq-section h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--green);
    display: inline-block;
}

.contact-cta {
    background: var(--dark);
    padding: 50px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--white);
    margin-top: 40px;
}

.contact-cta h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.contact-cta p {
    opacity: 0.8;
    margin-bottom: 20px;
}

/* Legal pages */
.legal-page {
    padding: 80px 0 120px;
    background: var(--cream);
}

.legal-content {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.legal-content h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin: 35px 0 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 18px;
}

.legal-content li {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .faq-categories {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        padding: 35px 25px;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 1.9rem;
    }
}
