/* ==========================================================================
   WEBMASTER ANNECY - STYLES GLOBAUX
   Utilisé par toutes les pages : index, about, services, contact,
   projects, blog, mentions-legales, politique-confidentialite, 404.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & RESET
   -------------------------------------------------------------------------- */
:root {
    --bg: #FAFAFA;
    --bg-alt: #F0F0F0;
    --bg-card: #FFFFFF;
    --bg-dark: #0E0E18;
    --text: #1A1A2E;
    --text-light: #6B7280;
    --text-lighter: #9CA3AF;
    --accent: #2891C9;
    --accent-hover: #1F73A3;
    --accent-light: #DBEEF7;
    --accent-deep: #1A5F8A;
    --accent-gradient: linear-gradient(135deg, #2891C9 0%, #2563EB 60%, #7C3AED 100%);
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-full: 999px;
    --shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-lg: 0 4px 6px rgba(0,0,0,0.03), 0 12px 40px rgba(0,0,0,0.08);
    --font-display: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
body.mobile-menu-open { overflow: hidden; }
body.lightbox-open { overflow: hidden; }
[hidden] { display: none !important; }
a { text-decoration: none; color: inherit; }
img, svg { max-width: 100%; height: auto; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }
section { padding: clamp(80px, 10vw, 140px) 0; }

/* --------------------------------------------------------------------------
   2. TYPO COMMUNE
   -------------------------------------------------------------------------- */
.overline {
    font-family: var(--font-body); font-size: 13px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
    display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.overline::before { content: ''; width: 32px; height: 2px; background: var(--accent); display: block; }

.section-title {
    font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px);
    font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; color: var(--text); margin-bottom: 20px;
}
.section-subtitle { font-size: 17px; color: var(--text-light); max-width: 560px; line-height: 1.7; }
.highlight {
    background: var(--accent-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}

/* --------------------------------------------------------------------------
   3. SCROLL PROGRESS + CURSOR
   -------------------------------------------------------------------------- */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px;
    background: var(--accent-gradient); z-index: 1001; width: 0%;
}
.cursor-follower {
    width: 20px; height: 20px; background: var(--accent); border-radius: 50%;
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
    mix-blend-mode: difference; opacity: 0;
    transition: width 0.3s var(--transition), height 0.3s var(--transition), opacity 0.3s;
}
.cursor-follower.active { opacity: 0.6; }
.cursor-follower.hover { width: 50px; height: 50px; }

/* --------------------------------------------------------------------------
   4. NAVIGATION
   -------------------------------------------------------------------------- */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0; transition: all 0.4s var(--transition);
}
.home-page .nav:not(.scrolled) .nav-logo,
.home-page .nav:not(.scrolled) .nav-links a,
.home-page .nav:not(.scrolled) .nav-link-button,
.hero-image-page .nav:not(.scrolled) .nav-logo,
.hero-image-page .nav:not(.scrolled) .nav-links a,
.hero-image-page .nav:not(.scrolled) .nav-link-button {
    color: rgba(255,255,255,0.9);
}
.home-page .nav:not(.scrolled) .nav-logo .logo-mark,
.hero-image-page .nav:not(.scrolled) .nav-logo .logo-mark { color: #fff; }
.home-page .nav:not(.scrolled) .logo-tagline,
.hero-image-page .nav:not(.scrolled) .logo-tagline { color: rgba(255,255,255,0.58); }
.home-page .nav:not(.scrolled) .nav-cta,
.hero-image-page .nav:not(.scrolled) .nav-cta {
    background: rgba(255,255,255,0.92);
    color: var(--text);
    box-shadow: 0 12px 34px rgba(0,0,0,0.18);
}
.home-page .nav:not(.scrolled) .nav-toggle span,
.hero-image-page .nav:not(.scrolled) .nav-toggle span { background: #fff; }
.nav.scrolled {
    padding: 12px 0; background: rgba(250,250,250,0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; position: relative; }
.nav-logo {
    font-family: var(--font-display); font-weight: 700;
    letter-spacing: -0.02em; color: var(--text);
    display: flex; align-items: center; gap: 12px;
    line-height: 1;
}
.nav-logo .logo-mark { width: 32px; height: 32px; color: var(--accent); flex-shrink: 0; display: block; }
.nav-logo .logo-text { display: flex; flex-direction: column; gap: 2px; }
.nav-logo .logo-name { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.nav-logo .logo-tagline { font-size: 11px; font-weight: 500; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase; }
.logo-dot { width: 10px; height: 10px; background: var(--accent); border-radius: 50%; display: inline-block; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: clamp(34px, 4.6vw, 72px); list-style: none; }
.nav-links a, .nav-link-button {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 800; color: var(--text-light);
    transition: color 0.3s; position: relative; letter-spacing: -0.025em;
}
.nav-link-button {
    font-family: var(--font-display); background: transparent; border: 0;
    padding: 0; cursor: pointer;
}
.nav-links a::after, .nav-link-button::after {
    content: ''; position: absolute; bottom: -8px; left: 0; width: 0;
    height: 2px; background: var(--accent); transition: width 0.3s var(--transition);
}
.nav-links a:hover, .nav-links a.active-link, .nav-link-button:hover, .nav-item.open .nav-link-button { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active-link::after, .nav-link-button:hover::after, .nav-item.open .nav-link-button::after { width: 100%; }
.nav-item { position: relative; }

.mega-panel {
    position: fixed; top: 70px; left: 0; right: 0;
    width: 100vw; transform: translateY(12px);
    background:
        radial-gradient(circle at 76% 8%, rgba(40,145,201,0.08), transparent 30%),
        rgba(250,250,250,0.98);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 24px 80px rgba(26,26,46,0.14);
    padding: 26px 0 30px; opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.25s var(--transition), transform 0.25s var(--transition), visibility 0.25s;
    backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
}
.mega-panel::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -22px;
    height: 22px;
}
.nav-item:hover .mega-panel, .nav-item:focus-within .mega-panel, .nav-item.open .mega-panel {
    opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0);
}
.mega-inner {
    display: block;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding-left: clamp(28px, 4vw, 60px);
    padding-right: clamp(28px, 4vw, 60px);
}
.mega-grid {
    display: grid; grid-template-columns: repeat(var(--mega-columns, 4), minmax(0, 1fr)); gap: clamp(24px, 3.4vw, 58px);
    align-items: start;
    width: 100%;
}
.mega-grid[style*="--mega-columns: 2"] {
    grid-template-columns: minmax(420px, 0.72fr) minmax(420px, 0.88fr);
}
.mega-column {
    padding: 0; display: flex; flex-direction: column; gap: 7px;
}
.mega-title {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0em;
    text-transform: uppercase;
    color: var(--accent);
}
.mega-link {
    display: flex; flex-direction: column; gap: 2px; padding: 10px 12px 10px 16px;
    border-radius: 8px; color: var(--text); position: relative; overflow: hidden;
    transition: background 0.3s var(--transition), transform 0.3s var(--transition), box-shadow 0.3s var(--transition), color 0.3s var(--transition);
}
.mega-link::after { display: none; }
.mega-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-radius: 999px;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s var(--transition);
}
.mega-link span {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    transition: color 0.3s var(--transition), transform 0.3s var(--transition);
}
.mega-link small { font-size: 11px; line-height: 1.35; color: var(--text-light); }
.mega-link:hover {
    background: linear-gradient(90deg, rgba(40,145,201,0.12), rgba(40,145,201,0.04));
    transform: translateX(5px);
    box-shadow: inset 0 0 0 1px rgba(40,145,201,0.08);
}
.mega-link:hover::before { transform: scaleY(1); }
.mega-link:hover span { color: var(--accent-deep); transform: translateX(2px); }
.mega-link.active-link { background: var(--bg-alt); }
.mega-promo-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 196px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(18,62,104,0.12);
    box-shadow: 0 18px 40px rgba(18,62,104,0.1);
    color: var(--text);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s var(--transition), border-color 0.3s var(--transition), box-shadow 0.3s var(--transition);
}
.mega-promo-card::after {
    display: none;
}
.mega-promo-card a::after { display: none; }
.mega-promo-card:hover {
    transform: translateY(-2px);
    border-color: rgba(40,145,201,0.24);
    box-shadow: 0 22px 50px rgba(18,62,104,0.13);
}
.mega-promo-visual {
    display: block;
    aspect-ratio: 0.72;
    padding: 6px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(18,62,104,0.1);
    box-shadow: 0 14px 28px rgba(18,62,104,0.12);
    transition: transform 0.35s var(--transition);
    position: relative;
    z-index: 1;
}
.mega-promo-visual img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.45s var(--transition);
}
.mega-promo-card:hover .mega-promo-visual {
    transform: translateY(-2px);
}
.mega-promo-card:hover .mega-promo-visual img {
    transform: scale(1.04);
}
.mega-promo-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    position: relative;
    z-index: 1;
}
.mega-promo-content > span {
    margin-bottom: 7px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}
.mega-promo-content h3 {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text);
}
.mega-promo-content p {
    margin: 0 0 14px;
    font-size: 12px;
    line-height: 1.42;
    color: var(--text-light);
}
.mega-promo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 9px 13px;
    border-radius: var(--radius-full);
    background: #fff;
    color: var(--text) !important;
    border: 1px solid rgba(18,62,104,0.16);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(18,62,104,0.08);
    transition: transform 0.3s var(--transition), background 0.3s var(--transition), color 0.3s var(--transition), box-shadow 0.3s var(--transition);
}
.mega-promo-button:hover {
    background: var(--text);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(18,62,104,0.18);
}
.mega-promo-button i {
    font-style: normal;
    transition: transform 0.3s var(--transition);
}
.mega-promo-button:hover i { transform: translateX(3px); }
.nav-cta {
    font-size: 14px; font-weight: 600; padding: 12px 28px; background: var(--text);
    color: #fff; border-radius: var(--radius-full);
    transition: all 0.3s var(--transition); border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(40,145,201,0.35); }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s; }

/* --------------------------------------------------------------------------
   5. MOBILE MENU
   -------------------------------------------------------------------------- */
.mobile-menu {
    position: fixed; inset: 0 auto 0 0; width: 100%; max-width: 100vw; background: #F7F8FA; z-index: 1200;
    display: block; opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.32s var(--transition), transform 0.32s var(--transition);
    padding: max(20px, env(safe-area-inset-top)) 18px max(28px, env(safe-area-inset-bottom));
    overflow-x: hidden; overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}
.mobile-menu.active { opacity: 1; visibility: visible; pointer-events: all; transform: translateX(0); }
.mobile-menu a { font-family: var(--font-display); color: var(--text); transition: color 0.3s, background 0.3s, transform 0.3s; }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu-close {
    position: fixed; top: max(18px, env(safe-area-inset-top)); right: 18px;
    width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 50%; box-shadow: var(--shadow); font-size: 31px; line-height: 1;
    cursor: pointer; color: var(--text); z-index: 2;
}
.mobile-menu-groups {
    display: grid; gap: 12px; width: min(720px, 100%); margin: 0 auto;
    padding-top: 56px;
    padding-bottom: 28px;
}
.mobile-menu-head {
    padding: 0 4px 2px;
}
.mobile-menu-head span {
    display: block; font-family: var(--font-display); font-size: 30px; font-weight: 800;
    letter-spacing: -0.04em; line-height: 1;
}
.mobile-menu-head small {
    display: block; margin-top: 6px; color: var(--text-light); font-size: 13px;
}
.mobile-menu-accordions { display: grid; gap: 12px; }
.mobile-accordion,
.mobile-subaccordion {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.mobile-subaccordion {
    border-radius: 12px;
    box-shadow: none;
    background: rgba(247,248,250,0.88);
}
.mobile-accordion-toggle,
.mobile-subaccordion-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    font-family: var(--font-display);
    text-align: left;
}
.mobile-accordion-toggle {
    padding: 17px 18px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.035em;
}
.mobile-subaccordion-toggle {
    padding: 15px 14px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--accent);
}
.mobile-accordion-toggle i,
.mobile-subaccordion-toggle i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-light);
    position: relative;
    flex-shrink: 0;
    transition: transform 0.28s var(--transition), background 0.28s var(--transition);
}
.mobile-accordion-toggle i::before,
.mobile-accordion-toggle i::after,
.mobile-subaccordion-toggle i::before,
.mobile-subaccordion-toggle i::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transform: translate(-50%, -50%);
}
.mobile-accordion-toggle i::after,
.mobile-subaccordion-toggle i::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.28s var(--transition);
}
.mobile-accordion.active > .mobile-accordion-toggle i,
.mobile-subaccordion.active > .mobile-subaccordion-toggle i {
    background: var(--accent);
    transform: rotate(180deg);
}
.mobile-accordion.active > .mobile-accordion-toggle i::before,
.mobile-accordion.active > .mobile-accordion-toggle i::after,
.mobile-subaccordion.active > .mobile-subaccordion-toggle i::before,
.mobile-subaccordion.active > .mobile-subaccordion-toggle i::after {
    background: #fff;
}
.mobile-accordion.active > .mobile-accordion-toggle i::after,
.mobile-subaccordion.active > .mobile-subaccordion-toggle i::after {
    transform: translate(-50%, -50%) rotate(0deg);
}
.mobile-accordion-panel,
.mobile-subaccordion-panel {
    display: none;
    max-height: none;
    overflow: visible;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.24s var(--transition), transform 0.24s var(--transition);
}
.mobile-accordion-panel {
    gap: 10px;
    padding: 0 12px;
}
.mobile-accordion.active > .mobile-accordion-panel {
    display: grid;
    opacity: 1;
    transform: none;
    padding-bottom: 12px;
}
.mobile-subaccordion-panel {
    gap: 6px;
    padding: 0 8px;
}
.mobile-subaccordion.active > .mobile-subaccordion-panel {
    display: grid;
    opacity: 1;
    transform: none;
    padding-bottom: 8px;
}
.mobile-menu-link {
    display: grid; gap: 2px; padding: 11px 10px; border-radius: 10px;
    margin: 0;
}
.mobile-menu-link:hover {
    background: rgba(40,145,201,0.08);
    transform: translateX(3px);
}
.mobile-menu-link.active-link { background: rgba(40,145,201,0.1); }
.mobile-menu-link span {
    font-size: 17px; font-weight: 800; line-height: 1.18; letter-spacing: -0.02em;
}
.mobile-menu-link small {
    font-family: var(--font-body); font-size: 12px; font-weight: 500;
    line-height: 1.35; color: var(--text-light);
}
.mobile-menu-promo {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin: 4px 0 2px;
    padding: 12px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(18,62,104,0.1);
    box-shadow: 0 14px 30px rgba(18,62,104,0.08);
    color: var(--text) !important;
}
.mobile-menu-promo-cover {
    display: block;
    aspect-ratio: 0.72;
    padding: 5px;
    border-radius: 8px;
    overflow: hidden;
    background: #f7fafc;
    border: 1px solid rgba(18,62,104,0.1);
    box-shadow: 0 12px 26px rgba(18,62,104,0.1);
}
.mobile-menu-promo-cover img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 6px;
    object-fit: contain;
    object-position: center;
}
.mobile-menu-promo-content {
    display: grid;
    gap: 3px;
    min-width: 0;
}
.mobile-menu-promo-content small {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}
.mobile-menu-promo-content strong {
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
}
.mobile-menu-promo-content em {
    font-family: var(--font-body);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    color: var(--accent-deep);
}
.mobile-menu-direct-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 18px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.035em;
}
.mobile-menu-direct-link::after {
    content: '→';
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 17px;
    line-height: 1;
}
.mobile-menu-cta {
    width: min(720px, 100%);
    margin: 0 auto;
}
.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    padding: 16px 22px;
    border-radius: var(--radius-full);
    background: var(--text);
    font-size: 16px;
    font-weight: 800;
    color: #fff !important;
    box-shadow: 0 12px 30px rgba(26,26,46,0.16);
}
.mobile-menu-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 4px;
}
.mobile-menu-socials a {
    min-width: 56px;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}
.mobile-menu-socials svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}
.mobile-menu-socials span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.btn-primary, .btn-secondary, .btn-white, .btn-ghost {
    display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px;
    border-radius: var(--radius-full); font-size: 15px; font-weight: 600;
    cursor: pointer; transition: all 0.4s var(--transition);
    text-decoration: none; font-family: var(--font-body);
}
.btn-primary { background: var(--text); color: #fff; border: none; }
.btn-primary:hover { background: var(--accent); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(40,145,201,0.35); }
.btn-primary .arrow { transition: transform 0.3s var(--transition); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-secondary { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--text); transform: translateY(-2px); }

.btn-white { background: #fff; color: var(--text); border: none; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,255,255,0.2); }

.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   7. REVEAL ANIMATIONS (états initiaux)
   -------------------------------------------------------------------------- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.blur-in,
.title-word {
    opacity: 1;
    transform: none;
    filter: none;
}
.js-ready .reveal,
.js-ready .reveal-left,
.js-ready .reveal-right,
.js-ready .reveal-scale,
.js-ready .blur-in,
.js-ready .title-word {
    opacity: 0;
    transition:
        opacity 0.72s var(--transition),
        transform 0.72s var(--transition),
        filter 0.72s var(--transition);
}
.js-ready .reveal,
.js-ready .title-word { transform: translateY(26px); }
.js-ready .reveal-left { transform: translateX(-28px); }
.js-ready .reveal-right { transform: translateX(28px); }
.js-ready .reveal-scale { transform: scale(0.94); }
.js-ready .blur-in { transform: translateY(18px); filter: blur(10px); }
.js-ready .is-visible,
.js-ready .title-word.is-visible,
.js-ready .reveal.is-visible,
.js-ready .reveal-left.is-visible,
.js-ready .reveal-right.is-visible,
.js-ready .reveal-scale.is-visible,
.js-ready .blur-in.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
}
.title-line { display: block; overflow: hidden; }
.title-word { display: inline-block; }
.magnetic { position: relative; transition: transform 0.3s var(--transition); }

/* --------------------------------------------------------------------------
   8. LOADER (page d'accueil)
   -------------------------------------------------------------------------- */
.loader {
    position: fixed; inset: 0; background: var(--bg); z-index: 10000;
    display: none; align-items: center; justify-content: center;
    flex-direction: column; gap: 20px;
    animation: loaderDismiss 0.35s ease 2.2s forwards;
}
.js-ready .loader { display: flex; }
.loader.is-hidden,
.loader[data-hidden="true"] {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
.loader-logo { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--text); }
.loader-bar { width: 120px; height: 3px; background: var(--border-light); border-radius: 4px; overflow: hidden; }
.loader-bar-inner { height: 100%; background: var(--accent-gradient); width: 0%; animation: loaderAnim 1.5s var(--transition) forwards; }
@keyframes loaderAnim { 0% { width: 0%; } 100% { width: 100%; } }
@keyframes loaderDismiss {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* --------------------------------------------------------------------------
   9. PAGE HERO (sous-pages : about, services, contact, projects, blog…)
   -------------------------------------------------------------------------- */
.page-hero { padding: 180px 0 100px; position: relative; overflow: hidden; }
.page-hero::before {
    content: ''; position: absolute; width: 500px; height: 500px;
    background: var(--accent-light); border-radius: 50%; filter: blur(100px);
    opacity: 0.4; top: -200px; right: -100px;
}
.page-hero-image {
    min-height: min(72vh, 720px);
    display: flex;
    align-items: flex-end;
    background: var(--text);
}
.page-hero-image::before { display: none; }
.page-hero-bg,
.page-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.page-hero-bg {
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.page-hero-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(14,14,24,0.88) 0%, rgba(14,14,24,0.72) 44%, rgba(14,14,24,0.22) 100%),
        linear-gradient(0deg, rgba(14,14,24,0.62) 0%, rgba(14,14,24,0.04) 58%);
}
.page-hero-image .container { position: relative; z-index: 2; }
.page-hero-image .page-hero-title { color: #fff; max-width: 820px; }
.page-hero-image .page-hero-desc { color: rgba(255,255,255,0.72); }
.page-hero-image .overline { color: rgba(255,255,255,0.72); }
.page-hero-image .overline::before { background: rgba(255,255,255,0.46); }
.page-hero-image .btn-primary {
    background: #fff;
    color: var(--text);
    box-shadow: 0 14px 34px rgba(0,0,0,0.2);
}
.page-hero-image .btn-primary:hover {
    background: var(--accent);
    color: #fff;
}
.page-hero-image .btn-secondary {
    color: #fff;
    border-color: rgba(255,255,255,0.56);
    background: rgba(255,255,255,0.04);
}
.page-hero-image .btn-secondary:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255,255,255,0.12);
}
.page-hero-title {
    font-family: var(--font-display); font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 700; line-height: 1.08; letter-spacing: -0.04em; margin-bottom: 20px;
    max-width: 100%;
    overflow-wrap: break-word;
}
.page-hero-desc { font-size: 18px; color: var(--text-light); max-width: 560px; line-height: 1.7; }
.page-hero-services {
    padding-bottom: 76px;
}
.page-hero .reveal,
.service-overview .reveal,
.service-hub-intro.reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

/* --------------------------------------------------------------------------
   10. HOME - HERO
   -------------------------------------------------------------------------- */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding-top: 100px;
    background: var(--text);
}
.hero-bg-picture,
.hero-bg-image {
    position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero-bg-picture {
    z-index: 0;
}
.hero-bg-image {
    object-fit: cover; object-position: center; z-index: 0;
}
.hero-bg-overlay {
    position: absolute; inset: 0; z-index: 0;
    background:
        linear-gradient(90deg, rgba(14,14,24,0.9) 0%, rgba(14,14,24,0.78) 36%, rgba(14,14,24,0.28) 70%, rgba(14,14,24,0.08) 100%),
        linear-gradient(0deg, rgba(14,14,24,0.45) 0%, rgba(14,14,24,0) 38%);
}
.hero-bg-shapes { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg-shapes .shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; }
.hero-bg-shapes .shape-1 { width: 600px; height: 600px; background: var(--accent-light); top: -200px; right: -100px; }
.hero-bg-shapes .shape-2 { width: 400px; height: 400px; background: #E0E7FF; bottom: -100px; left: -100px; }
.hero-bg-shapes .shape-3 { width: 300px; height: 300px; background: #F3E8FF; top: 50%; left: 40%; }
.hero .container {
    position: relative; z-index: 1; display: grid;
    grid-template-columns: minmax(680px, 0.92fr) minmax(220px, 1fr); gap: 60px; align-items: center;
}
.hero-content { max-width: 860px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-full);
    font-size: 13px; font-weight: 600; color: var(--accent); margin-bottom: 28px;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.hero-badge .pulse { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
    font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px);
    font-weight: 700; line-height: 1.05; letter-spacing: -0.04em;
    color: #fff; margin-bottom: 24px;
}
.hero-title .highlight {
    background: var(--accent-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-description { font-size: 18px; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 34px; max-width: 720px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 0; }
.hero-stats { display: flex; gap: 40px; margin-bottom: 42px; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-number { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: #fff; letter-spacing: -0.03em; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.58); margin-top: 4px; }
.hero .btn-primary { background: #fff; color: var(--text); }
.hero .btn-primary:hover { background: var(--accent); color: #fff; }
.hero .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.05); }
.hero .btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.12); }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 480px; }
.hero-card {
    background: var(--bg-card); border-radius: var(--radius); padding: 28px;
    box-shadow: var(--shadow); border: 1px solid var(--border-light);
    transition: all 0.4s var(--transition);
}
.hero-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hero-card:nth-child(2) { margin-top: 40px; }
.hero-card:nth-child(3) { margin-top: -40px; }
.hero-card-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; font-size: 22px;
}
.hero-card-icon.blue { background: var(--accent-light); }
.hero-card-icon.purple { background: #F3E8FF; }
.hero-card-icon.green { background: #D1FAE5; }
.hero-card-icon.orange { background: #FEF3C7; }
.hero-card-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.hero-card-text { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* --------------------------------------------------------------------------
   11. HOME - CLIENTS BAR
   -------------------------------------------------------------------------- */
.clients {
    padding: 60px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: #fff;
}
.clients .container { display: flex; align-items: center; gap: 48px; }
.clients-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    min-width: fit-content;
}
.clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
    gap: 14px;
    align-items: stretch;
    flex: 1;
}
.client-logo-card {
    min-height: 86px;
    padding: 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: rgba(249, 250, 251, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    filter: grayscale(0.2);
    opacity: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, filter 0.25s ease, border-color 0.25s ease;
}
.client-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(14, 165, 233, 0.24);
    filter: grayscale(0);
    opacity: 1;
}
.client-logo-card img {
    display: block;
    max-width: 132px;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.client-logo-card span {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.client-logo-card-dark { background: #06080c; border-color: #06080c; }
.client-logo-card-autosprint img { max-width: 82px; }
.client-logo-card-square img { max-height: 58px; max-width: 92px; }
.client-logo-card-emblem img { max-height: 60px; max-width: 64px; }
.client-logo-card-john img { max-width: 118px; max-height: 34px; }
.client-logo-card-wanaka { background: #07111f; border-color: #07111f; }
.client-logo-card-wanaka img { max-width: 126px; max-height: 44px; }
.client-logo-card-distri { background: #F7EFE7; border-color: rgba(216,191,167,0.58); }
.client-logo-card-distri img { max-width: 116px; max-height: 68px; }

/* --------------------------------------------------------------------------
   12. HOME - MARQUEE
   -------------------------------------------------------------------------- */
.marquee-container { overflow: hidden; padding: 20px 0; }
.marquee-track { display: flex; gap: 60px; animation: marquee 25s linear infinite; will-change: transform; }
.marquee-track span {
    font-family: var(--font-display); font-size: clamp(48px, 7vw, 96px);
    font-weight: 700; color: transparent;
    -webkit-text-stroke: 1.5px var(--border);
    white-space: nowrap; letter-spacing: -0.04em;
}
.marquee-track span { -webkit-text-stroke-color: rgba(26,26,46,0.36); }
.marquee-track .outline-strong { -webkit-text-stroke-color: rgba(18,62,104,0.58); }
.marquee-track .filled { -webkit-text-stroke: 0; color: var(--text); }
.marquee-track .design-word { color: var(--text); }
.marquee-track .seo-word { color: #123E68; }
.marquee-track .commerce-word { color: #0F766E; }
.marquee-track .crm-word { color: #059669; }
.marquee-track .marketing-word { color: #7C3AED; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   13. HOME - SERVICES LIST
   -------------------------------------------------------------------------- */
.services { background: var(--bg); }
.services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 60px; gap: 40px; flex-wrap: wrap;
}
.services-list { display: flex; flex-direction: column; gap: 2px; }
.service-item {
    --service-color: var(--accent);
    --service-soft: rgba(40,145,201,0.09);
    display: grid; grid-template-columns: auto 1fr auto; gap: 40px;
    align-items: center; padding: 32px 0;
    border-bottom: 1px solid var(--border); cursor: pointer;
    transition: all 0.4s var(--transition); position: relative;
}
.service-item-web { --service-color: #2891C9; --service-soft: rgba(40,145,201,0.1); }
.service-item-commerce { --service-color: #0F766E; --service-soft: rgba(15,118,110,0.11); }
.service-item-seo { --service-color: #123E68; --service-soft: rgba(18,62,104,0.12); }
.service-item-ai { --service-color: #28A8E0; --service-soft: rgba(121,207,255,0.2); }
.service-item-crm { --service-color: #059669; --service-soft: rgba(5,150,105,0.1); }
.service-item-marketing { --service-color: #7C3AED; --service-soft: rgba(124,58,237,0.1); }
.service-item-graphic { --service-color: #C08457; --service-soft: rgba(192,132,87,0.12); }
.service-item::before {
    content: ''; position: absolute; left: -40px; right: -40px; top: 0; bottom: 0;
    background: linear-gradient(90deg, var(--service-soft), rgba(255,255,255,0.86)); border-radius: var(--radius);
    opacity: 0; transition: opacity 0.4s var(--transition); z-index: -1;
}
.service-item:hover::before { opacity: 1; }
.service-item:hover { padding-left: 20px; padding-right: 20px; }
.service-number { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--service-color); min-width: 80px; }
.service-info h3 {
    font-family: var(--font-display); font-size: clamp(20px, 3vw, 28px);
    font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; transition: color 0.3s;
}
.service-item:hover .service-info h3 { color: var(--service-color); }
.service-info p { font-size: 15px; color: var(--text-light); max-width: 500px; line-height: 1.6; }
.service-arrow {
    width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--transition); color: var(--text-light);
}
.service-item:hover .service-arrow { background: var(--service-color); border-color: var(--service-color); color: #fff; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   14. HOME - ABOUT (dark) + STATS
   -------------------------------------------------------------------------- */
.about { background: var(--text); color: #fff; position: relative; overflow: hidden; }
.about::before {
    content: ''; position: absolute; width: 500px; height: 500px;
    background: var(--accent); border-radius: 50%; filter: blur(150px);
    opacity: 0.15; top: -200px; right: -100px;
}
.about .container { position: relative; z-index: 1; }
.about .overline { color: rgba(255,255,255,0.6); }
.about .overline::before { background: rgba(255,255,255,0.4); }
.about .section-title { color: #fff; max-width: 700px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 5vw, 72px); margin-top: 26px; align-items: start; }
.about-text { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.72; margin-bottom: 24px; }
.about-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 13px 18px;
    border-radius: var(--radius-full);
    background: #fff;
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.3s var(--transition), background 0.3s var(--transition), color 0.3s var(--transition);
}
.about-link::after { content: '→'; transition: transform 0.3s var(--transition); }
.about-link:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.about-link:hover::after { transform: translateX(3px); }
.about-features { display: flex; flex-direction: column; gap: 20px; }
.about-feature { display: flex; align-items: flex-start; gap: 16px; }
.about-feature-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--accent); font-size: 18px;
}
.about-feature h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.about-feature p { font-size: 14px; color: rgba(255,255,255,0.5); }
.about-proof { display: flex; flex-direction: column; gap: 22px; }
.about-portrait-card {
    position: relative;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: #0b0d12;
    box-shadow: 0 24px 70px rgba(0,0,0,0.32);
}
.about-portrait-card::after {
    content: '';
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(to top, rgba(6,8,12,0.88), rgba(6,8,12,0));
}
.about-portrait-card img {
    display: block;
    width: 100%;
    height: clamp(320px, 34vw, 430px);
    object-fit: cover;
    object-position: center 26%;
}
.about-portrait-card figcaption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}
.about-portrait-card strong {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
.about-portrait-card span {
    font-size: 13px;
    color: rgba(255,255,255,0.66);
    text-align: right;
}

.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
    background: rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden;
}
.about-proof .stats-grid { grid-template-columns: repeat(2, 1fr); }
.stat-card { background: rgba(255,255,255,0.05); padding: 40px 28px; text-align: center; transition: background 0.3s; }
.stat-card:hover { background: rgba(255,255,255,0.1); }
.stat-number {
    font-family: var(--font-display); font-size: clamp(36px, 4vw, 52px); font-weight: 700;
    letter-spacing: -0.03em; margin-bottom: 8px;
    background: var(--accent-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.5); }
.stat-bar { height: 3px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-top: 12px; overflow: hidden; }
.stat-bar-fill { height: 100%; background: var(--accent-gradient); width: 0%; border-radius: 4px; }

/* --------------------------------------------------------------------------
   15. HOME - PROJECTS (horizontal scroll)
   -------------------------------------------------------------------------- */
.projects-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 60px; gap: 40px; flex-wrap: wrap;
}
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    cursor: pointer; aspect-ratio: 4/3; background: var(--bg-alt);
}
.project-card-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    background: radial-gradient(circle at 18% 18%, var(--project-glow, rgba(255,255,255,0.18)), transparent 30%),
        linear-gradient(135deg, var(--project-a, #1A1A2E), var(--project-b, #2891C9));
    transition: transform 0.6s var(--transition);
}
.project-card:hover .project-card-bg { transform: scale(1.08); }
.project-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(8,10,15,0.78) 100%);
    opacity: 1; transition: opacity 0.4s;
}
.project-card:hover .project-card-overlay { opacity: 0.92; }
.project-card-content {
    position: absolute; inset: 0; padding: 28px;
    display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
    transform: translateY(0); opacity: 1; transition: transform 0.4s var(--transition);
}
.project-card:hover .project-card-content { transform: translateY(-4px); }
.project-card-tag {
    display: inline-block; padding: 4px 12px;
    background: rgba(255,255,255,0.18); backdrop-filter: blur(8px);
    border-radius: var(--radius-full); font-size: 12px; font-weight: 500;
    color: #fff; margin-bottom: 16px;
}
.project-logo-lockup {
    min-height: 64px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.project-logo-lockup img {
    max-width: 150px;
    max-height: 56px;
    object-fit: contain;
}
.project-logo-duo { padding: 0; background: transparent; box-shadow: none; }
.project-logo-duo img:first-child { max-width: 76px; }
.project-logo-duo img:last-child { max-width: 142px; padding: 8px 12px; border-radius: 8px; background: rgba(255,255,255,0.92); }
.project-logo-square img { max-width: 86px; max-height: 74px; }
.project-logo-emblem img { max-width: 72px; max-height: 76px; }
.project-logo-john {
    width: 96px;
    height: 96px;
    justify-content: center;
    padding: 14px;
}
.project-logo-john img { max-width: 82px; max-height: 82px; }
.project-logo-wordmark {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    padding: 13px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
}
.project-card-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.02em; margin-bottom: 8px; }
.project-card-desc { color: rgba(255,255,255,0.74); font-size: 14px; line-height: 1.55; max-width: 300px; }
.project-card-autosprint { --project-a: #050505; --project-b: #9E1B24; --project-glow: rgba(237,208,0,0.35); }
.project-card-winehouse { --project-a: #050505; --project-b: #8F1720; --project-glow: rgba(255,255,255,0.16); }
.project-card-epices { --project-a: #24160B; --project-b: #E7A500; --project-glow: rgba(255,208,73,0.36); }
.project-card-facilyse { --project-a: #015971; --project-b: #F7CA16; --project-glow: rgba(255,255,255,0.28); }
.project-card-fndirp { --project-a: #063B78; --project-b: #D50A0A; --project-glow: rgba(255,255,255,0.24); }
.project-card-john { --project-a: #111827; --project-b: #1F73A3; --project-glow: rgba(255,255,255,0.2); }
.project-card-anma { --project-a: #243A31; --project-b: #70857A; --project-glow: rgba(255,255,255,0.18); }
.project-card-anma .project-card-bg {
    background-image:
        linear-gradient(180deg, rgba(18,28,24,0.02), rgba(18,28,24,0.72)),
        url('assets/images/anma-living-project.jpg');
    background-size: cover;
    background-position: center 46%;
}

.horizontal-section { overflow: hidden; }
.horizontal-track { display: flex; gap: 24px; width: max-content; will-change: transform; }
.horizontal-track .project-card { min-width: 380px; flex-shrink: 0; aspect-ratio: 4/3; }
.horizontal-track.native-project-scroll {
    width: auto;
    max-width: 100%;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 0 clamp(20px, 4vw, 48px) 16px;
}
.horizontal-track.native-project-scroll .project-card {
    scroll-snap-align: start;
}

.service-note {
    padding: 18px 20px;
    border: 1px solid rgba(45, 154, 211, 0.18);
    border-radius: 16px;
    background: var(--accent-light);
}

/* --------------------------------------------------------------------------
   16. HOME - TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials { background: var(--bg-alt); }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-subtitle { margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: var(--bg-card); border-radius: var(--radius); padding: 36px;
    border: 1px solid var(--border-light); transition: all 0.4s var(--transition); position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-logo {
    height: 54px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}
.testimonial-logo img { max-width: 128px; max-height: 52px; object-fit: contain; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 20px; color: #F59E0B; font-size: 16px; }
.testimonial-text { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--accent-gradient); display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 16px;
}
.testimonial-name { font-weight: 600; font-size: 15px; }
.testimonial-role { font-size: 13px; color: var(--text-lighter); }

/* --------------------------------------------------------------------------
   17. HOME - FAQ
   -------------------------------------------------------------------------- */
.faq { padding-bottom: clamp(54px, 7vw, 96px); }
.faq-header { text-align: center; margin-bottom: 44px; }
.faq-header .section-subtitle { margin: 0 auto; }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--bg-card); border: 1px solid var(--border-light);
    border-radius: var(--radius); overflow: hidden;
    transition: all 0.3s var(--transition);
}
.faq-item:hover { border-color: var(--border); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 28px; cursor: pointer; gap: 20px;
    font-family: var(--font-display); font-size: 17px; font-weight: 600;
}
.faq-icon {
    width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: all 0.3s; font-size: 18px; color: var(--text-light);
}
.faq-item.active .faq-icon { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--transition); }
.faq-answer-inner { padding: 0 28px 24px; font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* --------------------------------------------------------------------------
   18. CTA SECTION (toutes les pages)
   -------------------------------------------------------------------------- */
.cta { background: var(--bg); padding-top: clamp(54px, 7vw, 96px); }
.cta-card {
    background: var(--text); border-radius: 24px;
    padding: clamp(48px,6vw,80px); text-align: center; position: relative; overflow: hidden;
}
.cta-card::before {
    content: ''; position: absolute; width: 400px; height: 400px;
    background: var(--accent); border-radius: 50%; filter: blur(120px);
    opacity: 0.2; top: -100px; left: 50%; transform: translateX(-50%);
}
.cta-card .section-title { color: #fff; max-width: 600px; margin: 0 auto 16px; position: relative; z-index: 1; }
.cta-description { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 40px; position: relative; z-index: 1; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   19. ABOUT PAGE - STORY
   -------------------------------------------------------------------------- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-text { font-size: 17px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.story-image-frame,
.story-image-placeholder {
    width: 100%; aspect-ratio: 4/3;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center; position: relative;
    overflow: hidden;
}
.story-image-frame { aspect-ratio: 16/9; }
.story-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 24%;
}
.story-image-label { color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 500; }
.story-year-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--bg-card); border-radius: var(--radius); padding: 20px 28px;
    box-shadow: var(--shadow-lg); text-align: center;
}
.story-year-number { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--accent); display: block; }
.story-year-label { font-size: 12px; color: var(--text-light); }
.story-visual { position: relative; }

/* VALUES */
.values { background: var(--bg-alt); }
.values-header { text-align: center; margin-bottom: 60px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
    background: var(--bg-card); border-radius: var(--radius); padding: 36px;
    border: 1px solid var(--border-light); transition: all 0.4s var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-number {
    font-family: var(--font-display); font-size: 48px; font-weight: 700;
    background: var(--accent-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px;
}
.value-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* TIMELINE */
.timeline-section {
    background: var(--text);
    color: #fff;
    overflow: hidden;
}
.timeline-header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 64px);
}
.timeline-header .overline {
    justify-content: center;
    color: rgba(255,255,255,0.7);
}
.timeline-header .overline::before { background: rgba(255,255,255,0.46); }
.timeline-header .section-title { color: #fff; }
.timeline {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: linear-gradient(180deg, rgba(40,145,201,0), rgba(40,145,201,0.8), rgba(40,145,201,0));
}
.timeline-item {
    position: relative;
    padding-left: 76px;
    margin-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: 22px;
    top: 24px;
    width: 22px;
    height: 22px;
    background: var(--accent);
    border-radius: 50%;
    border: 5px solid rgba(255,255,255,0.14);
    box-shadow: 0 0 0 8px rgba(40,145,201,0.12);
}
.timeline-content {
    min-height: 132px;
    padding: 24px 28px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    background: rgba(255,255,255,0.055);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.timeline-year {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
}
.timeline-content h3 { font-size: 21px; font-weight: 800; color: #fff; margin-bottom: 8px; letter-spacing: -0.02em; }
.timeline-content p { font-size: 15px; color: rgba(255,255,255,0.68); line-height: 1.7; }

/* --------------------------------------------------------------------------
   20. SERVICES PAGE - DETAIL CARDS
   -------------------------------------------------------------------------- */
.service-overview { padding-top: 12px; padding-bottom: 48px; background: var(--bg); }
.service-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.service-overview-card {
    min-height: 104px;
    padding: 20px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition), border-color 0.3s var(--transition);
}
.service-overview-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(40,145,201,0.28);
}
.service-overview-card span {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.08em;
}
.service-overview-card strong {
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--text);
}

.service-hub {
    padding: 62px 0 78px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.service-hub-intro {
    max-width: 780px;
    margin-bottom: 34px;
}
.service-hub-intro h2,
.service-pathways-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.2vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: var(--text);
    margin-bottom: 16px;
}
.service-hub-intro p,
.service-pathways-copy p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-light);
}
.service-hub-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
.service-hub-card {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.74fr);
    min-height: 342px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    background: var(--bg-card);
    box-shadow: 0 18px 48px rgba(26,26,46,0.06);
    transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition), border-color 0.35s var(--transition);
}
.service-hub-card:nth-child(even) .service-hub-media {
    order: -1;
}
.service-hub-card:hover {
    transform: translateY(-4px);
    border-color: rgba(40,145,201,0.28);
    box-shadow: 0 28px 70px rgba(26,26,46,0.1);
}
.service-hub-content {
    min-width: 0;
    padding: clamp(24px, 3vw, 34px);
    display: flex;
    flex-direction: column;
}
.service-hub-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}
.service-hub-content h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.7vw, 34px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--text);
    margin-bottom: 14px;
}
.service-hub-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
}
.service-hub-links {
    display: grid;
    gap: 8px;
    margin-top: auto;
}
.service-hub-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 12px;
    border-radius: 8px;
    background: var(--bg-alt);
    color: var(--text);
    font-size: 14px;
    font-weight: 750;
    transition: color 0.25s var(--transition), background 0.25s var(--transition), transform 0.25s var(--transition);
}
.service-hub-links a::after {
    content: '→';
    color: var(--accent);
    transition: transform 0.25s var(--transition);
}
.service-hub-links a:hover {
    background: rgba(40,145,201,0.1);
    color: var(--accent-deep);
    transform: translateX(3px);
}
.service-hub-links a:hover::after { transform: translateX(3px); }
.service-hub-media {
    margin: 0;
    min-height: 100%;
    overflow: hidden;
    background: var(--text);
}
.service-hub-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.55s var(--transition);
}
.service-hub-card:hover .service-hub-media img { transform: scale(1.055); }
.service-pathways {
    margin-top: 18px;
    padding: clamp(28px, 4vw, 44px);
    border-radius: 16px;
    background: radial-gradient(circle at top right, rgba(40,145,201,0.28), transparent 36%), var(--text);
    color: #fff;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: clamp(24px, 4vw, 46px);
    align-items: center;
}
.service-pathways .overline { color: rgba(255,255,255,0.62); }
.service-pathways .overline::before { background: rgba(255,255,255,0.42); }
.service-pathways-copy h2 { color: #fff; }
.service-pathways-copy p { color: rgba(255,255,255,0.68); }
.service-pathways-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.service-pathways-list a {
    min-height: 118px;
    padding: 18px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s var(--transition), background 0.3s var(--transition), border-color 0.3s var(--transition);
}
.service-pathways-list a:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.13);
    border-color: rgba(255,255,255,0.2);
}
.service-pathways-list strong {
    font-family: var(--font-display);
    font-size: 19px;
    letter-spacing: -0.02em;
}
.service-pathways-list span {
    color: rgba(255,255,255,0.68);
    line-height: 1.55;
    font-size: 14px;
}

.service-details { padding-top: 42px; padding-bottom: 58px; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 52%, var(--bg) 100%); }
.service-detail-card {
    background: var(--bg-card); border: 1px solid var(--border-light);
    border-radius: 18px; padding: clamp(34px,5vw,58px); margin-bottom: 18px;
    transition: all 0.4s var(--transition); position: relative;
}
.service-detail-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.service-detail-card.featured { background: var(--text); color: #fff; border-color: transparent; }
.service-detail-card.featured .service-detail-title { color: #fff; }
.service-detail-card.featured .service-detail-desc { color: rgba(255,255,255,0.6); }
.service-detail-card.featured .service-feature { color: rgba(255,255,255,0.8); }
.service-detail-card.featured .service-feature span { color: rgba(255,255,255,0.8); }
.service-detail-card.featured .price-label { color: rgba(255,255,255,0.5); }
.service-detail-card.featured .price-amount {
    background: var(--accent-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.service-detail-card-media {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.86fr);
    gap: clamp(32px,5vw,68px);
    align-items: center;
}
#seo .service-detail-copy,
#crm .service-detail-copy {
    order: 2;
}
.service-detail-copy { min-width: 0; }
.service-detail-image,
.service-wide-image {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-alt);
    box-shadow: var(--shadow);
}
.service-detail-image {
    align-self: stretch;
    min-height: 340px;
}
.service-detail-image img,
.service-wide-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-wide-image {
    height: clamp(260px, 34vw, 420px);
    margin: 20px 0 66px;
}
.service-badge {
    display: inline-block; padding: 6px 16px; background: var(--accent);
    color: #fff; border-radius: var(--radius-full); font-size: 12px; font-weight: 600; margin-bottom: 16px;
}
.service-detail-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.service-detail-number { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-lighter); letter-spacing: 0.05em; }
.service-detail-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.service-detail-icon.blue { background: var(--accent-light); }
.service-detail-icon.purple { background: #F3E8FF; }
.service-detail-icon.green { background: #D1FAE5; }
.service-detail-icon.accent { background: var(--accent); }
.service-detail-title { font-family: var(--font-display); font-size: clamp(24px,3vw,32px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.service-detail-desc { font-size: 17px; color: var(--text-light); line-height: 1.75; max-width: 760px; margin-bottom: 30px; }
.service-detail-features { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 14px; margin-bottom: 30px; }
.service-feature { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text); }
.service-detail-price { display: flex; align-items: baseline; gap: 12px; }
.price-label { font-size: 14px; color: var(--text-lighter); }
.price-amount { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--accent); }
.service-detail-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.service-subservices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
    margin: 0 0 72px;
}
.service-mini-card {
    padding: 18px 20px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: rgba(255,255,255,0.72);
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 9px;
    transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition), border-color 0.3s var(--transition);
}
.service-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(40,145,201,0.26);
}
.service-mini-card span {
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: var(--accent-light);
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.service-mini-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.service-mini-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.55;
}

/* PROCESS */
.process { background: var(--bg-alt); padding: clamp(64px, 8vw, 96px) 0; }
.process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
}
.process-step {
    background: var(--bg-card); border-radius: 18px; padding: 30px;
    min-height: 210px; border: 1px solid var(--border-light); text-align: left;
    transition: all 0.4s var(--transition);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.process-step-number {
    font-family: var(--font-display); font-size: 15px; font-weight: 800;
    color: var(--accent); letter-spacing: 0.08em; margin-bottom: 26px;
}
.process-step h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.process-step p { font-size: 15px; color: var(--text-light); line-height: 1.7; }
.process-connector { display: none; }

/* --------------------------------------------------------------------------
   21. CONTACT PAGE
   -------------------------------------------------------------------------- */
.contact-section { padding: 160px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: flex-start; }
.contact-intro { font-size: 17px; color: var(--text-light); line-height: 1.7; margin-bottom: 40px; max-width: 440px; }
.contact-direct-list { list-style: none; display: grid; gap: 14px; max-width: 440px; margin: 0; padding: 0; }
.contact-direct-list li {
    display: grid; gap: 4px; padding: 16px 18px; border: 1px solid var(--border-light);
    border-radius: 14px; background: rgba(255,255,255,0.72); box-shadow: var(--shadow-sm);
}
.contact-direct-list strong {
    font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
}
.contact-direct-list a, .contact-direct-list span {
    color: var(--primary); font-weight: 800; text-decoration: none;
}
.contact-direct-list a:hover { color: var(--accent); }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon {
    width: 48px; height: 48px; border-radius: 12px; background: var(--accent-light);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.contact-detail a, .contact-detail span { font-size: 14px; color: var(--text-light); }
.contact-detail a:hover { color: var(--accent); }

.contact-form-wrapper {
    background: var(--bg-card); border-radius: 20px; padding: clamp(28px,4vw,48px);
    border: 1px solid var(--border-light); box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.form-group label { font-size: 13px; font-weight: 800; color: var(--text); letter-spacing: 0.01em; }
.form-options-group {
    border: 0;
    margin: 0;
    padding: 0;
}
.form-options-group legend {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.01em;
}
.required-mark { color: var(--accent); font-weight: 900; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; border: 1.5px solid var(--border); border-radius: 16px;
    font-family: var(--font-body); font-size: 15px; font-weight: 600; line-height: 1.35;
    color: var(--text); background: #fff; box-shadow: 0 1px 0 rgba(17, 24, 39, 0.03);
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s; outline: none; resize: vertical;
}
.form-group input, .form-group select { height: 56px; padding: 0 18px; }
.form-group select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--text-light) 50%), linear-gradient(135deg, var(--text-light) 50%, transparent 50%);
    background-position: calc(100% - 22px) 24px, calc(100% - 16px) 24px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 46px;
}
.form-group textarea { min-height: 160px; padding: 16px 18px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    background: #fff; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-light);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-lighter); }
.contact-service-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.service-check {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 13px 14px;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    background: #fff;
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    cursor: pointer;
    transition: transform 0.25s var(--transition), border-color 0.25s var(--transition), background-color 0.25s var(--transition), box-shadow 0.25s var(--transition);
}
.service-check input {
    width: 18px !important;
    height: 18px !important;
    padding: 0 !important;
    margin: 0;
    border-radius: 5px;
    accent-color: var(--accent);
    flex: 0 0 auto;
}
.service-check span { min-width: 0; }
.service-check:hover {
    transform: translateY(-1px);
    border-color: rgba(45, 154, 211, 0.42);
    box-shadow: 0 10px 22px rgba(45, 154, 211, 0.10);
}
.service-check:has(input:checked) {
    background: var(--accent-light);
    border-color: rgba(45, 154, 211, 0.56);
    box-shadow: 0 0 0 4px rgba(45, 154, 211, 0.10);
}
.form-note { font-size: 13px; color: var(--text-lighter); text-align: center; margin-top: 4px; }
.form-hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.form-consent {
    display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px;
    font-size: 13px; line-height: 1.55; color: var(--text-light);
    background: var(--accent-light); border: 1px solid rgba(45, 154, 211, 0.14);
    border-radius: 16px;
}
.form-consent input { width: 20px; height: 20px; margin-top: 1px; accent-color: var(--accent); flex: 0 0 auto; }
.form-consent span { min-width: 0; }
.form-status { min-height: 20px; margin: 0; font-size: 13px; font-weight: 700; text-align: center; color: var(--text-light); }
.form-status.success { color: #137a4f; }
.form-status.error { color: #b42318; }
.contact-form button:disabled, .lead-form button:disabled, .quote-form button:disabled { cursor: wait; opacity: 0.72; }
:where(.sib-form-message-panel) { display: none; }

/* --------------------------------------------------------------------------
   22. COOKIE CONSENT
   -------------------------------------------------------------------------- */
.footer-cookie-link {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    color: rgba(255,255,255,0.5);
    font: inherit;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.3s;
}
.footer-cookie-link:hover { color: #fff; }
.cookie-consent {
    position: fixed;
    left: clamp(16px, 3vw, 32px);
    right: clamp(16px, 3vw, 32px);
    bottom: clamp(16px, 3vw, 32px);
    z-index: 1300;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid rgba(18,62,104,0.12);
    border-radius: 18px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 24px 80px rgba(14,14,24,0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.cookie-consent-content {
    display: grid;
    gap: 5px;
    min-width: 0;
    overflow-wrap: break-word;
}
.cookie-eyebrow {
    display: inline-flex;
    width: fit-content;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}
.cookie-consent-content p,
.cookie-preferences-dialog p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.55;
}
.cookie-consent-content p strong {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: -0.02em;
}
.cookie-consent-content a {
    width: fit-content;
    color: var(--accent-deep);
    font-size: 13px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cookie-consent-actions,
.cookie-preferences-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}
.cookie-button {
    min-height: 44px;
    padding: 11px 16px;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.25s var(--transition), background 0.25s var(--transition), color 0.25s var(--transition), border-color 0.25s var(--transition), box-shadow 0.25s var(--transition);
}
.cookie-button:hover {
    transform: translateY(-1px);
}
.cookie-button:focus-visible,
.footer-cookie-link:focus-visible,
.cookie-switch input:focus-visible + span,
.cookie-preferences-close:focus-visible {
    outline: 3px solid rgba(40,145,201,0.28);
    outline-offset: 3px;
}
.cookie-button-primary {
    background: var(--text);
    color: #fff;
    box-shadow: 0 12px 26px rgba(14,14,24,0.16);
}
.cookie-button-primary:hover { background: var(--accent); }
.cookie-button-secondary {
    background: var(--accent-light);
    color: var(--accent-deep);
    border-color: rgba(40,145,201,0.16);
}
.cookie-button-secondary:hover {
    background: #fff;
    border-color: rgba(40,145,201,0.34);
}
.cookie-button-ghost {
    background: #fff;
    color: var(--text);
    border-color: var(--border);
}
.cookie-button-ghost:hover {
    border-color: rgba(26,26,46,0.26);
}
.cookie-preferences[hidden] { display: none; }
.cookie-preferences {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.cookie-preferences-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14,14,24,0.42);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}
.cookie-preferences-dialog {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    max-height: min(760px, calc(100vh - 40px));
    overflow-y: auto;
    padding: clamp(24px, 4vw, 34px);
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(18,62,104,0.12);
    box-shadow: 0 32px 90px rgba(14,14,24,0.26);
    overflow-wrap: break-word;
}
.cookie-preferences-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    color: var(--text);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.cookie-preferences-dialog h2 {
    margin: 8px 48px 10px 0;
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--text);
}
.cookie-options {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}
.cookie-option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    background: #F7F8FA;
}
.cookie-option strong {
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: -0.02em;
    color: var(--text);
}
.cookie-required-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    background: var(--accent-light);
    color: var(--accent-deep);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}
.cookie-option-toggle {
    cursor: pointer;
}
.cookie-switch {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
}
.cookie-switch input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.cookie-switch > span {
    width: 54px;
    height: 32px;
    border-radius: var(--radius-full);
    background: #D1D5DB;
    transition: background 0.25s var(--transition);
}
.cookie-switch > span::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(14,14,24,0.18);
    transition: transform 0.25s var(--transition);
}
.cookie-switch input:checked + span {
    background: var(--accent);
}
.cookie-switch input:checked + span::before {
    transform: translateX(22px);
}
body.cookie-preferences-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   23. PROJECTS PAGE - GRILLE & FILTRES
   -------------------------------------------------------------------------- */
.projects-list { padding-top: clamp(56px, 7vw, 96px); }
.projects-filters {
    display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 38px;
}
.projects-filter-btn {
    padding: 10px 20px; border-radius: var(--radius-full);
    background: var(--bg-card); border: 1.5px solid var(--border);
    font-size: 14px; font-weight: 500; color: var(--text-light); cursor: pointer;
    transition: all 0.3s var(--transition);
}
.projects-filter-btn:hover { border-color: var(--text); color: var(--text); }
.projects-filter-btn.active { background: var(--text); border-color: var(--text); color: #fff; }

.projects-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-list-card {
    border-radius: var(--radius); overflow: hidden; cursor: pointer;
    background: var(--bg-card); border: 1px solid var(--border-light);
    transition: all 0.4s var(--transition); display: flex; flex-direction: column;
}
.project-list-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-list-thumb { aspect-ratio: 4/3; position: relative; overflow: hidden; background: var(--text); }
.project-list-thumb svg { width: 100%; height: 100%; display: block; }
.project-list-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s var(--transition); }
.project-list-card:hover .project-list-thumb img { transform: scale(1.045); }
.project-list-thumb-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    background:
        radial-gradient(circle at 20% 15%, rgba(255,255,255,0.24), transparent 34%),
        linear-gradient(135deg, var(--project-brand, #111827), var(--project-brand-2, #2891C9));
}
.project-list-thumb-logo img {
    width: auto;
    height: auto;
    max-width: 82%;
    max-height: 82%;
    object-fit: contain;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.project-list-thumb-anma {
    padding: 0;
}
.project-list-thumb-anma img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
}
.project-logo-screen {
    filter: invert(1) grayscale(1) brightness(2.4);
    mix-blend-mode: screen;
}
.project-logo-fill {
    max-width: 128%;
    max-height: 128%;
}
.project-list-domain {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 1;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    background: rgba(14,14,24,0.72);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.project-list-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.project-list-tag {
    display: inline-block; align-self: flex-start;
    padding: 4px 12px; background: var(--accent-light); color: var(--accent);
    border-radius: var(--radius-full); font-size: 12px; font-weight: 600;
}
.project-list-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.project-list-desc { font-size: 14px; color: var(--text-light); line-height: 1.55; }
.project-list-link {
    margin-top: auto;
    padding-top: 10px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
}
.project-list-link:hover { color: var(--accent-deep); }

/* --------------------------------------------------------------------------
   24. BLOG PAGE
   -------------------------------------------------------------------------- */
.resource-download-section {
    padding: 52px 0 24px;
    background: #fff;
}
.resource-download-card {
    display: grid;
    grid-template-columns: minmax(170px, 0.36fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 28px;
    background:
        radial-gradient(circle at 88% 16%, rgba(40,145,201,0.18), transparent 30%),
        linear-gradient(135deg, #F7F8FA, #fff);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}
.resource-download-cover {
    display: block;
    width: min(220px, 100%);
    justify-self: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(7,13,27,0.24);
    transform: rotate(-2deg);
    transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition);
}
.resource-download-cover:hover {
    transform: rotate(-1deg) translateY(-4px);
    box-shadow: 0 28px 70px rgba(7,13,27,0.28);
}
.resource-download-cover img {
    display: block;
    width: 100%;
    height: auto;
}
.resource-download-content h2 {
    margin: 8px 0 14px;
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: var(--text);
}
.resource-download-content p {
    max-width: 720px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.75;
}
.resource-download-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}
.service-guide-cta {
    padding: clamp(46px, 7vw, 86px) 0;
    background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
}
.service-guide-card {
    display: grid;
    grid-template-columns: minmax(150px, 230px) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 58px);
    align-items: center;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 18%, rgba(40,145,201,0.16), transparent 32%),
        linear-gradient(135deg, #fff, #f7fbfe);
    border: 1px solid rgba(40,145,201,0.18);
    box-shadow: 0 24px 70px rgba(13,24,45,0.1);
}
.service-guide-cover {
    display: block;
    justify-self: center;
    width: min(210px, 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(7,13,27,0.23);
    transform: rotate(-2deg);
    transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition);
}
.service-guide-cover:hover {
    transform: rotate(-1deg) translateY(-4px);
    box-shadow: 0 30px 68px rgba(7,13,27,0.28);
}
.service-guide-cover img {
    display: block;
    width: 100%;
    height: auto;
}
.service-guide-content h2 {
    max-width: 820px;
    margin: 8px 0 14px;
    font-family: var(--font-display);
    font-size: clamp(30px, 4.5vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: var(--text);
}
.service-guide-content p {
    max-width: 720px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.75;
}
.service-guide-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
}
.service-guide-content li {
    list-style: none;
    padding: 9px 13px;
    border-radius: var(--radius-full);
    background: var(--accent-light);
    color: var(--accent-deep);
    font-size: 13px;
    font-weight: 800;
}
.service-guide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}
.blog-filters {
    margin: 0 0 34px;
    justify-content: center;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    border-radius: var(--radius); overflow: hidden;
    background: var(--bg-card); border: 1px solid var(--border-light);
    transition: all 0.4s var(--transition); display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-thumb { aspect-ratio: 16/9; position: relative; overflow: hidden; }
.blog-card-thumb svg { width: 100%; height: 100%; display: block; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--transition); }
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--text-lighter); }
.blog-card-cat { padding: 4px 10px; background: var(--accent-light); color: var(--accent); border-radius: var(--radius-full); font-size: 12px; font-weight: 600; }
.blog-card-date { color: var(--text-lighter); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; line-height: 1.3; letter-spacing: -0.02em; }
.blog-card-excerpt { font-size: 14px; color: var(--text-light); line-height: 1.6; flex: 1; }
.blog-card-link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: var(--radius-full);
    background: var(--text);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(16, 18, 34, 0.14);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.blog-card-link::after { content: "→"; font-size: 16px; line-height: 1; }
.blog-card-link:hover {
    transform: translateY(-2px);
    background: var(--accent);
    box-shadow: 0 18px 34px rgba(40, 145, 201, 0.22);
}

.seo-content { padding-top: 20px; }
.seo-article-extra {
    padding-top: 0;
    padding-bottom: clamp(56px, 7vw, 96px);
}
.seo-article-extra .seo-main {
    max-width: 860px;
    margin: 0 auto;
}
.seo-article-extra .seo-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.seo-layout { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 64px; align-items: start; }
.seo-feature-image {
    margin: 0 0 42px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-alt);
}
.seo-feature-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.seo-feature-image.service-image-contain {
    background: #fff;
}
.seo-feature-image.service-image-contain img {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
}
.seo-main h2 { font-family: var(--font-display); font-size: clamp(28px,4vw,44px); line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 20px; }
.seo-main h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.02em; margin: 34px 0 12px; }
.seo-main p { color: var(--text-light); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.seo-main a {
    color: var(--accent-deep);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}
.seo-list { display: grid; gap: 12px; margin: 24px 0; }
.seo-list li {
    list-style: none; padding: 16px 18px; background: var(--bg-card);
    border: 1px solid var(--border-light); border-radius: 12px; color: var(--text-light);
}
.seo-list strong { color: var(--text); }
.seo-aside {
    position: sticky; top: 110px; background: var(--text); color: #fff;
    border-radius: 20px; padding: 28px; overflow: hidden;
}
.seo-aside > * { position: relative; z-index: 1; }
.seo-aside h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 14px; }
.seo-aside p, .seo-aside li { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.7; }
.seo-aside ul { list-style: none; display: grid; gap: 10px; margin: 18px 0 24px; }
.seo-aside li { padding-left: 18px; position: relative; }
.seo-aside li::before { content: ''; position: absolute; left: 0; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.seo-related { background: var(--bg-alt); }
.seo-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.seo-related-card {
    background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius);
    padding: 24px; transition: all 0.3s var(--transition);
}
.seo-related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.seo-related-card span { color: var(--accent); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.seo-related-card h3 { font-family: var(--font-display); font-size: 20px; margin: 10px 0 8px; }
.seo-related-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

.commerce-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
}
.commerce-intro-grid > *,
.commerce-comparison > *,
.commerce-feature-card,
.commerce-option-card,
.commerce-flow-step,
.commerce-intro-copy,
.commerce-table {
    min-width: 0;
}
.commerce-media {
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    background: var(--text);
    box-shadow: var(--shadow-lg);
}
.commerce-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.commerce-media.service-image-contain {
    background: #fff;
}
.commerce-media.service-image-contain img {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
}
.commerce-intro-copy h2,
.commerce-section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
    overflow-wrap: break-word;
}
.commerce-intro-copy p,
.commerce-section-lead {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    max-width: 780px;
    overflow-wrap: break-word;
}
.commerce-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}
.commerce-kpi {
    min-height: 112px;
    padding: 18px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
}
.commerce-kpi strong {
    display: block;
    font-family: var(--font-display);
    font-size: 27px;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 10px;
}
.commerce-kpi span {
    display: block;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
}
.commerce-feature-section,
.commerce-options-section {
    background: var(--bg-alt);
}
.commerce-feature-section {
    padding-top: 70px;
}
.commerce-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.commerce-feature-card,
.commerce-option-card {
    min-height: 100%;
    padding: 28px;
    border-radius: 22px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: 0 18px 46px rgba(12, 18, 32, 0.06);
    transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition), border-color 0.3s var(--transition);
}
.commerce-feature-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.commerce-feature-card-primary {
    border-color: rgba(40,145,201,0.26);
    box-shadow: 0 24px 54px rgba(40,145,201,0.12);
}
.commerce-feature-card:hover,
.commerce-option-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(40,145,201,0.24);
}
.commerce-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.commerce-card-top small {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.commerce-card-top span,
.commerce-option-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 40px;
    min-height: 40px;
    max-width: 100%;
    padding: 8px 13px;
    border-radius: 12px;
    background: var(--accent-light);
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 1.1;
    font-weight: 800;
    white-space: normal;
    text-align: center;
}
.commerce-feature-card h3,
.commerce-option-card h3 {
    font-family: var(--font-display);
    font-size: 21px;
    line-height: 1.22;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
}
.commerce-feature-card p,
.commerce-option-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    overflow-wrap: break-word;
}
.commerce-card-points {
    display: grid;
    gap: 9px;
    margin: 2px 0 0;
    padding: 0;
    list-style: none;
}
.commerce-card-points li {
    position: relative;
    padding-left: 19px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 750;
}
.commerce-card-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}
.commerce-card-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
}
.commerce-card-footer .project-list-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 11px 15px;
    border-radius: var(--radius-full);
    background: var(--text);
    color: #fff;
    white-space: nowrap;
}
.commerce-card-footer .project-list-link:hover {
    color: #fff;
    background: var(--accent-deep);
}
.commerce-card-price {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text);
}
.commerce-dark {
    background: var(--text);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.commerce-dark::before {
    content: '';
    position: absolute;
    inset: auto -10% -30% auto;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(40,145,201,0.2);
    filter: blur(90px);
}
.commerce-dark .container { position: relative; z-index: 1; }
.commerce-dark .commerce-section-title { color: #fff; max-width: 760px; }
.commerce-dark .commerce-section-lead { color: rgba(255,255,255,0.68); }
.commerce-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 38px;
}
.commerce-flow-step {
    min-height: 230px;
    padding: 24px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}
.commerce-flow-step strong {
    display: block;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.commerce-flow-step h3 {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    color: #fff;
    overflow-wrap: break-word;
}
.commerce-flow-step p {
    color: rgba(255,255,255,0.66);
    font-size: 14px;
    line-height: 1.7;
    overflow-wrap: break-word;
}
.commerce-options-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}
.commerce-option-card {
    min-height: 230px;
    padding: 23px;
}
.commerce-comparison {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(24px, 4vw, 44px);
    align-items: start;
}
.commerce-table {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--border-light);
    background: var(--bg-card);
    box-shadow: var(--shadow);
}
.commerce-table-row {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 18px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border-light);
}
.commerce-table-row:last-child { border-bottom: 0; }
.commerce-table-row strong {
    font-family: var(--font-display);
    color: var(--text);
    letter-spacing: -0.01em;
}
.commerce-table-row span {
    color: var(--text-light);
    line-height: 1.6;
}
.commerce-note {
    margin-top: 26px;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(40,145,201,0.12), rgba(16,185,129,0.08));
    border: 1px solid rgba(40,145,201,0.2);
    color: var(--text-light);
    line-height: 1.75;
}
.commerce-note strong { color: var(--text); }

.module-spec-section {
    padding: clamp(54px, 7vw, 90px) 0;
    background: var(--bg);
}
.module-faq-section {
    padding: clamp(54px, 7vw, 90px) 0;
    background: var(--bg-alt);
}
.module-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}
.module-faq-card {
    min-height: 190px;
    padding: clamp(24px, 3vw, 32px);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: #fff;
    box-shadow: var(--shadow);
}
.module-faq-card h3 {
    font-family: var(--font-display);
    font-size: 23px;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.module-faq-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.75;
}

.quote-wizard-section {
    background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
}
.quote-wizard-head {
    max-width: 820px;
    margin-bottom: 36px;
}
.quote-wizard-head h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
}
.quote-wizard-head p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.75;
}
.quote-wizard {
    display: grid;
    grid-template-columns: minmax(250px, 0.36fr) minmax(0, 1fr);
    gap: clamp(22px, 4vw, 42px);
    padding: clamp(18px, 2.6vw, 30px);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-lg);
}
.quote-wizard-sidebar {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(22px, 3vw, 30px);
    border-radius: 8px;
    background: var(--text);
    color: #fff;
}
.quote-wizard-sidebar span {
    align-self: flex-start;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(40,145,201,0.16);
    color: #8fd3f5;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}
.quote-wizard-sidebar h3 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.quote-wizard-sidebar p {
    color: rgba(255,255,255,0.68);
    line-height: 1.72;
}
.quote-mini-list {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 28px;
}
.quote-mini-list strong {
    color: #fff;
    font-family: var(--font-display);
    font-size: 15px;
}
.quote-mini-list small {
    display: block;
    padding: 11px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    font-weight: 700;
}
.quote-form {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 20px;
}
.quote-progress {
    display: grid;
    gap: 9px;
}
.quote-progress span {
    color: var(--accent-deep);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.quote-progress div {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--bg-alt);
}
.quote-progress i {
    display: block;
    width: 16.66%;
    height: 100%;
    border-radius: inherit;
    background: var(--accent);
    transition: width 0.35s var(--transition);
}
.quote-step {
    border: 0;
    padding: 0;
    margin: 0;
}
.quote-step[hidden] {
    display: none;
}
.quote-step legend {
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.quote-step h3 {
    max-width: 720px;
    margin-bottom: 22px;
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}
.quote-step-subtitle {
    margin-top: 24px;
}
.quote-context-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 4px;
}
.quote-context-grid .form-group {
    grid-column: 1 / -1;
}
.quote-sector-suggestions {
    display: grid;
    gap: 12px;
    margin-top: 16px;
    padding: 18px;
    border: 1px solid rgba(40,145,201,0.18);
    border-radius: 8px;
    background: var(--accent-light);
}
.quote-sector-suggestions strong {
    color: var(--accent-deep);
    font-family: var(--font-display);
    font-size: 18px;
}
.quote-sector-suggestions ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
}
.quote-sector-suggestions li {
    list-style: none;
    padding: 8px 10px;
    border-radius: 999px;
    background: #fff;
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}
.quote-sector-suggestions p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.55;
}
.quote-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.quote-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.quote-choice,
.quote-check {
    position: relative;
    display: block;
    min-width: 0;
    cursor: pointer;
}
.quote-choice input,
.quote-check input {
    position: absolute;
    inset: 16px auto auto 16px;
    width: 18px;
    height: 18px;
    opacity: 0;
}
.quote-choice > span,
.quote-check > span {
    display: grid;
    gap: 8px;
    min-height: 150px;
    padding: 20px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--bg-card);
    transition: transform 0.25s var(--transition), border-color 0.25s var(--transition), background-color 0.25s var(--transition), box-shadow 0.25s var(--transition);
}
.quote-check > span {
    min-height: 66px;
    align-content: center;
    font-weight: 850;
}
.quote-other-field {
    margin-top: 14px;
}
.quote-other-field textarea {
    min-height: 112px;
}
.quote-choice strong {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.12;
}
.quote-choice small {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}
.quote-choice:hover > span,
.quote-check:hover > span {
    transform: translateY(-2px);
    border-color: rgba(40,145,201,0.34);
    box-shadow: 0 12px 26px rgba(26,26,46,0.07);
}
.quote-choice input:checked + span,
.quote-check input:checked + span {
    border-color: var(--accent);
    background: var(--accent-light);
    box-shadow: 0 0 0 4px rgba(40,145,201,0.12);
}
.quote-choice input:focus-visible + span,
.quote-check input:focus-visible + span {
    outline: 3px solid rgba(40,145,201,0.34);
    outline-offset: 3px;
}
.quote-result-card {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
    padding: clamp(22px, 3vw, 30px);
    border-radius: 8px;
    background: var(--text);
    color: #fff;
}
.quote-result-kicker {
    color: #8fd3f5;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.quote-result-card h3 {
    margin: 0;
    color: #fff;
}
.quote-result-card p {
    max-width: 680px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
}
.quote-result-card strong {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: -0.03em;
}
.quote-result-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 8px 0 0;
}
.quote-result-card li {
    list-style: none;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.78);
    font-size: 12px;
    font-weight: 800;
}
.quote-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.quote-contact-grid .form-group:last-child {
    grid-column: 1 / -1;
}
.quote-consent {
    margin-top: 16px;
}
.quote-help-text {
    margin-top: 14px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.65;
}
.quote-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
}
.quote-actions .btn-primary,
.quote-actions .btn-secondary {
    min-height: 50px;
}
.quote-back {
    display: none;
}
.quote-wizard[data-step-ready="true"] .quote-back {
    display: inline-flex;
}
.quote-pay[aria-disabled="true"] {
    opacity: 0.58;
    cursor: not-allowed;
}
.quote-form .form-status {
    text-align: left;
}

.page-intro-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.legal-note {
    background: var(--accent-light); border: 1px solid rgba(40,145,201,0.22);
    border-radius: var(--radius); padding: 18px 20px; color: var(--accent-deep);
    margin: 28px 0;
}
.article-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}
.article-meta-row span {
    padding: 7px 13px;
    border-radius: var(--radius-full);
    background: var(--accent-light);
    color: var(--accent-deep);
    font-size: 13px;
    font-weight: 700;
}
.article-callout {
    margin-top: 42px;
    padding: clamp(24px, 4vw, 34px);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(40,145,201,0.13), rgba(37,99,235,0.06)),
        var(--bg-card);
    border: 1px solid rgba(40,145,201,0.2);
    scroll-margin-top: 110px;
}
.article-callout strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.article-callout p {
    max-width: 760px;
    margin-bottom: 16px;
}
.article-callout a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: var(--radius-full);
    background: var(--text);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}
.article-callout a:hover { background: var(--accent); }
.seo-main #recevoir-guide + h2 {
    margin-top: clamp(82px, 9vw, 132px);
}
.lead-form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}
.lead-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.lead-form label:not(.form-consent) { display: grid; gap: 7px; font-size: 13px; font-weight: 800; color: var(--text); }
.lead-form input[type="text"], .lead-form input[type="email"] {
    min-height: 48px;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
}
.lead-form input[type="text"]:focus, .lead-form input[type="email"]:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}
.article-callout .lead-form .btn-primary {
    width: fit-content;
    min-height: 48px;
    border: 0;
    cursor: pointer;
}
.article-callout .lead-form-direct {
    margin-top: 12px;
    background: transparent;
    color: var(--accent-deep);
    padding: 0;
    min-height: auto;
    border-radius: 0;
}
.article-callout .lead-form-direct:hover { background: transparent; color: var(--text); }
.brevo-guide-card {
    display: grid;
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
    gap: clamp(18px, 2vw, 24px);
    align-items: center;
    margin-top: 24px;
    margin-bottom: clamp(36px, 5vw, 58px);
    padding: clamp(18px, 2.6vw, 28px);
    border-radius: 30px;
    background:
        radial-gradient(circle at 8% 12%, rgba(40, 145, 201, 0.14), transparent 33%),
        linear-gradient(145deg, #fff 0%, #f8fbfd 100%);
    border: 1px solid rgba(40, 145, 201, 0.18);
    box-shadow: 0 26px 80px rgba(13, 24, 45, 0.1);
    max-width: 100%;
    overflow: hidden;
}
.brevo-guide-card *,
.brevo-guide-card *::before,
.brevo-guide-card *::after {
    box-sizing: border-box;
}
.brevo-guide-preview {
    display: grid;
    place-items: center;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.brevo-guide-preview img {
    width: min(100%, 210px);
    border-radius: 13px;
    box-shadow: 0 18px 42px rgba(3, 9, 24, 0.22);
}
.brevo-guide-panel {
    min-width: 0;
    width: 100%;
}
.brevo-guide-panel .sib-form-container,
.brevo-guide-panel #sib-container {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: left;
}
.brevo-guide-panel #sib-form {
    display: grid;
    gap: 14px;
    min-width: 0;
    width: 100%;
}
.brevo-guide-panel .lead-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    min-width: 0;
}
.brevo-form-head {
    display: grid;
    gap: 10px;
    margin-bottom: 4px;
}
.brevo-form-head span {
    margin-top: 0;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--accent);
    text-transform: uppercase;
}
.brevo-form-head h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(30px, 2.65vw, 38px);
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--text);
    max-width: 100%;
    overflow-wrap: anywhere;
}
.brevo-form-head p {
    max-width: min(100%, 540px);
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}
.brevo-guide-panel .sib-input,
.brevo-guide-panel .sib-optin,
.brevo-guide-panel .sib-form-block {
    padding: 0;
}
.brevo-guide-panel .form__entry,
.brevo-guide-panel .entry_block,
.brevo-guide-panel .entry_mcq {
    min-width: 0;
    width: 100%;
}
.brevo-guide-panel .entry__field {
    display: block;
    border: 0;
    border-radius: 0;
    background: transparent;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}
.brevo-guide-panel .entry__field input {
    width: 100%;
    max-width: 100%;
    min-height: 56px;
    padding: 15px 18px;
    border: 1.5px solid rgba(24, 29, 49, 0.14);
    border-radius: 18px;
    background: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    outline: none;
    transition: border-color 0.25s var(--transition), box-shadow 0.25s var(--transition), transform 0.25s var(--transition);
}
.brevo-guide-panel .entry__field input::placeholder {
    color: rgba(111, 119, 137, 0.78);
    text-transform: none;
}
.brevo-guide-panel .entry__field input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(40, 145, 201, 0.12);
    transform: translateY(-1px);
}
.brevo-guide-panel .form-consent {
    display: grid !important;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 13px 15px;
    border-radius: 16px;
    background: rgba(40, 145, 201, 0.07);
    color: var(--text-light);
    width: 100%;
    max-width: 100%;
    cursor: pointer;
}
.brevo-guide-panel .form-consent input.input_replaced[type="checkbox"] {
    position: static !important;
    display: block !important;
    width: 22px !important;
    height: 22px !important;
    min-height: 22px !important;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    accent-color: var(--accent);
    border-radius: 6px;
    flex: 0 0 auto;
}
.brevo-guide-panel .entry__choice,
.brevo-guide-panel .entry_mcq,
.brevo-guide-panel .entry_mcq .form__label-row {
    width: 100%;
}
.brevo-guide-panel .form-consent .checkbox {
    display: none !important;
}
.brevo-guide-panel .form-consent > span:last-child {
    display: block;
    padding-top: 0;
    font-size: 13px;
    line-height: 1.55;
    min-width: 0;
}
.brevo-submit-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    width: 100%;
    min-width: 0;
}
.article-callout .brevo-guide-panel .btn-primary {
    width: fit-content;
    min-width: 220px;
    min-height: 54px;
    margin-top: 0;
    padding-left: 28px;
    padding-right: 28px;
    border: 0;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}
.brevo-guide-panel .btn-primary svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}
.brevo-message {
    max-width: none;
    margin: 0 0 14px;
    padding: 13px 14px;
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 800;
    text-align: left;
}
.brevo-message .sib-form-message-panel__text {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}
.brevo-message .sib-notification__icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}
.brevo-message-error {
    color: #7a1f1a;
    background: #fff2f0;
    border: 1px solid rgba(180, 35, 24, 0.22);
}
.brevo-message-success {
    color: #0f6848;
    background: #edfdf5;
    border: 1px solid rgba(19, 122, 79, 0.22);
}
.lexique-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.term-card {
    min-height: 180px;
    padding: 24px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition), border-color 0.3s var(--transition);
}
.term-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(40,145,201,0.25);
}
.term-card span {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 10px;
}
.term-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}
.faq-page-intro {
    padding-top: 18px;
    padding-bottom: 34px;
}
.faq-theme-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.faq-theme-nav a {
    min-height: 92px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition), border-color 0.3s var(--transition);
}
.faq-theme-nav a span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--accent);
}
.faq-theme-nav a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(40,145,201,0.26);
}
.faq-theme-section {
    padding: 42px 0;
}
.faq-theme-section:nth-child(even) {
    background: var(--bg-alt);
}
.faq-theme-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.44fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: end;
    margin-bottom: 28px;
}
.faq-theme-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.045em;
    color: var(--text);
}
.faq-theme-heading p {
    color: var(--text-light);
    line-height: 1.7;
}
.faq-theme-section .faq-grid {
    max-width: 100%;
}
.lexique-section-title {
    grid-column: 1 / -1;
    margin: 18px 0 0;
    font-family: var(--font-display);
    font-size: clamp(26px, 3.2vw, 38px);
    letter-spacing: -0.04em;
    color: var(--text);
}

/* --------------------------------------------------------------------------
   25. FORMATIONS
   -------------------------------------------------------------------------- */
.training-page .training-hero .page-hero-bg,
.training-access-page .training-hero .page-hero-bg {
    object-position: center;
}
.training-access-page .page-hero-title {
    hyphens: none;
    overflow-wrap: normal;
}
.training-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}
.training-intro,
.training-offers,
.training-flow,
.training-access-section {
    padding: clamp(58px, 7vw, 98px) 0;
    background: var(--bg);
}
.training-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
    gap: clamp(30px, 5vw, 72px);
    align-items: center;
}
.training-intro-copy h2,
.training-flow-panel h2,
.training-custom-card h2,
.training-access-card h2,
.training-dashboard-head h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}
.training-intro-copy p,
.training-flow-panel p,
.training-custom-card p,
.training-access-card p,
.training-dashboard-head p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.75;
}
.training-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.training-proof-card {
    min-height: 210px;
    padding: 22px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}
.training-proof-card strong {
    display: block;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 14px;
    margin-bottom: 34px;
}
.training-proof-card span {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 12px;
}
.training-proof-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.58;
}
.training-offers {
    background: var(--bg-alt);
}
.training-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.training-offer-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}
.training-offer-card figure {
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    background: var(--bg-alt);
}
.training-offer-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.training-offer-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}
.training-tag {
    align-self: flex-start;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(40,145,201,0.1);
    color: var(--accent-deep);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 18px;
}
.training-card-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}
.training-card-tags .training-tag {
    margin-bottom: 0;
}
.training-duration {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid var(--border-light);
    background: #fff;
    color: var(--text);
    font-size: 12px;
    font-weight: 900;
}
.training-offer-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.training-offer-content p,
.training-offer-content li {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.65;
}
.training-offer-content ul {
    display: grid;
    gap: 8px;
    margin: 20px 0 24px;
    padding-left: 18px;
}
.training-offer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}
.training-offer-bottom strong {
    font-family: var(--font-display);
    font-size: 18px;
}
.price-stack {
    display: grid;
    gap: 3px;
}
.price-stack strong {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text);
}
.price-stack span {
    display: block;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 800;
}
.price-stack-large strong {
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: -0.04em;
}
.price-stack-large span {
    font-size: 15px;
}
.module-price {
    margin: 18px 0 10px;
}

.addons-product-page {
    background: #f4f6f8;
    color: var(--text);
}
.addons-product-page .container {
    max-width: 1180px;
}
.addons-product-head {
    padding: 118px 0 38px;
    background: #f4f6f8;
}
.addons-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 12px;
    font-weight: 750;
}
.addons-breadcrumb a {
    color: var(--text);
    text-decoration: none;
}
.addons-breadcrumb a + a::before,
.addons-breadcrumb a + span::before {
    content: ">";
    margin-right: 8px;
    color: var(--text-light);
}
.addons-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}
.addons-product-copy h1 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.03em;
}
.addons-meta-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 800;
}
.addons-verified {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(40,145,201,0.12);
    color: var(--accent-deep);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.addons-verified::before {
    content: "✓";
    display: grid;
    place-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
}
.addons-stats-row {
    display: grid;
    grid-template-columns: 92px repeat(4, minmax(0, 1fr));
    margin-bottom: 18px;
    border: 1px solid var(--border-light);
    background: #fff;
}
.addons-stats-row div {
    min-height: 76px;
    padding: 14px 16px;
    border-right: 1px solid var(--border-light);
}
.addons-stats-row div:last-child {
    border-right: 0;
}
.addons-stats-row strong,
.addons-stats-row span {
    display: block;
}
.addons-stats-row strong {
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 12px;
    font-weight: 850;
}
.addons-stats-row span {
    color: var(--text);
    font-size: 15px;
    font-weight: 900;
}
.addons-module-icon {
    display: grid;
    place-items: center;
    background: #fff;
}
.addons-module-icon span {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--text) 0%, #26384f 100%);
    color: #fff;
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: -0.02em;
}
.addons-category-link {
    display: inline-flex;
    margin: 8px 0 10px;
    color: var(--text);
    font-size: 14px;
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.addons-product-summary {
    max-width: 840px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 650;
}
.addons-purchase-column {
    display: grid;
    gap: 14px;
}
.addons-buy-panel {
    padding: 22px;
    border: 1px solid var(--border-light);
    background: #fff;
    box-shadow: 0 10px 28px rgba(14,14,24,0.08);
}
.addons-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.addons-price strong {
    font-family: var(--font-display);
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.04em;
}
.addons-price span {
    font-size: 13px;
    font-weight: 900;
}
.addons-tax {
    margin: 8px 0 18px;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 800;
}
.addons-buy-button,
.addons-demo-link {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    text-align: center;
    font-weight: 900;
    text-decoration: none;
}
.addons-buy-button {
    background: var(--text);
    color: #fff;
}
.addons-demo-link {
    margin-top: 12px;
    border: 1px solid var(--border);
    color: var(--text);
    background: #fff;
}
.addons-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 800;
}
.addons-rating strong {
    color: var(--text);
}
.addons-purchase-included {
    padding: 20px 22px;
    border: 1px solid var(--border-light);
    background: #fff;
}
.addons-purchase-included strong {
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-size: 16px;
}
.addons-purchase-included ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
}
.addons-purchase-included li {
    position: relative;
    list-style: none;
    padding-left: 24px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 750;
}
.addons-purchase-included li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    border-radius: 50%;
    background: rgba(11,159,106,0.16);
    color: #0b9f6a;
    font-size: 11px;
    font-weight: 900;
}
.addons-media-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 20px;
    margin-top: 46px;
    padding: 0;
    align-items: stretch;
}
.addons-media-feature,
.addons-media-thumbs button {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    background: #fff;
    color: var(--text);
    box-shadow: 0 10px 24px rgba(14,14,24,0.06);
    cursor: zoom-in;
    text-align: left;
    transition: border-color 0.25s var(--transition), box-shadow 0.25s var(--transition), transform 0.25s var(--transition);
}
.addons-media-feature:hover,
.addons-media-thumbs button:hover {
    border-color: rgba(40,145,201,0.35);
    box-shadow: 0 18px 44px rgba(18,62,104,0.12);
    transform: translateY(-2px);
}
.addons-media-feature {
    position: relative;
    display: grid;
    gap: 0;
    min-height: 540px;
}
.addons-media-feature img {
    display: block;
    width: 100%;
    height: 478px;
    object-fit: contain;
    object-position: top center;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    padding: 18px;
}
.addons-media-label {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: var(--accent-deep);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(18,62,104,0.08);
}
.addons-media-feature strong {
    display: block;
    padding: 16px 18px 18px;
    border-top: 1px solid var(--border-light);
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.2;
}
.addons-media-thumbs {
    display: grid;
    gap: 14px;
}
.addons-media-thumbs button {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    min-height: 162px;
    align-items: stretch;
    padding: 0;
}
.addons-media-thumbs img {
    width: 100%;
    height: 100%;
    min-height: 162px;
    object-fit: contain;
    object-position: top center;
    background: #f8fafc;
    border-right: 1px solid var(--border-light);
    padding: 8px;
}
.addons-media-thumbs span {
    display: flex;
    align-items: center;
    padding: 18px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}
.module-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 46px);
    background: rgba(8,10,18,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.module-lightbox.is-open {
    display: flex;
}
.module-lightbox-dialog {
    position: relative;
    display: grid;
    gap: 14px;
    width: min(1180px, 100%);
    max-height: calc(100vh - 44px);
}
.module-lightbox-frame {
    display: grid;
    place-items: center;
    overflow: auto;
    max-height: calc(100vh - 118px);
    padding: clamp(10px, 2vw, 22px);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 10px;
    background: #fff;
}
.module-lightbox-frame img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: none;
}
.module-lightbox-caption {
    justify-self: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}
.module-lightbox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    background: #fff;
    color: var(--text);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(0,0,0,0.24);
}
.addons-detail-section {
    padding: 42px 0 76px;
    background: #fff;
}
.addons-detail-grid {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}
.addons-sidebar {
    display: grid;
    gap: 18px;
}
.addons-side-card {
    padding: 22px;
    border: 1px solid var(--border-light);
    background: #f6f7f8;
}
.addons-side-card h2 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.2;
}
.addons-side-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}
.addons-side-card li {
    position: relative;
    list-style: none;
    padding-left: 20px;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 750;
}
.addons-side-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0b9f6a;
    font-weight: 900;
}
.addons-side-card dl {
    display: grid;
    gap: 10px;
    margin: 0;
}
.addons-side-card dt {
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
}
.addons-side-card dd {
    margin: -7px 0 4px;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.45;
}
.addons-description {
    max-width: 820px;
}
.addons-description section {
    padding: 0 0 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid var(--border-light);
}
.addons-description section:last-child {
    border-bottom: 0;
}
.addons-description h2 {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}
.addons-description h3 {
    margin: 24px 0 9px;
    font-family: var(--font-display);
    font-size: 19px;
    line-height: 1.25;
}
.addons-description p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.75;
}
.addons-included-box {
    padding: 22px;
    border: 1px solid rgba(11,159,106,0.22);
    background: rgba(11,159,106,0.09);
}
.addons-included-box strong {
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-size: 19px;
}
.addons-included-box ul,
.addons-check-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}
.addons-included-box li,
.addons-check-list li {
    position: relative;
    list-style: none;
    padding-left: 22px;
    color: var(--text);
    line-height: 1.6;
}
.addons-included-box li::before,
.addons-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0b9f6a;
    font-weight: 900;
}
.module-product-section {
    padding: clamp(38px, 5vw, 68px) 0 clamp(24px, 4vw, 42px);
    background: var(--bg);
}
.module-marketplace-section {
    border-bottom: 1px solid var(--border-light);
}
.module-product-layout,
.module-marketplace-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
}
.module-product-gallery,
.module-product-buybox,
.module-product-preview {
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: #fff;
    box-shadow: var(--shadow);
}
.module-product-gallery {
    padding: clamp(14px, 2vw, 22px);
}
.module-product-gallery img {
    display: block;
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
}
.module-gallery-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}
.module-gallery-notes span {
    display: grid;
    min-height: 46px;
    place-items: center;
    padding: 10px;
    border-radius: 8px;
    background: var(--bg-alt);
    color: var(--text);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.25;
    text-align: center;
}
.module-product-buybox {
    position: relative;
    top: auto;
    padding: clamp(24px, 3vw, 34px);
}
.module-product-buybox h2 {
    margin: 14px 0 12px;
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.03em;
}
.module-product-buybox p {
    color: var(--text-light);
    line-height: 1.65;
}
.module-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: var(--radius-full);
    background: var(--accent-light);
    color: var(--accent-deep);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.module-product-price {
    margin: 22px 0;
}
.module-buy-button,
.module-product-buybox .btn-secondary {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
}
.module-product-checks {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}
.module-product-checks li {
    position: relative;
    list-style: none;
    padding-left: 24px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}
.module-product-checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(40,145,201,0.1);
}
.module-product-facts {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}
.module-product-facts li {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 12px;
    list-style: none;
    padding: 13px 0;
    border-top: 1px solid var(--border-light);
}
.module-product-facts strong {
    color: var(--text);
    font-size: 13px;
}
.module-product-facts span {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.4;
}
.module-marketplace-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: clamp(18px, 3vw, 26px);
}
.module-marketplace-strip div {
    min-height: 86px;
    padding: 18px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: #fff;
    box-shadow: 0 12px 28px rgba(14,14,24,0.06);
}
.module-marketplace-strip strong,
.module-marketplace-strip span {
    display: block;
}
.module-marketplace-strip strong {
    margin-bottom: 7px;
    color: var(--text);
    font-size: 14px;
    font-weight: 900;
}
.module-marketplace-strip span {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.45;
}
.module-product-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.module-product-tabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
    background: #fff;
    color: var(--text);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: border-color 0.25s var(--transition), color 0.25s var(--transition), transform 0.25s var(--transition);
}
.module-product-tabs a:hover {
    transform: translateY(-2px);
    border-color: rgba(40,145,201,0.45);
    color: var(--accent-deep);
}
.module-overview-section {
    padding: clamp(46px, 6vw, 74px) 0;
    background: var(--bg);
}
.module-overview-grid {
    align-items: start;
}
.module-overview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.module-product-preview {
    padding: clamp(24px, 3vw, 34px);
}
.module-product-preview span {
    display: block;
    margin-bottom: 18px;
    color: var(--accent-deep);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.module-product-preview ol {
    display: grid;
    gap: 14px;
    counter-reset: moduleSteps;
}
.module-product-preview li {
    list-style: none;
    position: relative;
    padding: 16px 16px 16px 54px;
    border-radius: 8px;
    background: var(--bg-alt);
    color: var(--text);
    font-weight: 800;
    line-height: 1.45;
}
.module-product-preview li::before {
    counter-increment: moduleSteps;
    content: counter(moduleSteps);
    position: absolute;
    left: 16px;
    top: 14px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}
.training-pay-button,
.training-pay-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-weight: 800;
    text-align: center;
}
.training-pay-button {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
    cursor: pointer;
}
.training-pay-link {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}
.training-pay-link:hover {
    background: var(--accent-deep);
    border-color: var(--accent-deep);
}
.training-detail-intro,
.training-detail-program,
.training-sales-band,
.training-outcome,
.training-payment-section {
    padding: clamp(58px, 7vw, 98px) 0;
    background: var(--bg);
}
.training-detail-program,
.training-sales-band {
    background: var(--bg-alt);
}
.training-visual-section,
.training-resource-section,
.training-related-section {
    padding: clamp(58px, 7vw, 98px) 0;
    background: var(--bg);
}
.training-visual-section {
    background: #fff;
}
.training-resource-section {
    background: var(--bg-alt);
}
.training-related-section {
    background: #fff;
}
.training-visual-section .section-header,
.training-resource-section .section-header,
.training-related-section .section-header {
    max-width: 780px;
}
.training-visual-grid,
.training-resource-grid,
.training-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.training-visual-card,
.training-resource-card {
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.training-visual-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #071324;
}
.training-visual-card figcaption {
    padding: 18px 20px 22px;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.55;
}
.training-resource-card {
    padding: clamp(24px, 3vw, 34px);
}
.training-resource-card span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--accent-deep);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.training-resource-card h3 {
    font-family: var(--font-display);
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.training-resource-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}
.training-resource-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--text);
    font-weight: 900;
    text-decoration: none;
}
.training-resource-card a::after {
    content: "→";
    color: var(--accent);
}
.training-sales-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.training-sales-card {
    padding: clamp(24px, 3vw, 34px);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: #fff;
    box-shadow: var(--shadow);
}
.training-sales-card span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--accent-deep);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.training-sales-card h3 {
    font-family: var(--font-display);
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.training-sales-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}
.training-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
}
.training-detail-card,
.training-detail-aside,
.training-payment-panel {
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: #fff;
    box-shadow: var(--shadow);
}
.training-detail-card,
.training-detail-aside,
.training-payment-panel {
    padding: clamp(26px, 4vw, 46px);
}
.training-detail-card h2,
.training-detail-aside h2,
.training-payment-panel h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}
.training-detail-card p,
.training-detail-aside p,
.training-payment-panel p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.75;
}
.training-detail-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}
.training-detail-list li {
    list-style: none;
    padding: 14px 16px;
    border-radius: 8px;
    background: var(--bg-alt);
    color: var(--text);
    font-weight: 700;
}
.training-detail-price {
    display: block;
    margin: 18px 0;
}
.module-pricing-card {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin: 28px 0 34px;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}
.module-pricing-card p {
    max-width: 620px;
    margin-top: 10px;
    color: var(--text-light);
    line-height: 1.65;
}
.module-pricing-card .btn-primary {
    flex: 0 0 auto;
}
.training-detail-aside .btn-primary,
.training-detail-aside .btn-secondary {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
}
.training-program-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.training-program-card {
    min-height: 100%;
    padding: 24px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}
.training-program-card span {
    display: block;
    color: var(--accent);
    font-weight: 900;
    margin-bottom: 24px;
}
.training-program-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.training-program-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.65;
}
.training-outcome-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: stretch;
}
.training-outcome-copy,
.training-outcome-list {
    padding: clamp(26px, 4vw, 46px);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: #fff;
    box-shadow: var(--shadow);
}
.training-outcome-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}
.training-outcome-copy p {
    max-width: 760px;
    margin-bottom: 24px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
}
.training-outcome-list strong {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 18px;
}
.training-outcome-list ul {
    display: grid;
    gap: 12px;
}
.training-outcome-list li {
    list-style: none;
    padding: 14px 16px;
    border-radius: 8px;
    background: var(--bg-alt);
    color: var(--text);
    font-weight: 800;
}
.training-payment-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: clamp(22px, 4vw, 52px);
    align-items: center;
}
.training-payment-actions {
    display: grid;
    gap: 12px;
}
.training-payment-actions .training-pay-button,
.training-payment-actions .btn-secondary {
    width: 100%;
}
.training-flow-panel,
.training-custom-card,
.training-access-card,
.training-dashboard {
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: #fff;
    box-shadow: var(--shadow);
}
.training-flow-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(440px, 1fr);
    gap: clamp(26px, 5vw, 64px);
    padding: clamp(30px, 5vw, 58px);
    align-items: center;
}
.training-flow-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.training-flow-steps article {
    min-height: 180px;
    padding: 20px;
    border-radius: 8px;
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
}
.training-flow-steps span {
    display: block;
    color: var(--accent);
    font-weight: 900;
    margin-bottom: 26px;
}
.training-flow-steps strong {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 10px;
}
.training-custom {
    padding: clamp(50px, 6vw, 86px) 0 clamp(70px, 8vw, 116px);
    background: var(--bg);
}
.training-custom-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: clamp(28px, 5vw, 54px);
}
.training-custom-card > div {
    max-width: 760px;
}
.training-access-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.7fr) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}
.training-access-card,
.training-dashboard {
    padding: clamp(26px, 4vw, 44px);
}
.training-access-form {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}
.training-access-form label {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}
.training-access-form input {
    width: 100%;
    min-height: 54px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0 16px;
    color: var(--text);
    background: var(--bg-alt);
    font: inherit;
}
.training-access-form input:focus {
    outline: 3px solid rgba(40,145,201,0.18);
    border-color: var(--accent);
    background: #fff;
}
.training-access-message {
    min-height: 22px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}
.training-access-message.success { color: #176a43; }
.training-access-message.error { color: #b42318; }
.training-dashboard[hidden] { display: none; }
.training-dashboard-grid {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}
.training-dashboard-card {
    padding: 22px;
    border-radius: 8px;
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
}
.training-dashboard-card > span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(40,145,201,0.12);
    color: var(--accent-deep);
    font-size: 12px;
    font-weight: 900;
}
.training-dashboard-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.training-dashboard-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.65;
}
.training-module-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}
.training-module-item {
    padding: 14px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--border-light);
}
.training-module-item strong,
.training-module-item small {
    display: block;
}
.training-module-item strong {
    font-size: 15px;
    margin-bottom: 4px;
}
.training-module-item small {
    color: var(--text-light);
    line-height: 1.5;
}
.training-resource-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.training-resource-list a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    background: var(--text);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

/* --------------------------------------------------------------------------
   25. LEGAL PAGES (mentions, RGPD)
   -------------------------------------------------------------------------- */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin: 48px 0 16px; letter-spacing: -0.02em; }
.legal-content h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin: 28px 0 10px; }
.legal-content p { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { margin: 12px 0 16px 24px; }
.legal-content ul li { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 6px; }
.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-content strong { color: var(--text); font-weight: 600; }

/* --------------------------------------------------------------------------
   26. 404 PAGE
   -------------------------------------------------------------------------- */
.error-page {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 120px 20px 60px; position: relative; overflow: hidden;
}
.error-page::before {
    content: ''; position: absolute; width: 600px; height: 600px;
    background: var(--accent-light); border-radius: 50%; filter: blur(120px);
    opacity: 0.4; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0;
}
.error-content { position: relative; z-index: 1; max-width: 560px; }
.error-svg { width: clamp(280px, 50vw, 480px); margin: 0 auto 32px; }
.error-code {
    font-family: var(--font-display); font-size: clamp(80px, 14vw, 160px);
    font-weight: 700; line-height: 1; letter-spacing: -0.05em; margin-bottom: 16px;
    background: var(--accent-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.error-title { font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); font-weight: 700; margin-bottom: 12px; }
.error-desc { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-bottom: 32px; }
.error-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   27. FOOTER
   -------------------------------------------------------------------------- */
.footer { background: var(--text); color: rgba(255,255,255,0.6); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 2.15fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); margin-bottom: 60px; align-items: start; }
.footer-brand-desc { font-size: 15px; line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-mini-cta {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
    color: #fff; font-size: 13px; font-weight: 700;
}
.footer-mini-cta::after { content: '→'; color: var(--accent); }
.footer-logo { font-family: var(--font-display); font-weight: 700; color: #fff; display: flex; align-items: center; gap: 12px; line-height: 1; }
.footer-logo .logo-mark { width: 32px; height: 32px; color: var(--accent); flex-shrink: 0; }
.footer-logo .logo-text { display: flex; flex-direction: column; gap: 2px; }
.footer-logo .logo-name { font-size: 18px; font-weight: 700; }
.footer-logo .logo-tagline { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-heading { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 20px; }
.footer-service-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 28px; }
.footer-resource-groups { display: grid; gap: 20px; }
.footer-subheading {
    display: block; margin-bottom: 10px; color: var(--accent);
    font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-links span { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px; font-size: 13px;
}
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,0.5); font-size: 13px; transition: color 0.3s; }
.footer-legal-links a:hover { color: #fff; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; color: rgba(255,255,255,0.5); font-size: 16px;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* --------------------------------------------------------------------------
   28. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-buttons, .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .about-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .projects-grid, .projects-list-grid, .blog-grid, .seo-related-grid, .lexique-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .mega-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .clients-logos { grid-template-columns: repeat(3, minmax(140px, 1fr)); }
    .commerce-intro-grid,
    .commerce-comparison { grid-template-columns: 1fr; }
    .commerce-feature-grid,
    .commerce-options-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .commerce-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .module-marketplace-strip,
    .module-faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-hub-card { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr); }
    .service-pathways { grid-template-columns: 1fr; }
    .service-detail-card-media { grid-template-columns: 1fr; }
    #seo .service-detail-copy,
    #crm .service-detail-copy { order: 0; }
    .service-detail-image { min-height: 280px; }
    .service-subservices-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .seo-layout { grid-template-columns: 1fr; gap: 40px; }
    .seo-aside { position: relative; top: 0; }
    .seo-article-extra .seo-list { grid-template-columns: 1fr; }
    .quote-wizard,
    .addons-top-grid,
    .addons-detail-grid,
    .module-product-layout,
    .module-marketplace-layout,
    .training-intro-grid,
    .training-flow-panel,
    .training-access-layout,
    .training-detail-layout,
    .training-sales-grid,
    .training-visual-grid,
    .training-resource-grid,
    .training-related-grid,
    .training-outcome-grid,
    .training-payment-panel { grid-template-columns: 1fr; }
    .quote-wizard-sidebar { min-height: auto; }
    .training-offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .training-program-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .training-proof-grid,
    .training-flow-steps { grid-template-columns: 1fr; }
    .training-proof-card,
    .training-flow-steps article { min-height: auto; }
    .addons-media-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .addons-media-feature {
        min-height: 0;
    }
    .addons-media-feature img {
        height: 360px;
    }
    .addons-media-thumbs button {
        grid-template-columns: 110px minmax(0, 1fr);
        min-height: 116px;
    }
    .addons-media-thumbs img {
        min-height: 116px;
    }
}

@media (max-width: 768px) {
    body { overflow-x: hidden; }
    section { padding: clamp(56px, 12vw, 86px) 0; }
    .container { padding: 0 20px; }
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav { padding: 16px 0; }
    .nav.scrolled { padding: 10px 0; }
    .nav-logo .logo-mark { width: 28px; height: 28px; }
    .nav-logo .logo-name { font-size: 15px; }
    .nav-logo .logo-tagline { font-size: 9px; }
    .hero {
        min-height: 100svh;
        align-items: flex-start;
        padding: 96px 0 20px;
    }
    .hero .container {
        min-height: calc(100svh - 116px);
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: clamp(44px, 9vh, 78px);
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .hero-badge {
        margin-bottom: 18px;
        padding: 8px 14px;
        font-size: 12px;
    }
    .hero-title {
        font-size: clamp(38px, 11.5vw, 54px);
        line-height: 1.04;
        margin-bottom: 18px;
    }
    .hero-description {
        max-width: 23rem;
        font-size: clamp(17px, 4.3vw, 19px);
        line-height: 1.45;
        margin-bottom: 16px;
    }
    .hero-buttons {
        order: 5;
        width: 100%;
        gap: 12px;
        margin-bottom: 0;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        min-height: 56px;
        padding-top: 14px;
        padding-bottom: 14px;
    }
    .page-hero { padding: 132px 0 68px; }
    .page-hero-image {
        min-height: auto;
        align-items: center;
        padding: 112px 0 72px;
    }
    .page-hero-image .page-hero-bg { object-position: right center; }
    .page-hero-image + section { padding-top: 34px; }
    .page-hero-title {
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.04;
        letter-spacing: -0.035em;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    .page-hero-desc {
        font-size: 16px;
        max-width: 100%;
    }
    .page-intro-actions,
    .hero-buttons,
    .cta-buttons,
    .resource-download-actions,
    .service-guide-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-primary,
    .btn-secondary,
    .btn-white,
    .btn-ghost {
        width: 100%;
        justify-content: center;
        padding-left: 22px;
        padding-right: 22px;
        text-align: center;
    }
    .cookie-consent {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100vw;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 22px 22px 0 0;
        overflow: hidden;
    }
    .cookie-consent-content,
    .cookie-consent-content p,
    .cookie-consent-content a {
        max-width: calc(100vw - 36px);
    }
    .cookie-consent-content p {
        overflow-wrap: anywhere;
    }
    .cookie-consent-actions,
    .cookie-preferences-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }
    .cookie-button {
        width: 100%;
        min-height: 48px;
        justify-content: center;
    }
    .cookie-preferences {
        align-items: flex-end;
        padding: 0;
    }
    .cookie-preferences-dialog {
        width: 100%;
        max-height: calc(100svh - 28px);
        border-radius: 22px 22px 0 0;
        padding: 24px 18px max(22px, env(safe-area-inset-bottom));
    }
    .cookie-option {
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: start;
    }
    .cookie-required-badge,
    .cookie-switch {
        justify-self: start;
    }
    .clients .container { flex-direction: column; gap: 24px; }
    .resource-download-section { padding: 34px 0 18px; }
    .resource-download-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
        border-radius: 22px;
    }
    .resource-download-cover { width: 152px; }
    .resource-download-content h2 { font-size: clamp(30px, 9vw, 42px); }
    .resource-download-content p { font-size: 15px; line-height: 1.65; }
    .service-guide-cta { padding: 38px 0 54px; }
    .service-guide-card {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 24px;
        border-radius: 22px;
    }
    .service-guide-cover { width: 150px; }
    .service-guide-content h2 { font-size: clamp(29px, 8vw, 38px); }
    .service-guide-content p { font-size: 15px; line-height: 1.65; }
    .service-guide-actions .btn-primary,
    .service-guide-actions .btn-secondary { width: 100%; justify-content: center; }
    .clients-label { text-align: center; white-space: normal; }
    .clients-logos { width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .client-logo-card { min-height: 78px; padding: 14px; }
    .client-logo-card img { max-width: 110px; max-height: 42px; }
    .client-logo-card-autosprint img { max-width: 64px; }
    .client-logo-card-square img { max-height: 50px; max-width: 76px; }
    .client-logo-card-emblem img { max-height: 52px; max-width: 58px; }
    .client-logo-card-wanaka img { max-width: 108px; max-height: 36px; }
    .client-logo-card-distri img { max-width: 96px; max-height: 54px; }
    .commerce-kpis,
    .commerce-feature-grid,
    .commerce-options-grid,
    .commerce-flow,
    .module-marketplace-strip,
    .module-faq-grid { grid-template-columns: 1fr; }
    .addons-product-head { padding: 96px 0 30px; }
    .addons-breadcrumb { font-size: 11px; }
    .addons-stats-row,
    .addons-media-showcase { grid-template-columns: 1fr; }
    .addons-stats-row div {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--border-light);
    }
    .addons-stats-row div:last-child { border-bottom: 0; }
    .addons-module-icon {
        justify-content: start;
        place-items: center start;
    }
    .addons-media-feature img {
        height: clamp(320px, 72vw, 480px);
        max-height: none;
        object-fit: contain;
        padding: 12px;
    }
    .addons-media-thumbs button {
        grid-template-columns: 1fr;
    }
    .addons-media-thumbs img {
        height: clamp(170px, 52vw, 260px);
        min-height: 0;
        object-fit: contain;
        border-right: 0;
        border-bottom: 1px solid var(--border-light);
    }
    .module-lightbox {
        padding: 12px;
    }
    .module-lightbox-dialog {
        max-height: calc(100vh - 24px);
    }
    .module-lightbox-frame {
        max-height: calc(100vh - 100px);
        padding: 10px;
    }
    .module-lightbox-close {
        top: 8px;
        right: 8px;
        width: 40px;
        height: 40px;
    }
    .addons-detail-section { padding: 34px 0 58px; }
    .addons-side-card,
    .addons-included-box { padding: 18px; }
    .addons-description section {
        padding-bottom: 28px;
        margin-bottom: 28px;
    }
    .commerce-feature-card,
    .commerce-option-card,
    .commerce-flow-step { min-height: auto; }
    .commerce-card-footer {
        align-items: stretch;
        flex-direction: column;
    }
    .commerce-card-footer .project-list-link {
        width: 100%;
    }
    .commerce-intro-copy h2,
    .commerce-section-title { font-size: clamp(27px, 8vw, 34px); }
    .commerce-intro-copy p,
    .commerce-section-lead { max-width: 100%; }
    .commerce-media img { aspect-ratio: 16/11; }
    .commerce-media.service-image-contain img { aspect-ratio: auto; }
    .commerce-table-row { grid-template-columns: 1fr; gap: 6px; padding: 17px; }
    .module-gallery-notes { grid-template-columns: 1fr; }
    .module-product-tabs a { flex: 1 1 100%; }
    .module-overview-actions .btn-primary,
    .module-overview-actions .btn-secondary { width: 100%; }
    .quote-wizard-section { padding: 58px 0; }
    .quote-wizard-head { margin-bottom: 24px; }
    .quote-wizard {
        padding: 14px;
        gap: 18px;
    }
    .quote-wizard-sidebar {
        padding: 20px;
    }
    .quote-mini-list {
        padding-top: 22px;
    }
    .quote-context-grid,
    .quote-choice-grid,
    .quote-check-grid,
    .quote-contact-grid {
        grid-template-columns: 1fr;
    }
    .quote-choice > span {
        min-height: auto;
        padding: 18px;
    }
    .quote-check > span {
        min-height: 58px;
    }
    .quote-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    .quote-actions .btn-primary,
    .quote-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .quote-result-card ul {
        display: grid;
        grid-template-columns: 1fr;
    }
    .quote-form .form-status {
        text-align: center;
    }
    .service-overview-grid { grid-template-columns: 1fr; }
    .service-overview-card { min-height: 102px; }
    .service-hub { padding: 44px 0 58px; }
    .service-hub-card { grid-template-columns: 1fr; min-height: auto; }
    .service-hub-media { min-height: 210px; order: -1; }
    .service-pathways-list { grid-template-columns: 1fr; }
    .service-pathways-list a { min-height: auto; gap: 14px; }
    .service-detail-card { padding: 26px; }
    .service-detail-image { min-height: 220px; }
    .service-subservices-grid { grid-template-columns: 1fr; }
    .service-mini-card { min-height: auto; }
    .service-detail-actions .btn-primary,
    .service-detail-actions .btn-secondary,
    .service-detail-actions .btn-white { width: 100%; justify-content: center; }
    .about-portrait-card figcaption { flex-direction: column; align-items: flex-start; gap: 4px; }
    .about-portrait-card span { text-align: left; }
    .about-proof .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .service-item { grid-template-columns: 1fr; gap: 12px; }
    .service-arrow { display: none; }
    .horizontal-track {
        width: auto !important;
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 20px;
    }
    .horizontal-track .project-card {
        min-width: 0 !important;
        width: 100%;
        min-height: 250px;
        aspect-ratio: auto;
        opacity: 1 !important;
        transform: none !important;
    }
    .project-card-bg {
        transform: none !important;
    }
    .project-card-content {
        padding: 24px;
        min-height: 250px;
    }
    .project-card-tag { margin-bottom: 12px; }
    .project-logo-lockup {
        min-height: 78px;
        margin-bottom: 18px;
        padding: 13px 16px;
        border-radius: 14px;
    }
    .project-logo-lockup img { max-height: 62px; max-width: 176px; }
    .project-logo-square img { max-width: 116px; max-height: 88px; }
    .project-logo-emblem img { max-width: 96px; max-height: 96px; }
    .project-logo-john {
        width: 110px;
        height: 110px;
    }
    .project-logo-john img { max-height: 90px; max-width: 90px; }
    .project-logo-duo img:first-child { max-width: 54px; }
    .project-logo-duo img:last-child { max-width: 106px; }
    .project-card-title { font-size: 21px; }
    .project-card-desc {
        max-width: 100%;
        font-size: 14px;
    }
    .projects-grid, .projects-list-grid, .blog-grid, .seo-related-grid, .lexique-grid { grid-template-columns: 1fr; }
    .faq-theme-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .faq-theme-heading { grid-template-columns: 1fr; gap: 12px; }
    .project-list-thumb-logo { padding: 22px; }
    .project-list-body { padding: 20px; }
    .project-list-title { font-size: 18px; }
    .blog-card-body { padding: 22px; }
    .seo-content { padding-top: 0; }
    .seo-layout { gap: 28px; }
    .seo-main h2 { font-size: 29px; }
    .seo-main h3 { font-size: 20px; }
    .seo-main p,
    .legal-content p { font-size: 15px; line-height: 1.75; }
    .seo-feature-image { margin-bottom: 30px; }
    .seo-aside { padding: 24px; border-radius: 16px; }
    .module-product-buybox { position: relative; top: 0; }
    .article-callout { margin-top: 30px; }
    .brevo-guide-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 14px;
        border-radius: 22px;
    }
    .brevo-guide-preview {
        min-height: 0;
        padding: 0;
    }
    .brevo-guide-preview img { width: min(68%, 190px); }
    .brevo-guide-panel .form-consent { padding: 13px; }
    .brevo-submit-row { grid-template-columns: 1fr; }
    .article-callout .brevo-guide-panel .btn-primary { width: 100%; }
    .brevo-guide-panel .lead-form-row { grid-template-columns: 1fr; }
    .lead-form-row { grid-template-columns: 1fr; }
    .term-card { min-height: auto; }
    .story-grid { gap: 30px; }
    .story-year-badge {
        right: 12px;
        bottom: 12px;
        padding: 14px 18px;
    }
    .story-year-number { font-size: 26px; }
    .timeline-header { text-align: left; }
    .timeline-header .overline { justify-content: flex-start; }
    .timeline { gap: 14px; }
    .timeline::before { left: 18px; }
    .timeline-item { padding-left: 48px; }
    .timeline-dot {
        left: 8px;
        top: 22px;
        width: 20px;
        height: 20px;
    }
    .timeline-content {
        min-height: auto;
        padding: 20px;
    }
    .timeline-content h3 { font-size: 18px; }
    .timeline-content p { font-size: 14px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-service-groups { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-stats {
        order: 4;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        padding: 9px;
        margin-bottom: 14px;
        opacity: 1 !important;
        transform: none !important;
        border-radius: 22px;
        border: 1px solid rgba(255,255,255,0.16);
        background: rgba(255,255,255,0.08);
        box-shadow: 0 18px 44px rgba(0,0,0,0.2);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }
    .horizontal-scroll { min-height: auto; }
    .horizontal-container { height: auto; position: relative; }
    .hero-stat {
        align-items: center;
        justify-content: center;
        min-height: 58px;
        padding: 8px 4px;
        border-radius: 16px;
        background: rgba(255,255,255,0.06);
        text-align: center;
    }
    .hero-stat-number {
        font-size: clamp(24px, 7vw, 30px);
        line-height: 1;
    }
    .hero-stat-label {
        max-width: 86px;
        margin-top: 5px;
        font-size: 10px;
        line-height: 1.2;
        color: rgba(255,255,255,0.72);
    }
    .hero-bg-image { object-position: 58% center; }
    .hero-bg-overlay { background: linear-gradient(90deg, rgba(14,14,24,0.94) 0%, rgba(14,14,24,0.78) 100%); }
    .values-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-service-options { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .process-step { min-height: auto; }
    .training-hero-actions,
    .training-custom-card,
    .training-offer-bottom {
        align-items: stretch;
        flex-direction: column;
    }
    .training-hero-actions .btn-primary,
    .training-hero-actions .btn-secondary,
    .training-custom-card .btn-primary,
    .training-pay-button,
    .training-pay-link {
        width: 100%;
    }
    .training-offer-grid { grid-template-columns: 1fr; }
    .training-program-grid { grid-template-columns: 1fr; }
    .training-intro,
    .training-offers,
    .training-flow,
    .training-access-section,
    .training-detail-intro,
    .training-detail-program,
    .training-sales-band,
    .training-visual-section,
    .training-resource-section,
    .training-related-section,
    .training-outcome,
    .training-payment-section {
        padding: 56px 0;
    }
    .training-offer-content,
    .training-dashboard-card,
    .training-flow-steps article,
    .training-program-card { padding: 18px; }
    .training-custom-card,
    .training-flow-panel,
    .training-access-card,
    .training-dashboard,
    .training-detail-card,
    .training-detail-aside,
    .training-sales-card,
    .training-resource-card,
    .training-outcome-copy,
    .training-outcome-list,
    .training-payment-panel { padding: 22px; }
    .module-product-buybox,
    .module-product-preview { padding: 22px; }
    .module-product-facts li { grid-template-columns: 1fr; gap: 4px; }
    .training-access-layout { gap: 16px; }
}

@media (max-width: 430px) and (max-height: 850px) {
    .hero {
        padding-top: 82px;
        padding-bottom: 16px;
    }
    .hero .container {
        min-height: calc(100svh - 100px);
        align-items: flex-start;
        padding-top: 28px;
    }
    .hero-badge {
        margin-bottom: 12px;
    }
    .hero-title {
        font-size: clamp(34px, 10.5vw, 45px);
        margin-bottom: 12px;
    }
    .hero-description {
        max-width: 21.5rem;
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 14px;
    }
    .hero-buttons {
        margin-bottom: 0;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        min-height: 48px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .hero-stats {
        padding: 8px;
        margin-bottom: 12px;
    }
    .hero-stat {
        min-height: 54px;
    }
    .hero-stat-number {
        font-size: 23px;
    }
    .hero-stat-label {
        font-size: 9px;
    }
}

/* ==========================================================================
   SEO / GEO ENRICHMENTS
   ========================================================================== */
.seo-answer-section {
    padding: clamp(48px, 7vw, 92px) 0;
    background: var(--bg);
}

.page-hero + .seo-answer-section,
.service-hero + .seo-answer-section,
.commerce-hero + .seo-answer-section {
    margin-top: 0;
}

.seo-answer-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    gap: clamp(24px, 4vw, 58px);
    align-items: start;
    padding: clamp(26px, 4.5vw, 54px);
    border: 1px solid rgba(40, 145, 201, 0.16);
    border-radius: var(--radius);
    background: linear-gradient(135deg, #ffffff 0%, #f7fbfe 100%);
    box-shadow: var(--shadow);
}

.seo-answer-card h2 {
    margin-bottom: 18px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.seo-answer-card p {
    max-width: 760px;
    color: var(--text-light);
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.75;
}

.seo-answer-panel {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
}

.seo-answer-panel strong {
    display: block;
    margin-bottom: 14px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 18px;
}

.seo-answer-panel ul {
    display: grid;
    gap: 12px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.seo-answer-panel li {
    position: relative;
    padding-left: 22px;
    color: var(--text-light);
    font-weight: 650;
    line-height: 1.5;
}

.seo-answer-panel li::before {
    content: '';
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.seo-answer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.seo-answer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 14px;
    border-radius: var(--radius-full);
    background: var(--accent-light);
    color: var(--accent-deep);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.seo-answer-links a:hover {
    transform: translateY(-1px);
    background: rgba(40, 145, 201, 0.18);
}

.seo-faq-section {
    padding: clamp(64px, 8vw, 110px) 0;
    background: #ffffff;
}

.seo-faq-section .section-header {
    margin-bottom: clamp(28px, 4vw, 46px);
}

.seo-faq-list {
    display: grid;
    gap: 14px;
    max-width: 920px;
}

.seo-faq-item {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    box-shadow: var(--shadow);
}

.seo-faq-item summary {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    color: var(--text);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 23px);
    font-weight: 800;
    line-height: 1.25;
    list-style: none;
}

.seo-faq-item summary::-webkit-details-marker {
    display: none;
}

.seo-faq-item summary::after {
    content: '+';
    flex: 0 0 auto;
    color: var(--accent);
    font-size: 28px;
    line-height: 1;
}

.seo-faq-item[open] summary::after {
    content: '-';
}

.seo-faq-item p {
    max-width: 820px;
    padding: 0 24px 24px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.75;
}

@media (max-width: 860px) {
    .seo-answer-card {
        grid-template-columns: 1fr;
    }

    .seo-answer-panel {
        padding: 20px;
    }

    .seo-answer-links a {
        width: 100%;
        justify-content: center;
    }
}
