/* ===== VARIABLES ===== */
:root {
    --blue: #1B3A6B;
    --blue-light: #2563EB;
    --blue-dark: #0F2447;
    --blue-accent: #2563EB;
    --blue-bg: #EFF6FF;
    --black: #0A0A0F;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
    --transition: .2s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 16px; line-height: 1.6; color: var(--gray-800); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--black); font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.2rem; }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4.5rem 0; }
.section-light { background: var(--white); }
.section-gray { background: var(--gray-50); }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--blue-dark); position: relative; overflow: hidden; }
.section-dark-overlay { position: absolute; inset: 0; background: rgba(15,36,71,.85); z-index: 1; }
.section-cta { background: var(--blue-accent); color: var(--white); padding: 3.5rem 0; }
.section-cta h2 { color: var(--white); }
.section-cta p { color: rgba(255,255,255,.9); }
.section-cta .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.align-center { align-items: center; }

/* Section labels (like ZH style) */
.section-label { text-align: center; text-transform: uppercase; font-size: .85rem; font-weight: 600; letter-spacing: .1em; color: var(--blue-accent); margin-bottom: .5rem; }
.section-label-light { color: var(--blue-light); }
.section-title { text-align: center; margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .02em; }
.section-title.text-left { text-align: left; }
.section-title-light { color: var(--white); }
.section-subtitle { text-align: center; color: var(--gray-600); font-size: 1.05rem; margin-bottom: 2.5rem; }
.section-subtitle-light { color: var(--gray-400); }
.title-separator { width: 50px; height: 3px; background: var(--blue-accent); margin: 1rem auto 2rem; border-radius: 2px; }
.title-separator-left { margin-left: 0; }
.text-lg { font-size: 1.05rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; }
.content-area { max-width: 800px; margin: 0 auto; }
.content-area p { margin-bottom: 1rem; }

/* ===== TOP BAR ===== */
.top-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 1001; background: var(--blue-dark); color: var(--white); font-size: .82rem; }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.top-bar-left { display: flex; gap: 1.5rem; }
.top-bar-item { display: flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.85); transition: color var(--transition); }
.top-bar-item:hover { color: var(--white); }
.top-bar-cta {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--blue-accent); color: var(--white); padding: .35rem 1rem;
    border-radius: var(--radius); font-weight: 600; font-size: .8rem;
    letter-spacing: .05em; transition: background var(--transition);
}
.top-bar-cta:hover { background: #1D4ED8; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .75rem 1.75rem; font-size: .9rem; font-weight: 600;
    border-radius: var(--radius); border: 2px solid transparent;
    cursor: pointer; transition: all var(--transition); text-decoration: none;
    text-transform: uppercase; letter-spacing: .04em;
}
.btn-primary { background: var(--blue-accent); color: var(--white); border-color: var(--blue-accent); }
.btn-primary:hover { background: #1D4ED8; border-color: #1D4ED8; color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: var(--white); color: var(--blue-dark); border-color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: var(--white); color: var(--blue-accent); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--blue-accent); border-color: var(--blue-accent); }
.btn-outline-dark:hover { background: var(--blue-accent); color: var(--white); }
.btn-lg { padding: .9rem 2rem; font-size: .95rem; }

/* ===== HEADER ===== */
.site-header {
    position: fixed; top: 38px; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200); transition: top var(--transition), box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); top: 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: auto; min-height: 68px; max-width: 1450px; padding: 0 1rem; }
.site-logo { display: flex; align-items: center; }
.site-logo .custom-logo { height: 100px; width: auto; }
.site-title { font-size: 1.4rem; font-weight: 800; color: var(--blue-dark); letter-spacing: -.02em; }
.site-title .highlight { color: var(--blue-accent); }
.site-title:hover { color: var(--blue-dark); }

.main-nav .nav-list { display: flex; gap: .15rem; align-items: center; }
.main-nav .nav-item { position: relative; }
.main-nav .nav-link {
    display: block; padding: .5rem .55rem; font-size: .925rem; font-weight: 600;
    color: var(--gray-800); border-radius: var(--radius); transition: all var(--transition);
    text-transform: uppercase; letter-spacing: .03em;
}
.main-nav .nav-link:hover, .main-nav .nav-item.active > .nav-link { color: var(--blue-accent); background: var(--blue-bg); }
.main-nav .nav-cta { background: var(--blue-accent); color: var(--white) !important; border-radius: var(--radius); margin-left: .5rem; }
.main-nav .nav-cta:hover { background: var(--blue-dark); }

/* Dropdown */
.main-nav .nav-item.menu-item-has-children > .nav-link::after {
    content: ''; display: inline-block; width: 5px; height: 5px;
    border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg); margin-left: .3rem; vertical-align: middle; position: relative; top: -2px;
}
.main-nav .sub-menu {
    position: absolute; top: 100%; left: 0; background: var(--white);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);
    padding: .5rem; min-width: 240px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s ease;
}
.main-nav .nav-item.menu-item-has-children:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .sub-menu .nav-link { padding: .6rem 1rem; border-radius: 6px; text-transform: none; }


/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 20px; position: relative; z-index: 1001; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--black); position: absolute; left: 0; transition: all .3s ease; }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }
.menu-toggle.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 80vh; display: flex; align-items: center;
    background: var(--blue-dark) center/cover no-repeat; margin-top: 106px; overflow: hidden;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,36,71,.92) 0%, rgba(27,58,107,.7) 100%); z-index: 1; }
.hero-grid { position: relative; z-index: 2; display: flex; align-items: center; gap: 3rem; max-width: 1500px; padding: 0 1rem 0 2rem; margin: 0 auto; }
.hero-content { flex: 1; max-width: 580px; }
.hero-calculator { flex: 1; min-width: 500px; }
.hero-calculator .mmc-calculator { margin: 0; }
.hero-calculator .mmc-card { background: rgba(255,255,255,.97); border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.hero-label { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 600; letter-spacing: .05em; margin-bottom: .5rem; }
.hero h1 { color: var(--white); margin-bottom: .75rem; font-weight: 800; }
.hero-separator { width: 50px; height: 3px; background: var(--blue-accent); margin: 1rem 0; border-radius: 2px; }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,.8); margin-bottom: 2rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== INFO BAR ===== */
.info-bar { background: var(--blue); padding: 0; position: relative; z-index: 10; }
.info-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.info-bar-item {
    display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,.1); color: var(--white);
}
.info-bar-item:last-child { border-right: none; }
.info-bar-icon { color: rgba(255,255,255,.7); flex-shrink: 0; }
.info-bar-item strong { display: block; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: .15rem; }
.info-bar-item a, .info-bar-item span { color: var(--white); font-size: .9rem; font-weight: 500; }
.info-bar-item a:hover { color: var(--blue-light); }
.info-bar-item-cta { background: rgba(255,255,255,.08); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: var(--blue-dark) center/cover no-repeat; position: relative;
    padding: 3rem 0 2rem; margin-top: 106px;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(15,36,71,.85); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 0; text-transform: uppercase; letter-spacing: .02em; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-top: .5rem; }
.page-hero .hero-label { display: block; color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .5rem; }
.page-hero .hero-separator { width: 50px; height: 3px; background: var(--blue-accent); margin: 1rem 0; border-radius: 2px; }

/* ===== SERVICE CARDS (with image support) ===== */
.service-card {
    display: block; background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); transition: all var(--transition); text-decoration: none; overflow: hidden;
}
.service-card:hover { border-color: var(--blue-accent); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card-img {
    height: 180px; background: var(--blue-bg) center/cover no-repeat;
    display: flex; align-items: center; justify-content: center; position: relative;
}
.service-card-img-placeholder { color: var(--blue-accent); opacity: .6; }
.service-card-img[style*="url"] .service-card-img-placeholder { display: none; }
.service-card-icon {
    height: 160px; background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.85);
    transition: all .3s ease; margin: .5rem .5rem 0; border-radius: var(--radius) var(--radius) 0 0;
}
.service-card:hover .service-card-icon { color: var(--white); background: linear-gradient(135deg, var(--blue) 0%, var(--blue-accent) 100%); }
.service-card h3 { padding: 1.25rem 1.25rem .5rem; color: var(--black); font-size: 1.1rem; }
.service-card p { padding: 0 1.25rem 1.5rem; color: var(--gray-600); font-size: .9rem; line-height: 1.6; }


/* ===== FEATURE CARDS ===== */
.feature-card { padding: 1.5rem; text-align: center; }
.feature-card .feature-icon {
    width: 64px; height: 64px; border-radius: 50%; background: var(--blue-bg);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem; color: var(--blue-accent);
}
.feature-number { font-size: 2.5rem; font-weight: 800; color: var(--blue-accent); opacity: .3; margin-bottom: .5rem; line-height: 1; }
.feature-card h3 { margin-bottom: .5rem; }
.feature-card p { color: var(--gray-600); font-size: .9rem; }

/* ===== EXPERTISE + COUNTERS ===== */
.section-expertise { background: var(--blue-dark) center/cover no-repeat; }
.expertise-quote { position: relative; padding-left: 2.5rem; margin-top: 1.5rem; }
.expertise-quote svg { position: absolute; left: 0; top: 0; }
.expertise-quote p { color: rgba(255,255,255,.85); font-size: 1rem; line-height: 1.8; }

.counters-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.counter-item { text-align: center; padding: 1.5rem; }
.counter-number { font-size: 3rem; font-weight: 800; color: var(--blue-accent); line-height: 1; }
.counter-suffix { font-size: 1.5rem; font-weight: 700; color: var(--blue-accent); }
.counter-label { display: block; margin-top: .5rem; font-size: .75rem; font-weight: 600; letter-spacing: .08em; color: rgba(255,255,255,.6); text-transform: uppercase; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--blue-accent); padding: 1.5rem 0; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-banner-label { font-size: .75rem; font-weight: 600; letter-spacing: .08em; color: rgba(255,255,255,.7); text-transform: uppercase; margin-bottom: .25rem; }
.cta-banner h3 { color: var(--white); font-size: 1.2rem; font-weight: 700; }

/* ===== CHECK LIST ===== */
.check-list { margin-bottom: 1.5rem; }
.check-list li { padding: .4rem 0 .4rem 1.75rem; position: relative; color: var(--gray-800); }
.check-list li::before {
    content: ''; position: absolute; left: 0; top: .65rem;
    width: 18px; height: 18px; border-radius: 50%; background: var(--blue-bg);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center; background-size: 10px;
}

/* ===== ZONE MAP ===== */
.zone-visual { display: flex; align-items: center; justify-content: center; }
.zone-map { background: var(--blue-bg); border-radius: var(--radius-lg); padding: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.zone-map-item { text-align: center; padding: 1rem; }
.zone-map-item .zone-map-icon { color: var(--blue-accent); margin-bottom: .5rem; }
.zone-map-item h4 { font-size: 1rem; margin-bottom: .25rem; }
.zone-map-item p { font-size: .85rem; color: var(--gray-600); }

/* ===== FLOATING PHONE ===== */
.floating-phone {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--blue-accent); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(37,99,235,.4); transition: all .3s ease;
    animation: pulse-phone 2s infinite;
}
.floating-phone:hover { background: var(--blue-dark); color: var(--white); transform: scale(1.1); animation: none; }
@keyframes pulse-phone {
    0%, 100% { box-shadow: 0 4px 15px rgba(37,99,235,.4); }
    50% { box-shadow: 0 4px 25px rgba(37,99,235,.7); }
}

/* ===== INFO CARDS ===== */
.info-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.info-cards.three-cols { grid-template-columns: repeat(3, 1fr); }
.info-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.75rem; transition: all var(--transition); }
.info-card:hover { border-color: var(--blue-accent); box-shadow: var(--shadow-md); }
.info-card h3 { margin-bottom: .5rem; color: var(--blue-accent); }
.info-card p { color: var(--gray-600); font-size: .9rem; }

/* ===== SERVICE DETAIL PAGES ===== */
.service-detail-content { max-width: 900px; margin: 0 auto; }
.service-intro { text-align: center; margin-bottom: 2.5rem; }
.service-intro h2 { margin-bottom: .75rem; }
.service-intro p { color: var(--gray-600); font-size: 1.05rem; line-height: 1.7; max-width: 700px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

/* ===== EQUIPEMENTS ===== */
.equip-list { display: flex; flex-direction: column; gap: 2.5rem; }
.equip-item { display: grid; grid-template-columns: 250px 1fr; gap: 2rem; align-items: center; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2rem; transition: all var(--transition); }
.equip-item:hover { border-color: var(--blue-accent); box-shadow: var(--shadow-md); }
.equip-img-placeholder { background: var(--blue-bg); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; height: 180px; }
.equip-content h2 { font-size: 1.25rem; margin-bottom: .5rem; }
.equip-content p { color: var(--gray-600); margin-bottom: .75rem; }

/* ===== CONTACT ===== */
.contact-info-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; background: var(--gray-50); border-radius: var(--radius); }
.contact-info-item strong { display: block; margin-bottom: .15rem; color: var(--black); }
.contact-info-item a, .contact-info-item span { color: var(--gray-600); }
.contact-form { margin-top: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: .5rem; font-weight: 500; color: var(--gray-800); font-size: .9rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: .75rem 1rem; border: 1px solid var(--gray-200); border-radius: var(--radius); font-family: inherit; font-size: .95rem; color: var(--gray-800); transition: border-color var(--transition); background: var(--white); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--blue-accent); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.form-success { background: #ECFDF5; border: 1px solid #6EE7B7; border-radius: var(--radius); padding: 1.25rem; text-align: center; color: #065F46; }
.form-error { background: #FEF2F2; border: 1px solid #FCA5A5; border-radius: var(--radius); padding: 1rem; color: #991B1B; margin-bottom: 1rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { padding: 1.25rem 0; border-bottom: 1px solid var(--gray-200); }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { margin-bottom: .4rem; font-size: 1.05rem; }
.faq-item p { color: var(--gray-600); }

/* ===== LEGAL ===== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin-top: 2rem; margin-bottom: .75rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content ul { color: var(--gray-600); line-height: 1.8; margin-bottom: .75rem; }
.legal-content ul { padding-left: 1.5rem; }
.legal-content li { margin-bottom: .3rem; }

/* ===== AVIS ===== */
.avis-platforms { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.avis-platform { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; }
.avis-platform-header { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border-bottom: 1px solid var(--gray-200); }
.avis-platform-header h3 { margin: 0; font-size: 1.2rem; }
.avis-placeholder { padding: 1.5rem; text-align: center; }
.avis-placeholder p { color: var(--gray-400); margin-bottom: 1rem; }

/* ===== PROCESS STEPS ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; counter-reset: step; }
.process-step { text-align: center; padding: 1.25rem; }
.process-step::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: block; font-size: 2.5rem; font-weight: 800; color: var(--blue-accent); opacity: .3; margin-bottom: .5rem; line-height: 1; }
.process-step h3 { margin-bottom: .4rem; }
.process-step p { color: var(--gray-600); font-size: .9rem; }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item .stat-number { font-size: 2.5rem; font-weight: 800; color: var(--blue-accent); line-height: 1; }
.stat-item .stat-label { color: var(--gray-600); font-size: .9rem; margin-top: .5rem; }

/* ===== FOOTER ===== */
.site-footer { background: var(--blue-dark); color: rgba(255,255,255,.7); padding: 3.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo { display: inline-block; margin-bottom: 1rem; }
.footer-logo .site-title { color: var(--white); font-size: 1.3rem; }
.footer-logo .highlight { color: var(--blue-accent); }
.footer-desc { font-size: .9rem; line-height: 1.6; }
.site-footer h4 { color: var(--white); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.site-footer ul li { margin-bottom: .5rem; }
.site-footer ul a { color: rgba(255,255,255,.65); font-size: .9rem; }
.site-footer ul a:hover { color: var(--white); }
.footer-contact li { display: flex; align-items: center; gap: .5rem; }
.footer-contact svg { flex-shrink: 0; color: var(--blue-accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; font-size: .85rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.5); }
.footer-legal a:hover { color: var(--white); }

/* Custom Logo */
.site-logo .custom-logo { height: 100px; width: auto; display: block; }
.site-header.scrolled .site-logo .custom-logo { height: 80px; }
.footer-custom-logo { height: 40px; width: auto; display: block; margin-bottom: .5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .info-bar-grid { grid-template-columns: repeat(2, 1fr); }
    .info-bar-item { border-bottom: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 768px) {
    .hero-grid { flex-direction: column; gap: 2rem; }
    .hero-content { padding: 0 21px; }
    .hero-calculator { flex: none; width: 100%; min-width: 0; padding: 0 5px 15px; box-sizing: border-box; }
    .hero-grid { padding: 0 5px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .top-bar { display: none; }
    .site-header { position: relative; top: 0; }
    .hero { margin-top: 0; padding-top: 1rem; }
    .page-hero { margin-top: 0; padding-top: 3rem; }
    .admin-bar .site-header { position: relative; top: 0; }
    .admin-bar .hero { margin-top: 0; }
    .admin-bar .page-hero { margin-top: 0; }
    .menu-toggle { display: block; }
    .main-nav {
        position: fixed; top: 0; right: 0; width: 300px; height: 100vh; transform: translateX(100%);
        background: var(--white); padding: 5rem 1.5rem 2rem;
        transition: transform .3s ease; box-shadow: var(--shadow-lg); overflow-y: auto; z-index: 1000;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav .nav-list { flex-direction: column; gap: 0; }
    .main-nav .nav-link { padding: .75rem 0; font-size: 1rem; }
    .main-nav .nav-cta { margin-left: 0; margin-top: 1rem; text-align: center; justify-content: center; }
    .main-nav .sub-menu { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; padding: 0 0 0 1rem; }
    .hero { min-height: 65vh; }
    .hero h1 { font-size: 1.8rem; }
    .section { padding: 3rem 0; }
    .section-cta { padding: 2.5rem 0; }
    .info-bar-grid { grid-template-columns: 1fr; }
    .info-bar-item { border-right: none; }
    .cta-banner-inner { flex-direction: column; text-align: center; }
    .counters-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .features-grid { grid-template-columns: 1fr; }
    .info-cards, .info-cards.three-cols { grid-template-columns: 1fr; }
    .equip-item { grid-template-columns: 1fr; }
    .equip-img-placeholder { height: 140px; }
    .avis-platforms { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .process-grid { grid-template-columns: 1fr; }
    .counters-grid { grid-template-columns: 1fr; }
}

/* ===== FRANCE MAP ===== */
.zone-france-map { background: var(--blue-bg); border-radius: var(--radius-lg); padding: 2rem; text-align: center; }
.france-svg { width: 100%; max-width: 400px; margin: 0 auto; display: block; }
.france-svg-img { width: 100%; max-width: 420px; margin: 0 auto; display: block; }
.france-outline { fill: rgba(30,64,120,.08); stroke: var(--blue); stroke-width: 1.5; }
.france-region { fill: rgba(30,64,120,.12); stroke: rgba(30,64,120,.25); stroke-width: 1; transition: fill .3s; }
.france-region:hover { fill: rgba(30,64,120,.22); }
.france-idf { fill: var(--blue-accent); stroke: #fff; stroke-width: 2; filter: drop-shadow(0 0 8px rgba(0,163,255,.4)); }
.idf-pulse { fill: none; stroke: var(--blue-accent); stroke-width: 2; opacity: 0; animation: pulse-ring 2s ease-out infinite; }
.idf-pulse-2 { animation-delay: 1s; }
@keyframes pulse-ring { 0% { r: 12; opacity: .6; } 100% { r: 35; opacity: 0; } }
.map-pin-label { fill: var(--blue-dark); font-size: 13px; font-weight: 700; }
.zone-legend { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: center; margin-top: 1.5rem; }
.zone-legend-item { display: flex; align-items: center; gap: .4rem; font-size: .85rem; color: var(--gray-700); }
.zone-legend-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.zone-legend-idf { background: var(--blue-accent); box-shadow: 0 0 6px rgba(0,163,255,.5); }
.zone-legend-france { background: rgba(30,64,120,.2); border: 1.5px solid rgba(30,64,120,.4); }
.zone-legend-europe { background: rgba(30,64,120,.08); border: 1.5px solid rgba(30,64,120,.2); }
.zone-legend-dispo { font-weight: 600; color: var(--blue); }
.zone-legend-dispo svg { stroke: var(--blue-accent); }

/* Admin bar fix */
.admin-bar .top-bar { top: 32px; }
.admin-bar .site-header { top: 70px; }
.admin-bar .hero { margin-top: 138px; }
.admin-bar .page-hero { margin-top: 138px; }
.admin-bar .site-header.scrolled { top: 32px; }

/* ===== FIX MOBILE LOGO ===== */
@media (max-width: 768px) {
    .site-logo .custom-logo { height: 55px; }
    .site-header.scrolled .site-logo .custom-logo { height: 45px; }
}

/* ===== FIX MOBILE HORIZONTAL SCROLL ===== */
@media (max-width: 768px) {
    html, body {
        overflow-x: clip;
        max-width: 100vw;
    }
    body {
        position: relative;
        width: 100%;
    }
    .site-main,
    .site-footer,
    .site-header,
    .info-bar,
    .cta-banner {
        overflow-x: hidden;
        max-width: 100vw;
    }
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
    .hero-grid {
        max-width: 100%;
    }
    .cta-banner-inner {
        max-width: 100%;
    }
    .info-bar-grid {
        max-width: 100%;
    }
    .footer-grid {
        max-width: 100%;
    }
}
CSSEOF # Append mobile horizontal scroll fix to main.css

/* ===== FIX MOBILE HORIZONTAL SCROLL ===== */
@media (max-width: 768px) {
    html, body {
        overflow-x: clip;
        max-width: 100vw;
    }
    body {
        position: relative;
        width: 100%;
    }
    .site-main,
    .site-footer,
    .site-header,
    .info-bar,
    .cta-banner {
        overflow-x: hidden;
        max-width: 100vw;
    }
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
    .hero-grid {
        max-width: 100%;
    }
    .cta-banner-inner {
        max-width: 100%;
    }
    .info-bar-grid {
        max-width: 100%;
    }
    .footer-grid {
        max-width: 100%;
    }
}
