/*
Theme Name: Breizho ClearFox
Theme URI: https://breizho.fr
Author: Breizho Europe
Author URI: https://breizho.fr
Description: Thème WordPress officiel ClearFox® By Breizho® - v1.6.20 Google Ads call tracking (remplacement dynamique du numéro pour visiteurs Ads).
Version: 1.6.20
License: Proprietary
Text Domain: breizho-clearfox
Tags: business, two-columns, custom-menu, featured-images
*/

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Open Sans', Arial, sans-serif; color: #333; background: #fff; line-height: 1.5; }
img { max-width: 100%; height: auto; }
a { color: #2b4c8c; }

/* === HEADER === */
.bz-header { background: #fff; padding: 14px 20px 0; border-bottom: 2px solid #2b4c8c; position: relative; }
.bz-header-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.bz-header-left { flex-shrink: 0; }
.bz-header-left img { width: 100px; height: auto; display: block; }
.bz-header-center { text-align: center; flex: 1; }
.bz-header-center h1 { font-family: 'Open Sans', sans-serif; font-size: 38px; font-weight: 600; color: #e8782e; letter-spacing: 0.5px; line-height: 1.1; }
.bz-header-center h1 a { color: inherit; text-decoration: none; }
.bz-header-center h1 sup { font-size: 14px; vertical-align: super; }
.bz-header-center p { font-size: 15px; color: #2b4c8c; font-weight: 600; margin-top: 4px; line-height: 1.1; }
.bz-header-right { flex-shrink: 0; }
.bz-header-right img { width: 95px; height: auto; display: block; }
.bz-header-right img.bz-agrement-logo { width: 85px; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }

/* === HAMBURGER BUTTON (mobile only) === */
.bz-hamburger { display: none; background: linear-gradient(to bottom, #3960a8, #2b4c8c); border: 1px solid #1e3a6e; border-radius: 6px; width: 44px; height: 44px; padding: 11px 9px; cursor: pointer; flex-shrink: 0; flex-direction: column; justify-content: space-between; align-items: stretch; box-shadow: 0 2px 4px rgba(0,0,0,0.2); transition: background 0.15s; }
.bz-hamburger:hover, .bz-hamburger:focus { background: linear-gradient(to bottom, #d92e2e, #b02020); border-color: #8a1818; outline: none; }
.bz-hamburger span { display: block; height: 3px; background: #fff; border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
body.bz-menu-open .bz-hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.bz-menu-open .bz-hamburger span:nth-child(2) { opacity: 0; }
body.bz-menu-open .bz-hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.bz-sidebar-close { display: none; position: absolute; top: 8px; right: 8px; background: transparent; border: 1px solid #fff; color: #fff; width: 36px; height: 36px; border-radius: 50%; font-size: 22px; line-height: 1; cursor: pointer; padding: 0; z-index: 10; }
.bz-sidebar-close:hover { background: rgba(255,255,255,0.15); }

.bz-mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 998; opacity: 0; transition: opacity 0.3s; }
body.bz-menu-open .bz-mobile-overlay { display: block; opacity: 1; }

/* === HEADER FLAGS + PHONE BUTTON === */
.bz-header-flags { text-align: center; padding: 0 20px 6px; max-width: 1100px; margin: -4px auto 0; min-height: 18px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* GTranslate widget */
.bz-header-flags .gtranslate, .bz-header-flags .gt_switcher, .bz-header-flags .gt_container { display: inline-block !important; vertical-align: middle; }
.bz-header-flags img.gt_flag, .bz-header-flags .glink img { display: inline-block !important; margin: 0 2px !important; vertical-align: middle; border: 1px solid #999; border-radius: 1px; transition: transform 0.2s; cursor: pointer; }
.bz-header-flags img.gt_flag:hover, .bz-header-flags .glink img:hover { transform: scale(1.15); }
.bz-header-flags .gt_switcher select, .bz-header-flags select.notranslate { font-size: 12px; padding: 4px 8px; border: 1px solid #c8d0dc; border-radius: 4px; background: #fff; cursor: pointer; }
.bz-header-flags ul.gt_options { display: inline-flex; list-style: none; margin: 0; padding: 0; gap: 5px; }
.bz-header-flags ul.gt_options li { margin: 0; padding: 0; display: inline-block; }

/* Phone button in header */
.bz-header-phone { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(to bottom, #ed3535, #b02020); color: #fff !important; text-decoration: none !important; padding: 7px 14px; border-radius: 22px; font-size: 13px; font-weight: 700; border: 1px solid #8a1818; box-shadow: 0 2px 4px rgba(176,32,32,0.35); transition: all 0.2s; }
.bz-header-phone:hover { background: linear-gradient(to bottom, #ff4444, #c02525); transform: translateY(-1px); box-shadow: 0 4px 8px rgba(176,32,32,0.45); }
.bz-header-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

/* === LOGO ANIMATIONS === */
.bz-header-left img, .bz-header-right img { transition: transform 0.3s ease; }
.bz-header-left img { animation: bz-float 5s ease-in-out infinite; transform-origin: center center; }
.bz-header-left img:hover, .bz-header-right img:hover { animation-play-state: paused; transform: scale(1.06); }
@keyframes bz-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@media (prefers-reduced-motion: reduce) { .bz-header-left img, .bz-header-right img { animation: none; } }

/* === MAIN LAYOUT === */
.bz-main { max-width: 1100px; margin: 0 auto; display: flex; gap: 18px; padding: 12px 20px 16px 8px; align-items: flex-start; }

/* === SIDEBAR === */
.bz-sidebar { width: 180px; flex-shrink: 0; position: relative; }
.bz-sidebar a { display: block; background: linear-gradient(to bottom, #3960a8, #2b4c8c); color: #fff; padding: 10px 10px; margin-bottom: 5px; text-decoration: none; font-size: 12px; font-weight: 600; text-align: center; border-radius: 4px; border: 1px solid #1e3a6e; line-height: 1.3; box-shadow: 0 1px 2px rgba(0,0,0,0.15); transition: background 0.15s; }
.bz-sidebar a:hover { background: linear-gradient(to bottom, #d92e2e, #b02020); border-color: #8a1818; }
.bz-sidebar a.current-menu-item, .bz-sidebar a.bz-active { background: linear-gradient(to bottom, #d92e2e, #b02020); border-color: #8a1818; }

/* === RIGHT COLUMN === */
.bz-right { flex: 1; min-width: 0; }

/* === TOP NAV === */
.bz-topnav { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.bz-topnav a { display: inline-block; background: linear-gradient(to bottom, #3960a8, #2b4c8c); color: #fff; padding: 9px 16px; text-decoration: none; font-size: 13px; font-weight: 600; border-radius: 4px; border: 1px solid #1e3a6e; box-shadow: 0 1px 2px rgba(0,0,0,0.15); transition: background 0.15s; }
.bz-topnav a:hover { background: linear-gradient(to bottom, #d92e2e, #b02020); border-color: #8a1818; }
.bz-topnav a.bz-active { background: linear-gradient(to bottom, #d92e2e, #b02020); border-color: #8a1818; }

/* === CONTENT === */
.bz-content { padding: 0; }
/* H1 page title visually hidden (kept for SEO/screen readers) - the active sidebar item already shows the current page */
.bz-page-title { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.bz-page-title.bz-orange { color: #e8782e; }
.bz-content h2 { font-family: 'Comic Sans MS', cursive; font-size: 24px; color: #e8782e; text-align: center; margin: 24px 0 18px; font-weight: 700; }
.bz-content h3 { font-size: 18px; color: #2b4c8c; margin: 18px 0 10px; font-weight: 700; }
.bz-content h4 { font-size: 16px; color: #2b4c8c; margin: 14px 0 8px; font-weight: 700; }
.bz-content p { margin-bottom: 12px; font-size: 14px; line-height: 1.7; color: #444; }
.bz-content ul { margin: 0 0 14px 20px; }
.bz-content li { font-size: 14px; line-height: 1.7; color: #444; margin-bottom: 4px; }
.bz-content a { color: #d92e2e; text-decoration: none; font-weight: 600; }
.bz-content a:hover { text-decoration: underline; }
.bz-content img { display: block; margin: 12px auto; max-width: 100%; height: auto; border-radius: 4px; }

/* === FEATURE LIST (home) === */
.bz-features-list { list-style: none; margin: 0; padding: 0; }
.bz-features-list li { font-size: 17px; font-weight: 600; color: #2b4c8c; padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.bz-features-list li::before { content: '✓'; color: #2b4c8c; font-weight: 700; flex-shrink: 0; font-size: 18px; line-height: 1; }
.bz-gamme-section { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 24px; }
.bz-gamme-features { flex: 1; }
.bz-gamme-image { flex: 0 0 320px; }
.bz-gamme-image img { width: 100%; height: auto; display: block; }

/* === CTA === */
.bz-cta-row { text-align: center; margin: 32px 0 24px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.bz-cta-btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; border-radius: 8px; text-decoration: none !important; font-size: 17px; font-weight: 800 !important; color: #ffffff !important; background: linear-gradient(to bottom, #ed3535, #b02020); border: 1px solid #8a1818; box-shadow: 0 4px 0 #6b1414, 0 6px 12px rgba(176,32,32,0.35); transition: all 0.2s ease; text-transform: uppercase; letter-spacing: 0.5px; text-shadow: 0 1px 2px rgba(0,0,0,0.5), 0 0 1px rgba(0,0,0,0.8); }
.bz-cta-btn:hover { background: linear-gradient(to bottom, #ff4444, #c02525); transform: translateY(-2px); box-shadow: 0 6px 0 #6b1414, 0 10px 20px rgba(176,32,32,0.45); color: #ffffff !important; }
.bz-cta-btn:visited { color: #ffffff !important; }
.bz-cta-btn:active { transform: translateY(2px); box-shadow: 0 2px 0 #6b1414, 0 3px 6px rgba(176,32,32,0.3); }
.bz-cta-btn svg { width: 22px; height: 22px; }
.bz-cta-btn.bz-cta-appel { animation: bz-pulse 2.4s ease-in-out infinite; }
@keyframes bz-pulse { 0%, 100% { box-shadow: 0 4px 0 #6b1414, 0 6px 12px rgba(176,32,32,0.35), 0 0 0 0 rgba(237,53,53,0.6); } 50% { box-shadow: 0 4px 0 #6b1414, 0 6px 12px rgba(176,32,32,0.35), 0 0 0 12px rgba(237,53,53,0); } }
.bz-cta-btn.bz-cta-appel:hover { animation: none; }

/* === NATIVE TABLE BLOCK STYLING === */
.bz-content table, .wp-block-table table { width: 100%; border-collapse: collapse; margin: 18px 0; font-family: 'Open Sans', Arial, sans-serif; box-shadow: 0 2px 8px rgba(43,76,140,0.1); border-radius: 6px; overflow: hidden; background: #fff; }
.bz-content table thead, .wp-block-table table thead { background: linear-gradient(to bottom, #3960a8, #2b4c8c); }
.bz-content table thead th, .wp-block-table table thead th { color: #fff; padding: 12px 14px; text-align: left; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; border: 1px solid #1e3a6e; }
.bz-content table tbody td, .wp-block-table table tbody td { padding: 11px 14px; border: 1px solid #d4dce8; color: #444; font-size: 14px; line-height: 1.5; }
.bz-content table tbody tr:nth-child(odd), .wp-block-table table tbody tr:nth-child(odd) { background: #f9fbfd; }
.bz-content table tbody tr:nth-child(even), .wp-block-table table tbody tr:nth-child(even) { background: #fff; }
.bz-content table tbody td:first-child, .wp-block-table table tbody td:first-child { font-weight: 700; color: #2b4c8c; }
.wp-block-table.is-style-stripes { background: transparent; border-bottom: 0; }
.wp-block-table figcaption { font-size: 13px; color: #666; text-align: center; margin-top: 6px; font-style: italic; }

/* === PDF DOWNLOAD BUTTONS (auto styling, !important to override conflicts) === */
.bz-content a[href$=".pdf"], .bz-content a[href$=".PDF"] { display: inline-flex !important; align-items: center; gap: 10px; background: linear-gradient(to bottom, #ed3535, #b02020) !important; color: #fff !important; text-decoration: none !important; padding: 12px 22px !important; border-radius: 6px !important; font-size: 14px; font-weight: 700 !important; border: 1px solid #8a1818 !important; box-shadow: 0 2px 4px rgba(176,32,32,0.3); transition: all 0.2s; margin: 6px 6px 6px 0; line-height: 1.3; }
.bz-content a[href$=".pdf"]::before, .bz-content a[href$=".PDF"]::before { content: '📄'; font-size: 18px; flex-shrink: 0; }
.bz-content a[href$=".pdf"]:hover, .bz-content a[href$=".PDF"]:hover { background: linear-gradient(to bottom, #ff4444, #c02525) !important; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(176,32,32,0.4); text-decoration: none !important; }

/* Native WordPress File block — also styled */
.wp-block-file { margin: 12px 0; padding: 14px 18px; background: #f9fbfd; border-left: 4px solid #2b4c8c; border-radius: 4px; }
.wp-block-file a:not(.wp-block-file__button) { color: #2b4c8c !important; font-weight: 700; text-decoration: none; }
.wp-block-file a:not(.wp-block-file__button):hover { color: #d92e2e !important; }
.wp-block-file .wp-block-file__button { background: linear-gradient(to bottom, #ed3535, #b02020) !important; color: #fff !important; border: 1px solid #8a1818 !important; border-radius: 6px !important; padding: 8px 18px !important; font-size: 13px !important; font-weight: 700 !important; margin-left: 12px !important; text-decoration: none !important; box-shadow: 0 2px 4px rgba(176,32,32,0.3) !important; }
.wp-block-file .wp-block-file__button:hover { background: linear-gradient(to bottom, #ff4444, #c02525) !important; }

/* ============================================================
   VISUAL PAGE UTILITIES (cards, do/dont lists, callouts) v1.6.2
   ============================================================ */

/* Card grid - 3 cards horizontally */
.bz-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0 32px; }
.bz-card { background: #f9fbfd; border: 1px solid #d4dce8; border-radius: 8px; padding: 24px 18px; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.bz-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(43,76,140,0.12); }
.bz-card-icon { width: 56px; height: 56px; margin: 0 auto 14px; color: #2b4c8c; display: block; }
.bz-card-title { font-size: 16px; font-weight: 700; color: #2b4c8c; margin-bottom: 8px; line-height: 1.25; }
.bz-card-text { font-size: 14px; color: #444; line-height: 1.5; margin: 0; }

/* Do / Dont two-column layout */
.bz-do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0 32px; }
.bz-do, .bz-dont { padding: 22px 24px; border-radius: 8px; }
.bz-do { background: #f0f9f4; border-left: 4px solid #2da155; }
.bz-dont { background: #fdf3f3; border-left: 4px solid #d92e2e; }
.bz-do h3, .bz-dont h3 { font-size: 17px; font-weight: 700; margin: 0 0 14px; display: flex; align-items: center; gap: 10px; text-align: left; font-family: 'Open Sans', sans-serif; }
.bz-do h3 { color: #2da155; }
.bz-dont h3 { color: #d92e2e; }
.bz-do h3 svg, .bz-dont h3 svg { width: 22px; height: 22px; flex-shrink: 0; }
.bz-do ul, .bz-dont ul { list-style: none !important; padding: 0; margin: 0; }
.bz-do li, .bz-dont li { padding: 7px 0 7px 30px; position: relative; font-size: 14px; line-height: 1.5; color: #333; margin: 0; }
.bz-do li::before { content: '✓'; position: absolute; left: 0; top: 7px; width: 21px; height: 21px; background: #2da155; color: #fff; border-radius: 50%; text-align: center; font-size: 13px; font-weight: 700; line-height: 21px; box-shadow: 0 1px 2px rgba(45,161,85,0.3); }
.bz-dont li::before { content: '✗'; position: absolute; left: 0; top: 7px; width: 21px; height: 21px; background: #d92e2e; color: #fff; border-radius: 50%; text-align: center; font-size: 13px; font-weight: 700; line-height: 21px; box-shadow: 0 1px 2px rgba(217,46,46,0.3); }

/* Callout box (astuce, info, warning) */
.bz-callout { padding: 22px 26px; border-radius: 10px; margin: 28px 0; display: flex; gap: 18px; align-items: flex-start; }
.bz-callout-tip { background: linear-gradient(135deg, #fff8e1, #fff3c4); border-left: 5px solid #f5a623; }
.bz-callout-info { background: linear-gradient(135deg, #e8f1ff, #d4e4ff); border-left: 5px solid #2b4c8c; }
.bz-callout-icon { width: 40px; height: 40px; flex-shrink: 0; }
.bz-callout-tip .bz-callout-icon { color: #f5a623; }
.bz-callout-info .bz-callout-icon { color: #2b4c8c; }
.bz-callout-content { flex: 1; }
.bz-callout-content h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; font-family: 'Open Sans', sans-serif; text-align: left; }
.bz-callout-tip .bz-callout-content h3 { color: #b8740d; }
.bz-callout-info .bz-callout-content h3 { color: #2b4c8c; }
.bz-callout-content p { font-size: 14px; line-height: 1.6; margin: 0; }
.bz-callout-tip .bz-callout-content p { color: #5a4a1a; }
.bz-callout-info .bz-callout-content p { color: #2b4c8c; }

/* Steps grid - numbered cards for processes (v1.6.8) */
.bz-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 24px 0 32px; }
.bz-step { background: linear-gradient(180deg, #f9fbfd 0%, #fff 100%); border: 1px solid #d4dce8; border-radius: 10px; padding: 28px 16px 20px; text-align: center; position: relative; transition: transform 0.2s, box-shadow 0.2s; }
.bz-step:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(43,76,140,0.12); }
.bz-step-number { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; margin: 0 auto 14px; background: linear-gradient(135deg, #3960a8, #2b4c8c); color: #fff !important; border-radius: 50%; font-size: 22px; font-weight: 800; box-shadow: 0 3px 8px rgba(43,76,140,0.3); border: 3px solid #fff; }
.bz-step-title { font-size: 15px; font-weight: 700; color: #2b4c8c; margin-bottom: 8px; line-height: 1.25; font-family: 'Open Sans', sans-serif; }
.bz-step-text { font-size: 13px; color: #444; line-height: 1.5; margin: 0; }

/* Mobile responsive for utility classes */
@media (max-width: 768px) {
    .bz-card-grid { grid-template-columns: 1fr; gap: 12px; margin: 18px 0 22px; }
    .bz-card { padding: 18px 16px; }
    .bz-do-dont { grid-template-columns: 1fr; gap: 12px; margin: 18px 0 22px; }
    .bz-do, .bz-dont { padding: 18px 18px; }
    .bz-do h3, .bz-dont h3 { font-size: 16px; }
    .bz-callout { flex-direction: column; gap: 12px; padding: 18px; margin: 22px 0; }
    .bz-callout-icon { width: 36px; height: 36px; }
    .bz-steps-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin: 18px 0 22px; }
    .bz-step { padding: 22px 12px 16px; }
    .bz-step-number { width: 42px; height: 42px; font-size: 20px; }
}
@media (max-width: 480px) {
    .bz-steps-grid { grid-template-columns: 1fr; gap: 10px; }
}

/* === MOBILE STICKY CTA BAR (compact v1.6.1) === */
.bz-mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 950; background: #fff; border-top: 2px solid #2b4c8c; padding: 6px 10px calc(6px + env(safe-area-inset-bottom)); box-shadow: 0 -3px 12px rgba(0,0,0,0.15); }
.bz-mobile-cta-bar-inner { display: flex; gap: 8px; }
.bz-mobile-cta-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 8px; border-radius: 6px; text-decoration: none !important; font-size: 13px; font-weight: 700; color: #fff !important; text-shadow: 0 1px 2px rgba(0,0,0,0.3); border: 1px solid; box-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.bz-mobile-cta-bar a.bz-cta-call { background: linear-gradient(to bottom, #ed3535, #b02020); border-color: #8a1818; }
.bz-mobile-cta-bar a.bz-cta-quote { background: linear-gradient(to bottom, #3960a8, #2b4c8c); border-color: #1e3a6e; }
.bz-mobile-cta-bar a svg { width: 15px; height: 15px; flex-shrink: 0; }

/* === FOOTER === */
.bz-footer { max-width: 1100px; margin: 0 auto; padding: 24px 20px; border-top: 1px solid #ddd; }
.bz-footer-top { margin-bottom: 16px; }
.bz-footer-title { font-size: 13px; font-weight: 700; color: #333; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.3px; }
.bz-footer-menu { list-style: none; margin: 0 0 16px; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px 24px; }
.bz-footer-menu li { margin: 0; padding: 0; }
.bz-footer-menu a { display: block; font-size: 12px; color: #2b4c8c; text-decoration: none; padding: 3px 0; }
.bz-footer-menu a:hover { text-decoration: underline; color: #d92e2e; }
.bz-footer-mentions-row { margin-top: 8px; padding-top: 8px; border-top: 1px dashed #e0e0e0; }
.bz-footer-mentions-row a { font-size: 12px; color: #666; text-decoration: none; }
.bz-footer-mentions-row a:hover { color: #d92e2e; text-decoration: underline; }
.bz-footer-mentions-row .bz-sep { color: #ccc; margin: 0 6px; }
.bz-footer-bottom { text-align: center; font-size: 11px; color: #999; padding-top: 12px; border-top: 1px solid #eee; }

/* === SEO BLOCK === */
/* FAQ block on homepage (replaces old bz-seo-block) */
.bz-faq-block { max-width: 1100px; margin: 2em auto; padding: 28px 32px; background: #f8fafc; border-radius: 12px; }
.bz-faq-title { color: #2b4c8c; text-align: center; font-size: 1.6em; margin: 0 0 1.4em; font-family: 'Open Sans', sans-serif; }
.bz-faq-item { margin-bottom: 14px; border-bottom: 1px solid #e2e8f0; padding-bottom: 14px; }
.bz-faq-item:last-of-type { border-bottom: none; }
.bz-faq-item summary { cursor: pointer; font-weight: 700; color: #1a3a6b; font-size: 1.05em; padding: 8px 0; list-style: none; position: relative; padding-right: 28px; transition: color 0.2s; }
.bz-faq-item summary::-webkit-details-marker { display: none; }
.bz-faq-item summary::after { content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.5em; color: #2b4c8c; font-weight: 400; transition: transform 0.3s; }
.bz-faq-item[open] summary::after { content: '−'; }
.bz-faq-item summary:hover { color: #d92e2e; }
.bz-faq-item p { margin: 12px 0 4px; line-height: 1.7; color: #333; font-size: 0.95em; }
.bz-faq-item p a { color: #2b4c8c; font-weight: 700; text-decoration: underline; }
.bz-faq-cta { text-align: center; margin-top: 2em; }
.bz-faq-cta a { display: inline-block; padding: 14px 32px; }
@media (max-width: 768px) {
    .bz-faq-block { padding: 20px 18px; margin: 1.5em 12px; }
    .bz-faq-title { font-size: 1.35em; }
    .bz-faq-item summary { font-size: 1em; padding-right: 24px; }
    .bz-faq-item p { font-size: 0.92em; }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* === TABLET (≤900px) === */
@media (max-width: 900px) {
    .bz-header-center h1 { font-size: 28px; }
    .bz-header-center p { font-size: 13px; }
    .bz-header-left img, .bz-header-right img { width: 75px; }
    .bz-header-right img.bz-agrement-logo { width: 70px; }
    .bz-footer-menu { grid-template-columns: repeat(2, 1fr); }
}

/* === MOBILE (≤768px) === */
@media (max-width: 768px) {
    /* Hide hamburger - sidebar is shown inline on mobile */
    .bz-hamburger { display: none !important; }
    .bz-sidebar-close { display: none !important; }
    .bz-mobile-overlay { display: none !important; }

    /* Compact header */
    .bz-header { padding: 10px 12px 0; }
    .bz-header-inner { gap: 10px; flex-wrap: nowrap; }
    .bz-header-left img, .bz-header-right img { width: 50px; }
    .bz-header-right img.bz-agrement-logo { width: 55px; }
    .bz-header-center h1 { font-size: 18px; line-height: 1.05; }
    .bz-header-center h1 sup { font-size: 9px; }
    .bz-header-center p { display: block; font-size: 10px; margin-top: 2px; line-height: 1.2; }
    .bz-header-flags { padding: 0 10px 4px; gap: 10px; }

    /* Inline sidebar (revert to v1.5.0 style with shorter labels) */
    .bz-main { gap: 10px; padding: 10px 10px 80px 10px; flex-direction: row; align-items: flex-start; }
    .bz-sidebar { position: static; width: 130px; max-width: 130px; flex-shrink: 0; background: transparent; padding: 0; margin: 0; transform: none; transition: none; box-shadow: none; overflow: visible; z-index: auto; }
    .bz-sidebar a { font-size: 11px; padding: 8px 6px; line-height: 1.25; margin-bottom: 4px; background: linear-gradient(to bottom, #3960a8, #2b4c8c); border: 1px solid #1e3a6e; }
    .bz-sidebar a:hover, .bz-sidebar a.bz-active, .bz-sidebar a.current-menu-item { background: linear-gradient(to bottom, #d92e2e, #b02020); border-color: #8a1818; }

    .bz-right { flex: 1; min-width: 0; }
    .bz-topnav { gap: 5px; margin-bottom: 12px; }
    .bz-topnav a { font-size: 11px; padding: 7px 10px; flex: 1 1 auto; text-align: center; }
    .bz-content h2 { font-size: 20px; margin: 20px 0 14px; }
    .bz-content h3 { font-size: 16px; }
    .bz-content p, .bz-content li { font-size: 14px; line-height: 1.65; }

    .bz-gamme-section { flex-direction: column; }
    .bz-gamme-image { flex: none; max-width: 100%; }
    .bz-features-list li { font-size: 15px; }

    /* Mobile sticky CTA bar */
    .bz-mobile-cta-bar { display: block; }
    body.page-contact .bz-mobile-cta-bar { display: none; }
    body.page-contact .bz-main { padding-bottom: 16px; }

    /* Footer responsive */
    .bz-footer-menu { grid-template-columns: 1fr 1fr; gap: 2px 12px; }
    .bz-footer { padding: 16px 12px; }

    /* Tables: horizontal scroll wrapper */
    .bz-content table, .wp-block-table table { font-size: 12px; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
    .bz-content table thead th, .wp-block-table table thead th { font-size: 11px; padding: 9px 10px; }
    .bz-content table tbody td, .wp-block-table table tbody td { font-size: 13px; padding: 9px 10px; }

    /* PDF buttons mobile */
    .bz-content a[href$=".pdf"], .bz-content a[href$=".PDF"] { display: flex; width: 100%; justify-content: flex-start; font-size: 13px; padding: 12px 16px; margin: 6px 0; }
    .wp-block-file { padding: 12px; }
    .wp-block-file a:not(.wp-block-file__button) { font-size: 13px; display: block; margin-bottom: 8px; }
    .wp-block-file .wp-block-file__button { margin-left: 0 !important; display: inline-block; }
}

/* === SMALL PHONE (≤480px) === */
@media (max-width: 480px) {
    .bz-header-center h1 { font-size: 16px; }
    .bz-header-left img, .bz-header-right img { width: 42px; }
    .bz-header-right img.bz-agrement-logo { width: 48px; }
    .bz-sidebar { width: 110px; max-width: 110px; }
    .bz-sidebar a { font-size: 10px; padding: 7px 4px; }
    .bz-topnav a { font-size: 11px; padding: 7px 8px; }
    .bz-mobile-cta-bar a { font-size: 12px; padding: 9px 6px; }
}
