:root {
            --hds92-blue: #003366;
            --hds92-blue-light: #004080;
            --hds92-navy: #001F3F;
            --hds92-gold: #D4AF37;
            --hds92-gold-light: #E5C158;
            --hds92-silver: #C0C0C0;
            --anthracite: #2C3333;
            --cream: #FAF9F6;
            --primary: var(--hds92-blue);
            --secondary: var(--hds92-navy);
            --gold: var(--hds92-gold);
            --dark: var(--anthracite);
            --grey: #6B7280;
            --light: var(--cream);
            --white: #ffffff;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            color: var(--anthracite);
            line-height: 1.6;
            background: var(--cream);
        }

        h1, h2, h3 {
            font-family: 'Cormorant Garamond', 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .text-gradient-gold {
            background: linear-gradient(135deg, #D4AF37 0%, #E5C158 50%, #D4AF37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .text-gradient-hds {
            background: linear-gradient(135deg, #003366 0%, #D4AF37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Legacy hero (unused — template HDS92) */
        .hero {
            display: none;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            margin-bottom: 1rem;
            opacity: 0.95;
        }

        .hero-lead {
            font-size: clamp(0.95rem, 1.65vw, 1.15rem);
            line-height: 1.55;
            max-width: 42rem;
            margin: 0 auto 1.75rem;
            opacity: 0.92;
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
            font-size: 0.95rem;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .hero-feature::before {
            content: '✓';
            background: var(--gold);
            color: var(--dark);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .cta-primary {
            display: inline-block;
            background: var(--gold);
            color: var(--dark);
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
            border: none;
            cursor: pointer;
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
        }

        .cta-secondary {
            display: inline-block;
            background: transparent;
            color: var(--primary);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border: 2px solid var(--primary);
            transition: all 0.3s ease;
        }

        .cta-secondary:hover {
            background: var(--primary);
            color: var(--white);
        }

        /* Introduction Section */
        .intro {
            padding: 5rem 0;
            background: var(--white);
        }

        .intro-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .intro h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .intro p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--grey);
            margin-bottom: 1.5rem;
        }

        /* Services Section */
        .services {
            padding: 5rem 0;
            background: var(--light);
        }

        .section-title {
            text-align: center !important;
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            margin-bottom: 1rem;
            color: var(--dark);
            width: 100%;
        }

        .section-subtitle,
        .services__intro .hds92-section__lead {
            text-align: center;
            font-size: 1.1rem;
            color: var(--grey);
            margin-bottom: 0;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .services__intro {
            margin-bottom: 3rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .service-card p {
            color: var(--grey);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .service-card ul {
            list-style: none;
            margin-top: 1rem;
        }

        .service-card ul li {
            padding: 0.4rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--dark);
        }

        .service-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: bold;
        }

        /* Local Expertise Section */
        .local-expertise {
            padding: 5rem 0;
            background: var(--white);
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .location-card {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid var(--hds92-gold);
            transition: all 0.3s ease;
        }

        .location-card:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .location-card h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
            font-family: 'Playfair Display', serif;
        }

        .location-type {
            font-size: 0.85rem;
            color: var(--grey);
            font-style: italic;
            margin-bottom: 0.8rem;
        }

        /* Trust Section */
        .trust {
            display: none;
        }

        .trust .section-title,
        .trust .section-subtitle {
            color: var(--white);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .trust-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .trust-item:hover {
            background: rgba(255,255,255,0.15);
            transform: scale(1.05);
        }

        .trust-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .trust-item h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .trust-item p {
            opacity: 0.9;
            line-height: 1.7;
        }

        /* Reviews Section */
        .reviews {
            padding: 5rem 0;
            background: var(--light);
        }

        .reviews-trust-banner {
            max-width: 36rem;
            margin: 0 auto 3rem;
            padding: 2rem 2.25rem;
            text-align: center;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 51, 102, 0.12);
        }

        .reviews-trust-banner__stars {
            color: var(--gold);
            font-size: 1.35rem;
            letter-spacing: 0.2em;
            line-height: 1;
        }

        .reviews-trust-banner__headline {
            margin: 0.85rem 0 0.25rem;
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--dark);
        }

        .reviews-trust-banner__sub {
            margin: 0;
            font-size: 0.9rem;
            color: var(--grey);
        }

        .reviews-trust-banner__message {
            margin: 0.85rem 0 0;
            font-size: 1rem;
            color: var(--dark);
            line-height: 1.55;
        }

        .reviews-badge-card {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            margin-bottom: 3rem;
            padding: 2rem 2.25rem;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 51, 102, 0.1);
        }

        .reviews-badge-card__title {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 0.35rem;
        }

        .reviews-badge-card__subtitle,
        .reviews-badge-card__count {
            font-size: 0.9rem;
            color: var(--grey);
            margin: 0.25rem 0 0;
        }

        .reviews-badge-card__tags {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0 0;
            padding: 0;
        }

        .reviews-badge-card__tags li {
            font-size: 0.8rem;
            padding: 0.35rem 0.75rem;
            border-radius: 999px;
            background: rgba(0, 51, 102, 0.08);
            color: var(--dark);
        }

        .reviews-badge-card__score {
            text-align: center;
        }

        .reviews-badge-card__value {
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }

        .reviews-badge-card__max {
            font-size: 1.25rem;
            color: var(--grey);
        }

        .reviews-badge-card__label {
            margin: 0.35rem 0 0;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .review-card {
            background: var(--white);
            padding: 2rem 2.25rem;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 51, 102, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .review-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 51, 102, 0.12);
        }

        .review-card__header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1.25rem;
        }

        .review-card__location {
            margin: 0 0 0.75rem;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            color: var(--hds92-blue);
        }

        .review-card__author {
            margin: 0;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--dark);
            font-family: 'Inter', sans-serif;
        }

        .review-card__meta {
            margin: 0.35rem 0 0;
            font-size: 0.8rem;
            color: var(--grey);
        }

        .review-card__stars {
            display: flex;
            gap: 0.15rem;
            flex-shrink: 0;
            line-height: 1;
        }

        .review-card__star {
            font-size: 1.15rem;
            color: #e5e7eb;
        }

        .review-card__star.is-filled {
            color: var(--gold);
        }

        .review-card__quote {
            margin: 0;
            flex: 1;
        }

        .review-card__quote p {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--grey);
            font-style: normal;
        }

        /* Price matrix */
        .price-matrix {
            padding: 4rem 0 5rem;
            background: var(--white);
        }

        .price-matrix__card {
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 51, 102, 0.1);
            padding: 2rem;
            overflow: hidden;
        }

        .price-matrix__range {
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            color: var(--grey);
        }

        .price-matrix__range strong {
            color: var(--primary);
        }

        .price-matrix__table-wrap {
            overflow-x: auto;
        }

        .price-matrix__table {
            width: 100%;
            min-width: 36rem;
            border-collapse: collapse;
            font-size: 0.9rem;
        }

        .price-matrix__table th,
        .price-matrix__table td {
            padding: 0.85rem 1rem;
            border-bottom: 1px solid #f1f5f9;
            text-align: center;
        }

        .price-matrix__table thead th {
            background: var(--light);
            font-weight: 600;
            color: var(--dark);
        }

        .price-matrix__table tbody th {
            text-align: left;
            font-weight: 600;
            color: var(--primary);
        }

        .price-matrix__footnote {
            margin: 1.25rem 0 0;
            font-size: 0.85rem;
            color: var(--grey);
            text-align: center;
        }

        .price-matrix__footnote--rich a {
            color: var(--primary);
            font-weight: 500;
            text-decoration: none;
            border-bottom: 1px solid rgba(0, 51, 102, 0.2);
        }

        .price-matrix__footnote--rich a:hover {
            color: var(--secondary);
            border-bottom-color: rgba(201, 162, 39, 0.5);
        }

        .price-matrix--estimation .price-estimation-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.25rem;
            margin-top: 0.5rem;
        }

        @media (max-width: 900px) {
            .price-matrix--estimation .price-estimation-grid {
                grid-template-columns: 1fr;
            }
        }

        .price-estimation-card {
            border: 1px solid rgba(0, 51, 102, 0.12);
            border-radius: 16px;
            padding: 1.35rem 1.25rem;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
            min-height: 100%;
        }

        .price-estimation-card--solo {
            border-color: rgba(0, 51, 102, 0.2);
        }

        .price-estimation-card--turnkey {
            border-color: rgba(212, 175, 55, 0.45);
            box-shadow: 0 6px 18px rgba(0, 51, 102, 0.06);
        }

        .price-estimation-card__badge,
        .price-estimation-card__season {
            display: inline-block;
            align-self: flex-start;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            padding: 0.25rem 0.55rem;
            border-radius: 999px;
            background: rgba(0, 51, 102, 0.08);
            color: var(--primary);
        }

        .price-estimation-card__season {
            background: rgba(212, 175, 55, 0.18);
            color: #7a5f10;
        }

        .price-estimation-card__title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.3;
        }

        .price-estimation-card__includes {
            font-size: 0.9rem;
            color: var(--dark);
            font-weight: 600;
        }

        .price-estimation-card__hint {
            font-size: 0.78rem;
            color: var(--grey);
            line-height: 1.45;
            flex-grow: 1;
        }

        .price-estimation-card__price {
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--primary);
            margin-top: 0.35rem;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Cross-link premium */
        .cross-link-premium {
            padding: 2.5rem 0;
            background: var(--white);
            text-align: center;
        }

        .cross-link-premium p {
            max-width: 42rem;
            margin: 0 auto;
            font-size: 1rem;
            color: var(--grey);
            line-height: 1.65;
        }

        .cross-link-premium a {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid rgba(0, 51, 102, 0.35);
        }

        .cross-link-premium a:hover {
            color: var(--secondary);
        }

        /* Lien d'autorité municipale (maillage sémantique local) */
        .municipal-authority-note {
            padding: 1.75rem 0 2rem;
            background: var(--light);
            border-top: 1px solid rgba(0, 51, 102, 0.06);
        }

        .municipal-authority-note p {
            max-width: 48rem;
            margin: 0 auto;
            font-size: 0.875rem;
            line-height: 1.65;
            color: #9ca3af;
            text-align: center;
        }

        .municipal-authority-note p + p {
            margin-top: 1rem;
        }

        .municipal-authority-note strong {
            color: var(--primary);
            font-weight: 600;
        }

        .municipal-authority-note a {
            color: var(--primary);
            font-weight: 500;
            text-decoration: none;
            border-bottom: 1px solid rgba(0, 51, 102, 0.2);
        }

        .municipal-authority-note a:hover {
            color: var(--secondary);
            border-bottom-color: rgba(201, 162, 39, 0.5);
        }

        /* FAQ Section */
        .faq {
            padding: 5rem 0;
            background: var(--light);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            margin-bottom: 1.25rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 51, 102, 0.08);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(0, 51, 102, 0.35);
        }

        .faq-item.active {
            border-color: var(--primary);
            box-shadow: 0 6px 24px rgba(0, 51, 102, 0.12);
        }

        .faq-item__heading {
            margin: 0;
        }

        .faq-question {
            padding: 1.35rem 1.75rem;
            cursor: pointer;
            font-weight: 600;
            color: var(--dark);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-size: 1.05rem;
            width: 100%;
            font-family: 'Inter', sans-serif;
            text-align: left;
            background: transparent;
            border: none;
        }

        .faq-question__text {
            flex: 1;
            padding-right: 0.5rem;
            line-height: 1.45;
        }

        .faq-question__chevron {
            flex-shrink: 0;
            width: 0.65rem;
            height: 0.65rem;
            border-right: 2px solid var(--primary);
            border-bottom: 2px solid var(--primary);
            transform: rotate(45deg);
            margin-top: -0.2rem;
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.active .faq-question__chevron {
            transform: rotate(-135deg);
            margin-top: 0.25rem;
        }

        .faq-answer {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--grey);
        }

        .faq-item.active .faq-answer {
            grid-template-rows: 1fr;
        }

        .faq-answer__inner {
            overflow: hidden;
            padding: 0 1.75rem;
        }

        .faq-item.active .faq-answer__inner {
            padding: 0 1.75rem 1.35rem;
        }

        .faq-answer__inner p {
            margin: 0;
            line-height: 1.75;
            font-size: 0.98rem;
        }

        .faq-answer__inner p + p {
            margin-top: 0.75rem;
        }

        /* Final CTA Section */
        .final-cta {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--hds92-blue) 0%, var(--hds92-navy) 100%);
            text-align: center;
            color: var(--white);
        }

        .final-cta h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .final-cta h2 .text-gradient-gold {
            -webkit-text-fill-color: var(--hds92-gold);
            color: var(--hds92-gold);
            background: none;
        }

        .final-cta p {
            color: rgba(255, 255, 255, 0.88);
        }

        .final-cta .cta-primary {
            background: var(--hds92-gold);
            color: var(--anthracite);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
        }

        .final-cta > .container > p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-group {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: rgba(255,255,255,0.8);
            padding: 2rem 0;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-features {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .cta-group {
                flex-direction: column;
            }

            .cta-primary, .cta-secondary {
                width: 100%;
                max-width: 350px;
            }

            .hds92-hero__stats { flex-direction: column; gap: 1rem; }
            .hds92-google-strip__inner { flex-direction: column; }
            .hds92-google-strip__divider { display: none; }
            .hds92-fixed-google { display: none !important; }
        }

        /* ========== Charte Hauts-de-Seine (92) — template ville unique ========== */
        .hidden { display: none !important; }
        @media (min-width: 1024px) {
            .lg\:block { display: block !important; }
        }
        .hds92-fixed-google {
            position: fixed;
            top: 6rem;
            right: 1.5rem;
            z-index: 50;
            background: var(--white);
            border-radius: 1rem;
            box-shadow: 0 25px 50px rgba(0, 51, 102, 0.2);
            padding: 1rem;
            border: 2px solid var(--hds92-gold);
            animation: hds92-pulse-glow 3s ease-in-out infinite;
        }
        @keyframes hds92-pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
            50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.8); }
        }
        @keyframes hds92-fade-in {
            from { opacity: 0; transform: translateY(12px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .unsplash-credit {
            position: absolute;
            bottom: 12px;
            right: 20px;
            z-index: 10;
            font-size: 11px;
            line-height: 1.4;
            color: rgba(255, 255, 255, 0.7);
            pointer-events: auto;
        }
        .unsplash-credit a {
            color: #fff;
            text-decoration: underline;
        }
        .unsplash-credit a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .hds92-hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            color: var(--white);
            text-align: center;
        }
        .hds92-hero__media .unsplash-credit {
            z-index: 5;
        }
        .hds92-hero__media { position: absolute; inset: 0; z-index: 0; }
        .hds92-hero__img {
            width: 100%; height: 100%; object-fit: cover;
            transform: scale(1.05);
            transition: transform 3s ease;
        }
        .hds92-hero__overlay {
            position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(0, 51, 102, 0.92) 0%, rgba(192, 192, 192, 0.85) 50%, rgba(0, 51, 102, 0.9) 100%);
        }
        .hds92-hero__glow {
            position: absolute;
            width: 24rem; height: 24rem;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
        }
        .hds92-hero__glow--gold { top: 25%; left: 25%; background: rgba(212, 175, 55, 0.1); }
        .hds92-hero__glow--silver { bottom: 25%; right: 25%; background: rgba(192, 192, 192, 0.1); }
        .hds92-hero__content {
            position: relative; z-index: 10;
            padding: 2rem 0 4rem;
            animation: hds92-fade-in 1s ease-out;
        }
        .hds92-hero__badges {
            display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
            margin-bottom: 2rem;
        }
        .hds92-badge {
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 0.75rem 1.5rem; border-radius: 999px;
            font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em;
        }
        .hds92-badge--glass {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .hds92-badge--gold {
            background: rgba(212, 175, 55, 0.2);
            border: 1px solid var(--hds92-gold);
        }
        .hds92-badge__dot {
            width: 0.5rem; height: 0.5rem;
            background: var(--hds92-gold);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        .hds92-hero__title {
            font-size: clamp(2.25rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }
        .hds92-hero__title-main { display: block; }
        .hds92-hero__lead {
            font-size: clamp(1.05rem, 2vw, 1.35rem);
            color: rgba(255, 255, 255, 0.9);
            max-width: 42rem;
            margin: 0 auto 2rem;
            line-height: 1.6;
            font-weight: 300;
        }
        .hds92-hero__cta-wrap { padding-top: 0.5rem; }
        .hds92-cta {
            display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
            padding: 1.15rem 3rem;
            background: var(--hds92-gold);
            color: var(--anthracite);
            font-weight: 700; font-size: 1.15rem;
            border-radius: 999px;
            text-decoration: none;
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.35);
            transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
        }
        .hds92-cta:hover {
            background: var(--hds92-gold-light);
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
        }
        .shine-effect { position: relative; overflow: hidden; }
        .shine-effect::before {
            content: '';
            position: absolute; top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }
        .shine-effect:hover::before { left: 100%; }
        .hds92-hero__stats {
            display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem;
            padding-top: 3rem;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
        }
        .hds92-hero__stat { display: flex; align-items: center; gap: 0.5rem; }
        .hds92-hero__stat-icon { color: var(--hds92-gold); }

        .hds92-google-strip {
            padding: 2rem 0;
            background: linear-gradient(90deg, var(--hds92-gold), var(--hds92-gold-light));
            color: var(--white);
        }
        .hds92-google-strip__inner {
            display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem;
        }
        .hds92-google-strip__block { display: flex; align-items: center; gap: 1rem; text-align: left; }
        .hds92-google-strip__stars { font-size: 1.5rem; letter-spacing: 0.15em; }
        .hds92-google-strip__score { font-size: 1.75rem; font-weight: 700; }
        .hds92-google-strip__label { font-size: 0.875rem; opacity: 0.9; }
        .hds92-google-strip__divider { width: 1px; height: 3rem; background: rgba(255,255,255,0.3); }

        .hds92-section { padding: 5rem 0; }
        .hds92-section--white { background: var(--white); }
        .hds92-section--pattern {
            background: linear-gradient(135deg, #f9fafb 0%, var(--cream) 100%);
            background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(0, 51, 102, 0.03) 12px, rgba(0, 51, 102, 0.03) 24px);
        }
        .hds92-section--navy { background: var(--hds92-blue); color: var(--white); }
        .hds92-section__intro,
        .services__intro {
            max-width: 48rem;
            margin: 0 auto 3rem;
            text-align: center;
        }
        .hds92-section__intro--light .hds92-section__title { color: var(--white); }
        .hds92-section__title {
            font-size: clamp(1.85rem, 3.5vw, 2.75rem);
            color: var(--anthracite);
            margin-bottom: 1rem;
            text-align: center;
            width: 100%;
        }
        .hds92-section__title--light { color: var(--white); }
        .hds92-section__lead { font-size: 1.1rem; color: var(--grey); line-height: 1.7; }
        .hds92-kicker {
            display: inline-block;
            padding: 0.35rem 1rem;
            margin-bottom: 1rem;
            background: rgba(0, 51, 102, 0.1);
            color: var(--hds92-blue);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            border-radius: 999px;
        }
        .hds92-kicker--navy { background: rgba(0, 31, 63, 0.1); color: var(--hds92-navy); }
        .hds92-kicker--gold { background: rgba(212, 175, 55, 0.15); color: var(--hds92-gold); }

        .hds92-steps__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
            margin-top: 2.5rem;
        }
        .hds92-step { text-align: center; }
        .hds92-step__num {
            width: 4rem; height: 4rem; margin: 0 auto 1rem;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.75rem; font-weight: 700;
        }
        .hds92-step__num--blue { background: rgba(0, 51, 102, 0.1); color: var(--hds92-blue); }
        .hds92-step__num--silver { background: rgba(192, 192, 192, 0.25); color: var(--hds92-navy); }
        .hds92-step__num--gold { background: rgba(212, 175, 55, 0.15); color: var(--hds92-gold); }
        .hds92-step__title { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--anthracite); font-family: 'Inter', sans-serif; font-weight: 700; }
        .hds92-step__text { color: var(--grey); font-size: 0.95rem; line-height: 1.65; }

        .hds92-venues-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .hds92-venue-card {
            background: var(--white);
            border-radius: 1.5rem;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 51, 102, 0.08);
        }
        .card-hover { transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
        .card-hover:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 60px rgba(0, 51, 102, 0.2);
        }
        .hds92-venue-card__icon {
            width: 4rem; height: 4rem;
            border-radius: 1rem;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.75rem;
            margin-bottom: 1rem;
            color: var(--white);
        }
        .hds92-venue-card__icon--grad-blue { background: linear-gradient(135deg, #003366, #004080); }
        .hds92-venue-card__icon--grad-gold { background: linear-gradient(135deg, #D4AF37, #b8941f); }
        .hds92-venue-card__icon--grad-navy { background: linear-gradient(135deg, #001F3F, #003366); }
        .hds92-venue-card__icon--grad-silver { background: linear-gradient(135deg, #6b7280, #9ca3af); }
        .hds92-venue-card__icon--grad-blue-light { background: linear-gradient(135deg, #004080, #0059a8); }
        .hds92-venue-card__icon--grad-gold-dark { background: linear-gradient(135deg, #b8941f, #D4AF37); }
        .hds92-venue-card__title { font-size: 1.5rem; margin-bottom: 0.35rem; color: var(--anthracite); }
        .hds92-venue-card__subtitle { font-size: 0.875rem; color: var(--grey); font-style: italic; margin-bottom: 1rem; }
        .hds92-venue-card__list {
            list-style: none; padding: 0; margin: 0;
            font-size: 0.875rem; color: var(--grey); line-height: 1.6;
        }
        .hds92-venue-card__list li { padding: 0.25rem 0; padding-left: 1rem; position: relative; }
        .hds92-venue-card__list li::before { content: '•'; position: absolute; left: 0; color: var(--hds92-gold); }

        .hds92-geo-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: stretch;
            gap: 1rem;
            max-width: 56rem;
            margin: 0 auto 2.5rem;
        }
        .hds92-geo-tile {
            flex: 0 0 auto;
            width: 9.5rem;
            max-width: calc(50% - 0.5rem);
            text-align: center;
            padding: 1rem;
            border-radius: 0.75rem;
            border: 1px solid rgba(212, 175, 55, 0.25);
            background: linear-gradient(135deg, rgba(0, 51, 102, 0.05), rgba(212, 175, 55, 0.05));
            text-decoration: none;
            color: inherit;
            transition: border-color 0.2s, transform 0.2s;
        }
        .hds92-geo-tile:hover { border-color: var(--hds92-gold); transform: translateY(-2px); }
        .hds92-geo-tile--featured { border-color: var(--hds92-gold); background: linear-gradient(135deg, rgba(0, 51, 102, 0.08), rgba(212, 175, 55, 0.12)); }
        .hds92-geo-tile__name { font-size: 1.15rem; font-weight: 700; color: var(--hds92-blue); margin-bottom: 0.25rem; }
        .hds92-geo-tile__meta { font-size: 0.8rem; color: var(--grey); }
        .hds92-geo-banner {
            max-width: 48rem; margin: 0 auto;
            background: linear-gradient(90deg, var(--hds92-blue), var(--hds92-navy));
            color: var(--white);
            border-radius: 1.5rem;
            padding: 2rem;
        }
        .hds92-geo-banner__title {
            font-size: 1.75rem;
            text-align: center;
            margin-bottom: 1.5rem;
            font-family: 'Cormorant Garamond', serif;
        }
        .hds92-geo-banner__grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            text-align: center;
        }
        .hds92-geo-banner__item {
            flex: 0 0 auto;
            min-width: 8.5rem;
            text-decoration: none;
            color: var(--white);
        }
        .hds92-geo-banner__name { font-size: 1.15rem; font-weight: 700; }
        .hds92-geo-banner__meta { font-size: 0.8rem; opacity: 0.8; }

        .hds92-silo-footer {
            background: linear-gradient(180deg, var(--hds92-navy) 0%, #001a33 100%);
            color: rgba(255, 255, 255, 0.85);
            padding: 3rem 0 1.5rem;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .hds92-silo-footer__grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 768px) {
            .hds92-silo-footer__grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }
        }

        .hds92-silo-footer__title {
            font-family: var(--font-display, 'Cormorant Garamond', serif);
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--hds92-gold);
            margin: 0 0 1rem;
            letter-spacing: 0.02em;
        }

        .hds92-silo-footer__links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 0.5rem;
        }

        .hds92-silo-footer__links a {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.72);
            text-decoration: none;
            transition: color 0.2s;
        }

        .hds92-silo-footer__links a:hover {
            color: var(--hds92-gold);
        }

        .hds92-silo-footer__legal {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem 1.25rem;
            padding-top: 1.25rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.6875rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .hds92-silo-footer__legal a {
            color: inherit;
            text-decoration: none;
        }

        .hds92-silo-footer__legal a:hover {
            color: var(--hds92-gold);
        }

        /* Cartes prestataires DJ (#prestataires) */
        .hds92-section--prestataires {
            background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
            padding: 5rem 0;
        }

        .hds92-providers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .hds92-provider-card {
            background: var(--white);
            border-radius: 1rem;
            border: 1px solid rgba(0, 51, 102, 0.08);
            box-shadow: 0 4px 24px rgba(0, 31, 63, 0.06);
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .hds92-provider-card:hover {
            transform: translateY(-4px);
            border-color: rgba(212, 175, 55, 0.45);
            box-shadow: 0 12px 32px rgba(0, 51, 102, 0.12);
        }

        .hds92-provider-card__link {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .hds92-provider-card__photo-wrap {
            position: relative;
            background: linear-gradient(135deg, var(--hds92-navy) 0%, var(--hds92-blue) 100%);
            padding: 1.75rem 1.5rem 1.25rem;
            text-align: center;
        }

        .hds92-provider-card__photo {
            width: 7.5rem;
            height: 7.5rem;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--hds92-gold);
            margin: 0 auto;
            display: block;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }

        .hds92-provider-card__photo--placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.12);
            color: var(--hds92-gold);
            font-family: var(--font-display, 'Cormorant Garamond', serif);
            font-size: 2.5rem;
            font-weight: 700;
        }

        .hds92-provider-card__verified {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 1.75rem;
            height: 1.75rem;
            border-radius: 50%;
            background: var(--hds92-gold);
            color: var(--hds92-navy);
            font-size: 0.75rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .hds92-provider-card__body {
            padding: 1.25rem 1.5rem 1.5rem;
            text-align: center;
        }

        .hds92-provider-card__name {
            margin: 0 0 0.35rem;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--hds92-blue);
            font-family: var(--font-display, 'Cormorant Garamond', serif);
        }

        .hds92-provider-card__style {
            margin: 0 0 0.85rem;
            font-size: 0.875rem;
            color: var(--grey);
            line-height: 1.4;
        }

        .hds92-provider-card__rating {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.35rem 0.85rem;
            border-radius: 999px;
            background: rgba(212, 175, 55, 0.12);
            border: 1px solid rgba(212, 175, 55, 0.35);
        }

        .hds92-provider-card__stars {
            color: var(--hds92-gold);
            font-size: 0.85rem;
            letter-spacing: 0.05em;
        }

        .hds92-provider-card__rating-value {
            font-size: 0.8125rem;
            font-weight: 700;
            color: var(--hds92-navy);
        }

        .hds92-platform-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2.5rem;
        }
        .hds92-platform-item { text-align: center; }
        .hds92-platform-item__icon {
            width: 5rem; height: 5rem; margin: 0 auto 1rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            border-radius: 1rem;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.75rem;
        }
        .hds92-platform-item__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }
        .hds92-platform-item__text { color: rgba(255, 255, 255, 0.9); line-height: 1.65; font-size: 0.98rem; }

        .local-expertise { display: none; }

        .hds92-moments__intro {
            max-width: 52rem;
            margin: 0 auto 2.5rem;
            text-align: center;
            font-size: 1.05rem;
            line-height: 1.75;
            color: var(--grey);
        }
        .hds92-moments__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
        }
        .hds92-moment-card {
            background: var(--white);
            border-radius: 1.25rem;
            padding: 1.75rem;
            border: 1px solid rgba(0, 51, 102, 0.08);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            text-align: center;
        }
        .hds92-moment-card__emoji {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }
        .hds92-moment-card__title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--anthracite);
            margin-bottom: 0.5rem;
            font-family: 'Inter', sans-serif;
        }
        .hds92-moment-card__text {
            font-size: 0.9rem;
            color: var(--grey);
            line-height: 1.65;
        }

        .hds92-music-chips {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
            list-style: none;
            padding: 0;
            margin: 0;
            max-width: 56rem;
            margin-inline: auto;
        }
        .hds92-music-chip {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 0.2rem;
            padding: 0.65rem 1.15rem;
            border-radius: 999px;
            background: var(--white);
            border: 1px solid rgba(212, 175, 55, 0.45);
            box-shadow: 0 2px 8px rgba(0, 51, 102, 0.06);
        }
        .hds92-music-chip__label {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--hds92-navy);
        }
        .hds92-music-chip__context {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--hds92-gold);
            font-weight: 600;
        }

        .hds92-local-geo {
            padding: 2rem 0;
            background: rgba(0, 51, 102, 0.04);
            border-top: 1px solid rgba(0, 51, 102, 0.08);
            border-bottom: 1px solid rgba(0, 51, 102, 0.08);
        }
        .hds92-local-geo__title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--hds92-navy);
            margin-bottom: 0.5rem;
            text-align: center;
        }
        .hds92-local-geo__body {
            max-width: 48rem;
            margin: 0 auto;
            text-align: center;
            font-size: 0.95rem;
            line-height: 1.65;
            color: var(--grey);
        }
