/* Inter auto-hébergée (police variable — remplace Google Fonts) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/fonts/inter-var.woff2') format('woff2');
}

:root {
            --primary: #1e3a5f;
            --primary-light: #2c5282;
            --secondary: #ed8936;
            --accent: #dd6b20;
            --dark: #1a202c;
            --gray: #4a5568;
            --light: #f7fafc;
            --white: #ffffff;
            --gradient: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary);
            text-decoration: none;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--gray);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            transition: all 0.3s;
        }

        /* Bouton d'appel dans la barre de navigation */
        .nav-call {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            background: #c05621;
            color: var(--white);
            font-weight: 700;
            padding: 0.6rem 1.1rem;
            border-radius: 8px;
            text-decoration: none;
            white-space: nowrap;
            box-shadow: 0 4px 12px rgba(237, 137, 54, 0.35);
            transition: background 0.3s, transform 0.3s;
        }

        .nav-call:hover {
            background: #9c4221;
            transform: translateY(-1px);
        }

        @media (max-width: 640px) {
            .nav-call {
                padding: 0.5rem 0.8rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 420px) {
            .nav-call .nav-call-num { display: none; }
            .nav-call::after { content: "Appeler"; }
        }

        /* Menus déroulants (desktop) */
        .nav-dropdown { position: relative; }
        .nav-dropdown .chev { font-size: 0.7em; opacity: 0.7; }
        .dropdown-panel {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: var(--white);
            border-radius: 10px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            list-style: none;
            padding: 0.5rem 0;
            min-width: 250px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.25s ease;
            z-index: 1001;
        }
        .nav-dropdown:hover .dropdown-panel,
        .nav-dropdown:focus-within .dropdown-panel {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        .dropdown-panel a {
            display: block;
            padding: 0.55rem 1.25rem;
        }
        .dropdown-panel a::after { display: none; }
        .dropdown-panel a:hover { background: var(--light); }

        /* Panneau de navigation mobile */
        .nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(26, 32, 44, 0.55);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1100;
        }
        .nav-overlay.show { opacity: 1; visibility: visible; }
        .nav-drawer {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: min(340px, 88vw);
            background: var(--white);
            z-index: 1200;
            display: flex;
            flex-direction: column;
            transform: translateX(100%);
            visibility: hidden;
            transition: transform 0.3s ease, visibility 0.3s;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
        }
        .nav-drawer.open { transform: translateX(0); visibility: visible; }
        .drawer-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid var(--light);
            font-weight: 800;
            color: var(--primary);
        }
        .drawer-close {
            background: none;
            border: none;
            font-size: 1.3rem;
            color: var(--gray);
            cursor: pointer;
            padding: 0.25rem 0.5rem;
        }
        .drawer-body { flex: 1; overflow-y: auto; padding: 0.5rem 0; }
        .drawer-link,
        .drawer-group-btn {
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: space-between;
            padding: 0.9rem 1.5rem;
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            font-family: inherit;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
        }
        .drawer-group .chev { transition: transform 0.25s; color: var(--gray); }
        .drawer-group.open .chev { transform: rotate(180deg); }
        .drawer-group-list { display: none; background: var(--light); }
        .drawer-group.open .drawer-group-list { display: block; }
        .drawer-group-list a {
            display: block;
            padding: 0.75rem 1.5rem 0.75rem 2.25rem;
            color: var(--gray);
            text-decoration: none;
        }
        .drawer-group-list a:active { color: var(--primary); }
        .drawer-foot {
            padding: 1rem 1.5rem 1.5rem;
            border-top: 1px solid var(--light);
        }
        .btn-call-big {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            background: #c05621;
            color: var(--white);
            font-weight: 800;
            font-size: 1.05rem;
            padding: 0.9rem;
            border-radius: 10px;
            text-decoration: none;
            box-shadow: 0 6px 16px rgba(237, 137, 54, 0.4);
        }
        .drawer-devis {
            display: block;
            text-align: center;
            margin-top: 0.75rem;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
        }

        /* Bascule burger : dès 968px (tablettes comprises) */
        @media (max-width: 968px) {
            .nav-links { display: none; }
            .mobile-menu { display: flex; }
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            background: var(--gradient);
            color: var(--white);
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
            opacity: 0.1;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease;
        }

        .hero-content h1 span {
            color: var(--secondary);
        }

        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: var(--secondary);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(237, 137, 54, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(237, 137, 54, 0.6);
            background: var(--accent);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.3);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--white);
        }

        .hero-visual {
            position: relative;
            animation: fadeIn 1s ease 0.6s both;
        }

        .hero-image {
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
            display: block;
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Features Bar */
        .features-bar {
            background: var(--white);
            padding: 2rem;
            box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
            position: relative;
            z-index: 10;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--secondary);
        }

        .feature-text h2 {
            font-size: 1rem;
            color: var(--dark);
            margin-bottom: 0.25rem;
        }

        .feature-text p {
            font-size: 0.875rem;
            color: var(--gray);
        }

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

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .section-header p {
            color: var(--gray);
            font-size: 1.125rem;
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--light);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }

        .service-card:hover .service-icon {
            background: var(--secondary);
            color: var(--white);
            transform: rotate(5deg);
        }

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

        .service-card p {
            color: var(--gray);
            line-height: 1.6;
        }

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

        .service-list li {
            padding: 0.5rem 0;
            color: var(--gray);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .service-list li::before {
            content: '✓';
            color: var(--secondary);
            font-weight: bold;
        }

        /* Expertise Section */
        .expertise {
            padding: 6rem 2rem;
            background: var(--white);
        }

        .expertise-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem;
            align-items: center;
        }

        .expertise-content h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .expertise-content p {
            color: var(--gray);
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .expertise-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: var(--light);
            border-radius: 12px;
            transition: transform 0.3s;
        }

        .stat-item:hover {
            transform: scale(1.05);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary);
            display: block;
        }

        .stat-label {
            color: var(--gray);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .expertise-visual {
            position: relative;
        }

        .expertise-image {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .floating-card {
            position: absolute;
            background: var(--white);
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            animation: float 4s ease-in-out infinite;
        }

        .floating-card:nth-child(2) {
            top: -20px;
            right: -20px;
            animation-delay: 1s;
        }

        .floating-card:nth-child(3) {
            bottom: 20px;
            left: -30px;
            animation-delay: 2s;
        }

        /* Why Us Section */
        .why-us {
            padding: 6rem 2rem;
            background: var(--gradient);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .why-us::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }

        .why-us-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .why-us-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .why-us-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .why-us-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s;
        }

        .why-us-card:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }

        .why-us-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .why-us-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .why-us-card p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 2rem;
            background: var(--light);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .contact-info > p {
            color: var(--gray);
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

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

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .contact-details h3 {
            color: var(--dark);
            margin-bottom: 0.25rem;
        }

        .contact-details p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .contact-form {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--dark);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--secondary);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: var(--gradient);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(30, 58, 95, 0.3);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 3rem 2rem 1rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.6fr repeat(5, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-brand img {
            height: 60px;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: #a0aec0;
            line-height: 1.6;
        }

        .footer-links h4 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.3s;
        }

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

        .footer-bottom {
            border-top: 1px solid #2d3748;
            padding-top: 2rem;
            text-align: center;
            color: #a0aec0;
            font-size: 0.9rem;
        }

        /* Gallery Section */
        .gallery {
            padding: 6rem 2rem;
            background: var(--white);
        }

        .gallery-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            aspect-ratio: 4/3;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(30, 58, 95, 0.9), transparent);
            padding: 2rem 1.5rem 1.5rem;
            color: var(--white);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay h3 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .gallery-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

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

        @media (max-width: 640px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                justify-content: center;
            }

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

            .expertise-grid,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .features-container {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 640px) {


            .hero-content h1 {
                font-size: 2rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll animations */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

/* ===== Pages internes (zones, secteurs, services) — ex-CSS inline ===== */
        .page-hero {
            margin-top: 80px;
            background: var(--gradient);
            color: var(--white);
            padding: 4rem 2rem 3rem;
        }
        .page-hero-container { max-width: 1200px; margin: 0 auto; }
        .breadcrumb { font-size: 0.9rem; opacity: 0.8; margin-bottom: 1rem; }
        .breadcrumb a { color: var(--white); text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .page-hero h1 { font-size: 2.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
        .page-hero p { font-size: 1.15rem; opacity: 0.9; max-width: 800px; }
        .page-content { padding: 4rem 2rem; background: var(--white); }
        .page-content-container { max-width: 900px; margin: 0 auto; }
        .page-content h2 { font-size: 1.75rem; color: var(--primary); margin: 2.5rem 0 1rem; }
        .page-content h2:first-child { margin-top: 0; }
        .page-content p { color: var(--gray); margin-bottom: 1rem; }
        .page-content ul { margin: 0 0 1rem 1.25rem; color: var(--gray); }
        .page-content li { margin-bottom: 0.5rem; }
        .prestation-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin: 1.5rem 0; }
        .prestation-card { background: var(--light); border-radius: 12px; padding: 1.5rem; }
        .prestation-card h3 { color: var(--primary); font-size: 1.1rem; margin-bottom: 0.5rem; }
        .prestation-card p { font-size: 0.95rem; margin: 0; }
        .faq-item { border-bottom: 1px solid var(--light); padding: 1.25rem 0; }
        .faq-item h3 { color: var(--primary); font-size: 1.1rem; margin-bottom: 0.5rem; }
        .cta-band { background: var(--gradient); color: var(--white); padding: 3rem 2rem; text-align: center; }
        .cta-band h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
        .cta-band p { opacity: 0.9; margin-bottom: 1.5rem; }
        @media (max-width: 768px) {
            .page-hero h1 { font-size: 1.85rem; }
            .prestation-grid { grid-template-columns: 1fr; }
        }
    
        .page-img { display: block; width: 100%; max-width: 480px; height: auto; margin: 1.5rem auto; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
