:root {
    --brand-primary: #a93284;   /* magenta/pink */
    --brand-secondary: #f9a400; /* gold/orange */
    --brand-accent: #54003a; /* gold/purple */
    --brand-dark: #666666;
    --brand-gray: #f5f5f5;
    --brand-text: #333333;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--brand-text);
}

h1, h2, h3, h4, h5, .brand-font {
    font-family: 'Montserrat', sans-serif;
}

/* ── NAVBAR ── */
.navbar {
    background: #fff;
    border-bottom: 1px solid #eee;
}
.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--brand-primary) !important;
}
.navbar-brand span {
    color: var(--brand-dark);
}
.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--brand-dark) !important;
}
.nav-link:hover { color: var(--brand-primary) !important; }
.btn-contact-nav {
    background: var(--brand-secondary);
    color: #fff !important;
    padding: .35rem 1rem;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
}
.btn-contact-nav:hover { background: var(--brand-primary);color: #fff !important; }

/* ── HERO / CAROUSEL ── */
.hero {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}
.hero .owl-carousel {
    .owl-stage-outer { border-radius: 16px; }

    .owl-nav {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        padding: 0 1rem;
        transform: translateY(-50%);
        pointer-events: none;

        button.owl-prev,
        button.owl-next {
            pointer-events: auto;
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,.25) !important;
            color: #fff !important;
            border-radius: 50%;
            font-size: 1.4rem;
            transition: background .2s ease;
        }
        button.owl-prev:hover,
        button.owl-next:hover { background: var(--brand-secondary) !important; }
    }

    .owl-dots {
        position: absolute;
        bottom: 18px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: .4rem;

        .owl-dot span {
            display: block;
            width: 9px;
            height: 9px;
            margin: 0;
            background: rgba(255,255,255,.5);
            border-radius: 50%;
        }
        .owl-dot.active span { background: var(--brand-secondary); }
    }
}
.hero .item {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.hero .item.no-padding img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}
.hero-caption {
    display: inline-block;
    max-width: 480px;
    background: rgba(15, 15, 15, .5);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    border-radius: 0 14px 14px 0;
    padding: 2.2rem 2.6rem;
}
.hero-caption h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin: 0;
}
.hero-caption h1 span { color: var(--brand-secondary); }
/* fallback, used if a slide's h1 isn't wrapped in .hero-caption */
.hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.hero h1 span { color: var(--brand-secondary); }
h3 span { color: var(--brand-secondary); }

/* ── SECTION TITLES ── */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--brand-dark);
}
.section-subtitle {
    color: var(--brand-primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
}
.section-divider {
    width: 40px;
    height: 3px;
    background: var(--brand-primary);
    margin: .5rem auto 1.5rem;
}
.text-primary-brand { color: var(--brand-primary) !important; }

.gamme-produits {
    .cta {
        max-width: 220px;
    }
}

/* ── BUTTONS ── */
.btn-brand {
    background: var(--brand-primary);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    border: none;
    padding: .55rem 1.6rem;
}
.btn-brand:hover { background: #a0005a; color: #fff; }
.btn-brand-gold {
    background: var(--brand-secondary);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    border: none;
    padding: .55rem 1.6rem;
}
.btn-brand-gold:hover { background: #d49000; color: #fff; }
.btn-outline-brand {
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    background: transparent;
    padding: .4rem 1.2rem;
}
.btn-outline-brand:hover { background: var(--brand-primary); color: #fff; }

/* ── PRODUCT CARDS ── */
.product-card {
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}
.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.product-card:hover img { transform: scale(1.04); }
.product-card .product-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    color: var(--brand-dark);
    margin-top: .6rem;
}
.product-card .product-label::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: .35rem;
    vertical-align: -1px;
    background-color: var(--brand-primary);
    -webkit-mask: url("../img/home/double-chevron-right-solid-full.svg") center / contain no-repeat;
    mask: url("../img/home/double-chevron-right-solid-full.svg") center / contain no-repeat;
}

/* ── EXPERTS SECTION ── */
.experts-section {
    background: #fff;
}
.experts-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    //filter: grayscale(1);
    box-shadow: 8px 8px 0 var(--brand-secondary);
}
.star-icon { fill: var(--brand-secondary); width: 48px; }

/* ── PARTNERS ── */
.partners-section { background: var(--brand-gray); }
.partner-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #555;
    letter-spacing: .04em;
}
.partner-logo.zebra  { color: #000; }
.partner-logo.datalogic { color: #c00; }
.partner-logo.citizen { color: #0060a0; }
.partner-logo.m3mobile { color: #333; }
.partner-logo.honeywell { color: #c00; }

/* ── KEY FIGURES ── */
.keyfigures-section {
    background: var(--brand-primary);
    color: #fff;
}
.keyfigures-section .fig-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
}
.keyfigures-section .fig-label {
    font-size: .88rem;
    opacity: .85;
}
.keyfigures-section .fig-divider {
    &:after {
        content: "";
        width: 1px;
        background: rgba(255, 255, 255, .3);
        display: block;
        height: 60px;
    }
}

/* ── SOLUTIONS CARDS ── */
.solution-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
}
.solution-card .sol-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    color: var(--brand-dark);
    margin-top: .6rem;
}
.solution-card .sol-label::before {
    content: '›';
    color: var(--brand-primary);
    margin-right: .3rem;
    font-size: 1.2em;
}

/* ── CTA BANNER ── */
.cta-banner {
    background: #54003a url('../img/home/bandeau.webp') no-repeat;
    background-size: contain;
    background-position-x: right;
    padding: 80px 0;
    color: #fff;
}
.cta-banner h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}
.cta-banner h2 span { color: var(--brand-secondary); }

/* ── EXPERTISES ── */
.expertises-section { background: var(--brand-gray); }
.expertise-item {
    font-size: .92rem;
    color: var(--brand-dark);
}
.expertise-item::before {
    content: '✓ ';
    color: var(--brand-primary);
    font-weight: 700;
}

/* ── SECTEURS ── */
.activity-card img {
    width: 100%;
    //height: 160px;
    object-fit: cover;
    border-radius: 4px;
}
.sector-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
}
.sector-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    color: var(--brand-dark);
    margin-top: .5rem;
}
.sector-label::before {
    content: '✓ ';
    color: var(--brand-primary);
}

/* ── NEWSLETTER ── */
.newsletter-section {
    background: #54003a url('../img/home/bandeau-2-newsletter.webp') no-repeat;
    background-size: contain;
    color: #fff;
    padding: 70px 0;

    .w-50 {
        margin-left: 50%;
    }
}
.newsletter-section h2 {
    font-size: 2rem;
    font-weight: 800;
}
.newsletter-section h2 span { color: var(--brand-secondary); }

/* ── FOOTER ── */
footer {
    background: #fff;
    border-top: 1px solid #eee;
}
footer .footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--brand-primary);
}
footer .footer-brand span { color: var(--brand-dark); }
footer .footer-tagline {
    font-size: .82rem;
    color: var(--brand-primary);
}
footer .footer-link {
    font-size: .78rem;
    color: var(--brand-text);
    text-decoration: none;
}
footer .footer-link:hover { color: var(--brand-primary); }
footer .footer-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    color: var(--brand-dark);
}
footer address { font-size: .82rem; font-style: normal; color: #666; }
.footer-legal a {
    font-size: .72rem;
    color: #888;
    text-decoration: none;
    margin: 0 .5rem;
}
.footer-legal a:hover { color: var(--brand-primary); }
footer {
    .bg-not-light {
        background-color: #eee;
    }
    .copyright {
        font-size: 12px;
        color: #999;
        a {
            color: #999;
            text-transform: uppercase;
        }
    }
}

/* Responsive hero */
@media (max-width: 767px) {
    .hero h1 { font-size: 1.6rem; }
    .hero .item,
    .hero .item.no-padding img { min-height: 380px; height: 380px; }
    .hero-caption {
        max-width: 85%;
        padding: 1.3rem 1.5rem;
        border-radius: 0 10px 10px 0;
    }
    .hero-caption h1 { font-size: 1.5rem; }
    .keyfigures-section .fig-value { font-size: 1.8rem; }
    .cta-banner h2 { font-size: 1.4rem; }
}

/* small utility */
.icon-circle {
    width: 50px; height: 50px;
    padding: 6px;
    border: #ccc 2px solid;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin: 0 auto .8rem;
}
.link-more {
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    color: var(--brand-primary);
    letter-spacing: .05em;
    text-decoration: none;
}
.link-more:hover { color: #a0005a; text-decoration: underline; }
