/* Shared premium page styles */

/* ===== mpgci/presentation.php ===== */
/* ──────────────────────────────────────────────
   PAGE PRESENTATION — styles spécifiques
────────────────────────────────────────────── */

/* HERO */
.pres-hero {
    position: relative;
        min-height: clamp(160px, 22vw, 280px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-bottom: 0;
}
.pres-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('img/presentation.jpg');
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.04);
    transition: transform 6s ease;
}
.pres-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(3,15,39,0.82) 0%,
        rgba(3,15,39,0.55) 45%,
        rgba(3,15,39,0.72) 100%);
}
.pres-hero__content {
    position: relative;
    z-index: 2;
        padding: 24px 24px 28px;
    max-width: 820px;
}
.pres-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fdbe33;
    margin-bottom: 8px;
}
.pres-hero__eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: #fdbe33;
    border-radius: 999px;
}
.pres-hero__title {
    font-size: clamp(20px, 3.2vw, 36px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 10px;
}
.pres-hero__title span {
    color: #fdbe33;
}
.pres-hero__sub {
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    max-width: 480px;
    line-height: 1.65;
    margin: 0;
}
.pres-hero__breadcrumb {
    position: absolute;
    top: 24px;
    right: 28px;
    z-index: 2;
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.08em;
}
.pres-hero__breadcrumb a {
    color: #fdbe33;
    text-decoration: none;
}
.pres-hero__breadcrumb a:hover { text-decoration: underline; }

/* Bande de stats */
.pres-stats {
    background: linear-gradient(90deg, #030f27 0%, #051836 50%, #030f27 100%);
    border-top: 3px solid #fdbe33;
    padding: 0;
}
.pres-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.pres-stat {
    padding: 30px 20px 26px;
    text-align: center;
    border-right: 1px solid rgba(253,190,51,0.12);
    transition: background 0.25s ease;
}
.pres-stat:last-child { border-right: none; }
.pres-stat:hover { background: rgba(253,190,51,0.06); }
.pres-stat__num {
    font-size: 42px;
    font-weight: 900;
    color: #fdbe33;
    line-height: 1;
    letter-spacing: -0.02em;
}
.pres-stat__suffix {
    font-size: 22px;
    color: rgba(253,190,51,0.7);
}
.pres-stat__label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.58);
    margin-top: 6px;
}

/* Section histoire */
.pres-story {
    padding: 88px 0 72px;
    background: #f8f9fc;
}
.pres-story__img-wrap {
    position: relative;
}
.pres-story__img-wrap::before {
    content: '';
    position: absolute;
    inset: -14px -14px -18px -18px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(253,190,51,0.13), rgba(3,15,39,0.04));
    z-index: 0;
}
.pres-story__img-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 24px 56px rgba(3,15,39,0.16);
    object-fit: cover;
}
.pres-story__badge {
    position: absolute;
    bottom: -18px;
    right: -10px;
    z-index: 2;
    background: linear-gradient(135deg, #fdbe33, #ffda72);
    color: #030f27;
    border-radius: 16px;
    padding: 14px 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.35;
    box-shadow: 0 12px 30px rgba(253,190,51,0.45);
    text-align: center;
}
.pres-story__badge strong {
    display: block;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.02em;
}
.pres-story__eyebrow {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fdbe33;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pres-story__eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #fdbe33;
    border-radius: 999px;
}
.pres-story__title {
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 800;
    color: #030f27;
    line-height: 1.15;
    margin-bottom: 20px;
}
.pres-story__title span { color: #fdbe33; }
.pres-story__text {
    font-size: 14.5px;
    color: #3d4a5c;
    line-height: 1.9;
    margin-bottom: 14px;
}
.pres-story__text strong { color: #030f27; font-weight: 700; }

/* Pilliers / valeurs */
.pres-pillars {
    padding: 80px 0;
    background: #ffffff;
}
.pres-pillars__title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    color: #030f27;
    text-align: center;
    margin-bottom: 8px;
}
.pres-pillars__sub {
    text-align: center;
    color: #52647a;
    font-size: 14.5px;
    margin-bottom: 52px;
}
.pres-pillar {
    border-radius: 22px;
    background: linear-gradient(155deg, #fafbfe, #f4f5fa);
    border: 1px solid rgba(3,15,39,0.07);
    box-shadow: 0 12px 34px rgba(3,15,39,0.07);
    padding: 36px 28px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}
.pres-pillar::before {
    content: '';
    position: absolute;
    top: 0; left: 16px; right: 16px;
    height: 3px;
    background: linear-gradient(90deg, #fdbe33, #ffe896);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity 0.32s ease;
}
.pres-pillar:hover::before { opacity: 1; }
.pres-pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 54px rgba(3,15,39,0.13);
    border-color: rgba(253,190,51,0.28);
}
.pres-pillar__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(253,190,51,0.15), rgba(253,190,51,0.07));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 26px;
    color: #fdbe33;
    border: 1px solid rgba(253,190,51,0.22);
    box-shadow: 0 6px 16px rgba(253,190,51,0.15);
}
.pres-pillar__title {
    font-size: 17px;
    font-weight: 700;
    color: #030f27;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}
.pres-pillar__text {
    font-size: 13.5px;
    color: #52647a;
    line-height: 1.75;
    margin: 0;
}

/* Section marques partenaires */
.pres-brands {
    padding: 72px 0 80px;
    background: linear-gradient(170deg, #030f27 0%, #041630 55%, #020b1e 100%);
    position: relative;
    overflow: hidden;
}
.pres-brands::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fdbe33, transparent);
}
.pres-brands__label {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fdbe33;
    text-align: center;
    margin-bottom: 12px;
}
.pres-brands__title {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 10px;
}
.pres-brands__sub {
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    margin-bottom: 52px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.pres-brands__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}
.pres-brand-logo {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(253,190,51,0.14);
    border-radius: 14px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 64px;
    transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}
.pres-brand-logo:hover {
    background: rgba(253,190,51,0.1);
    border-color: rgba(253,190,51,0.5);
    transform: translateY(-4px);
}
.pres-brand-logo img {
    max-height: 46px;
    max-width: 110px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.25s ease, filter 0.25s ease;
}
.pres-brand-logo:hover img {
    opacity: 1;
    filter: brightness(1) saturate(1.2);
}
.pres-brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(253,190,51,0.18);
    border-radius: 999px;
    padding: 9px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    transition: all 0.25s ease;
}
.pres-brand-badge:hover {
    background: rgba(253,190,51,0.12);
    border-color: rgba(253,190,51,0.5);
    color: #fdbe33;
}
.pres-brands__note {
    text-align: center;
    color: rgba(255,255,255,0.38);
    font-size: 11.5px;
    max-width: 480px;
    margin: 28px auto 0;
    line-height: 1.7;
}

/* CTA */
.pres-cta {
    padding: 72px 0;
    background: linear-gradient(135deg, #fafbfe, #f3f4fa);
    text-align: center;
}
.pres-cta__title {
    font-size: clamp(22px, 3.2vw, 34px);
    font-weight: 800;
    color: #030f27;
    margin-bottom: 14px;
}
.pres-cta__sub {
    font-size: 15px;
    color: #52647a;
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.75;
}
.pres-cta__btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.pres-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #fdbe33, #ffd15e);
    color: #030f27 !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    padding: 13px 30px;
    border-radius: 999px;
    border: none;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(253,190,51,0.38);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.pres-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(253,190,51,0.52);
    background: linear-gradient(90deg, #ffd15e, #fdbe33);
    text-decoration: none;
    color: #030f27 !important;
}
.pres-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #030f27 !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    padding: 12px 30px;
    border-radius: 999px;
    border: 2px solid rgba(3,15,39,0.2);
    text-decoration: none;
    transition: all 0.25s ease;
}
.pres-btn-outline:hover {
    background: #030f27;
    color: #fdbe33 !important;
    border-color: #030f27;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991.98px) {
    .pres-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .pres-stat:nth-child(2) { border-right: none; }
    .pres-stat { padding: 22px 12px 18px; }
    .pres-stat__num { font-size: 32px; }
    .pres-story__badge { bottom: -14px; right: 4px; padding: 10px 14px; }
    .pres-story__badge strong { font-size: 20px; }
}
@media (max-width: 575.98px) {
    .pres-hero__content { padding: 20px 16px 24px; }
    .pres-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .pres-stats { border-top: 2px solid #fdbe33; }
    .pres-cta__btns { flex-direction: column; align-items: center; }
}

/* ===== mpgci/atelier.php ===== */
.atelier-page {
            background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 38%, #f7f8fc 100%);
        }

        .atelier-hero {
            position: relative;
            overflow: hidden;
            min-height: clamp(260px, 34vw, 420px);
            background:
                linear-gradient(135deg, rgba(253, 190, 51, 0.96), rgba(255, 215, 107, 0.94)),
                url('img/reparation et maintenance (1).jpg') center/cover no-repeat;
            border-bottom: 3px solid rgba(3, 15, 39, 0.16);
        }

        .atelier-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at top right, rgba(255, 255, 255, 0.34), transparent 30%),
                radial-gradient(circle at bottom left, rgba(253, 190, 51, 0.28), transparent 28%);
            pointer-events: none;
        }

        .atelier-hero__content {
            position: relative;
            z-index: 2;
            padding: 58px 0 54px;
        }

        .atelier-hero__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: #03112f;
            margin-bottom: 16px;
        }

        .atelier-hero__eyebrow::before {
            content: '';
            display: inline-block;
            width: 30px;
            height: 2px;
            border-radius: 999px;
            background: #03112f;
        }

        .atelier-hero h1 {
            font-size: clamp(28px, 5vw, 58px);
            font-weight: 800;
            line-height: 1.06;
            letter-spacing: -0.02em;
            color: #03112f;
            margin: 0 0 18px;
            max-width: 760px;
        }

        .atelier-hero h1 span {
            color: #7a4f00;
        }

        .atelier-hero p {
            max-width: 620px;
            font-size: 15px;
            line-height: 1.8;
            color: rgba(3, 15, 39, 0.86);
            margin: 0;
        }

        .atelier-summary {
            position: relative;
            margin-top: -46px;
            z-index: 3;
        }

        .atelier-summary__panel {
            background: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(249, 250, 255, 0.98));
            border: 1px solid rgba(253, 190, 51, 0.22);
            border-radius: 26px;
            box-shadow: 0 24px 60px rgba(3, 15, 39, 0.12);
            padding: 24px;
        }

        .atelier-summary__stats {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
        }

        .atelier-stat {
            padding: 18px 16px;
            border-radius: 18px;
            background: linear-gradient(145deg, #ffffff, #f5f6fb);
            border: 1px solid rgba(3, 15, 39, 0.06);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
            text-align: center;
        }

        .atelier-stat strong {
            display: block;
            font-size: 30px;
            line-height: 1;
            font-weight: 900;
            color: #030f27;
            margin-bottom: 6px;
        }

        .atelier-stat span {
            display: block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #6a7688;
        }

        .atelier-intro {
            padding: 82px 0 24px;
        }

        .atelier-intro__grid {
            display: grid;
            grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
            gap: 34px;
            align-items: center;
        }

        .atelier-kicker {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: #fdbe33;
            margin-bottom: 14px;
        }

        .atelier-title {
            font-size: clamp(26px, 3.8vw, 44px);
            line-height: 1.12;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #030f27;
            margin-bottom: 20px;
        }

        .atelier-title span {
            color: #fdbe33;
        }

        .atelier-copy {
            font-size: 14.5px;
            line-height: 1.9;
            color: #49576b;
            margin-bottom: 14px;
        }

        .atelier-highlight {
            position: relative;
            border-radius: 28px;
            overflow: hidden;
            min-height: 360px;
            box-shadow: 0 26px 56px rgba(3, 15, 39, 0.16);
        }

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

        .atelier-highlight::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(3, 15, 39, 0.08), rgba(3, 15, 39, 0.68));
        }

        .atelier-highlight__card {
            position: absolute;
            left: 22px;
            right: 22px;
            bottom: 22px;
            z-index: 2;
            padding: 20px 20px 18px;
            border-radius: 18px;
            background: rgba(3, 15, 39, 0.72);
            border: 1px solid rgba(253, 190, 51, 0.28);
            backdrop-filter: blur(8px);
        }

        .atelier-highlight__card h3 {
            font-size: 18px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .atelier-highlight__card p {
            font-size: 13px;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.76);
            margin: 0;
        }

        .atelier-locations {
            padding: 28px 0 88px;
        }

        .atelier-locations__head {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 44px;
        }

        .atelier-locations__head p {
            font-size: 14.5px;
            line-height: 1.8;
            color: #5b687a;
            margin: 14px 0 0;
        }

        .atelier-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 28px;
        }

        .atelier-card {
            position: relative;
            border-radius: 26px;
            overflow: hidden;
            background: linear-gradient(150deg, #ffffff, #f6f7fb);
            border: 1px solid rgba(3, 15, 39, 0.07);
            box-shadow: 0 18px 44px rgba(3, 15, 39, 0.1);
            transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
        }

        .atelier-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #fdbe33, #ffe08a);
        }

        .atelier-card:hover {
            transform: translateY(-8px);
            border-color: rgba(253, 190, 51, 0.26);
            box-shadow: 0 28px 60px rgba(3, 15, 39, 0.16);
        }

        .atelier-card__top {
            padding: 28px 28px 18px;
        }

        .atelier-card__badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 14px;
            border-radius: 999px;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            background: rgba(253, 190, 51, 0.14);
            color: #a36f00;
            margin-bottom: 16px;
        }

        .atelier-card h3 {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #030f27;
            margin-bottom: 10px;
        }

        .atelier-card__address {
            font-size: 14px;
            line-height: 1.8;
            color: #4f5d71;
            margin-bottom: 18px;
        }

        .atelier-card__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 18px;
        }

        .atelier-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 14px;
            border-radius: 999px;
            background: #ffffff;
            border: 1px solid rgba(3, 15, 39, 0.08);
            box-shadow: 0 8px 18px rgba(3, 15, 39, 0.06);
            font-size: 12px;
            font-weight: 700;
            color: #030f27;
        }

        .atelier-chip i {
            color: #fdbe33;
        }

        .atelier-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .atelier-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 20px;
            border-radius: 999px;
            text-decoration: none;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }

        .atelier-btn:hover {
            text-decoration: none;
            transform: translateY(-2px);
        }

        .atelier-btn--primary {
            background: linear-gradient(90deg, #fdbe33, #ffd96d);
            color: #030f27;
            box-shadow: 0 12px 26px rgba(253, 190, 51, 0.32);
        }

        .atelier-btn--primary:hover {
            color: #030f27;
            box-shadow: 0 16px 32px rgba(253, 190, 51, 0.42);
        }

        .atelier-btn--ghost {
            background: rgba(3, 15, 39, 0.04);
            border: 1px solid rgba(3, 15, 39, 0.12);
            color: #030f27;
        }

        .atelier-btn--ghost:hover {
            background: #030f27;
            border-color: #030f27;
            color: #fdbe33;
        }

        .atelier-map {
            padding: 0 18px 18px;
        }

        .atelier-map__frame {
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(253, 190, 51, 0.16);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        .atelier-map iframe {
            display: block;
            width: 100%;
            height: 320px;
            border: 0;
        }

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

        @media (max-width: 991.98px) {
            .atelier-summary__stats {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .atelier-intro__grid {
                grid-template-columns: 1fr;
            }

            .atelier-highlight {
                min-height: 300px;
            }
        }

        @media (max-width: 767.98px) {
            .atelier-hero__content {
                padding: 46px 0 42px;
            }

            .atelier-summary {
                margin-top: -28px;
            }

            .atelier-summary__panel {
                padding: 16px;
                border-radius: 20px;
            }

            .atelier-summary__stats {
                gap: 12px;
            }

            .atelier-card__top {
                padding: 22px 20px 16px;
            }

            .atelier-map {
                padding: 0 14px 14px;
            }

            .atelier-card h3 {
                font-size: 23px;
            }

            .atelier-map iframe {
                height: 260px;
            }
        }

        @media (max-width: 575.98px) {
            .atelier-hero {
                min-height: 220px;
            }

            .atelier-hero h1 {
                font-size: 31px;
            }

            .atelier-hero p,
            .atelier-locations__head p,
            .atelier-copy {
                font-size: 13.5px;
            }

            .atelier-stat strong {
                font-size: 24px;
            }

            .atelier-actions {
                flex-direction: column;
            }

            .atelier-btn {
                width: 100%;
            }
        }

/* ===== mpgci/contact.php ===== */
.contact-page {
            background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 36%, #f5f7fb 100%);
        }

        .contact-hero {
            position: relative;
            overflow: hidden;
            min-height: clamp(250px, 33vw, 420px);
            background:
                linear-gradient(135deg, rgba(3, 15, 39, 0.95), rgba(7, 28, 65, 0.78)),
                url('img/mpg/image commerciale mpg.jpg') center/cover no-repeat;
            border-bottom: 3px solid #fdbe33;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at top right, rgba(253, 190, 51, 0.18), transparent 28%),
                radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 28%);
            pointer-events: none;
        }

        .contact-hero__content {
            position: relative;
            z-index: 2;
            padding: 58px 0 54px;
        }

        .contact-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: #fdbe33;
            margin-bottom: 16px;
        }

        .contact-kicker::before {
            content: '';
            width: 30px;
            height: 2px;
            border-radius: 999px;
            background: #fdbe33;
        }

        .contact-hero h1 {
            font-size: clamp(28px, 5vw, 56px);
            line-height: 1.06;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #ffffff;
            margin: 0 0 18px;
            max-width: 760px;
        }

        .contact-hero h1 span {
            color: #fdbe33;
        }

        .contact-hero p {
            max-width: 620px;
            font-size: 15px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.82);
            margin: 0;
        }

        .contact-actions {
            position: relative;
            z-index: 3;
            margin-top: -42px;
        }

        .contact-actions__panel {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 253, 0.98));
            border: 1px solid rgba(253, 190, 51, 0.18);
            border-radius: 28px;
            box-shadow: 0 24px 60px rgba(3, 15, 39, 0.12);
            padding: 18px;
        }

        .contact-actions__grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .contact-action-card {
            display: block;
            text-decoration: none;
            padding: 20px 18px;
            border-radius: 20px;
            background: linear-gradient(145deg, #ffffff, #f5f6fb);
            border: 1px solid rgba(3, 15, 39, 0.06);
            box-shadow: 0 12px 28px rgba(3, 15, 39, 0.06);
            transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
        }

        .contact-action-card:hover {
            text-decoration: none;
            transform: translateY(-6px);
            border-color: rgba(253, 190, 51, 0.26);
            box-shadow: 0 24px 44px rgba(3, 15, 39, 0.12);
        }

        .contact-action-card__icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #fdbe33;
            background: rgba(253, 190, 51, 0.12);
            border: 1px solid rgba(253, 190, 51, 0.2);
            margin-bottom: 16px;
        }

        .contact-action-card strong {
            display: block;
            font-size: 15px;
            line-height: 1.35;
            color: #030f27;
            margin-bottom: 6px;
            font-weight: 800;
        }

        .contact-action-card span {
            display: block;
            font-size: 12px;
            line-height: 1.7;
            color: #667487;
            font-weight: 600;
        }

        .contact-main {
            padding: 82px 0 30px;
        }

        .contact-main__grid {
            display: grid;
            grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
            gap: 34px;
            align-items: start;
        }

        .contact-title {
            font-size: clamp(26px, 3.8vw, 42px);
            line-height: 1.12;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #030f27;
            margin-bottom: 18px;
        }

        .contact-title span {
            color: #fdbe33;
        }

        .contact-copy {
            font-size: 14.5px;
            line-height: 1.9;
            color: #4f5d71;
            margin-bottom: 14px;
        }

        .contact-info-box {
            border-radius: 28px;
            background: linear-gradient(150deg, #ffffff, #f7f8fc);
            border: 1px solid rgba(3, 15, 39, 0.07);
            box-shadow: 0 20px 50px rgba(3, 15, 39, 0.1);
            overflow: hidden;
        }

        .contact-info-box__head {
            padding: 28px 28px 18px;
            background: linear-gradient(135deg, #030f27, #07244d);
            color: #ffffff;
            position: relative;
        }

        .contact-info-box__head::after {
            content: '';
            position: absolute;
            left: 28px;
            right: 28px;
            bottom: 0;
            height: 2px;
            background: linear-gradient(90deg, #fdbe33, transparent);
        }

        .contact-info-box__head h3 {
            font-size: 22px;
            font-weight: 800;
            margin: 0 0 8px;
        }

        .contact-info-box__head p {
            margin: 0;
            color: rgba(255, 255, 255, 0.74);
            font-size: 13px;
            line-height: 1.7;
        }

        .contact-info-box__body {
            padding: 22px;
        }

        .contact-detail {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            padding: 16px 6px;
            border-bottom: 1px solid rgba(3, 15, 39, 0.06);
        }

        .contact-detail:last-child {
            border-bottom: 0;
            padding-bottom: 6px;
        }

        .contact-detail__icon {
            width: 46px;
            height: 46px;
            flex: 0 0 46px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #fdbe33;
            background: rgba(253, 190, 51, 0.12);
            border: 1px solid rgba(253, 190, 51, 0.2);
        }

        .contact-detail__content strong {
            display: block;
            color: #030f27;
            font-size: 14px;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .contact-detail__content p,
        .contact-detail__content a {
            margin: 0;
            color: #617084;
            font-size: 13px;
            line-height: 1.8;
            text-decoration: none;
        }

        .contact-detail__content a:hover {
            color: #030f27;
            text-decoration: none;
        }

        .contact-visual {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 26px 56px rgba(3, 15, 39, 0.14);
            min-height: 100%;
            background: #030f27;
        }

        .contact-visual img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        .contact-visual::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(3, 15, 39, 0.08), rgba(3, 15, 39, 0.78));
        }

        .contact-visual__card {
            position: absolute;
            left: 22px;
            right: 22px;
            bottom: 22px;
            z-index: 2;
            padding: 22px;
            border-radius: 18px;
            background: rgba(3, 15, 39, 0.74);
            border: 1px solid rgba(253, 190, 51, 0.24);
            backdrop-filter: blur(8px);
        }

        .contact-visual__card h3 {
            font-size: 20px;
            line-height: 1.25;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .contact-visual__card p {
            margin: 0;
            font-size: 13px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.78);
        }

        .contact-zones {
            padding: 22px 0 84px;
        }

        .contact-zones__panel {
            border-radius: 30px;
            background: linear-gradient(160deg, #030f27, #06183f 55%, #0a224d);
            padding: 34px;
            box-shadow: 0 30px 70px rgba(3, 15, 39, 0.2);
            position: relative;
            overflow: hidden;
        }

        .contact-zones__panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #fdbe33, transparent);
        }

        .contact-zones__head {
            max-width: 720px;
            margin-bottom: 26px;
            position: relative;
            z-index: 1;
        }

        .contact-zones__head h2 {
            font-size: clamp(24px, 3.4vw, 38px);
            line-height: 1.12;
            font-weight: 800;
            color: #ffffff;
            margin: 10px 0 12px;
        }

        .contact-zones__head p {
            color: rgba(255, 255, 255, 0.66);
            font-size: 14px;
            line-height: 1.8;
            margin: 0;
        }

        .contact-zone-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
            position: relative;
            z-index: 1;
        }

        .contact-zone-card {
            border-radius: 20px;
            padding: 22px 18px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(253, 190, 51, 0.12);
            transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
        }

        .contact-zone-card:hover {
            transform: translateY(-6px);
            background: rgba(253, 190, 51, 0.08);
            border-color: rgba(253, 190, 51, 0.28);
        }

        .contact-zone-card strong {
            display: block;
            color: #ffffff;
            font-size: 17px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .contact-zone-card p {
            margin: 0;
            color: rgba(255, 255, 255, 0.68);
            font-size: 12.5px;
            line-height: 1.8;
        }

        @media (max-width: 1199.98px) {
            .contact-actions__grid,
            .contact-zone-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 991.98px) {
            .contact-main__grid {
                grid-template-columns: 1fr;
            }

            .contact-visual {
                min-height: 380px;
            }
        }

        @media (max-width: 767.98px) {
            .contact-hero__content {
                padding: 46px 0 40px;
            }

            .contact-actions {
                margin-top: -24px;
            }

            .contact-actions__panel,
            .contact-zones__panel {
                border-radius: 22px;
                padding: 16px;
            }

            .contact-main {
                padding-top: 62px;
            }

            .contact-info-box__head {
                padding: 22px 20px 16px;
            }

            .contact-info-box__body {
                padding: 16px;
            }
        }

        @media (max-width: 575.98px) {
            .contact-actions__grid,
            .contact-zone-grid {
                grid-template-columns: 1fr;
            }

            .contact-hero {
                min-height: 220px;
            }

            .contact-hero h1 {
                font-size: 31px;
            }

            .contact-hero p,
            .contact-copy,
            .contact-zones__head p {
                font-size: 13.5px;
            }

            .contact-visual {
                min-height: 300px;
            }
        }

/* ===== mpgci/composant.php ===== */
.composant-page {
			background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 34%, #f4f6fb 100%);
		}

		.composant-hero {
			position: relative;
			overflow: hidden;
			min-height: clamp(260px, 34vw, 430px);
			background:
				linear-gradient(135deg, #fdbe33, #ffd76b),
				url('img/mpg/composant/Distributeurs.jpg') center/cover no-repeat;
			border-bottom: 3px solid transparent;
		}

		.composant-hero::before {
			content: '';
			position: absolute;
			inset: 0;
			background:
				radial-gradient(circle at top right, rgba(255, 255, 255, 0.34), transparent 30%),
				radial-gradient(circle at bottom left, rgba(253, 190, 51, 0.28), transparent 28%);
			pointer-events: none;
		}

		.composant-hero__content {
			position: relative;
			z-index: 2;
			padding: 60px 0 56px;
		}

		.composant-kicker {
			display: inline-flex;
			align-items: center;
			gap: 10px;
			font-size: 11px;
			font-weight: 800;
			letter-spacing: 0.22em;
			text-transform: uppercase;
			color: #03112f;
			margin-bottom: 16px;
		}

		.composant-kicker::before {
			content: '';
			width: 30px;
			height: 2px;
			border-radius: 999px;
			background: #03112f;
		}

		.composant-hero h1 {
			font-size: clamp(28px, 5vw, 58px);
			line-height: 1.05;
			font-weight: 800;
			letter-spacing: -0.02em;
			color: #03112f;
			max-width: 760px;
			margin: 0 0 18px;
		}

		.composant-hero h1 span {
			color: #7a4f00;
		}

		.composant-hero p {
			max-width: 620px;
			font-size: 15px;
			line-height: 1.8;
			color: rgba(3, 15, 39, 0.86);
			margin: 0;
		}

		.composant-stats {
			position: relative;
			margin-top: -42px;
			z-index: 3;
		}

		.composant-stats__panel {
			padding: 18px;
			border-radius: 28px;
			background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 253, 0.98));
			border: 1px solid rgba(253, 190, 51, 0.18);
			box-shadow: 0 24px 60px rgba(3, 15, 39, 0.12);
		}

		.composant-stats__grid {
			display: grid;
			grid-template-columns: repeat(4, minmax(0, 1fr));
			gap: 14px;
		}

		.composant-stat {
			padding: 18px 16px;
			text-align: center;
			border-radius: 18px;
			background: linear-gradient(145deg, #ffffff, #f5f6fb);
			border: 1px solid rgba(3, 15, 39, 0.06);
		}

		.composant-stat strong {
			display: block;
			font-size: 30px;
			line-height: 1;
			font-weight: 900;
			color: #030f27;
			margin-bottom: 6px;
		}

		.composant-stat span {
			display: block;
			font-size: 11px;
			font-weight: 700;
			letter-spacing: 0.12em;
			text-transform: uppercase;
			color: #68768a;
		}

		.composant-intro {
			padding: 80px 0 34px;
		}

		.composant-intro__grid {
			display: grid;
			grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
			gap: 34px;
			align-items: center;
		}

		.composant-title {
			font-size: clamp(26px, 3.8vw, 44px);
			line-height: 1.12;
			font-weight: 800;
			letter-spacing: -0.02em;
			color: #030f27;
			margin-bottom: 18px;
		}

		.composant-title span {
			color: #fdbe33;
		}

		.composant-copy {
			font-size: 14.5px;
			line-height: 1.9;
			color: #4e5c70;
			margin-bottom: 14px;
		}

		.composant-highlight {
			position: relative;
			min-height: 360px;
			border-radius: 30px;
			overflow: hidden;
			box-shadow: 0 26px 56px rgba(3, 15, 39, 0.14);
		}

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

		.composant-highlight::after {
			content: '';
			position: absolute;
			inset: 0;
			background: linear-gradient(180deg, rgba(3, 15, 39, 0.08), rgba(3, 15, 39, 0.78));
		}

		.composant-highlight__card {
			position: absolute;
			left: 22px;
			right: 22px;
			bottom: 22px;
			z-index: 2;
			padding: 22px;
			border-radius: 18px;
			background: rgba(3, 15, 39, 0.74);
			border: 1px solid rgba(253, 190, 51, 0.24);
			backdrop-filter: blur(8px);
		}

		.composant-highlight__card h3 {
			font-size: 20px;
			font-weight: 800;
			color: #ffffff;
			margin-bottom: 10px;
		}

		.composant-highlight__card p {
			margin: 0;
			font-size: 13px;
			line-height: 1.8;
			color: rgba(255, 255, 255, 0.76);
		}

		.composant-catalog {
			padding: 18px 0 88px;
		}

		.composant-catalog__head {
			text-align: center;
			max-width: 760px;
			margin: 0 auto 40px;
		}

		.composant-catalog__head p {
			margin: 14px 0 0;
			font-size: 14.5px;
			line-height: 1.8;
			color: #5b687b;
		}

		.composant-grid {
			display: grid;
			grid-template-columns: repeat(3, minmax(0, 1fr));
			gap: 28px;
		}

		.composant-card {
			position: relative;
			border-radius: 26px;
			overflow: hidden;
			background: linear-gradient(150deg, #ffffff, #f6f7fb);
			border: 1px solid rgba(3, 15, 39, 0.07);
			box-shadow: 0 18px 44px rgba(3, 15, 39, 0.1);
			transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
		}

		.composant-card::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			height: 4px;
			background: linear-gradient(90deg, #fdbe33, #ffe08a);
			z-index: 2;
		}

		.composant-card:hover {
			transform: translateY(-8px);
			border-color: rgba(253, 190, 51, 0.24);
			box-shadow: 0 28px 58px rgba(3, 15, 39, 0.16);
		}

		.composant-card__media {
			position: relative;
			height: 230px;
			overflow: hidden;
		}

		.composant-card__media img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.5s ease;
		}

		.composant-card:hover .composant-card__media img {
			transform: scale(1.07);
		}

		.composant-card__overlay {
			position: absolute;
			inset: auto 0 0 0;
			padding: 18px 18px 16px;
			background: linear-gradient(180deg, rgba(3, 15, 39, 0.04), rgba(3, 15, 39, 0.78));
		}

		.composant-card__tag {
			display: inline-flex;
			padding: 7px 12px;
			border-radius: 999px;
			background: rgba(253, 190, 51, 0.16);
			border: 1px solid rgba(253, 190, 51, 0.26);
			font-size: 10px;
			font-weight: 800;
			letter-spacing: 0.12em;
			text-transform: uppercase;
			color: #ffffff;
		}

		.composant-card__body {
			padding: 22px 22px 24px;
		}

		.composant-card h3 {
			font-size: 22px;
			font-weight: 800;
			line-height: 1.18;
			letter-spacing: -0.02em;
			color: #030f27;
			margin-bottom: 14px;
		}

		.composant-card ul {
			padding-left: 18px;
			margin: 0 0 18px;
		}

		.composant-card li {
			font-size: 13px;
			line-height: 1.8;
			color: #5a687b;
			margin-bottom: 4px;
		}

		.composant-card__actions {
			display: flex;
			gap: 10px;
			flex-wrap: wrap;
		}

		.composant-btn {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
			padding: 11px 16px;
			border-radius: 999px;
			font-size: 11px;
			font-weight: 800;
			letter-spacing: 0.08em;
			text-transform: uppercase;
			text-decoration: none;
			transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
		}

		.composant-btn:hover {
			text-decoration: none;
			transform: translateY(-2px);
		}

		.composant-btn--primary {
			background: linear-gradient(90deg, #fdbe33, #ffd96d);
			color: #030f27;
			box-shadow: 0 10px 24px rgba(253, 190, 51, 0.32);
		}

		.composant-btn--primary:hover {
			color: #030f27;
		}

		.composant-btn--ghost {
			background: rgba(3, 15, 39, 0.04);
			border: 1px solid rgba(3, 15, 39, 0.12);
			color: #030f27;
		}

		.composant-btn--ghost:hover {
			background: #030f27;
			border-color: #030f27;
			color: #fdbe33;
		}

		@media (max-width: 1199.98px) {
			.composant-grid {
				grid-template-columns: repeat(2, minmax(0, 1fr));
			}
		}

		@media (max-width: 991.98px) {
			.composant-stats__grid {
				grid-template-columns: repeat(2, minmax(0, 1fr));
			}

			.composant-intro__grid {
				grid-template-columns: 1fr;
			}

			.composant-highlight {
				min-height: 300px;
			}
		}

		@media (max-width: 767.98px) {
			.composant-hero__content {
				padding: 46px 0 42px;
			}

			.composant-stats {
				margin-top: -26px;
			}

			.composant-stats__panel {
				padding: 14px;
				border-radius: 22px;
			}

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

			.composant-card__body {
				padding: 20px;
			}
		}

		@media (max-width: 575.98px) {
			.composant-hero {
				min-height: 220px;
			}

			.composant-hero h1 {
				font-size: 31px;
			}

			.composant-hero p,
			.composant-copy,
			.composant-catalog__head p {
				font-size: 13.5px;
			}

			.composant-stats__grid {
				grid-template-columns: 1fr 1fr;
				gap: 10px;
			}

			.composant-stat strong {
				font-size: 24px;
			}

			.composant-card__actions {
				flex-direction: column;
			}

			.composant-btn {
				width: 100%;
			}
		}

/* ===== mpgci/connectique.php ===== */
.connectique-page {
            background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 34%, #f4f6fb 100%);
        }

        .connectique-hero {
            position: relative;
            overflow: hidden;
            min-height: clamp(260px, 34vw, 430px);
            background:
                linear-gradient(135deg, rgba(3, 15, 39, 0.95), rgba(6, 24, 63, 0.8)),
                url('img/connectique/flexible.jpg') center/cover no-repeat;
            border-bottom: 3px solid #fdbe33;
        }

        .connectique-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at top right, rgba(253, 190, 51, 0.18), transparent 30%),
                radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.07), transparent 28%);
            pointer-events: none;
        }

        .connectique-hero__content {
            position: relative;
            z-index: 2;
            padding: 60px 0 56px;
        }

        .connectique-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: #fdbe33;
            margin-bottom: 16px;
        }

        .connectique-kicker::before {
            content: '';
            width: 30px;
            height: 2px;
            border-radius: 999px;
            background: #fdbe33;
        }

        .connectique-hero h1 {
            font-size: clamp(28px, 5vw, 58px);
            line-height: 1.05;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #ffffff;
            max-width: 760px;
            margin: 0 0 18px;
        }

        .connectique-hero h1 span {
            color: #fdbe33;
        }

        .connectique-hero p {
            max-width: 620px;
            font-size: 15px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.82);
            margin: 0;
        }

        .connectique-stats {
            position: relative;
            margin-top: -42px;
            z-index: 3;
        }

        .connectique-stats__panel {
            padding: 18px;
            border-radius: 28px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 253, 0.98));
            border: 1px solid rgba(253, 190, 51, 0.18);
            box-shadow: 0 24px 60px rgba(3, 15, 39, 0.12);
        }

        .connectique-stats__grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .connectique-stat {
            padding: 18px 16px;
            text-align: center;
            border-radius: 18px;
            background: linear-gradient(145deg, #ffffff, #f5f6fb);
            border: 1px solid rgba(3, 15, 39, 0.06);
        }

        .connectique-stat strong {
            display: block;
            font-size: 30px;
            line-height: 1;
            font-weight: 900;
            color: #030f27;
            margin-bottom: 6px;
        }

        .connectique-stat span {
            display: block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #68768a;
        }

        .connectique-intro {
            padding: 80px 0 34px;
        }

        .connectique-intro__grid {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
            gap: 34px;
            align-items: center;
        }

        .connectique-title {
            font-size: clamp(26px, 3.8vw, 44px);
            line-height: 1.12;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #030f27;
            margin-bottom: 18px;
        }

        .connectique-title span {
            color: #fdbe33;
        }

        .connectique-copy {
            font-size: 14.5px;
            line-height: 1.9;
            color: #4e5c70;
            margin-bottom: 14px;
        }

        .connectique-highlight {
            position: relative;
            min-height: 360px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 26px 56px rgba(3, 15, 39, 0.14);
        }

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

        .connectique-highlight::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(3, 15, 39, 0.08), rgba(3, 15, 39, 0.78));
        }

        .connectique-highlight__card {
            position: absolute;
            left: 22px;
            right: 22px;
            bottom: 22px;
            z-index: 2;
            padding: 22px;
            border-radius: 18px;
            background: rgba(3, 15, 39, 0.74);
            border: 1px solid rgba(253, 190, 51, 0.24);
            backdrop-filter: blur(8px);
        }

        .connectique-highlight__card h3 {
            font-size: 20px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .connectique-highlight__card p {
            margin: 0;
            font-size: 13px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.76);
        }

        .connectique-catalog {
            padding: 18px 0 88px;
        }

        .connectique-catalog__head {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 40px;
        }

        .connectique-catalog__head p {
            margin: 14px 0 0;
            font-size: 14.5px;
            line-height: 1.8;
            color: #5b687b;
        }

        .connectique-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 28px;
        }

        .connectique-card {
            position: relative;
            border-radius: 26px;
            overflow: hidden;
            background: linear-gradient(150deg, #ffffff, #f6f7fb);
            border: 1px solid rgba(3, 15, 39, 0.07);
            box-shadow: 0 18px 44px rgba(3, 15, 39, 0.1);
            transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
        }

        .connectique-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #fdbe33, #ffe08a);
            z-index: 2;
        }

        .connectique-card:hover {
            transform: translateY(-8px);
            border-color: rgba(253, 190, 51, 0.24);
            box-shadow: 0 28px 58px rgba(3, 15, 39, 0.16);
        }

        .connectique-card__media {
            position: relative;
            height: 230px;
            overflow: hidden;
        }

        .connectique-card__media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .connectique-card:hover .connectique-card__media img {
            transform: scale(1.07);
        }

        .connectique-card__overlay {
            position: absolute;
            inset: auto 0 0 0;
            padding: 18px 18px 16px;
            background: linear-gradient(180deg, rgba(3, 15, 39, 0.04), rgba(3, 15, 39, 0.78));
        }

        .connectique-card__tag {
            display: inline-flex;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(253, 190, 51, 0.16);
            border: 1px solid rgba(253, 190, 51, 0.26);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #ffffff;
        }

        .connectique-card__body {
            padding: 22px 22px 24px;
        }

        .connectique-card h3 {
            font-size: 22px;
            font-weight: 800;
            line-height: 1.18;
            letter-spacing: -0.02em;
            color: #030f27;
            margin-bottom: 14px;
        }

        .connectique-card ul {
            padding-left: 18px;
            margin: 0 0 18px;
        }

        .connectique-card li {
            font-size: 13px;
            line-height: 1.8;
            color: #5a687b;
            margin-bottom: 4px;
        }

        .connectique-card__actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .connectique-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 11px 16px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            text-decoration: none;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }

        .connectique-btn:hover {
            text-decoration: none;
            transform: translateY(-2px);
        }

        .connectique-btn--primary {
            background: linear-gradient(90deg, #fdbe33, #ffd96d);
            color: #030f27;
            box-shadow: 0 10px 24px rgba(253, 190, 51, 0.32);
        }

        .connectique-btn--primary:hover {
            color: #030f27;
        }

        .connectique-btn--ghost {
            background: rgba(3, 15, 39, 0.04);
            border: 1px solid rgba(3, 15, 39, 0.12);
            color: #030f27;
        }

        .connectique-btn--ghost:hover {
            background: #030f27;
            border-color: #030f27;
            color: #fdbe33;
        }

        @media (max-width: 1199.98px) {
            .connectique-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 991.98px) {
            .connectique-stats__grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .connectique-intro__grid {
                grid-template-columns: 1fr;
            }

            .connectique-highlight {
                min-height: 300px;
            }
        }

        @media (max-width: 767.98px) {
            .connectique-hero__content {
                padding: 46px 0 42px;
            }

            .connectique-stats {
                margin-top: -26px;
            }

            .connectique-stats__panel {
                padding: 14px;
                border-radius: 22px;
            }

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

            .connectique-card__body {
                padding: 20px;
            }
        }

        @media (max-width: 575.98px) {
            .connectique-hero {
                min-height: 220px;
            }

            .connectique-hero h1 {
                font-size: 31px;
            }

            .connectique-hero p,
            .connectique-copy,
            .connectique-catalog__head p {
                font-size: 13.5px;
            }

            .connectique-stats__grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .connectique-stat strong {
                font-size: 24px;
            }

            .connectique-card__actions {
                flex-direction: column;
            }

            .connectique-btn {
                width: 100%;
            }
        }

/* ===== mpgci/inoxydable.php ===== */
.inox-page {
			background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 34%, #f4f6fb 100%);
		}

		.inox-hero {
			position: relative;
			overflow: hidden;
			min-height: clamp(260px, 34vw, 430px);
			background:
				linear-gradient(135deg, rgba(3, 15, 39, 0.95), rgba(6, 24, 63, 0.8)),
				url('img/inoxydable/Raccords.jpg') center/cover no-repeat;
			border-bottom: 3px solid #fdbe33;
		}

		.inox-hero::before {
			content: '';
			position: absolute;
			inset: 0;
			background:
				radial-gradient(circle at top right, rgba(253, 190, 51, 0.18), transparent 30%),
				radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.07), transparent 28%);
			pointer-events: none;
		}

		.inox-hero__content {
			position: relative;
			z-index: 2;
			padding: 60px 0 56px;
		}

		.inox-kicker {
			display: inline-flex;
			align-items: center;
			gap: 10px;
			font-size: 11px;
			font-weight: 800;
			letter-spacing: 0.22em;
			text-transform: uppercase;
			color: #fdbe33;
			margin-bottom: 16px;
		}

		.inox-kicker::before {
			content: '';
			width: 30px;
			height: 2px;
			border-radius: 999px;
			background: #fdbe33;
		}

		.inox-hero h1 {
			font-size: clamp(28px, 5vw, 58px);
			line-height: 1.05;
			font-weight: 800;
			letter-spacing: -0.02em;
			color: #ffffff;
			max-width: 760px;
			margin: 0 0 18px;
		}

		.inox-hero h1 span {
			color: #fdbe33;
		}

		.inox-hero p {
			max-width: 620px;
			font-size: 15px;
			line-height: 1.8;
			color: rgba(255, 255, 255, 0.82);
			margin: 0;
		}

		.inox-stats {
			position: relative;
			margin-top: -42px;
			z-index: 3;
		}

		.inox-stats__panel {
			padding: 18px;
			border-radius: 28px;
			background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 253, 0.98));
			border: 1px solid rgba(253, 190, 51, 0.18);
			box-shadow: 0 24px 60px rgba(3, 15, 39, 0.12);
		}

		.inox-stats__grid {
			display: grid;
			grid-template-columns: repeat(4, minmax(0, 1fr));
			gap: 14px;
		}

		.inox-stat {
			padding: 18px 16px;
			text-align: center;
			border-radius: 18px;
			background: linear-gradient(145deg, #ffffff, #f5f6fb);
			border: 1px solid rgba(3, 15, 39, 0.06);
		}

		.inox-stat strong {
			display: block;
			font-size: 30px;
			line-height: 1;
			font-weight: 900;
			color: #030f27;
			margin-bottom: 6px;
		}

		.inox-stat span {
			display: block;
			font-size: 11px;
			font-weight: 700;
			letter-spacing: 0.12em;
			text-transform: uppercase;
			color: #68768a;
		}

		.inox-intro {
			padding: 80px 0 34px;
		}

		.inox-intro__grid {
			display: grid;
			grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
			gap: 34px;
			align-items: center;
		}

		.inox-title {
			font-size: clamp(26px, 3.8vw, 44px);
			line-height: 1.12;
			font-weight: 800;
			letter-spacing: -0.02em;
			color: #030f27;
			margin-bottom: 18px;
		}

		.inox-title span {
			color: #fdbe33;
		}

		.inox-copy {
			font-size: 14.5px;
			line-height: 1.9;
			color: #4e5c70;
			margin-bottom: 14px;
		}

		.inox-highlight {
			position: relative;
			min-height: 360px;
			border-radius: 30px;
			overflow: hidden;
			box-shadow: 0 26px 56px rgba(3, 15, 39, 0.14);
		}

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

		.inox-highlight::after {
			content: '';
			position: absolute;
			inset: 0;
			background: linear-gradient(180deg, rgba(3, 15, 39, 0.08), rgba(3, 15, 39, 0.78));
		}

		.inox-highlight__card {
			position: absolute;
			left: 22px;
			right: 22px;
			bottom: 22px;
			z-index: 2;
			padding: 22px;
			border-radius: 18px;
			background: rgba(3, 15, 39, 0.74);
			border: 1px solid rgba(253, 190, 51, 0.24);
			backdrop-filter: blur(8px);
		}

		.inox-highlight__card h3 {
			font-size: 20px;
			font-weight: 800;
			color: #ffffff;
			margin-bottom: 10px;
		}

		.inox-highlight__card p {
			margin: 0;
			font-size: 13px;
			line-height: 1.8;
			color: rgba(255, 255, 255, 0.76);
		}

		.inox-catalog {
			padding: 18px 0 88px;
		}

		.inox-catalog__head {
			text-align: center;
			max-width: 760px;
			margin: 0 auto 40px;
		}

		.inox-catalog__head p {
			margin: 14px 0 0;
			font-size: 14.5px;
			line-height: 1.8;
			color: #5b687b;
		}

		.inox-grid {
			display: grid;
			grid-template-columns: repeat(3, minmax(0, 1fr));
			gap: 28px;
		}

		.inox-card {
			position: relative;
			border-radius: 26px;
			overflow: hidden;
			background: linear-gradient(150deg, #ffffff, #f6f7fb);
			border: 1px solid rgba(3, 15, 39, 0.07);
			box-shadow: 0 18px 44px rgba(3, 15, 39, 0.1);
			transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
		}

		.inox-card::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			height: 4px;
			background: linear-gradient(90deg, #fdbe33, #ffe08a);
			z-index: 2;
		}

		.inox-card:hover {
			transform: translateY(-8px);
			border-color: rgba(253, 190, 51, 0.24);
			box-shadow: 0 28px 58px rgba(3, 15, 39, 0.16);
		}

		.inox-card__media {
			position: relative;
			height: 230px;
			overflow: hidden;
		}

		.inox-card__media img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.5s ease;
		}

		.inox-card:hover .inox-card__media img {
			transform: scale(1.07);
		}

		.inox-card__overlay {
			position: absolute;
			inset: auto 0 0 0;
			padding: 18px 18px 16px;
			background: linear-gradient(180deg, rgba(3, 15, 39, 0.04), rgba(3, 15, 39, 0.78));
		}

		.inox-card__tag {
			display: inline-flex;
			padding: 7px 12px;
			border-radius: 999px;
			background: rgba(253, 190, 51, 0.16);
			border: 1px solid rgba(253, 190, 51, 0.26);
			font-size: 10px;
			font-weight: 800;
			letter-spacing: 0.12em;
			text-transform: uppercase;
			color: #ffffff;
		}

		.inox-card__body {
			padding: 22px 22px 24px;
		}

		.inox-card h3 {
			font-size: 22px;
			font-weight: 800;
			line-height: 1.18;
			letter-spacing: -0.02em;
			color: #030f27;
			margin-bottom: 14px;
		}

		.inox-card ul {
			padding-left: 18px;
			margin: 0 0 18px;
		}

		.inox-card li {
			font-size: 13px;
			line-height: 1.8;
			color: #5a687b;
			margin-bottom: 4px;
		}

		.inox-card__actions {
			display: flex;
			gap: 10px;
			flex-wrap: wrap;
		}

		.inox-btn {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
			padding: 11px 16px;
			border-radius: 999px;
			font-size: 11px;
			font-weight: 800;
			letter-spacing: 0.08em;
			text-transform: uppercase;
			text-decoration: none;
			transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
		}

		.inox-btn:hover {
			text-decoration: none;
			transform: translateY(-2px);
		}

		.inox-btn--primary {
			background: linear-gradient(90deg, #fdbe33, #ffd96d);
			color: #030f27;
			box-shadow: 0 10px 24px rgba(253, 190, 51, 0.32);
		}

		.inox-btn--primary:hover {
			color: #030f27;
		}

		.inox-btn--ghost {
			background: rgba(3, 15, 39, 0.04);
			border: 1px solid rgba(3, 15, 39, 0.12);
			color: #030f27;
		}

		.inox-btn--ghost:hover {
			background: #030f27;
			border-color: #030f27;
			color: #fdbe33;
		}

		@media (max-width: 1199.98px) {
			.inox-grid {
				grid-template-columns: repeat(2, minmax(0, 1fr));
			}
		}

		@media (max-width: 991.98px) {
			.inox-stats__grid {
				grid-template-columns: repeat(2, minmax(0, 1fr));
			}

			.inox-intro__grid {
				grid-template-columns: 1fr;
			}

			.inox-highlight {
				min-height: 300px;
			}
		}

		@media (max-width: 767.98px) {
			.inox-hero__content {
				padding: 46px 0 42px;
			}

			.inox-stats {
				margin-top: -26px;
			}

			.inox-stats__panel {
				padding: 14px;
				border-radius: 22px;
			}

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

			.inox-card__body {
				padding: 20px;
			}
		}

		@media (max-width: 575.98px) {
			.inox-hero {
				min-height: 220px;
			}

			.inox-hero h1 {
				font-size: 31px;
			}

			.inox-hero p,
			.inox-copy,
			.inox-catalog__head p {
				font-size: 13.5px;
			}

			.inox-stats__grid {
				grid-template-columns: 1fr 1fr;
				gap: 10px;
			}

			.inox-stat strong {
				font-size: 24px;
			}

			.inox-card__actions {
				flex-direction: column;
			}

			.inox-btn {
				width: 100%;
			}
		}


