:root {
    --mpg-primary: #fdbe33;
    --mpg-deep: #030f27;
    --mpg-light: #ffffff;
    --mpg-ink: #121518;
    --mpg-muted: #f6f7fb;
}

html,
body {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
    color: var(--mpg-ink);
    letter-spacing: 0.01em;
}

.wrapper {
    position: relative;
}

.top-bar {
    background: var(--mpg-light);
    border-bottom: 1px solid rgba(3, 15, 39, 0.08);
    box-shadow: 0 6px 30px rgba(3, 15, 39, 0.06);
}

.top-bar .logo img {
    filter: drop-shadow(0 8px 16px rgba(3, 15, 39, 0.18));
}

.nav-bar {
    background: linear-gradient(90deg, var(--mpg-primary) 0%, #ffd876 100%) !important;
    box-shadow: 0 12px 32px rgba(3, 15, 39, 0.12);
    padding: 10px 14px;
}

.nav-bar.nav-sticky {
    top: 0;
    z-index: 1200;
    box-shadow: 0 14px 34px rgba(3, 15, 39, 0.24) !important;
    backdrop-filter: blur(7px);
}

.navbar.navbar-dark {
    background: linear-gradient(130deg, rgba(3, 15, 39, 0.96), rgba(8, 28, 66, 0.94)) !important;
    border: 1px solid rgba(253, 190, 51, 0.48);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(3, 15, 39, 0.28);
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
    border-radius: 999px;
    padding: 10px 16px;
    transition: all 0.28s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--mpg-deep) !important;
    background: linear-gradient(90deg, #fdbe33, #ffe08a);
    box-shadow: 0 8px 18px rgba(253, 190, 51, 0.35);
    transform: translateY(-1px);
}

.nav-bar .navbar-brand img {
    border-radius: 10px;
}

.navbar-dark .navbar-toggler {
    border-color: rgba(253, 190, 51, 0.8) !important;
    border-radius: 10px;
    background: rgba(253, 190, 51, 0.14);
}

.navbar-dark .navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(253, 190, 51, 0.25);
}

.navbar-dark .navbar-toggler-icon {
    filter: brightness(0) saturate(100%) invert(85%) sepia(50%) saturate(683%) hue-rotate(341deg) brightness(103%) contrast(98%);
}

/* Critical fixes: force menu readability even if legacy/Tailwind rules collide */
body .nav-bar .navbar-nav .nav-link,
body .nav-bar .navbar-nav .nav-link:visited,
body .nav-bar .navbar-nav .nav-link:focus,
body .nav-bar .navbar-nav .nav-link:hover,
body .nav-bar .navbar-nav .nav-link.active {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body .nav-bar .navbar-nav .nav-link:hover,
body .nav-bar .navbar-nav .nav-link.active {
    color: #030f27 !important;
}

body .nav-bar .navbar-collapse {
    color: #ffffff !important;
}

.site-search-form {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-search-form input[type="search"] {
    width: 220px;
    max-width: 52vw;
    border-radius: 999px;
    border: 1px solid rgba(253, 190, 51, 0.45);
    background: rgba(255, 255, 255, 0.95);
    color: #030f27;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1;
}

.site-search-form input[type="search"]:focus {
    outline: none;
    box-shadow: 0 0 0 0.18rem rgba(253, 190, 51, 0.28);
}

.site-search-form button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(253, 190, 51, 0.72);
    background: linear-gradient(90deg, #fdbe33, #ffd76d);
    color: #030f27;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.carousel .carousel-item img {
    filter: none;
    width: 100%;
    height: clamp(260px, 48vw, 620px);
    object-fit: cover;
}

.carousel .carousel-caption {
    background: linear-gradient(135deg, rgba(3, 15, 39, 0.76), rgba(3, 15, 39, 0.48));
    border: 1px solid rgba(253, 190, 51, 0.48);
    border-radius: 18px;
    backdrop-filter: blur(4px);
    box-shadow: 0 18px 45px rgba(3, 15, 39, 0.35);
    padding: 20px 22px;
    max-width: min(720px, 92%);
    margin: 0 auto;
    bottom: 34px;
}

.carousel .carousel-caption h1,
.carousel .carousel-caption p {
    color: var(--mpg-light);
}

.carousel .carousel-item {
    transition: transform 1s ease-in-out;
}

.carousel .carousel-indicators li {
    width: 28px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    border: 0;
    margin: 0 6px;
}

.carousel .carousel-indicators .active {
    width: 42px;
    background: var(--mpg-primary);
}

.carousel-control-prev,
.carousel-control-next {
    width: 54px;
    height: 54px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(3, 15, 39, 0.48);
    border: 1px solid rgba(253, 190, 51, 0.5);
    opacity: 0.9;
}

.carousel-control-prev {
    left: 18px;
}

.carousel-control-next {
    right: 18px;
}

.btn,
a.btn {
    border-radius: 999px !important;
    border: 1px solid var(--mpg-primary) !important;
    background: linear-gradient(90deg, var(--mpg-primary), #ffd15e) !important;
    color: var(--mpg-deep) !important;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(253, 190, 51, 0.35);
}

.btn:hover,
a.btn:hover {
    background: var(--mpg-deep) !important;
    color: var(--mpg-primary) !important;
    border-color: var(--mpg-deep) !important;
    box-shadow: 0 12px 28px rgba(3, 15, 39, 0.3);
}

.section-header h2 {
    color: var(--mpg-deep);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.feature {
    margin-top: -30px;
}

.feature .feature-item {
    border-radius: 22px;
    background: linear-gradient(145deg, #ffffff, #f8f9fd);
    border: 1px solid rgba(253, 190, 51, 0.12);
    box-shadow: 0 14px 38px rgba(3, 15, 39, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    position: relative;
    overflow: hidden;
}

.feature .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fdbe33, #ffd15e, #fdbe33);
    border-radius: 22px 22px 0 0;
    opacity: 0;
    transition: opacity 0.32s ease;
}

.feature .feature-item:hover::before {
    opacity: 1;
}

.feature .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 56px rgba(3, 15, 39, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(253, 190, 51, 0.34);
}

.feature .feature-icon i {
    color: var(--mpg-primary);
    filter: drop-shadow(0 4px 8px rgba(253, 190, 51, 0.3));
}

.feature .feature-text h3 {
    color: var(--mpg-deep);
    font-weight: 700;
    letter-spacing: 0.015em;
}

.feature .feature-text p {
    color: #52647a;
    line-height: 1.7;
    font-size: 14px;
}

.about,
.service,
.contact {
    position: relative;
}

/* About section ultra premium */
.about {
    background: linear-gradient(135deg, #fafbfe 0%, #f5f6fc 55%, #fffef5 100%);
    padding: 80px 0;
}

.about .about-img {
    position: relative;
}

.about .about-img::before {
    content: '';
    position: absolute;
    inset: -10px -10px -14px -14px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(253, 190, 51, 0.14), rgba(3, 15, 39, 0.04));
    z-index: 0;
}

.about .about-img img,
.service .service-img img,
.contact .mpg {
    border-radius: 20px !important;
    box-shadow: 0 20px 48px rgba(3, 15, 39, 0.16) !important;
    position: relative;
    z-index: 1;
}

.about .section-header h2::after {
    content: '';
    display: block;
    margin-top: 8px;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #fdbe33, #ffd876);
    border-radius: 999px;
}

.about .about-text p {
    color: #3d4a5c;
    line-height: 1.9;
    font-size: 14.5px;
}

/* Services section premium */
.service {
    background: linear-gradient(180deg, #f5f6fb 0%, #ffffff 100%);
    padding: 80px 0;
}

.service .service-item {
    border-radius: 20px;
    overflow: hidden;
    background: var(--mpg-light);
    border: 1px solid rgba(3, 15, 39, 0.07);
    box-shadow: 0 14px 34px rgba(3, 15, 39, 0.09);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
    position: relative;
}

.service .service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fdbe33, #ffd876);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service .service-item:hover::after {
    transform: scaleX(1);
}

.service .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 52px rgba(3, 15, 39, 0.17);
}

.service .service-img {
    overflow: hidden;
}

.service .service-img img {
    transition: transform 0.5s ease !important;
}

.service .service-item:hover .service-img img {
    transform: scale(1.07) !important;
}

.service .service-text h3 {
    color: var(--mpg-deep);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.01em;
}

.service .service-overlay {
    background: linear-gradient(180deg, rgba(3, 15, 39, 0.2), rgba(3, 15, 39, 0.85));
}

/* Home redesign aligned with presentation page */
.home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    margin-bottom: 10px;
    border-radius: 999px;
    border: 1px solid rgba(253, 190, 51, 0.32);
    background: rgba(253, 190, 51, 0.15);
    color: #7a5600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 10px;
    font-weight: 800;
}

.home-feature .section-header {
    margin-bottom: 22px;
}

.home-about .about-text p,
.home-maintenance .about-text p {
    text-transform: none !important;
}

.home-catalog .section-header,
.home-partners .section-header {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.home-catalog {
    background:
        radial-gradient(120% 60% at 50% 0%, rgba(253, 190, 51, 0.14) 0%, rgba(253, 190, 51, 0) 62%),
        linear-gradient(180deg, #f5f7ff 0%, #ffffff 100%);
}

.home-catalog-header h2 {
    letter-spacing: -0.01em;
}

.home-catalog-chips {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.home-catalog-chips span {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(3, 15, 39, 0.12);
    color: #334760;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-catalog .catalog-card {
    border-radius: 22px;
    overflow: hidden;
}

.home-catalog .catalog-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(3, 15, 39, 0.72);
    border: 1px solid rgba(253, 190, 51, 0.5);
    color: #fdbe33;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
}

.home-catalog .service-img {
    position: relative;
}

.home-catalog .service-text {
    display: block;
    height: auto;
    min-height: 150px;
    padding: 14px;
    background: #ffffff;
    overflow: visible;
    white-space: normal;
}

.home-catalog .service-text > div {
    width: 100%;
    margin-bottom: 10px;
}

.home-catalog .service-text h3 {
    width: 100%;
    padding: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    color: #081938;
    margin-bottom: 2px;
    font-size: 16px;
    letter-spacing: 0.01em;
}

.home-catalog .catalog-note {
    margin: 4px 0 0;
    color: #62748b;
    font-size: 12px;
    line-height: 1.55;
}

.home-section-sub {
    margin: 10px auto 0;
    max-width: 760px;
    color: #52647a;
    line-height: 1.8;
    font-size: 13px;
}

.home-catalog .service-text .btn {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
    min-height: 44px;
    padding: 11px 14px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid rgba(3, 15, 39, 0.12);
    background: linear-gradient(135deg, #fdbe33 0%, #ffd976 100%);
    color: #04112d;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(253, 190, 51, 0.28);
    text-decoration: none;
}

.home-catalog .service-item a.btn {
    width: 100% !important;
    height: auto !important;
    min-height: 40px;
    padding: 10px 12px !important;
    font-size: 10px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    border-radius: 10px !important;
}

.home-catalog .service-text .btn:hover,
.home-catalog .service-text .btn:focus {
    color: #03102a;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(253, 190, 51, 0.32);
}

.home-catalog .service-item:hover a.btn {
    color: #03102a;
}

.home-catalog-cta {
    margin-top: 26px;
}

.home-catalog-cta .btn i {
    margin-right: 6px;
}

.home-partners-frame {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(3, 15, 39, 0.1);
    box-shadow: 0 14px 36px rgba(3, 15, 39, 0.12);
    background: #ffffff;
}

.home-partners-frame img {
    display: block;
}

.site-partners-block {
    padding: 0 0 72px;
}

@media (max-width: 767px) {
    .site-partners-block {
        padding-bottom: 42px;
    }
}

@media (max-width: 767px) {
    .home-catalog-chips {
        justify-content: flex-start;
    }
}

/* ============================================================
   FOOTER ULTRA PREMIUM
   ============================================================ */
.footer {
    background: linear-gradient(170deg, #010b1e 0%, #020f28 30%, #041630 65%, #010b1e 100%);
    border-top: 0;
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #fdbe33 20%, #ffe896 50%, #fdbe33 80%, transparent 100%);
    z-index: 3;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 65% 45% at 50% 0%, rgba(253, 190, 51, 0.06) 0%, transparent 65%),
        radial-gradient(ellipse 35% 60% at 90% 90%, rgba(4, 20, 58, 0.35) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.footer > * {
    position: relative;
    z-index: 2;
}

.footer .container:first-child {
    padding-top: 64px;
    padding-bottom: 38px;
}

/* Carte agence */
.footer .footer-contact {
    position: relative;
    padding: 28px 22px 22px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(253, 190, 51, 0.13);
    margin-bottom: 22px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    overflow: hidden;
}

.footer .footer-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(253, 190, 51, 0.5), transparent);
}

.footer .footer-contact:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, rgba(253, 190, 51, 0.07), rgba(253, 190, 51, 0.02));
    border-color: rgba(253, 190, 51, 0.38);
    box-shadow: 0 18px 40px rgba(3, 15, 39, 0.4);
}

.footer .footer-contact h2 {
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: #fdbe33 !important;
    margin-bottom: 14px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid rgba(253, 190, 51, 0.18) !important;
}

.footer .footer-contact p {
    font-size: 13px !important;
    line-height: 2 !important;
    color: rgba(255, 255, 255, 0.76) !important;
    margin: 0 !important;
}

/* Barre horaires */
.footer .footer-menu {
    border-top: 1px solid rgba(253, 190, 51, 0.18) !important;
    border-bottom: 1px solid rgba(253, 190, 51, 0.12) !important;
    padding: 20px 0 !important;
    margin: 0 !important;
}

.footer .footer-menu .f-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.footer .footer-menu .f-menu p {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.88) !important;
    margin: 0 !important;
    padding: 9px 22px !important;
    border-radius: 999px !important;
    background: rgba(253, 190, 51, 0.09) !important;
    border: 1px solid rgba(253, 190, 51, 0.2) !important;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: background 0.25s ease, border-color 0.25s ease;
    display: inline-block;
}

.footer .footer-menu .f-menu p:hover {
    background: rgba(253, 190, 51, 0.17) !important;
    border-color: rgba(253, 190, 51, 0.45) !important;
}

/* Zone copyright */
.footer .copyright {
    padding: 22px 0 20px;
    background: rgba(0, 0, 0, 0.18);
}

.footer .copyright p {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.42) !important;
    margin: 0 !important;
    letter-spacing: 0.03em;
}

/* Force couleurs footer */
.footer h2,
.footer p,
.footer a {
    color: var(--mpg-light) !important;
}

.footer .copyright a {
    color: rgba(253, 190, 51, 0.72) !important;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer .copyright a:hover {
    color: #fdbe33 !important;
}

.back-to-top {
    background: var(--mpg-primary) !important;
    color: var(--mpg-deep) !important;
    box-shadow: 0 10px 22px rgba(253, 190, 51, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(253, 190, 51, 0.6) !important;
}

.mobile-key-footer,
.mobile-key-footer-spacer {
    display: none;
}

body[data-page="home"] .carousel.slide {
    display: none !important;
}

#premium-tailwind-slider .tw-premium-slide img {
    transform: scale(1.01);
}

#premium-tailwind-slider .tw-premium-slide {
    will-change: opacity;
}

#premium-tailwind-slider .tw-premium-caption {
    box-shadow: 0 10px 26px rgba(3, 15, 39, 0.22);
}

#premium-tailwind-slider .tw-premium-caption p {
    text-shadow: none;
}

@media (max-width: 991.98px) {
    .nav-bar {
        padding: 8px 10px;
    }

    .nav-bar.nav-sticky {
        padding: 6px 8px;
    }

    .nav-bar .navbar {
        border-radius: 14px;
        padding: 10px 12px;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 10px;
        padding: 16px 14px;
        border-radius: 18px;
        background: linear-gradient(160deg, rgba(1, 9, 28, 0.97), rgba(4, 18, 50, 0.98));
        border: 1px solid rgba(253, 190, 51, 0.32);
        box-shadow: 0 18px 44px rgba(3, 15, 39, 0.5);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        transform-origin: top center;
        transition: opacity 0.3s ease;
    }

    .navbar-dark .navbar-collapse.collapsing {
        opacity: 0.6;
    }

    .navbar-dark .navbar-collapse.show {
        opacity: 1;
    }

    /* Toggler animé — état ouvert */
    .navbar-dark .navbar-toggler.is-active {
        background: rgba(253, 190, 51, 0.22);
        border-color: rgba(253, 190, 51, 0.92) !important;
        box-shadow: 0 0 0 3px rgba(253, 190, 51, 0.18);
    }

    .navbar-dark .navbar-nav .nav-link {
        margin: 5px 0;
        font-size: 11px;
        letter-spacing: 0.07em;
        padding: 11px 12px;
        border: 1px solid rgba(253, 190, 51, 0.22);
        background: rgba(255, 255, 255, 0.02);
        color: #ffffff !important;
    }

    .site-search-form {
        margin-top: 10px;
    }

    .site-search-form input[type="search"] {
        width: 100%;
        max-width: none;
        flex: 1;
    }

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        background: linear-gradient(90deg, #fdbe33, #ffe08a);
        border-color: rgba(253, 190, 51, 0.95);
    }

    .carousel .carousel-item img {
        height: clamp(220px, 56vw, 360px);
    }

    .carousel .carousel-caption {
        left: 12px;
        right: 12px;
        bottom: 16px;
        padding: 12px 13px;
        border-radius: 12px;
        max-width: none;
    }

    .carousel .carousel-caption h1 {
        font-size: 21px;
        line-height: 1.25;
        margin-bottom: 8px;
    }

    .carousel .carousel-caption p {
        font-size: 13px;
        line-height: 1.45;
        margin-bottom: 10px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 16px;
        transform: none;
        background: rgba(3, 15, 39, 0.62);
    }

    .carousel-control-prev {
        left: 12px;
    }

    .carousel-control-next {
        right: 12px;
    }

    .footer {
        padding-bottom: 96px;
    }

    .mobile-key-footer {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 0;
        background: linear-gradient(180deg, rgba(3, 15, 39, 0.98), rgba(6, 24, 63, 0.98));
        border-top: 1px solid rgba(253, 190, 51, 0.4);
        box-shadow: 0 -14px 30px rgba(3, 15, 39, 0.35);
    }

    .mobile-key-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px 2px 8px;
        text-decoration: none;
        color: #ffffff;
        min-height: 64px;
        transition: background 0.2s ease;
    }

    .mobile-key-item:active,
    .mobile-key-item:focus {
        background: rgba(253, 190, 51, 0.16);
        outline: none;
    }

    .mk-icon {
        font-size: 16px;
        line-height: 1;
        margin-bottom: 6px;
    }

    .mk-label {
        font-size: 10px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        font-weight: 700;
        color: #fdbe33;
        text-align: center;
    }

    .mobile-key-footer-spacer {
        display: block;
        height: 78px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    #premium-tailwind-slider {
        margin-top: 12px;
        border-radius: 16px;
    }

    #premium-tailwind-slider .tw-premium-caption {
        max-width: 88%;
        padding: 10px 11px;
        border-radius: 10px;
        background: rgba(3, 15, 39, 0.3);
        border-color: rgba(253, 190, 51, 0.25);
        backdrop-filter: blur(1px);
    }

    #premium-tailwind-slider .tw-premium-caption p:first-child {
        font-size: 10px;
        letter-spacing: 0.16em;
    }

    #premium-tailwind-slider .tw-premium-caption h2 {
        font-size: 18px;
        line-height: 1.25;
        margin-top: 4px;
    }

    #premium-tailwind-slider .tw-premium-caption p:last-child {
        font-size: 12px;
        line-height: 1.45;
        margin-top: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* === ATELIERS SECTION === */
.ateliers-section {
    background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 50%, #f4f7ff 100%);
    padding: 64px 0;
}

.ateliers-header {
    text-align: center;
    margin-bottom: 48px;
}

.ateliers-header .contact-kicker {
    display: inline-flex;
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(3, 17, 47, 0.15);
    color: #03112f;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 10px;
}

.ateliers-header h2 {
    margin: 0;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.06;
    color: #03112f;
    margin-bottom: 10px;
}

.ateliers-header p {
    margin: 14px auto 0;
    max-width: 680px;
    color: rgba(3, 15, 39, 0.86);
    line-height: 1.8;
    font-size: 15px;
}

.ateliers-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.atelier-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(3, 15, 39, 0.06);
    box-shadow: 0 10px 40px rgba(3, 15, 39, 0.06);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.atelier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: inherit;
    z-index: 0;
}

.atelier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(3, 15, 39, 0.14);
}

.atelier-card__header {
    background: linear-gradient(135deg, #fdbe33 0%, #ffd76b 100%);
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.atelier-card__header::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: inherit;
    border-radius: 20px 20px 0 0;
}

.atelier-card__location-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #7a4f00;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.atelier-card__header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #03112f;
    line-height: 1.3;
}

.atelier-card__body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.atelier-detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.atelier-detail__icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f0f4ff 0%, #f8fbff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fdbe33;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(253, 190, 51, 0.15);
}

.atelier-detail__content {
    flex: 1;
}

.atelier-detail__content strong {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #526074;
    margin-bottom: 6px;
}

.atelier-detail__content p,
.atelier-detail__content a {
    margin: 0;
    font-size: 14px;
    color: #4f5f77;
    line-height: 1.7;
}

.atelier-detail__content a {
    color: #fdbe33;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.atelier-detail__content a:hover {
    color: #030f27;
}

@media (max-width: 1024px) {
    .ateliers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }
    
    .atelier-card__header {
        padding: 22px;
    }
    
    .atelier-card__body {
        padding: 22px;
    }

    .atelier-card__location-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .atelier-card__header h3 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .ateliers-section {
        padding: 42px 0;
    }

    .ateliers-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .ateliers-header h2 {
        font-size: clamp(24px, 4vw, 36px);
    }

    .atelier-card__header {
        padding: 20px;
    }

    .atelier-card__body {
        padding: 20px;
    }

    .atelier-detail {
        gap: 12px;
    }

    .atelier-detail__icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

