: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 ── */
.hero {
    position: relative;
    min-height: 620px;
    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url('../img/home/hero.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
}
.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: '»';
    color: var(--brand-primary);
    margin-right: .35rem;
}

/* ── 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: linear-gradient(rgba(80,0,40,.7), rgba(80,0,40,.7)),
    url('../img/home/lecteur.webp') left/contain no-repeat;
    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 ── */
.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: linear-gradient(rgba(80,0,40,.7), rgba(80,0,40,.7)),
    url('../img/home/lecteur.webp') left/contain no-repeat;
    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; }
        .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; }
}