:root {
            /* Palette inspirée du logo — ajuste ici si besoin */
            --accent-cyan: #b0efe8;
            /* cyan */
            --accent-navy: #0b3350;
            /* bleu foncé / marine */
            --accent-pink: #ff79b0;
            /* rose accent */
            --muted: #eef3f6;
            --card-bg: rgba(255, 255, 255, 0.85);
            --glass: rgba(255, 255, 255, 0.06);
        }
        
        html,
        body {
            height: 100%;
            background: linear-gradient(180deg, #f6fbfc 0%, #ecf6fa 45%, #e9f3f9 100%);
            color: var(--accent-navy);
            font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background: url('/static/img/bg-1.png') center/cover no-repeat fixed;
        }
        
        .maintenance-wrap {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem 1rem;
        }
        
        .card-maint {
            width: 100%;
            max-width: 980px;
            border: none;
            border-radius: 18px;
            box-shadow: 0 12px 40px rgba(8, 30, 48, 0.12);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 251, 253, 0.86));
        }
        
        @media(min-width: 900px) {
            .card-maint {
                grid-template-columns: 45% 55%;
            }
        }
        
        .left-side {
            position: relative;
            padding: 2.25rem;
            background: linear-gradient(180deg, var(--accent-cyan), rgba(126, 185, 197, 0.85));
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }
        
        .logo-wrap img {
            max-width: 160px;
            height: auto;
            filter: drop-shadow(0 6px 20px rgba(7, 17, 30, 0.25));
            transform: translateZ(0);
        }
        
        .slogan {
            font-weight: 700;
            letter-spacing: 0.6px;
            margin-top: 0.25rem;
            text-align: center;
            text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
        }
        
        .left-accent-bubbles {
            position: absolute;
            right: -40px;
            top: -40px;
            width: 240px;
            height: 240px;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
            border-radius: 50%;
            filter: blur(18px);
            opacity: 0.9;
        }
        
        .right-side {
            padding: 2.25rem;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(248, 250, 252, 0.75));
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            justify-content: center;
        }
        
        h1.maint-title {
            font-size: 1.6rem;
            color: var(--accent-navy);
            margin-bottom: 0;
        }
        
        p.lead {
            margin-bottom: 0.5rem;
            color: #304f63;
        }
        
        .services-list {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }
        
        .chip {
            background: var(--muted);
            color: var(--accent-navy);
            padding: .35rem .6rem;
            border-radius: 999px;
            font-weight: 600;
            font-size: .86rem;
            box-shadow: 0 2px 6px rgba(11, 51, 80, 0.04);
        }
        
        .contact-row {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .contact-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: .65rem .9rem;
            display: flex;
            gap: .7rem;
            align-items: center;
            box-shadow: 0 6px 18px rgba(11, 51, 80, 0.06);
            min-width: 200px;
        }
        
        .contact-card i {
            font-size: 1.2rem;
            color: var(--accent-navy);
        }
        
        .btn-cta {
            background: linear-gradient(90deg, var(--accent-navy), #0f5a7d);
            color: white;
            padding: .65rem 1.0rem;
            border-radius: 10px;
            font-weight: 700;
            border: none;
            box-shadow: 0 10px 30px rgba(11, 51, 80, 0.12);
        }
        
        .btn-cta:hover {
            transform: translateY(-2px);
        }
        
        .meta {
            color: #607b8b;
            font-size: .9rem;
        }
        /* small decorative footer */
        
        .maint-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            margin-top: .75rem;
            flex-wrap: wrap;
        }
        
        .countdown {
            font-weight: 700;
            color: var(--accent-navy);
            font-size: 1.05rem;
        }
        /* subtle animated orbit icon */
        
        .orbit {
            position: absolute;
            right: -60px;
            bottom: -50px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.12);
            transform: rotate(15deg);
            animation: slow-rotate 12s linear infinite;
            opacity: 0.6;
        }
        
        @keyframes slow-rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        /* small responsive tweaks */
        
        @media(max-width: 575px) {
            .logo-wrap img {
                max-width: 140px;
            }
            .slogan {
                font-size: .95rem;
            }
        }