/* =========================================================
   WINNING DIGITAL — v2
   Design convivial · couleurs vives · sans lueur
   ========================================================= */

:root {
    /* Texte */
    --ink: #1a2e28;
    --ink-soft: #244539;
    --text: #2d3f38;
    --text-muted: #5a6d65;
    --text-light: #84948d;
    --white: #ffffff;

    /* Surfaces chaleureuses */
    --surface: #ffffff;
    --bg: #faf8f4;
    --bg-soft: #f2f7f4;
    --bg-tint: #e8f2ec;

    /* Palette principale — vert Sénégal */
    --primary: #0d7a68;
    --primary-soft: #10947e;
    --primary-dark: #0a5f50;
    --primary-bg: #dff5ef;

    /* Accents complémentaires */
    --secondary: #d4920a;
    --secondary-bg: #fef3dc;
    --blue: #2b6cb0;
    --blue-bg: #e3edf9;
    --coral: #c44d3d;
    --coral-bg: #fce9e6;
    --violet: #6b4fa8;
    --violet-bg: #f0eaf8;

    /* Couleurs logo Winning Digital */
    --logo-ink: #141414;
    --logo-blue: #1c5fbf;

    /* Alias compatibilité */
    --accent: var(--primary);
    --accent-strong: var(--primary-dark);
    --accent-soft: var(--primary-bg);

    /* Lignes */
    --line: #dce8e2;
    --line-strong: #c4d8cf;

    /* Ombres neutres (pas de lueur colorée) */
    --shadow-xs: 0 1px 2px rgba(26, 46, 40, 0.04);
    --shadow-sm: 0 1px 2px rgba(26, 46, 40, 0.05), 0 1px 3px rgba(26, 46, 40, 0.06);
    --shadow-md: 0 4px 12px rgba(26, 46, 40, 0.07), 0 2px 4px rgba(26, 46, 40, 0.04);
    --shadow-lg: 0 18px 48px rgba(26, 46, 40, 0.12);

    /* Rayons */
    --r-sm: 10px;
    --r: 14px;
    --r-lg: 20px;
    --r-pill: 999px;

    /* Divers */
    --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --t: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.5em;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--accent-strong); }

img { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

::selection { background: var(--primary); color: #fff; }

/* ---------- Layout ---------- */
.wd-container {
    max-width: var(--container);
    padding-left: 24px;
    padding-right: 24px;
    margin-left: auto;
    margin-right: auto;
}

.wd-section { padding: 88px 0; }
.wd-section-sm { padding: 64px 0; }
.wd-content-section { padding: 72px 0; }

.wd-flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 0 0 1px var(--line);
}

/* ---------- Section header ---------- */
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-bg);
    border: 1px solid #b8e0d5;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 18px;
}
.section-kicker i { font-size: 12px; }

.section-header { margin-bottom: 44px; max-width: 760px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-title { font-size: clamp(26px, 3vw, 36px); margin-bottom: 14px; }
.section-subtitle { font-size: 17px; color: var(--text-muted); margin: 0; }

.hero-logo-blue { color: var(--logo-blue); }
.hero-logo-ink { color: var(--logo-ink); }

/* ---------- Buttons ---------- */
.btn-wd-primary,
.btn-wd-outline,
.btn-wd-ghost,
.btn-light-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 13px 24px;
    border-radius: var(--r-pill);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--t);
    white-space: nowrap;
    text-decoration: none;
}

.btn-wd-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-wd-primary:hover {
    background: var(--primary-soft);
    border-color: var(--primary-soft);
    color: #fff;
    transform: translateY(-1px);
}

.btn-wd-outline {
    background: transparent;
    color: var(--primary-dark);
    border-color: #9ecfb8;
}
.btn-wd-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-wd-ghost {
    background: var(--primary-bg);
    color: var(--primary-dark);
    border-color: #b8e0d5;
}
.btn-wd-ghost:hover { background: #ccebe2; color: var(--primary-dark); }

.btn-sm { padding: 9px 16px; font-size: 13px; }

.btn-light-cta {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}
.btn-light-cta:hover { background: #f0f2f5; color: var(--ink); transform: translateY(-1px); }

/* ---------- Navbar ---------- */
.wd-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    transition: box-shadow var(--t), border-color var(--t);
}
.wd-navbar.is-scrolled { box-shadow: var(--shadow-sm); }

.wd-navbar .wd-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand { display: inline-flex; align-items: center; padding: 0; margin: 0; }
.brand-logo { height: 50px; width: auto; transition: transform var(--t), opacity var(--t); }
.navbar-brand:hover .brand-logo { transform: translateY(-1px); opacity: 0.9; }

.navbar-toggler {
    border: 1px solid var(--line-strong);
    background: var(--surface);
    color: var(--ink);
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    font-size: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wd-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.wd-nav .nav-item { position: relative; list-style: none; }

.wd-nav .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    padding: 9px 14px;
    border-radius: var(--r-pill);
    transition: all var(--t);
    cursor: pointer;
}
.wd-nav .nav-link:hover { color: var(--primary-dark); background: var(--primary-bg); }
.wd-nav .nav-link.active { color: var(--primary-dark); background: var(--primary-bg); font-weight: 600; }

.wd-nav .nav-link .caret { font-size: 10px; transition: transform var(--t); }
.wd-nav .nav-item.open .nav-link .caret { transform: rotate(180deg); }

/* Dropdown */
.wd-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 268px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all var(--t);
    z-index: 1040;
}
.wd-nav .nav-item.open .wd-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.wd-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: var(--r-sm);
    color: var(--text);
    font-size: 14.5px;
    font-weight: 500;
    transition: all var(--t);
}
.wd-dropdown .dropdown-item i { width: 18px; text-align: center; color: var(--primary); font-size: 15px; }
.wd-dropdown .dropdown-item:hover { background: var(--primary-bg); color: var(--primary-dark); }

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-bg);
    border: 1px solid #f0d9a0;
    color: #8a5f08;
    font-weight: 600;
    font-size: 14px;
    padding: 9px 16px;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all var(--t);
}
.nav-phone:hover { background: #fdecc4; }

.wd-nav-cta { display: inline-flex; align-items: center; gap: 10px; margin-left: 8px; }

/* ---------- Hero ---------- */
.wd-hero {
    position: relative;
    padding: 76px 0 72px;
    background:
        linear-gradient(135deg, var(--primary-bg) 0%, transparent 42%),
        linear-gradient(225deg, var(--secondary-bg) 0%, transparent 38%),
        var(--bg);
    border-bottom: 1px solid var(--line);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 56px;
    align-items: center;
}

.hero-main h1 {
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.06;
    margin-bottom: 22px;
}

.hero-main .lead {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 30px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.stat-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 18px 16px;
    text-align: left;
    transition: border-color var(--t), transform var(--t);
}
.stat-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.stat-card strong { display: block; font-size: 24px; color: var(--primary-dark); line-height: 1; margin-bottom: 6px; }
.hero-stats > .stat-card:nth-child(1) { border-top: 3px solid var(--primary); }
.hero-stats > .stat-card:nth-child(2) { border-top: 3px solid var(--secondary); }
.hero-stats > .stat-card:nth-child(3) { border-top: 3px solid var(--blue); }
.hero-stats > .stat-card:nth-child(4) { border-top: 3px solid var(--coral); }
.stat-card span { font-size: 13px; color: var(--text-muted); line-height: 1.3; }

.hero-side { display: flex; flex-direction: column; gap: 16px; }
.hero-side-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 24px;
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.hero-side-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hero-side-card h3 { font-size: 17px; margin-bottom: 8px; }
.hero-side-card p { font-size: 14.5px; color: var(--text-muted); margin: 0; }

.icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #fff;
    font-size: 19px;
    margin-bottom: 16px;
}
.hero-side-card:nth-child(2) .icon-box { background: var(--secondary); }
.hero-side-card:nth-child(3) .icon-box { background: var(--blue); }

/* ---------- Cards ---------- */
.wd-card {
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 26px;
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.wd-card:hover { border-color: #9ecfb8; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.wd-card h4 { font-size: 18px; margin-bottom: 10px; }
.wd-card h5 { font-size: 16px; margin-bottom: 8px; }
.wd-card p { font-size: 14.5px; color: var(--text-muted); margin: 0; }
.wd-card.text-center { text-align: center; }

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 18px;
    transition: background var(--t), color var(--t);
}
.feature-grid-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 19px;
    margin-bottom: 16px;
}
.feature-grid-icon.mx-auto { margin-left: auto; margin-right: auto; }

/* Icônes colorées par colonne */
.row > [class*="col-"]:nth-child(4n+1) .card-icon,
.row > [class*="col-"]:nth-child(4n+1) .feature-grid-icon { background: var(--primary-bg); color: var(--primary); }
.row > [class*="col-"]:nth-child(4n+2) .card-icon,
.row > [class*="col-"]:nth-child(4n+2) .feature-grid-icon { background: var(--secondary-bg); color: var(--secondary); }
.row > [class*="col-"]:nth-child(4n+3) .card-icon,
.row > [class*="col-"]:nth-child(4n+3) .feature-grid-icon { background: var(--blue-bg); color: var(--blue); }
.row > [class*="col-"]:nth-child(4n+4) .card-icon,
.row > [class*="col-"]:nth-child(4n+4) .feature-grid-icon { background: var(--coral-bg); color: var(--coral); }

.row > [class*="col-"]:nth-child(4n+1) .wd-card:hover .card-icon { background: var(--primary); color: #fff; }
.row > [class*="col-"]:nth-child(4n+2) .wd-card:hover .card-icon { background: var(--secondary); color: #fff; }
.row > [class*="col-"]:nth-child(4n+3) .wd-card:hover .card-icon { background: var(--blue); color: #fff; }
.row > [class*="col-"]:nth-child(4n+4) .wd-card:hover .card-icon { background: var(--coral); color: #fff; }

.card-icon.mx-auto { margin-left: auto; margin-right: auto; }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
}
.card-link i { transition: transform var(--t); font-size: 12px; }
.card-link:hover { color: var(--primary); }
.card-link:hover i { transform: translateX(4px); }

/* ---------- Process steps ---------- */
.process-step {
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 24px;
    transition: border-color var(--t), transform var(--t);
}
.process-step:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.step-num {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
}
.process-step:nth-child(4n+2) .step-num { background: var(--secondary); }
.process-step:nth-child(4n+3) .step-num { background: var(--blue); }
.process-step:nth-child(4n+4) .step-num { background: var(--coral); }
.process-step h4, .process-step h5 { font-size: 16px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ---------- Tech chips ---------- */
.tech-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tech-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: border-color var(--t), transform var(--t);
}
.tech-chip i { width: 17px; text-align: center; flex-shrink: 0; }
.tech-chip-svg { width: 17px; height: 17px; flex-shrink: 0; display: block; }
.tech-chip:nth-child(4n+1) { border-color: #b8e0d5; background: #f0faf7; }
.tech-chip:nth-child(4n+2) { border-color: #f0d9a0; background: #fffbf0; }
.tech-chip:nth-child(4n+3) { border-color: #b8cfe8; background: #f5f9fd; }
.tech-chip:nth-child(4n+4) { border-color: #f0c4bc; background: #fef6f4; }

/* ---------- CTA band ---------- */
.wd-cta-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #0e6e5e 100%);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 56px 40px;
    text-align: center;
}
.wd-cta-band::after { display: none; }
.wd-cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin-bottom: 12px; }
.wd-cta-band p { color: rgba(255, 255, 255, 0.74); font-size: 17px; max-width: 560px; margin: 0 auto 28px; }
.wd-cta-band .btn-wd-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}
.wd-cta-band .btn-wd-outline:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.5); color: #fff; }

/* ---------- Page hero ---------- */
.wd-page-hero {
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--bg-soft) 100%);
    border-bottom: 1px solid var(--line);
    padding: 52px 0 44px;
}
.wd-page-hero h1 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 12px; }
.wd-page-hero > .wd-container > p { font-size: 17px; color: var(--text-muted); max-width: 680px; margin: 0; }

.breadcrumb-wd {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text-light);
    margin-bottom: 18px;
}
.breadcrumb-wd a { color: var(--text-muted); }
.breadcrumb-wd a:hover { color: var(--primary); }
.breadcrumb-wd span { color: var(--text-light); }

/* ---------- Content boxes ---------- */
.wd-service-visual img {
    display: block;
    border: 1px solid var(--border, rgba(10, 95, 80, 0.12));
    box-shadow: 0 18px 40px rgba(8, 28, 24, 0.12);
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

.wd-service-visual figcaption {
    line-height: 1.4;
}

.wd-content-box {
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 32px;
}
.wd-content-box h2 { font-size: 24px; margin-bottom: 16px; }
.wd-content-box h3 { font-size: 19px; margin-bottom: 16px; }
.wd-content-box p { color: var(--text-muted); }

.wd-check-list { list-style: none; }
.wd-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    color: var(--text);
}
.wd-check-list li:last-child { border-bottom: 0; }
.wd-check-list li i { color: var(--primary); font-size: 16px; margin-top: 3px; flex-shrink: 0; }
.wd-check-list strong { color: var(--ink); font-weight: 600; }

.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 22px 24px;
    margin-bottom: 16px;
}
.faq-item:last-child { margin-bottom: 0; }
.faq-item h5 { font-size: 16px; margin-bottom: 8px; }
.faq-item p { font-size: 14.5px; color: var(--text-muted); margin: 0; }

/* ---------- Person cards ---------- */
.person-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 26px;
    transition: border-color var(--t), box-shadow var(--t);
}
.person-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); }

.person-photo-wrap { position: relative; margin-bottom: 20px; }
.person-photo-frame {
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 16 / 9;
    background: var(--bg-tint);
}
.person-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.person-photo-flag {
    position: absolute;
    left: 14px;
    bottom: -12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}
.person-photo-flag .wd-flag { width: 26px; height: 26px; box-shadow: none; }

@media (min-width: 992px) {
    .person-photo { object-position: center 22%; }
    .person-photo-dezoom { object-position: center 42%; }
}

.person-name { font-size: 20px; margin-bottom: 4px; }
.person-card .role { font-size: 14px; color: var(--primary); font-weight: 600; margin-bottom: 16px; }
.person-bio p { font-size: 14.5px; color: var(--text-muted); margin-bottom: 12px; }

.person-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}
.person-phone a { font-weight: 600; color: var(--ink); font-size: 15px; display: inline-flex; align-items: center; }
.person-phone a:hover { color: var(--primary); }
.person-wa-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-grid !important;
    place-items: center;
    background: #e8f8ee;
    border: 1px solid #b8e8c8;
    color: #1a9e4a !important;
    font-size: 17px;
}
.person-wa-link:hover { background: #25d366; border-color: #25d366; color: #fff !important; }

/* ---------- Contact ---------- */
.contact-info-card,
.contact-form-card {
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 34px;
}
.contact-info-card h2 { font-size: 24px; margin-bottom: 14px; }
.contact-info-card > p { color: var(--text-muted); }

.contact-info-list { list-style: none; margin-top: 22px; }
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.contact-info-list li:last-child { border-bottom: 0; }
.contact-info-list .icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}
.contact-info-list li:nth-child(2) .icon-wrap { background: var(--secondary-bg); color: var(--secondary); }
.contact-info-list li:nth-child(3) .icon-wrap { background: var(--blue-bg); color: var(--blue); }
.contact-info-list li:nth-child(4) .icon-wrap { background: var(--coral-bg); color: var(--coral); }
.contact-info-list strong { color: var(--ink); font-weight: 600; display: block; }
.contact-info-list a { font-weight: 500; }
.contact-info-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}
.contact-info-phone {
    font-weight: 600;
    color: var(--ink);
    font-size: 15px;
}
.contact-info-phone:hover { color: var(--primary); }
.contact-info-list .wd-contact-btn-wa {
    padding: 8px 14px;
    font-size: 13px;
    background: #e8f8ee;
    border-color: #b8e8c8;
    color: #1a7a42;
}
.contact-info-list .wd-contact-btn-wa:hover { background: #25d366; border-color: #25d366; color: #fff; }

.contact-form-card h3 { font-size: 22px; }

.wd-form label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 7px;
}
.wd-form .form-control,
.wd-form .form-select {
    width: 100%;
    font-family: var(--font);
    font-size: 15px;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--line-strong);
    border-radius: var(--r-sm);
    padding: 12px 14px;
    transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.wd-form .form-control::placeholder { color: var(--text-light); }
.wd-form .form-control:focus,
.wd-form .form-select:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary);
    box-shadow: none;
}
.wd-form textarea.form-control { resize: vertical; min-height: 120px; }

.wd-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.wd-alert {
    border-radius: var(--r-sm);
    padding: 13px 16px;
    font-size: 14.5px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
}
.wd-alert-success { background: #eef6f0; border-color: #cfe6d8; color: #1f5135; }
.wd-alert-danger { background: #fbeef0; border-color: #f2cdd3; color: #8a2433; }
.wd-alert-warning { background: #fbf5ea; border-color: #f0e0c2; color: #7a5713; }

/* ---------- Footer ---------- */
.wd-footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #083d34 100%);
    color: rgba(255, 255, 255, 0.78);
    padding: 64px 0 28px;
}
.footer-brand {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 12px 18px;
    border-radius: var(--r);
    margin-bottom: 20px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}
.footer-logo-img { height: 44px; width: auto; display: block; }
.footer-desc { font-size: 14.5px; color: rgba(255, 255, 255, 0.6); max-width: 340px; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a,
.footer-social-wa {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--t);
}
.footer-social a:hover,
.footer-social-wa:hover { background: rgba(255, 255, 255, 0.16); color: #fff; }

.wd-footer h6 {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}
.footer-links, .footer-contact { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: rgba(255, 255, 255, 0.68); font-size: 14.5px; }
.footer-links a:hover { color: #fff; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.68);
}
.footer-contact li i { margin-top: 4px; color: rgba(255, 255, 255, 0.5); width: 16px; text-align: center; flex-shrink: 0; }
.footer-contact a { color: rgba(255, 255, 255, 0.82); }
.footer-contact a:hover { color: #fff; }
.footer-contact .wd-flag { width: 18px; height: 18px; }

.footer-divider { border: 0; border-top: 1px solid rgba(255, 255, 255, 0.1); margin: 40px 0 22px; }
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
}
.footer-bottom small { color: rgba(255, 255, 255, 0.5); font-size: 13px; }

/* ---------- WhatsApp float ---------- */
.wd-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1020;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: #25d366;
    color: #fff;
    font-size: 24px;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: transform var(--t), background var(--t);
}
.wd-whatsapp-float:hover { transform: translateY(-3px) scale(1.05); background: #1fb855; }

/* ---------- Contact modal ---------- */
.wd-contact-modal {
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
}
.wd-contact-modal .modal-title { font-size: 19px; color: var(--ink); }
.wd-modal-intro { font-size: 14.5px; color: var(--text-muted); margin-bottom: 18px; }

.wd-contact-choices { display: flex; flex-direction: column; gap: 12px; }
.wd-contact-choice {
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 16px;
    transition: border-color var(--t);
}
.wd-contact-choice:hover { border-color: var(--line-strong); }
.wd-contact-choice-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--ink);
    font-size: 15px;
}
.wd-contact-choice-flags {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.wd-contact-choice-head { margin-bottom: 12px; }
.wd-contact-choice-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; }

.wd-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--t);
}
.wd-contact-btn-phone { background: var(--primary); color: #fff; }
.wd-contact-btn-phone:hover { background: var(--primary-soft); color: #fff; }
.wd-contact-phone { letter-spacing: 0.01em; }
.wd-contact-phone-prefix {
    color: rgba(255, 255, 255, 0.58);
    font-weight: 500;
    margin-right: 4px;
}
.wd-contact-btn-wa { background: #e8f8ee; color: #1a7a42; border: 1px solid #b8e8c8; }
.wd-contact-btn-wa:hover { background: #25d366; border-color: #25d366; color: #fff; }

/* ---------- Success modal ---------- */
.wd-success-modal {
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 12px;
}
.wd-success-modal .modal-body { padding: 28px; }
.wd-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 32px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
}
.wd-success-modal .modal-title { font-size: 20px; color: var(--ink); }
.wd-success-text { font-size: 15px; color: var(--text-muted); margin-bottom: 22px; }

/* ---------- Portfolio ---------- */
.portfolio-card {
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.portfolio-card:hover { border-color: #9ecfb8; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.portfolio-card--featured { border-color: #9ecfb8; }
.portfolio-card--featured-duo {
    border-radius: 8px;
}

.portfolio-thumb {
    height: 200px;
    background: var(--bg-tint);
    display: grid;
    place-items: center;
    color: var(--text-light);
    font-size: 42px;
}
.portfolio-thumb--static { position: relative; display: block; padding: 0; overflow: hidden; background: var(--ink); }
.portfolio-thumb--static img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* Voile sombre permanent sur les visuels de sites */
.portfolio-thumb--static::after,
.portfolio-thumb--interactive::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 18, 0.22);
    pointer-events: none;
    z-index: 1;
}

.portfolio-card--featured .portfolio-thumb,
.portfolio-card--featured .portfolio-thumb--interactive { height: 300px; }

.portfolio-thumb--featured-full { height: auto; }
.portfolio-thumb--featured-full img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: unset;
}
.portfolio-card--featured .portfolio-thumb--featured-full { height: auto; }

/* Duo featured — Tam-Tam + KidsWorld côte à côte */
.portfolio-featured-row { margin-bottom: 0.25rem; }
.portfolio-card--featured-duo .portfolio-thumb--featured-duo {
    height: 280px;
}
.portfolio-card--featured-duo .portfolio-thumb--featured-duo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Tam-Tam — logo entier visible, léger décalage à droite */
.portfolio-thumb--tamtam {
    background: #f0f1f3;
    padding: 0 6px 0 14px;
    box-sizing: border-box;
}
.portfolio-card--featured-duo .portfolio-thumb--tamtam img {
    object-fit: contain;
    object-position: top center;
    width: 100%;
    height: 100%;
}

.portfolio-card--featured-duo .portfolio-body { padding: 22px 24px; }
.portfolio-card--featured-duo .portfolio-body h5 { font-size: 18px; }
.portfolio-card--featured-duo .portfolio-body p:not(.portfolio-note) { -webkit-line-clamp: 3; }

@media (min-width: 992px) {
    .portfolio-card--featured-duo .portfolio-thumb--featured-duo { height: 300px; }
}

@media (max-width: 767.98px) {
    .portfolio-card--featured-duo .portfolio-thumb--featured-duo { height: 220px; }
}

.portfolio-thumb--hover-dim::after { transition: background var(--t); }
.portfolio-card--featured:hover .portfolio-thumb--hover-dim::after {
    background: rgba(8, 12, 18, 0.48);
}

.portfolio-thumb--interactive {
    position: relative;
    width: 100%;
    height: 200px;
    padding: 0;
    border: 0;
    background: var(--ink);
    cursor: pointer;
    overflow: hidden;
    display: block;
}
.portfolio-thumb--interactive img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.portfolio-thumb-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(180deg, rgba(17, 22, 30, 0.1) 0%, rgba(17, 22, 30, 0.66) 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transition: opacity var(--t);
}
.portfolio-thumb-overlay i { font-size: 26px; }
.portfolio-thumb--interactive:hover .portfolio-thumb-overlay,
.portfolio-thumb--interactive:focus-visible .portfolio-thumb-overlay { opacity: 1; }

.portfolio-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}
.portfolio-badge--live i { font-size: 7px; color: #2f8f5b; animation: wd-pulse 1.8s ease-in-out infinite; }
@keyframes wd-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.portfolio-body { padding: 22px; }
.portfolio-status {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.portfolio-status--real { background: var(--primary-bg); color: var(--primary-dark); }
.portfolio-status--online { background: var(--primary-bg); color: var(--primary-dark); }
.portfolio-status--coming-soon { background: var(--primary-bg); color: var(--primary-dark); }
.portfolio-status--progress { background: var(--secondary-bg); color: #8a5f08; }
.portfolio-status--proposal { background: var(--blue-bg); color: var(--blue); }
.portfolio-note {
    margin: 24px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
}
.portfolio-body h4, .portfolio-body h5 { font-size: 16.5px; margin-bottom: 8px; display: flex; align-items: center; }
.portfolio-body p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.portfolio-card--featured .portfolio-body { padding: 26px 28px; }
.portfolio-card--featured .portfolio-body h5 { font-size: 19px; }
.portfolio-card--featured .portfolio-body p:not(.portfolio-note) { -webkit-line-clamp: 3; }

.portfolio-external {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-left: 8px;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 12px;
    transition: all var(--t);
}
.portfolio-external:hover { color: var(--ink); background: var(--bg-soft); }

.portfolio-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; margin-bottom: 8px; }
.portfolio-tag {
    font-size: 11px;
    padding: 4px 11px;
    border-radius: var(--r-pill);
    background: var(--primary-bg);
    color: var(--primary-dark);
    border: 1px solid #b8e0d5;
    font-weight: 600;
}

.portfolio-gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--ink);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: color var(--t);
}
.portfolio-gallery-link:hover { color: var(--primary); }

/* ---------- Portfolio carousel modal ---------- */
.wd-portfolio-modal { overflow: hidden; }
.wd-portfolio-modal .modal-dialog.wd-portfolio-modal-dialog {
    width: min(1140px, calc(100vw - 24px));
    max-width: none;
    height: calc(100dvh - 24px);
    max-height: calc(100dvh - 24px);
    margin: 12px auto;
    display: flex;
    align-items: stretch;
}
.wd-portfolio-modal .modal-content {
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-height: 100%;
}
.wd-portfolio-modal-body { flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; overflow: hidden; }
.wd-portfolio-carousel { flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.wd-portfolio-carousel-inner { flex: 1 1 auto; min-height: 0; position: relative; }
.wd-portfolio-carousel .carousel-item { height: 100%; }
.wd-portfolio-carousel .carousel-item.active,
.wd-portfolio-carousel .carousel-item-next,
.wd-portfolio-carousel .carousel-item-prev { display: flex; flex-direction: column; height: 100%; }

.wd-portfolio-modal-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 8px 12px;
    background: var(--surface);
    color: var(--ink);
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 14px 12px 18px;
    flex-shrink: 0;
}
.wd-portfolio-modal-head { min-width: 0; padding-top: 2px; }
.wd-portfolio-modal-head .modal-title { font-size: 16px; font-weight: 700; line-height: 1.25; margin-bottom: 1px; }
.wd-portfolio-modal-subtitle { font-size: 12.5px; line-height: 1.3; color: var(--text-muted); }
.wd-portfolio-modal-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.wd-portfolio-site-btn { font-size: 12px; font-weight: 600; padding: 7px 14px; white-space: nowrap; }
.wd-portfolio-close { flex-shrink: 0; margin: 0; padding: 6px; opacity: 0.55; transition: opacity var(--t); }
.wd-portfolio-close:hover { opacity: 1; }

.wd-portfolio-slide-frame {
    flex: 1 1 auto;
    min-height: 0;
    background: #0b0f14;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 52px;
    overflow: hidden;
}
.wd-portfolio-slide-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.wd-portfolio-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px;
    background: var(--surface);
    border-top: 1px solid var(--line);
    flex-shrink: 0;
}
.wd-portfolio-caption p {
    margin: 0;
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.4;
    min-width: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.wd-portfolio-counter {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    padding: 5px 11px;
    border-radius: var(--r-pill);
}

.wd-portfolio-control { width: auto; opacity: 1; top: 0; bottom: 0; transform: none; border: 0; background: none; }
.wd-portfolio-control.carousel-control-prev { left: 10px; }
.wd-portfolio-control.carousel-control-next { right: 10px; }
.wd-portfolio-control-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    box-shadow: var(--shadow-md);
    transition: transform var(--t), background var(--t);
}
.wd-portfolio-control:hover .wd-portfolio-control-icon { transform: scale(1.06); background: #fff; }

.wd-portfolio-thumbs { display: flex; gap: 6px; padding: 10px 12px 12px; overflow: hidden; background: var(--bg-soft); flex-shrink: 0; }
.wd-portfolio-thumb {
    flex: 1 1 0;
    min-width: 0;
    max-width: 88px;
    height: 48px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    opacity: 0.55;
    transition: all var(--t);
}
.wd-portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.wd-portfolio-thumb:hover, .wd-portfolio-thumb.active { opacity: 1; border-color: var(--ink); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    * { scroll-behavior: auto !important; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1199.98px) {
    .hero-grid { gap: 40px; }
}

@media (max-width: 991.98px) {
    .wd-section { padding: 64px 0; }
    .wd-section-sm { padding: 48px 0; }
    .wd-content-section { padding: 56px 0; }

    .navbar-toggler { display: inline-flex; }

    .wd-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: var(--surface);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md);
        padding: 12px 16px 18px;
        max-height: calc(100dvh - 70px);
        overflow-y: auto;
        display: none;
    }
    .wd-nav.show { display: flex; }
    .wd-nav .nav-link { padding: 12px 14px; border-radius: var(--r-sm); justify-content: space-between; }

    .wd-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        border-left: 2px solid var(--line);
        border-radius: 0;
        margin: 2px 0 6px 14px;
        padding: 2px 0;
        min-width: 0;
        display: none;
    }
    .wd-nav .nav-item.open .wd-dropdown { display: block; }

    .nav-phone { width: 100%; justify-content: center; margin-top: 8px; }
    .wd-nav-cta { width: 100%; margin-left: 0; margin-top: 6px; }
    .wd-nav-cta .btn-wd-primary { width: 100%; }

    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-main .lead { max-width: none; }
    .hero-side { flex-direction: row; }
    .hero-side-card { flex: 1; }
}

@media (max-width: 767.98px) {
    body { font-size: 15.5px; }
    .wd-container { padding-left: 18px; padding-right: 18px; }
    .wd-section { padding: 52px 0; }
    .wd-section-sm { padding: 40px 0; }
    .wd-content-section { padding: 44px 0; }

    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-side { flex-direction: column; }
    .hero-actions .btn-wd-primary, .hero-actions .btn-wd-outline { flex: 1; }

    .wd-cta-band { padding: 40px 24px; }
    .wd-content-box, .contact-info-card, .contact-form-card { padding: 24px; }

    .footer-bottom { flex-direction: column; }

    /* Portfolio modal */
    .wd-portfolio-modal .modal-dialog.wd-portfolio-modal-dialog {
        width: calc(100vw - 16px);
        height: calc(100dvh - 16px);
        max-height: calc(100dvh - 16px);
        margin: 8px auto;
    }
    .wd-portfolio-slide-frame { padding: 8px 40px; }
    .wd-portfolio-control-icon { width: 36px; height: 36px; font-size: 13px; }
    .wd-portfolio-caption { flex-direction: column; align-items: flex-start; gap: 8px; }
    .wd-portfolio-caption p { -webkit-line-clamp: 3; }
    .wd-portfolio-thumbs { flex-wrap: wrap; justify-content: center; }
    .wd-portfolio-thumb { flex: 0 1 calc(20% - 5px); max-width: none; height: 40px; }
}

@media (max-width: 479.98px) {
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .wd-portfolio-thumb { flex: 0 1 calc(25% - 5px); height: 36px; }
}

/* =========================================================
   REFONTE ACCUEIL 2026 — conversion & 2 piliers
   ========================================================= */

/* Rotateur de slogans (fade in / out) */
.hero-slogan {
    position: relative;
    min-height: 3em;
    margin: 0 0 24px;
    max-width: 600px;
}
.hero-slogan-item {
    position: absolute;
    inset: 0;
    display: block;
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 600;
    font-style: italic;
    line-height: 1.35;
    color: var(--primary-dark);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}
.hero-slogan-item.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.stat-card strong.is-word { font-size: 17px; letter-spacing: -0.01em; }

/* Hero visuel (remplace les 2 cartes) */
.hero-side--visual { display: block; }
.hero-side--visual img {
    width: 100%;
    height: auto;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
}

/* ---------- Success stories ---------- */
.success-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.success-card:hover { border-color: #9ecfb8; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.success-thumb { position: relative; height: 180px; }
.success-tag {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 2;
    padding: 5px 12px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.94);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-sm);
}
.success-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 14px; }
.success-client { font-size: 20px; margin: 0 0 2px; color: var(--ink); }
.success-step { display: flex; flex-direction: column; gap: 4px; }
.success-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.success-label i { font-size: 11px; }
.success-label--problem { color: var(--coral); }
.success-label--action { color: var(--blue); }
.success-label--result { color: var(--primary); }
.success-step p { font-size: 14px; line-height: 1.5; color: var(--text-muted); margin: 0; }
.success-label--result + p { color: var(--ink-soft); font-weight: 500; }

/* ---------- 2 piliers ---------- */
.pilier-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.pilier-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pilier-media { background: #fff; border-bottom: 1px solid var(--line); padding: 12px; }
.pilier-media img { width: 100%; height: 230px; object-fit: contain; display: block; }
.pilier-content { padding: 26px 28px 30px; }
.pilier-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 12px;
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.pilier-badge--strategie { background: var(--primary-bg); color: var(--primary-dark); }
.pilier-badge--tech { background: var(--blue-bg); color: var(--blue); }
.pilier-content h3 { font-size: 22px; margin-bottom: 8px; }
.pilier-content > p { font-size: 15px; color: var(--text-muted); margin-bottom: 16px; }
.pilier-list { display: flex; flex-direction: column; gap: 9px; list-style: none; }
.pilier-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.pilier-list li i { color: var(--primary); font-size: 13px; margin-top: 4px; flex-shrink: 0; }
.pilier-card:has(.pilier-badge--tech) .pilier-list li i { color: var(--blue); }

/* ---------- Services 2 colonnes ---------- */
.services-col {
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 20px;
}
.services-col-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 8px 18px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--line);
}
.services-col-head h3 { font-size: 18px; margin: 0; }
.services-col-head p { font-size: 13.5px; color: var(--text-muted); margin: 2px 0 0; }
.services-col-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 19px;
    flex-shrink: 0;
}
.services-col-head--strategie .services-col-icon { background: var(--primary); }
.services-col-head--tech .services-col-icon { background: var(--blue); }

.service-line {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 12px;
    border-radius: var(--r);
    color: inherit;
    transition: background var(--t);
}
.service-line:hover { background: var(--bg-soft); color: inherit; }
.service-line-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 17px;
    flex-shrink: 0;
    transition: background var(--t), color var(--t);
}
.services-col-head--tech ~ .service-line .service-line-icon,
.service-line:has(~ .services-col-head--tech) .service-line-icon { }
.service-line-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.service-line-text strong { font-size: 15px; color: var(--ink); line-height: 1.25; }
.service-line-text span { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.service-line-arrow { margin-left: auto; color: var(--text-light); font-size: 12px; transition: transform var(--t), color var(--t); flex-shrink: 0; }
.service-line:hover .service-line-arrow { color: var(--primary); transform: translateX(3px); }
.service-line:hover .service-line-icon { background: var(--primary); color: #fff; }

/* Colonne technologie : accent bleu sur les icônes de service */
.col-lg-6:has(.services-col-head--tech) .service-line-icon { background: var(--blue-bg); color: var(--blue); }
.col-lg-6:has(.services-col-head--tech) .service-line:hover .service-line-icon { background: var(--blue); color: #fff; }
.col-lg-6:has(.services-col-head--tech) .service-line:hover .service-line-arrow { color: var(--blue); }

/* ---------- Stack technique (discret) ---------- */
.tech-section--muted { padding: 40px 0; }
.tech-muted-label {
    text-align: center;
    font-size: 13.5px;
    color: var(--text-light);
    margin-bottom: 20px;
}
.tech-muted-label i { color: var(--primary); margin-right: 6px; }
.tech-chips--sm { gap: 7px; }
.tech-chips--sm .tech-chip {
    font-size: 12px;
    padding: 5px 11px;
    background: var(--surface);
    border-color: var(--line);
    color: var(--text-muted);
}
.tech-chips--sm .tech-chip i,
.tech-chips--sm .tech-chip-svg { width: 14px; height: 14px; font-size: 13px; }

/* ---------- Responsive refonte ---------- */
@media (max-width: 991.98px) {
    .hero-side--visual { max-width: 560px; margin: 0 auto; }
    .pilier-media img { height: 210px; }
}
@media (max-width: 575.98px) {
    .hero-slogan { min-height: 4.2em; }
    .pilier-content { padding: 22px 20px 26px; }
    .services-col { padding: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slogan-item { transition: opacity 0.2s linear; transform: none; }
    .hero-slogan-item.is-active { transform: none; }
}
