/* =============================================
   SITE WEB SUR MESURE — DESIGN SYSTEM
   ============================================= */

/* --- Variables --- */
:root {
    --green: #0b6b5b;
    --green-dark: #10201d;
    --green-light: #18a58c;
    --yellow: #ffce3a;
    --yellow-dark: #f4a51c;
    --coral: #ff6b4a;
    --cyan: #45d8c4;
    --ink: #111827;
    --paper: #fbfcf8;
    --white: #ffffff;
    --gray-50: #f7f8f5;
    --gray-100: #ecefeb;
    --gray-200: #dfe5df;
    --gray-400: #96a099;
    --gray-500: #66716b;
    --gray-600: #47524c;
    --gray-800: #17211d;
    --black: #0b1210;

    --font-head: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 8px;
    --radius-xl: 10px;

    --shadow-sm: 0 1px 2px rgba(17,24,39,.06);
    --shadow-md: 0 10px 28px rgba(17,24,39,.09);
    --shadow-lg: 0 18px 48px rgba(17,24,39,.12);
    --shadow-xl: 0 28px 76px rgba(17,24,39,.16);

    --transition: 0.25s ease;
    --container: 1240px;
    --header-h: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-light); }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; color: var(--gray-800); }

/* --- Container --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* =============================================
   TOPBAR
   ============================================= */
.topbar {
    background: var(--green-dark);
    color: rgba(255,255,255,.85);
    font-size: .8rem;
    padding: 7px 0;
}
.topbar-inner {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}
.topbar-promo { margin-left: auto; font-weight: 600; color: var(--yellow); }

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 2px solid var(--gray-100);
    transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }
.header-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: var(--header-h);
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { font-size: 1.6rem; }
.logo-text {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--green);
    letter-spacing: 0;
}
.logo-accent { color: var(--yellow-dark); }

/* Main Nav */
.main-nav { flex: 1; }
.nav-list { display: flex; gap: 4px; align-items: center; }
.nav-item { position: relative; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--gray-800);
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    cursor: pointer;
}
.nav-link:hover, .has-dropdown.open > .nav-link {
    background: var(--gray-100);
    color: var(--green);
}
.nav-link-highlight {
    background: var(--yellow);
    color: var(--green) !important;
    font-weight: 700;
}
.nav-link-highlight:hover { background: var(--yellow-dark); color: var(--green) !important; }

/* Mega Dropdown */
.mega-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    padding: 24px;
    gap: 24px;
    min-width: 720px;
    z-index: 999;
}
.mega-dropdown-regions { min-width: 640px; }
.has-dropdown.open .mega-dropdown { display: flex; }
.mega-col { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mega-title {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--gray-400);
    margin-bottom: 8px;
}
.mega-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    font-size: .87rem;
    color: var(--gray-600);
    transition: background var(--transition), color var(--transition);
}
.mega-link:hover { background: var(--gray-50); color: var(--green); }
.mega-cta-box {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: var(--radius-md);
    padding: 20px;
    color: white;
}
.mega-cta-title { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; display: block; margin-bottom: 8px; }
.mega-cta-box p { font-size: .85rem; opacity: .9; margin-bottom: 14px; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.btn-header { display: none; }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
    min-height: 44px;
}
.btn-primary { background: var(--green); color: white; border-color: var(--green); }
.btn-primary:hover { background: var(--green-light); border-color: var(--green-light); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-yellow { background: var(--yellow); color: var(--green); border-color: var(--yellow); }
.btn-yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); color: var(--green); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,196,48,.4); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: white; }
.btn-outline-white { background: transparent; color: white; border-color: white; }
.btn-outline-white:hover { background: white; color: var(--green); }
.btn-sm { padding: 8px 16px; font-size: .82rem; }
.btn-lg, .btn-large { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: clamp(560px, 72svh, 760px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--green-dark);
    padding: 82px 0 68px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15,45,26,.96) 0%, rgba(15,45,26,.82) 46%, rgba(15,45,26,.5) 100%),
        linear-gradient(180deg, rgba(15,45,26,.15) 0%, rgba(15,45,26,.88) 100%);
    z-index: 1;
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    filter: saturate(.95) contrast(1.04);
}
.hero-layout {
    position: relative;
    z-index: 2;
    display: block;
}
.hero-content {
    position: relative;
    max-width: 720px;
    color: white;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244,196,48,.15);
    border: 1px solid rgba(244,196,48,.3);
    color: var(--yellow);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(3rem, 8vw, 6.2rem);
    font-weight: 900;
    color: white;
    margin-bottom: 18px;
    line-height: .95;
    max-width: 760px;
}
.hero-desc {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    opacity: .92;
    margin-bottom: 30px;
    max-width: 650px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(105px, 1fr));
    gap: 1px;
    width: min(720px, 100%);
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
}
.hero-stat {
    min-height: 86px;
    padding: 16px 14px;
    background: rgba(15,45,26,.56);
}
.hero-stat-num {
    font-family: var(--font-head);
    font-size: clamp(1.15rem, 2vw, 1.7rem);
    line-height: 1;
    font-weight: 900;
    color: var(--yellow);
    display: block;
    margin-bottom: 8px;
}
.hero-stat-label { font-size: .74rem; opacity: .78; text-transform: uppercase; letter-spacing: 0; }

/* =============================================
   SEGMENTS SECTION
   ============================================= */
.segments { padding: 80px 0; background: var(--gray-50); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
    display: inline-block;
    background: rgba(26,71,42,.1);
    color: var(--green);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--gray-800); }
.section-title span { color: var(--green); }
.section-desc { color: var(--gray-600); margin-top: 12px; font-size: 1.05rem; }
.section-sub { color: var(--gray-600); margin-top: 12px; font-size: 1rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-intro { color: var(--gray-600); margin-bottom: 32px; font-size: 1rem; max-width: 700px; }

.segments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.segment-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray-100);
    transition: all var(--transition);
    text-decoration: none;
    display: block;
}
.segment-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}
.segment-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}
.segment-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--gray-800); margin-bottom: 10px; }
.segment-card p { font-size: .87rem; color: var(--gray-600); line-height: 1.5; margin-bottom: 16px; }
.segment-card .tag { display: inline-block; background: var(--gray-100); color: var(--green); font-size: .75rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works { padding: 80px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--yellow));
    z-index: 0;
}
.step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-num {
    width: 64px; height: 64px;
    background: var(--white);
    border: 3px solid var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--green);
    position: relative;
}
.step-num.active { background: var(--green); color: white; box-shadow: 0 0 0 6px rgba(26,71,42,.12); }
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: .85rem; color: var(--gray-600); }

/* =============================================
   FEATURES
   ============================================= */
.features { padding: 80px 0; background: var(--gray-50); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); }
.feature-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(26,71,42,.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}
.feature-body h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.feature-body p { font-size: .85rem; color: var(--gray-600); }

/* =============================================
   REGIONS PREVIEW
   ============================================= */
.regions-preview { padding: 80px 0; }
.regions-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 40px; }
.region-chip {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 8px;
    text-align: center;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray-600);
    transition: all var(--transition);
    text-decoration: none;
}
.region-chip:hover {
    background: var(--green);
    color: white;
    border-color: var(--green);
    transform: scale(1.05);
}

/* =============================================
   PARLONS FOOT
   ============================================= */
.web-news {
    padding: 80px 0;
    background: white;
}
.web-news-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
    margin-bottom: 36px;
}
.web-news-head > div:first-child {
    max-width: 760px;
}
.web-news-update {
    min-width: 210px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    text-align: left;
}
.web-news-update span {
    display: block;
    color: var(--gray-500);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.web-news-update strong {
    color: var(--green-dark);
    font-family: var(--font-head);
    font-size: 1.08rem;
    font-weight: 900;
}
.web-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.web-news-card {
    min-height: 280px;
    padding: 24px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--gray-50);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.web-news-card:hover {
    border-color: rgba(26,71,42,.34);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.web-news-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.web-news-tag {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(26,71,42,.1);
    color: var(--green);
    font-size: .72rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}
.web-news-meta {
    color: var(--gray-500);
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: right;
}
.web-news-card h3 {
    color: var(--gray-800);
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.32;
}
.web-news-card p {
    color: var(--gray-600);
    font-size: .92rem;
    line-height: 1.65;
}
.web-news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--green);
    font-size: .9rem;
    font-weight: 900;
    text-decoration: none;
}
.web-news-link i {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}
.web-news-link:hover i {
    transform: translateX(3px);
}
.web-news-cta {
    margin-top: 22px;
    padding: 24px;
    border-radius: var(--radius-md);
    background: var(--green-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.web-news-cta p {
    max-width: 760px;
    color: rgba(255,255,255,.86);
    font-size: .98rem;
    line-height: 1.55;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { padding: 80px 0; background: linear-gradient(135deg, var(--green-dark), var(--green)); color: white; }
.testimonials .section-title { color: white; }
.testimonials .section-eyebrow { background: rgba(255,255,255,.15); color: var(--yellow); }
.testimonials .section-desc { color: rgba(255,255,255,.75); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testi-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(10px);
}
.testi-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 0; }
.testi-text { font-size: .92rem; opacity: .9; line-height: 1.6; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(244,196,48,.2);
    border: 2px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.testi-name { font-weight: 700; font-size: .9rem; }
.testi-role { font-size: .78rem; opacity: .7; }

/* =============================================
   BLOG PREVIEW
   ============================================= */
.blog-preview { padding: 80px 0; background: var(--gray-50); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-thumb {
    height: 180px;
    position: relative;
    overflow: hidden;
}
.blog-card-img,
.blog-article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-card-thumb-inner {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
    display: inline-block;
    background: rgba(26,71,42,.1);
    color: var(--green);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0;
}
.blog-card h3 { font-size: 1rem; font-weight: 700; color: var(--gray-800); margin-bottom: 10px; line-height: 1.35; }
.blog-card p { font-size: .85rem; color: var(--gray-600); flex: 1; margin-bottom: 16px; }
.blog-card-meta { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--gray-400); }
.blog-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green);
    font-weight: 700;
    font-size: .85rem;
    margin-top: 12px;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    background: var(--yellow);
    padding: 60px 0;
}
.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-banner h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--green-dark);
    margin-bottom: 8px;
}
.cta-banner p { color: var(--green); font-weight: 600; font-size: .95rem; }
.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-banner .btn-yellow {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: white;
}
.cta-banner .btn-yellow:hover {
    background: var(--green);
    border-color: var(--green);
    color: white;
}
.cta-banner .btn-outline-white {
    background: white;
    border-color: var(--green-dark);
    color: var(--green-dark);
}
.cta-banner .btn-outline-white:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: white;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer-main { background: var(--gray-800); color: rgba(255,255,255,.8); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-footer { margin-bottom: 16px; }
.footer-tagline { font-size: .87rem; opacity: .7; margin-bottom: 20px; line-height: 1.5; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.badge {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 600;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    transition: all var(--transition);
}
.social-link span { font-size: .7rem; font-weight: 900; letter-spacing: 0; }
.social-link:hover { background: var(--yellow); color: var(--green); }
.footer-col-title { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0; color: rgba(255,255,255,.4); margin-bottom: 16px; font-family: var(--font-head); }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .87rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--yellow); }

/* SEO link cloud */
.footer-priority-seo { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0 10px; }
.footer-regions-seo { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; }
.footer-seo-title { font-size: .75rem; text-transform: uppercase; letter-spacing: 0; color: rgba(255,255,255,.35); margin-bottom: 12px; font-weight: 700; }
.footer-seo-links { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-seo-links a { font-size: .75rem; color: rgba(255,255,255,.4); padding: 3px 8px; border-radius: 4px; border: 1px solid rgba(255,255,255,.08); transition: all var(--transition); }
.footer-seo-links a:hover { color: var(--yellow); border-color: var(--yellow); }
.footer-seo-links-priority a { color: rgba(255,255,255,.62); border-color: rgba(244,196,48,.18); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 8px; }
.footer-bottom strong { color: rgba(255,255,255,.6); }
.footer-bottom a { color: rgba(255,255,255,.6); font-weight: 700; }
.footer-bottom a:hover { color: var(--yellow); }

/* =============================================
   PAGE: SEGMENTS (clients, projets, entreprises, fans)
   ============================================= */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}
.page-hero::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; opacity: .7; margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { opacity: .4; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: white; margin-bottom: 16px; }
.hero-highlight { color: var(--yellow); }
.hero-sub { font-size: 1.05rem; opacity: .85; max-width: 600px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Content sections */
.content-section { padding: 72px 0; }
.content-section.alt { background: var(--gray-50); }
.text-green { color: var(--green); }
.pillar-section {
    background: white;
    border-bottom: 1px solid var(--gray-100);
}
.pillar-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: 36px;
    align-items: start;
}
.pillar-main h2 {
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    font-weight: 900;
    margin: 12px 0 18px;
}
.pillar-main h2 span,
.pillar-main strong { color: var(--green); }
.pillar-main p {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 1rem;
}
.pillar-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}
.pillar-aside {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}
.pillar-aside h3 {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 16px;
}
.pillar-aside ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pillar-aside a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--green);
    font-size: .9rem;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-200);
}
.pillar-aside li:last-child a { border-bottom: none; padding-bottom: 0; }
.pillar-aside a::after {
    content: '→';
    color: var(--yellow-dark);
}

/* Longform SEO sections */
.seo-longform-section {
    padding: 86px 0;
    background:
        linear-gradient(90deg, rgba(11,107,91,.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(11,107,91,.03) 1px, transparent 1px),
        var(--white);
    background-size: 64px 64px, 64px 64px, 100% 100%;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}
.seo-longform-section.alt {
    background:
        linear-gradient(90deg, rgba(11,107,91,.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(11,107,91,.035) 1px, transparent 1px),
        var(--gray-50);
}
.seo-longform-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: clamp(34px, 5vw, 64px);
    align-items: start;
}
.seo-longform-layout-wide { grid-template-columns: minmax(0, 980px); justify-content: center; }
.seo-longform-main {
    max-width: 880px;
}
.seo-longform-main h2 {
    font-size: clamp(1.85rem, 3.6vw, 3.15rem);
    line-height: 1.05;
    font-weight: 900;
    margin: 12px 0 24px;
    color: var(--gray-800);
    text-wrap: balance;
}
.seo-longform-main > p,
.seo-copy-block p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.82;
    margin-bottom: 18px;
}
.seo-copy-block {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-200);
}
.seo-copy-block h3 {
    position: relative;
    font-size: clamp(1.22rem, 2.2vw, 1.65rem);
    font-weight: 900;
    margin-bottom: 14px;
    color: var(--green-dark);
}
.seo-copy-block h3::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 6px rgba(255,206,58,.18);
    vertical-align: .12em;
}
.seo-conversion-box {
    position: relative;
    overflow: hidden;
    margin-top: 36px;
    padding: clamp(26px, 4vw, 38px);
    border-radius: 8px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(255,206,58,.18), transparent 38%),
        linear-gradient(135deg, var(--green-dark), var(--green));
    box-shadow: 0 22px 70px rgba(11,107,91,.22);
}
.seo-conversion-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .45;
    pointer-events: none;
}
.seo-conversion-box > * {
    position: relative;
    z-index: 1;
}
.seo-conversion-box .section-eyebrow {
    color: var(--yellow);
}
.seo-conversion-box h3 {
    color: var(--white);
    font-size: clamp(1.45rem, 2.8vw, 2.25rem);
    line-height: 1.08;
    margin: 8px 0 12px;
}
.seo-conversion-box p {
    color: rgba(255,255,255,.84);
    max-width: 720px;
    line-height: 1.72;
    margin-bottom: 22px;
}
.seo-conversion-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.seo-conversion-actions .btn-outline-white {
    border-color: rgba(255,255,255,.7);
}
.seo-longform-aside {
    position: sticky;
    top: calc(var(--header-h) + 22px);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.seo-side-panel {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(69,216,196,.1), transparent 44%),
        rgba(255,255,255,.96);
    box-shadow: var(--shadow-sm);
}
.seo-side-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-top: 3px solid var(--green);
    pointer-events: none;
}
.seo-side-panel h3 {
    position: relative;
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 14px;
    color: var(--gray-800);
}
.seo-side-panel-dark {
    color: white;
    border-color: rgba(255,255,255,.1);
    background:
        linear-gradient(135deg, rgba(69,216,196,.18), transparent 46%),
        linear-gradient(160deg, var(--green-dark), var(--green));
    box-shadow: var(--shadow-md);
}
.seo-side-panel-dark::before { border-top-color: var(--yellow); }
.seo-side-panel-dark h3 { color: white; }
.seo-highlight-list {
    display: grid;
    gap: 12px;
}
.seo-highlight-item {
    padding: 14px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: rgba(255,255,255,.84);
}
.seo-highlight-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--green);
    font-size: .88rem;
    font-weight: 900;
}
.seo-highlight-item span {
    display: block;
    color: var(--gray-600);
    font-size: .84rem;
    line-height: 1.55;
}
.seo-checklist {
    display: grid;
    gap: 11px;
}
.seo-checklist li {
    position: relative;
    padding-left: 25px;
    color: rgba(255,255,255,.84);
    font-size: .88rem;
    line-height: 1.55;
}
.seo-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .45em;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: inset 0 0 0 4px rgba(16,32,29,.38);
}
.seo-context-links {
    display: grid;
    gap: 10px;
}
.seo-context-links a {
    display: block;
    padding: 13px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: var(--gray-50);
    transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.seo-context-links a:hover {
    border-color: var(--green);
    background: rgba(11,107,91,.055);
    transform: translateY(-1px);
}
.seo-context-links strong {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--green);
    font-size: .9rem;
    font-weight: 900;
}
.seo-context-links strong::after {
    content: '→';
    color: var(--yellow-dark);
}
.seo-context-links span {
    display: block;
    margin-top: 5px;
    color: var(--gray-600);
    font-size: .8rem;
    line-height: 1.48;
}
.pillar-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
}
.pillar-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 170px;
    padding: 22px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    color: var(--gray-800);
    background: white;
    transition: all var(--transition);
}
.pillar-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.pillar-card span { font-size: 1.6rem; }
.pillar-card strong { font-size: .98rem; font-weight: 900; color: var(--gray-800); }
.pillar-card p { font-size: .85rem; color: var(--gray-600); line-height: 1.55; }
.internal-link-panel {
    background: white;
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--yellow);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}
.internal-link-panel h2 {
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 900;
    margin-bottom: 10px;
}
.internal-link-panel p {
    color: var(--gray-600);
    max-width: 860px;
    margin-bottom: 20px;
}
.internal-link-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.internal-link-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    color: var(--green);
    font-size: .9rem;
    font-weight: 700;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.internal-link-grid a::after {
    content: '→';
    color: var(--yellow-dark);
}
.internal-link-grid a:hover {
    background: rgba(26,71,42,.06);
    border-color: var(--green);
}
.city-choice-grid {
    grid-template-columns: repeat(3, 1fr);
}
.article-internal-links {
    margin: 32px 0;
}
.article-internal-links h2 {
    font-size: 1.25rem;
}

/* Split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-visual { order: -1; }
.split-visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
}
.stock-photo-card {
    margin: 0;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    box-shadow: var(--shadow-md);
}
.stock-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.stock-photo-card--team img { object-position: center; }
.stock-photo-card--player img { object-position: center 38%; }
.seo-photo-wide {
    margin: 32px auto 0;
    max-width: 760px;
    aspect-ratio: 16/9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    box-shadow: var(--shadow-md);
}
.seo-photo-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.seo-photo-wide + .features-grid { margin-top: 32px; }

/* Home configurator teaser */
.config-teaser {
    padding: 78px 0;
    background: var(--green-dark);
    color: white;
}
.config-teaser-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
    gap: 54px;
    align-items: center;
}
.config-teaser-copy h2 {
    color: white;
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 900;
    margin: 14px 0 16px;
}
.config-teaser-copy h2 span { color: var(--yellow); }
.config-teaser-copy p {
    max-width: 660px;
    color: rgba(255,255,255,.82);
    font-size: 1.04rem;
    margin-bottom: 26px;
}
.config-teaser-list {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}
.config-teaser-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.88);
    font-size: .95rem;
}
.config-teaser-list span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 900;
    font-size: .72rem;
}
.config-teaser-photo {
    margin: 0;
    aspect-ratio: 1 / .94;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.06);
    box-shadow: var(--shadow-lg);
}
.config-teaser-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
}

/* Pricing table */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.pricing-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all var(--transition);
}
.pricing-card.featured { border-color: var(--green); transform: scale(1.04); box-shadow: var(--shadow-lg); }
.pricing-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.pricing-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0; color: var(--gray-400); margin-bottom: 8px; }
.pricing-name { font-size: 1.3rem; font-weight: 900; color: var(--gray-800); margin-bottom: 16px; font-family: var(--font-head); }
.pricing-price { font-size: 2.5rem; font-weight: 900; color: var(--green); font-family: var(--font-head); }
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-price sub { font-size: .9rem; color: var(--gray-400); font-weight: 400; }
.pricing-qty { font-size: .82rem; color: var(--gray-400); margin-bottom: 24px; }
.pricing-features { text-align: left; margin-bottom: 28px; }
.pricing-features li { padding: 6px 0; font-size: .87rem; color: var(--gray-600); display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--gray-100); }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.featured-badge {
    background: var(--yellow);
    color: var(--green);
    font-size: .72rem;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--gray-800);
    gap: 16px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0;
}
.faq-question:hover { color: var(--green); }
.faq-question i { flex-shrink: 0; transition: transform .3s; color: var(--green); }
.faq-answer { display: none; padding-top: 14px; color: var(--gray-600); font-size: .92rem; line-height: 1.7; }
.faq-answer p { color: var(--gray-600); font-size: .92rem; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question i { transform: rotate(180deg); }

/* =============================================
   CONFIGURATEUR
   ============================================= */
.configurator-hero { background: linear-gradient(135deg, var(--green-dark), var(--green-light)); color: white; padding: 60px 0; text-align: center; }
.configurator-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 12px; }
.configurator-hero p { font-size: 1.05rem; opacity: .85; }
.configurator-wrap { display: grid; grid-template-columns: 380px 1fr; gap: 40px; padding: 60px 0; align-items: start; }
.config-panel {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-h) + 20px);
}
.config-panel-header { background: var(--green); color: white; padding: 20px 24px; }
.config-panel-header h3 { font-size: 1.1rem; font-weight: 700; margin: 0; }
.config-steps { padding: 24px; }
.config-step-section { margin-bottom: 28px; }
.config-label { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0; color: var(--gray-400); margin-bottom: 12px; display: block; }
.color-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.color-swatch {
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all .2s;
}
.color-swatch.active, .color-swatch:hover { border-color: var(--gray-800); transform: scale(1.15); }
.size-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.size-chip {
    padding: 6px 14px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}
.size-chip.active, .size-chip:hover { border-color: var(--green); background: var(--green); color: white; }
.config-input {
    width: 100%;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: .9rem;
    transition: border-color .2s;
}
.config-input:focus { outline: none; border-color: var(--green); }
.config-qty { display: flex; align-items: center; gap: 12px; }
.qty-btn {
    width: 36px; height: 36px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}
.qty-btn:hover { border-color: var(--green); color: var(--green); }
.qty-val { font-weight: 700; font-size: 1.1rem; min-width: 40px; text-align: center; }

/* Jersey preview */
.jersey-preview-wrap { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.jersey-svg-wrap { position: relative; }
.jersey-svg { max-width: 320px; width: 100%; filter: drop-shadow(0 20px 40px rgba(0,0,0,.2)); transition: all .3s; }
.jersey-controls { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.price-summary {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 500px;
    text-align: center;
}
.price-summary-title { font-size: .9rem; color: var(--gray-400); margin-bottom: 8px; }
.price-big { font-size: 3rem; font-weight: 900; color: var(--green); font-family: var(--font-head); }
.price-unit { font-size: .85rem; color: var(--gray-400); margin-bottom: 16px; }
.price-breakdown { text-align: left; font-size: .85rem; color: var(--gray-600); }
.price-breakdown li { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--gray-100); }
.price-breakdown li:last-child { border: none; }
.price-breakdown span.price-line-val { font-weight: 600; color: var(--gray-800); }

/* =============================================
   BLOG
   ============================================= */
.blog-listing { padding: 60px 0; }
.blog-listing-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.blog-main-list { display: flex; flex-direction: column; gap: 32px; }
.blog-article-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
    transition: box-shadow var(--transition);
    text-decoration: none;
}
.blog-article-card:hover { box-shadow: var(--shadow-md); }
.blog-article-thumb {
    height: 100%;
    min-height: 160px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}
.blog-thumb-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow-sm);
    font-size: 1.45rem;
}
.blog-article-body { padding: 24px; }
.blog-article-body h2 { font-size: 1.1rem; font-weight: 700; color: var(--gray-800); margin-bottom: 10px; line-height: 1.35; }
.blog-article-body p { font-size: .87rem; color: var(--gray-600); margin-bottom: 12px; }
.blog-article-meta { display: flex; align-items: center; gap: 16px; font-size: .78rem; color: var(--gray-400); }

/* Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget { background: white; border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); }
.sidebar-widget-title { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0; color: var(--gray-400); margin-bottom: 16px; }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-tag { padding: 5px 12px; border: 1px solid var(--gray-200); border-radius: 100px; font-size: .78rem; color: var(--gray-600); transition: all .2s; text-decoration: none; }
.sidebar-tag:hover { background: var(--green); color: white; border-color: var(--green); }

/* Article single */
.article-cover-section { padding: 32px 0 0; background: white; }
.article-cover {
    max-width: 980px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}
.article-cover img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}
.article-content { max-width: 760px; margin: 0 auto; padding: 60px 20px; }
.article-content h2 { margin: 36px 0 16px; font-size: 1.5rem; color: var(--green-dark); }
.article-content h3 { margin: 28px 0 12px; font-size: 1.15rem; color: var(--gray-800); }
.article-content p { margin-bottom: 16px; color: var(--gray-600); font-size: 1rem; line-height: 1.75; }
.article-content ul { margin: 16px 0 16px 20px; list-style: disc; color: var(--gray-600); }
.article-content ol { margin: 16px 0 16px 20px; list-style: decimal; color: var(--gray-600); }
.article-content ul li, .article-content ol li { margin-bottom: 8px; font-size: .95rem; }
.article-content strong { color: var(--gray-800); }
.article-content blockquote { border-left: 4px solid var(--green); padding: 16px 24px; margin: 24px 0; background: var(--gray-50); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--gray-600); }
.article-content .article-cta { background: linear-gradient(135deg, var(--green), var(--green-light)); color: white; border-radius: var(--radius-lg); padding: 32px; margin: 40px 0; text-align: center; }
.article-content .article-cta h3 { color: white; margin: 0 0 12px; }
.article-content .article-cta p { color: rgba(255,255,255,.85); margin-bottom: 20px; }

/* =============================================
   REGION / DIRECTORY PAGES
   ============================================= */
.region-page .page-hero { min-height: auto; padding: 60px 0; }
.departments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.department-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: all var(--transition);
    text-decoration: none;
    display: block;
}
.department-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.department-num { font-size: .75rem; color: var(--gray-400); margin-bottom: 4px; }
.department-name { font-weight: 700; color: var(--gray-800); font-size: .95rem; }
.department-stats { display: flex; gap: 8px; justify-content: center; margin-top: 6px; flex-wrap: wrap; }
.department-stats span { font-size: .7rem; color: var(--gray-400); }
.department-cta { font-size: .75rem; color: var(--green); font-weight: 700; margin-top: 8px; }
.regions-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.region-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray-100);
    transition: all var(--transition);
    text-decoration: none;
    display: block;
}
.region-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.region-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.region-card p { font-size: .85rem; color: var(--gray-600); }
.region-card-arrow { color: var(--green); font-weight: 700; font-size: .85rem; margin-top: 12px; display: inline-flex; align-items: center; gap: 4px; }

/* =============================================
   LOCAL STATS — NOUVEAU MODULE
   ============================================= */
.local-stats-section {
    padding: 72px 0;
    background: white;
}
.local-stats-header {
    text-align: center;
    margin-bottom: 48px;
}
.local-stats-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--gray-800);
    margin-bottom: 12px;
}
.local-stats-header h2 span { color: var(--green); }
.local-stats-header p { color: var(--gray-600); font-size: .95rem; }
.local-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,71,42,.08);
    border: 1px solid rgba(26,71,42,.2);
    color: var(--green);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 16px;
}
.local-badge-icon { font-size: 1rem; }

/* Stats grid */
.local-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.local-stat-card {
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.local-stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.local-stat-businesses {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: white;
}
.local-stat-licencies {
    background: linear-gradient(135deg, #1a3a5c, #2563eb);
    color: white;
}
.local-stat-terrains {
    background: linear-gradient(135deg, #7c2d12, #c2410c);
    color: white;
}
.local-stat-sites {
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    color: white;
}
.local-stat-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.2));
}
.local-stat-number {
    font-size: 2.6rem;
    font-weight: 900;
    font-family: var(--font-head);
    line-height: 1;
    margin-bottom: 8px;
}
.local-stat-label {
    font-size: .88rem;
    font-weight: 700;
    opacity: .9;
    margin-bottom: 4px;
}
.local-stat-sub {
    font-size: .72rem;
    opacity: .65;
    text-transform: uppercase;
    letter-spacing: 0;
}

/* Contexte LOCAL */
.local-context-block {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border: 1px solid var(--gray-200);
}
.local-context-ligue,
.local-context-anecdote,
.local-context-pro-refs {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.local-ligue-icon,
.local-anecdote-icon,
.local-pro-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.local-context-ligue strong,
.local-context-pro-refs strong {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--gray-400);
    margin-bottom: 6px;
}
.local-context-ligue span {
    font-size: .95rem;
    font-weight: 700;
    color: var(--green);
}
.local-context-anecdote p {
    font-size: .88rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}
.local-context-pro-refs ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.local-context-pro-refs ul li {
    font-size: .88rem;
    color: var(--gray-600);
    padding: 3px 0;
    border-bottom: 1px solid var(--gray-200);
}
.local-context-pro-refs ul li:last-child { border: none; }

/* =============================================
   DÉPARTEMENT — CONTENU ENRICHI
   ============================================= */
.dept-hero { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 70%, var(--green-light) 100%); }
.dept-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
    gap: 48px;
    align-items: center;
}
.dept-hero-copy { max-width: 720px; }
.dept-hero .hero-sub { max-width: 680px; }
.dept-hero-stats { margin-top: 34px; }
.dept-form-card {
    justify-self: end;
    width: 100%;
    max-width: 460px;
    scroll-margin-top: calc(var(--header-h) + 20px);
}
.dept-hero-badge {
    display: inline-block;
    background: rgba(244,196,48,.2);
    border: 2px solid var(--yellow);
    color: var(--yellow);
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-head);
    padding: 8px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    letter-spacing: 0;
}

/* Grid layout département */
.dept-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}
.dept-content-main { display: flex; flex-direction: column; gap: 20px; }
.dept-content-main h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 900; }
.dept-content-main p { color: var(--gray-600); line-height: 1.75; }
.dept-content-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: calc(var(--header-h) + 20px); }

/* Features département */
.dept-features { display: flex; flex-direction: column; gap: 16px; margin: 8px 0; }
.dept-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--green);
}
.dept-feature-icon { font-size: 1.4rem; flex-shrink: 0; }
.dept-feature strong { display: block; font-weight: 700; font-size: .95rem; color: var(--gray-800); margin-bottom: 4px; }
.dept-feature p { font-size: .85rem; color: var(--gray-600); margin: 0; line-height: 1.5; }
.dept-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* Cards sidebar département */
.dept-card {
    border-radius: var(--radius-lg);
    padding: 24px;
}
.dept-card-green {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: white;
}
.dept-card-code {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-head);
    opacity: .4;
    line-height: 1;
    margin-bottom: 4px;
}
.dept-card-name { font-size: 1.4rem; font-weight: 900; font-family: var(--font-head); color: white; margin-bottom: 8px; }
.dept-card-region { font-size: .82rem; opacity: .75; margin-bottom: 6px; }
.dept-card-ligue { font-size: .82rem; opacity: .75; }
.dept-map-card {
    background: white;
    border: 1px solid var(--gray-200);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.dept-map-card h3 {
    font-size: 1rem;
    font-weight: 900;
    padding: 18px 20px 12px;
    margin: 0;
}
.dept-map-frame {
    aspect-ratio: 4 / 3;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.dept-map-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}
.dept-map-card p {
    margin: 14px 20px 8px;
    color: var(--gray-600);
    font-size: .86rem;
    line-height: 1.55;
}
.dept-map-card a {
    display: inline-flex;
    margin: 0 20px 14px;
    color: var(--green);
    font-size: .84rem;
    font-weight: 800;
}
.dept-map-credit {
    display: block;
    padding: 8px 20px 14px;
    color: var(--gray-400);
    font-size: .72rem;
}
.dept-card-yellow { background: var(--yellow); }
.dept-card-yellow h3 { font-size: 1rem; font-weight: 800; color: var(--green-dark); margin-bottom: 16px; }
.dept-card-light { background: white; border: 1px solid var(--gray-200); }
.dept-card-light h3 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; }

/* Pricing sidebar */
.dept-pricing { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.dept-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(26,71,42,.1);
    font-size: .88rem;
    color: var(--green-dark);
}
.dept-price-row:last-child { border: none; }
.dept-price-row strong { font-weight: 800; }
.dept-price-best {
    background: rgba(26,71,42,.08);
    margin: 4px -4px;
    padding: 8px 4px;
    border-radius: var(--radius-sm);
    border: none;
}
.dept-price-note { font-size: .75rem; color: var(--green-dark); opacity: .7; margin: 0; }

/* Usages */
.dept-usages { display: flex; flex-direction: column; gap: 12px; }
.dept-usages li { display: flex; align-items: flex-start; gap: 10px; }
.usage-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.dept-usages strong { display: block; font-size: .87rem; font-weight: 700; color: var(--gray-800); }
.dept-usages span { font-size: .78rem; color: var(--gray-500); }

/* =============================================
   MARKET INSIGHT
   ============================================= */
.market-insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.market-insight-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.market-insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.market-insight-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--green);
    font-family: var(--font-head);
    line-height: 1;
    margin-bottom: 10px;
}
.market-insight-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
}
.market-insight-card p { font-size: .85rem; color: var(--gray-600); line-height: 1.65; }
.market-insight-card strong { color: var(--green); }

/* Comparateur national */
.dept-national-compare {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    border: 1px solid var(--gray-200);
}
.dept-national-compare h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 24px; }
.compare-grid { display: flex; flex-direction: column; gap: 20px; margin-bottom: 20px; }
.compare-label { font-size: .82rem; font-weight: 700; color: var(--gray-600); margin-bottom: 8px; }
.compare-bar-wrap {
    background: var(--gray-200);
    border-radius: 100px;
    height: 12px;
    overflow: hidden;
    margin-bottom: 8px;
}
.compare-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    border-radius: 100px;
    transition: width 1s ease;
    min-width: 8px;
}
.compare-values { display: flex; justify-content: space-between; font-size: .78rem; }
.compare-dept { font-weight: 700; color: var(--green); }
.compare-nat { color: var(--gray-400); }
.compare-insight { font-size: .88rem; color: var(--gray-600); padding: 12px 16px; background: white; border-radius: var(--radius-sm); border-left: 3px solid var(--green); }
.compare-insight strong { color: var(--green); }

/* =============================================
   USE CASES DÉPARTEMENT
   ============================================= */
.usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.usecase-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 2px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
}
.usecase-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.usecase-card-featured {
    border-color: var(--green);
    box-shadow: var(--shadow-md);
}
.usecase-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--green-dark);
    font-size: .72rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}
.usecase-emoji { font-size: 2.2rem; margin-bottom: 14px; }
.usecase-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--gray-800); margin-bottom: 10px; }
.usecase-card p { font-size: .87rem; color: var(--gray-600); margin-bottom: 16px; line-height: 1.6; }
.usecase-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.usecase-card ul li {
    font-size: .82rem;
    color: var(--gray-600);
    padding: 5px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 6px;
}
.usecase-card ul li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* =============================================
   TABLEAU STATS RÉGION
   ============================================= */
.dept-stats-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 32px;
    display: block; /* visible sur desktop, caché sur mobile */
}
.dept-stats-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}
.dept-stats-table thead {
    background: var(--green);
    color: white;
}
.dept-stats-table th {
    padding: 14px 20px;
    text-align: left;
    font-family: var(--font-head);
    font-size: .82rem;
    white-space: nowrap;
}
.dept-stats-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
}
.dept-stats-table tbody tr:nth-child(odd) { background: var(--gray-50); }
.dept-stats-table tbody tr:hover { background: rgba(26,71,42,.04); }
.table-dept-code {
    display: inline-block;
    background: var(--green);
    color: white;
    font-size: .72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-family: monospace;
}
.dept-stats-total td {
    background: var(--green-dark) !important;
    color: white !important;
    font-weight: 700;
    border: none;
}

/* Cards région (mobile) */
.dept-cards-region { display: none; }
.department-card-rich { padding: 16px; }

/* =============================================
   LIENS DEPARTEMENT
   ============================================= */
.internal-links-title {
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--gray-400);
    margin-bottom: 16px;
}
.dept-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.dept-link-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 7px 14px;
    font-size: .82rem;
    color: var(--gray-600);
    transition: all var(--transition);
    text-decoration: none;
}
.dept-link-pill:hover { background: var(--green); color: white; border-color: var(--green); }
.dept-link-code {
    background: var(--gray-200);
    color: var(--gray-600);
    font-size: .7rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 3px;
    font-family: monospace;
    transition: background var(--transition), color var(--transition);
}
.dept-link-pill:hover .dept-link-code { background: rgba(255,255,255,.2); color: white; }
.dept-link-name { font-size: .82rem; }

/* =============================================
   BREADCRUMB BAR (pages villes)
   ============================================= */
.breadcrumb-bar {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 0;
}
.breadcrumb-bar nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    flex-wrap: wrap;
    color: var(--gray-600);
}
.breadcrumb-bar a { color: var(--green); font-weight: 500; }
.breadcrumb-bar a:hover { text-decoration: underline; }
.breadcrumb-bar strong { color: var(--gray-800); }

/* =============================================
   VILLE HERO
   ============================================= */
.ville-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-light) 100%);
    padding: 80px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}
.ville-hero::before {
    content: '⚽';
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 220px;
    opacity: .06;
    pointer-events: none;
}
.ville-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
    gap: 48px;
    align-items: center;
}
.ville-hero-content { position: relative; z-index: 1; max-width: 720px; }
.ville-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(244,196,48,.15);
    border: 1px solid rgba(244,196,48,.35);
    color: var(--yellow);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.ville-hero h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    line-height: 1.15;
}
.ville-hero h1 .highlight { color: var(--yellow); }
.ville-hero-subtitle {
    font-size: 1rem;
    opacity: .85;
    margin-bottom: 32px;
    max-width: 600px;
}
.ville-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.ville-hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 28px;
}
.ville-hero-stats .hero-stat strong { display: block; font-size: 1.8rem; font-weight: 900; color: var(--yellow); font-family: var(--font-head); }
.ville-hero-stats .hero-stat span { font-size: .78rem; opacity: .75; text-transform: uppercase; letter-spacing: 0; }
.ville-form-card {
    background: white;
    color: var(--gray-800);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: 0 22px 60px rgba(0,0,0,.24);
    border: 1px solid rgba(255,255,255,.22);
}
.ville-form-card-head { margin-bottom: 18px; }
.ville-form-card-head .section-eyebrow { color: var(--green); background: rgba(26,71,42,.08); }
.ville-form-card-head h2 {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--gray-800);
    margin: 8px 0 6px;
}
.ville-form-card-head p {
    color: var(--gray-600);
    font-size: .9rem;
    line-height: 1.55;
}
.ville-quick-form { gap: 12px; }
.ville-quick-form .form-group label { color: var(--gray-700); }
.ville-quick-form .form-group input,
.ville-quick-form .form-group select,
.ville-quick-form .form-group textarea { padding: 10px 12px; }
.ville-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--gray-50);
}
.ville-consent input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: var(--green);
    flex-shrink: 0;
}
.ville-consent label {
    color: var(--gray-600);
    font-size: .8rem;
    line-height: 1.45;
}
.ville-consent a { color: var(--green); font-weight: 700; }
.ville-form-note {
    text-align: center;
    color: var(--gray-400);
    font-size: .78rem;
}
.form-success,
.form-error {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    font-size: .88rem;
}
.form-success {
    background: rgba(26,71,42,.08);
    border-left: 4px solid var(--green);
    color: var(--green-dark);
}
.form-error {
    background: rgba(220,38,38,.08);
    border-left: 4px solid #dc2626;
    color: #991b1b;
}
.ville-conversion-strip {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.ville-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 22px 0;
}
.ville-strip-grid div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-left: 18px;
    border-left: 3px solid var(--yellow);
}
.ville-strip-grid strong {
    color: var(--gray-800);
    font-weight: 900;
    font-family: var(--font-head);
}
.ville-strip-grid span {
    color: var(--gray-500);
    font-size: .86rem;
}

/* =============================================
   VILLE LOCAL FOCUS
   ============================================= */
.ville-local-focus { padding: 68px 0; background: white; }
.ville-local-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 32px;
    align-items: start;
}
.ville-local-copy h2 {
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    font-weight: 900;
    color: var(--gray-800);
    margin: 10px 0 14px;
}
.ville-local-copy p {
    color: var(--gray-600);
    line-height: 1.75;
    max-width: 760px;
}
.ville-local-needs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}
.ville-local-needs article {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--green);
    border-radius: var(--radius-md);
    padding: 16px 18px;
}
.ville-local-needs strong {
    display: block;
    color: var(--gray-800);
    font-weight: 900;
    margin-bottom: 7px;
}
.ville-local-needs span {
    display: block;
    color: var(--gray-600);
    font-size: .88rem;
    line-height: 1.6;
}
.ville-link-panel {
    background: var(--green-dark);
    color: white;
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-md);
}
.ville-link-panel h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 16px;
}
.ville-link-grid {
    display: grid;
    gap: 10px;
}
.ville-link-grid a {
    display: block;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.08);
    color: white;
    transition: all var(--transition);
}
.ville-link-grid a:hover {
    background: white;
    color: var(--green-dark);
    border-color: white;
    transform: translateY(-2px);
}
.ville-link-grid strong {
    display: block;
    font-size: .92rem;
    font-weight: 900;
    margin-bottom: 4px;
}
.ville-link-grid span {
    display: block;
    color: rgba(255,255,255,.78);
    font-size: .78rem;
    line-height: 1.45;
}
.ville-link-grid a:hover span { color: var(--gray-600); }

/* =============================================
   VILLE STATS SECTION
   ============================================= */
.ville-stats-section { padding: 60px 0; background: var(--gray-50); }
.ville-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ville-stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.ville-stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-icon { font-size: 2rem; margin-bottom: 12px; }
.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--green);
    font-family: var(--font-head);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label { font-size: .85rem; font-weight: 600; color: var(--gray-800); margin-bottom: 4px; }
.stat-source { font-size: .72rem; color: var(--gray-400); }

/* =============================================
   VILLE SERVICES
   ============================================= */
.ville-services { padding: 72px 0; }
.ville-services h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 12px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card-ville {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
}
.service-card-ville.featured {
    border-color: var(--green);
    box-shadow: var(--shadow-md);
}
.service-card-ville:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--green);
    font-size: .72rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    white-space: nowrap;
}
.service-icon { font-size: 2.5rem; margin-bottom: 16px; }
.service-card-ville h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; color: var(--gray-800); }
.service-card-ville p { font-size: .88rem; color: var(--gray-600); margin-bottom: 16px; line-height: 1.6; }
.service-features { margin-bottom: 24px; }
.service-features li {
    font-size: .83rem;
    color: var(--gray-600);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--gray-100);
}
.service-features li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: .9rem; }

/* =============================================
   VILLE PROCESS
   ============================================= */
.ville-process { padding: 72px 0; background: var(--gray-50); }
.ville-process h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 40px; text-align: center; }
.city-how-section {
    padding: 86px 0;
    background: #f4f7f2;
}
.city-how-section .section-desc {
    max-width: 760px;
}
.city-process-steps .process-step {
    min-height: 230px;
    padding: 26px 22px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(17,24,39,.08);
    box-shadow: 0 12px 34px rgba(17,24,39,.055);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.city-process-steps .process-step p {
    max-width: 240px;
}
.city-method-section {
    padding: 92px 0;
    background:
        linear-gradient(135deg, rgba(18,26,24,.98), rgba(11,107,91,.94)),
        linear-gradient(90deg, rgba(255,206,58,.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,206,58,.08) 1px, transparent 1px);
    background-size: auto, 72px 72px, 72px 72px;
    color: white;
}
.city-method-layout {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 48px;
    align-items: start;
}
.city-method-copy {
    position: sticky;
    top: calc(var(--header-h) + 28px);
}
.city-method-copy .section-eyebrow {
    color: var(--cyan);
    background: rgba(69,216,196,.12);
}
.city-method-copy h2 {
    color: white;
    font-size: clamp(2rem, 3.8vw, 3.6rem);
    line-height: 1;
    margin: 18px 0 20px;
    max-width: 760px;
}
.city-method-copy p {
    color: rgba(255,255,255,.78);
    font-size: 1.02rem;
    line-height: 1.8;
    max-width: 680px;
}
.city-method-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.city-method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.city-method-card {
    min-height: 230px;
    padding: 26px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.075);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.city-method-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255,206,58,.14);
    color: var(--yellow);
    font-weight: 900;
    font-size: .78rem;
    margin-bottom: 18px;
}
.city-method-card h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.city-method-card p {
    color: rgba(255,255,255,.76);
    line-height: 1.68;
    font-size: .94rem;
}
.process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
}
.process-step { text-align: center; }
.process-arrow {
    font-size: 1.5rem;
    color: var(--green);
    font-weight: 900;
    padding: 0 12px;
    opacity: .5;
}
.process-step .step-number {
    width: 52px; height: 52px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    font-family: var(--font-head);
    margin: 0 auto 16px;
}
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: .82rem; color: var(--gray-600); max-width: 200px; margin: 0 auto; }

/* =============================================
   PRICING TABLE VILLE
   ============================================= */
.ville-pricing { padding: 72px 0; }
.ville-pricing h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 900; margin-bottom: 28px; }
.pricing-table-ville { overflow-x: auto; }
.pricing-table-ville table { width: 100%; border-collapse: collapse; }
.pricing-table-ville thead { background: var(--green); color: white; }
.pricing-table-ville th { padding: 14px 20px; text-align: left; font-size: .88rem; font-family: var(--font-head); }
.pricing-table-ville td { padding: 14px 20px; border-bottom: 1px solid var(--gray-200); font-size: .88rem; }
.pricing-table-ville tbody tr:nth-child(odd) { background: var(--gray-50); }
.pricing-table-ville tbody tr:hover { background: rgba(26,71,42,.05); }
.pricing-table-ville .popular-row { background: rgba(26,71,42,.08) !important; }
.pricing-table-ville .highlight-row { background: rgba(244,196,48,.1) !important; }
.pricing-note { font-size: .78rem; color: var(--gray-400); margin-top: 12px; font-style: italic; }

/* =============================================
   VILLE FAQ
   ============================================= */
.ville-faq { padding: 72px 0; background: var(--gray-50); }
.ville-faq h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 36px; text-align: center; }
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.faq-grid .faq-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    border-bottom: none;
}
.faq-grid .faq-item h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 10px;
    padding: 0;
}
.faq-grid .faq-item p { font-size: .87rem; color: var(--gray-600); line-height: 1.65; margin: 0; }

/* Country landing pages */
.country-hero .hero-sub { max-width: 760px; }
.country-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: start;
}
.country-main > p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}
.country-main h2,
.country-side h2 {
    color: var(--gray-800);
    font-size: 1.55rem;
    font-weight: 900;
    margin-bottom: 16px;
}
.country-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}
.country-card,
.country-side {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.country-card { padding: 20px; }
.country-card-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-weight: 900;
    margin-bottom: 12px;
}
.country-card h3 {
    font-size: 1rem;
    font-weight: 900;
    color: var(--gray-800);
    margin-bottom: 8px;
}
.country-card p {
    color: var(--gray-600);
    font-size: .9rem;
    line-height: 1.6;
}
.country-side {
    padding: 24px;
    position: sticky;
    top: 110px;
}
.country-side p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: .92rem;
    margin: 16px 0 20px;
}
.country-checklist li {
    display: flex;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
    font-size: .92rem;
}
.country-checklist li::before {
    content: '✓';
    color: var(--green);
    font-weight: 900;
    flex-shrink: 0;
}
.country-city-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.country-city-links span {
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    background: white;
    color: var(--gray-700);
    font-weight: 700;
    padding: 10px 14px;
    box-shadow: var(--shadow-sm);
}

/* =============================================
   VILLE DEVIS FORM
   ============================================= */
.ville-devis { padding: 72px 0; }
.devis-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}
.devis-info h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 16px; }
.devis-info p { color: var(--gray-600); margin-bottom: 28px; }
.devis-guarantees { display: flex; flex-direction: column; gap: 12px; }
.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--gray-600);
}
.devis-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .82rem; font-weight: 700; color: var(--gray-600); }
.form-group input,
.form-group select,
.form-group textarea {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: .9rem;
    font-family: var(--font-body);
    transition: border-color .2s;
    background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
}
.form-group textarea { resize: vertical; }
.audit-fieldset {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    border: 0;
    padding: 0;
    margin: 0;
}
.audit-fieldset legend {
    grid-column: 1 / -1;
    font-size: .82rem;
    font-weight: 700;
    color: var(--gray-600);
    margin-bottom: -2px;
}
.audit-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    cursor: pointer;
}
.audit-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--green);
    flex-shrink: 0;
}
.audit-check span {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.audit-check strong {
    color: var(--gray-800);
    font-size: .9rem;
}
.audit-check small {
    color: var(--gray-500);
    line-height: 1.35;
}
.ville-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px;
}
.ville-bottom-cta h2 {
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    color: var(--gray-800);
    margin: 8px 0;
}
.ville-bottom-cta p {
    color: var(--gray-600);
    margin: 0;
}

/* =============================================
   VILLES PROCHES
   ============================================= */
.villes-proches { padding: 56px 0; background: var(--gray-50); }
.villes-proches h2 { font-size: 1.4rem; font-weight: 900; margin-bottom: 20px; }
.nearby-cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.nearby-city-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: .85rem;
    color: var(--gray-600);
    font-weight: 500;
    transition: all var(--transition);
}
.nearby-city-link:hover {
    background: var(--green);
    color: white;
    border-color: var(--green);
}
.nearby-city-link span { font-size: .75rem; opacity: .7; }
.city-neighbor-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}
.city-neighbor-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    background: white;
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--yellow);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.city-neighbor-link span {
    color: var(--gray-400);
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}
.city-neighbor-link strong {
    color: var(--green);
    font-size: .95rem;
}
.text-center { text-align: center; }

/* =============================================
   SEO BLOG + COMMUNES LINKS
   ============================================= */
.seo-blog-link-section { background: var(--gray-50); }
.seo-blog-link-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.seo-blog-link-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.seo-blog-link-card:hover {
    border-color: rgba(26,71,42,.28);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.seo-blog-link-card strong {
    color: var(--gray-800);
    font-weight: 900;
    line-height: 1.3;
}
.seo-blog-link-card > span:last-child {
    color: var(--gray-600);
    font-size: .88rem;
    line-height: 1.55;
}
.dept-communes-section { background: white; }
.dept-communes-groups {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.dept-commune-group {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 16px;
}
.dept-commune-group h3 {
    color: var(--green);
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 10px;
}
.dept-commune-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.dept-commune-links a {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--gray-700);
    font-size: .84rem;
    line-height: 1.3;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--gray-200);
}
.dept-commune-links a:last-child { border-bottom: 0; padding-bottom: 0; }
.dept-commune-links a:hover { color: var(--green); }
.dept-commune-links span {
    color: var(--gray-400);
    font-size: .75rem;
    white-space: nowrap;
}

/* =============================================
   VILLES INDEX PAGE
   ============================================= */
.villes-hero {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    padding: 60px 0 50px;
    color: white;
    text-align: center;
}
.villes-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: white; margin-bottom: 12px; }
.villes-hero-sub { font-size: 1rem; opacity: .8; }

.popular-cities { padding: 60px 0; }
.popular-cities h2 { font-size: 1.4rem; font-weight: 900; margin-bottom: 24px; }
.popular-cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.popular-city-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    transition: all var(--transition);
    text-decoration: none;
}
.popular-city-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.city-flag { font-size: 1.4rem; }
.city-info { flex: 1; }
.city-info strong { display: block; font-size: .9rem; font-weight: 700; color: var(--gray-800); }
.city-info span { font-size: .75rem; color: var(--gray-400); }
.city-arrow { color: var(--green); font-weight: 700; }

.villes-search-section { padding: 40px 0 60px; background: var(--gray-50); }
.search-filters-bar { background: white; border-radius: var(--radius-lg); padding: 20px 24px; box-shadow: var(--shadow-sm); margin-bottom: 28px; }
.filters-form { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.search-input-wrap {
    flex: 1;
    min-width: 200px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 0 14px;
    transition: border-color .2s;
}
.search-input-wrap:focus-within { border-color: var(--green); }
.search-input-wrap svg { flex-shrink: 0; color: var(--gray-400); }
.search-input {
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: .9rem;
    width: 100%;
}
.search-input:focus { outline: none; }
.filter-select {
    padding: 11px 14px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: .87rem;
    background: white;
    cursor: pointer;
    min-width: 160px;
    transition: border-color .2s;
}
.filter-select:focus { outline: none; border-color: var(--green); }

.results-count { font-size: .9rem; color: var(--gray-600); margin-bottom: 20px; }
.results-count strong { color: var(--gray-800); font-weight: 700; }

.cities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 32px;
}
.city-list-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    transition: all var(--transition);
    text-decoration: none;
    display: block;
}
.city-list-item:hover { border-color: var(--green); background: rgba(26,71,42,.04); }
.city-list-name { font-size: .87rem; font-weight: 600; color: var(--gray-800); margin-bottom: 3px; }
.city-list-meta { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.city-zip { font-size: .72rem; background: var(--gray-100); color: var(--gray-400); padding: 1px 6px; border-radius: 3px; font-family: monospace; }
.city-dept { font-size: .72rem; color: var(--gray-400); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.no-results { text-align: center; padding: 60px 20px; color: var(--gray-600); }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: 6px; flex-wrap: wrap; padding: 16px 0; }
.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: .85rem;
    font-weight: 600;
    color: var(--gray-600);
    text-decoration: none;
    transition: all var(--transition);
    min-width: 36px;
}
.page-btn:hover, .page-btn.active {
    border-color: var(--green);
    background: var(--green);
    color: white;
}

.villes-seo-block { padding: 60px 0; }
.seo-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.seo-col h2 { font-size: 1.3rem; font-weight: 900; margin-bottom: 12px; }
.seo-col p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 10px; }
.regions-seo-links h3 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; color: var(--gray-600); }
.regions-links-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.region-seo-link {
    padding: 6px 14px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: .82rem;
    color: var(--gray-600);
    transition: all var(--transition);
}
.region-seo-link:hover { background: var(--green); color: white; border-color: var(--green); }

.mobile-sticky-cta {
    display: none;
}

/* =============================================
   REVEAL ON SCROLL
   ============================================= */
.reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: opacity .6s ease, transform .6s ease;
}
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .hero { min-height: clamp(520px, 70svh, 700px); }
    .hero-layout { padding-left: 20px; padding-right: 20px; }
    .pillar-grid { grid-template-columns: 1fr; }
    .seo-longform-layout { grid-template-columns: 1fr; }
    .seo-longform-aside { position: static; }
    .pillar-cards { grid-template-columns: repeat(2, 1fr); }
    .internal-link-grid { grid-template-columns: repeat(2, 1fr); }
    .segments-grid { grid-template-columns: repeat(2, 1fr); }
    .regions-grid { grid-template-columns: repeat(4, 1fr); }
    .web-news-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
    .configurator-wrap { grid-template-columns: 1fr; }
    .config-panel { position: static; }
    .blog-listing-grid { grid-template-columns: 1fr; }
    .blog-article-card { grid-template-columns: 160px 1fr; }
    .departments-grid { grid-template-columns: repeat(3, 1fr); }
    .cities-grid { grid-template-columns: repeat(4, 1fr); }
    .popular-cities-grid { grid-template-columns: repeat(3, 1fr); }
    .country-layout { grid-template-columns: 1fr; }
    .country-side { position: static; }
    .country-card-grid { grid-template-columns: 1fr; }
    .ville-local-grid { grid-template-columns: 1fr; }
    .ville-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ville-hero-layout { grid-template-columns: 1fr; gap: 34px; }
    .dept-hero-layout { grid-template-columns: 1fr; gap: 34px; }
    .dept-form-card { justify-self: stretch; max-width: 760px; }
    .ville-form-card { max-width: 760px; }
    .ville-strip-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
    .process-arrow { display: none; }
    .ville-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .devis-wrapper { grid-template-columns: 1fr; }
    .service-planner-card,
    .region-mapper-card { grid-template-columns: 1fr; }
    .service-flow-board { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-planner-panel { min-height: auto; }
    .region-map-board {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .region-map-arrow {
        min-height: 22px;
        transform: rotate(90deg);
    }
    .region-map-column { min-height: auto; }
    /* LOCAL */
    .local-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .local-context-block { grid-template-columns: 1fr; }
    .dept-content-grid { grid-template-columns: 1fr; }
    .dept-content-sidebar { position: static; }
    .market-insight-grid { grid-template-columns: repeat(2, 1fr); }
    .usecases-grid { grid-template-columns: 1fr 1fr; }
    .seo-blog-link-grid,
    .dept-communes-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    /* Région tableau */
    .dept-stats-table-wrap { display: none; }
    .dept-cards-region { display: grid; }
}

@media (max-width: 768px) {
    .btn-header { display: inline-flex; }
    .main-nav {
        position: fixed;
        inset: 0;
        top: var(--header-h);
        background: white;
        z-index: 999;
        transform: translateX(100%);
        transition: transform .35s ease;
        overflow-y: auto;
        padding: 24px 20px 100px;
    }
    .main-nav.nav-open { transform: translateX(0); }
    .nav-list { flex-direction: column; gap: 0; }
    .nav-item { border-bottom: 1px solid var(--gray-100); }
    .nav-link { padding: 14px 0; font-size: 1rem; justify-content: space-between; width: 100%; }
    .mega-dropdown { position: static; transform: none; box-shadow: none; border: none; padding: 8px 0 16px; display: none !important; flex-direction: column; min-width: 0; border-radius: 0; gap: 4px; }
    .has-dropdown.open .mega-dropdown { display: flex !important; }
    .mega-cta-col { display: none; }
    .burger { display: flex; }
    .city-neighbor-nav { grid-template-columns: 1fr; }

    .hero { min-height: auto; padding: 54px 0 42px; }
    .hero::before {
        background:
            linear-gradient(180deg, rgba(15,45,26,.92) 0%, rgba(15,45,26,.82) 48%, rgba(15,45,26,.94) 100%),
            linear-gradient(90deg, rgba(15,45,26,.78), rgba(15,45,26,.48));
    }
    .hero-bg-img { object-position: center; }
    .hero h1 { font-size: clamp(2.55rem, 13vw, 3.7rem); line-height: .98; }
    .hero-layout { padding-left: 20px; padding-right: 20px; }
    .hero-actions .btn { flex: 1 1 210px; justify-content: center; }
    .seo-longform-section { padding: 58px 0; }
    .seo-longform-main h2 { font-size: clamp(1.7rem, 9vw, 2.35rem); }
    .seo-longform-main > p,
    .seo-copy-block p { font-size: .96rem; line-height: 1.76; }
    .seo-side-panel { padding: 18px; }
    .pillar-cta-row .btn,
    .cta-banner-actions .btn,
    .ville-hero-cta .btn {
        flex: 1 1 220px;
    }
    .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-stat { min-height: 74px; }
    .hero-stat-num { font-size: 1.35rem; }
    .service-planner-card,
    .region-mapper-card { padding: 20px; }
    .service-flow-board { grid-template-columns: 1fr; }
    .service-flow-step { min-height: auto; }
    .service-planner-panel { padding: 20px; }
    .region-mapper-stats { grid-template-columns: 1fr; }
    .region-map-column { padding: 15px; }

    .segments-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .regions-grid { grid-template-columns: repeat(3, 1fr); }
    .web-news-head,
    .web-news-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .web-news-update {
        min-width: 0;
    }
    .web-news-grid { grid-template-columns: 1fr; }
    .web-news-card { min-height: 0; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .pillar-cards { grid-template-columns: 1fr; }
    .internal-link-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .split { grid-template-columns: 1fr; }
    .split.reverse .split-visual { order: 0; }
    .split-visual { aspect-ratio: 16/9; }
    .config-teaser { padding: 58px 0; }
    .config-teaser-grid { grid-template-columns: 1fr; gap: 30px; }
    .config-teaser-photo { aspect-ratio: 16 / 10; }

    .cta-banner-inner { flex-direction: column; text-align: center; }
    .cta-banner-actions { width: 100%; justify-content: center; }
    .cta-banner-actions .btn { min-width: min(100%, 240px); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }

    .regions-list-grid { grid-template-columns: 1fr 1fr; }
    .departments-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-article-card { grid-template-columns: 1fr; }
    .blog-article-thumb { height: 140px; }
    .topbar-promo { display: none; }

    /* Ville pages */
    .ville-local-focus { padding: 54px 0; }
    .ville-local-needs,
    .ville-link-grid { grid-template-columns: 1fr; }
    .ville-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .devis-wrapper { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .audit-fieldset { grid-template-columns: 1fr; }
    .ville-form-card { padding: 20px; }
    .dept-hero { padding: 50px 0 40px; }
    .dept-hero-stats { gap: 18px; margin-top: 28px; }
    .ville-hero-cta { flex-direction: column; }
    .ville-hero-cta .btn { width: 100%; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 20px; }
    .ville-bottom-cta { flex-direction: column; align-items: stretch; }
    .ville-bottom-cta .btn { width: 100%; justify-content: center; }

    /* Villes index */
    .popular-cities-grid { grid-template-columns: repeat(2, 1fr); }
    .cities-grid { grid-template-columns: repeat(3, 1fr); }
    .seo-content-grid { grid-template-columns: 1fr; }
    .filters-form { flex-direction: column; }
    .search-input-wrap { min-width: 100%; }

    /* LOCAL responsive */
    .local-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .local-context-block { grid-template-columns: 1fr; }
    .dept-content-grid { grid-template-columns: 1fr; }
    .market-insight-grid { grid-template-columns: 1fr; }
    .usecases-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .dept-cta-row { flex-direction: column; }
    body { padding-bottom: 74px; }
    .mobile-sticky-cta {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 12px;
        z-index: 1200;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 52px;
        border-radius: var(--radius-md);
        background: var(--yellow);
        color: var(--green-dark);
        border: 2px solid rgba(15,45,26,.16);
        box-shadow: 0 10px 32px rgba(13,17,23,.22);
        font-family: var(--font-head);
        font-weight: 900;
        text-transform: none;
    }
    .mobile-sticky-cta span {
        font-size: .86rem;
        opacity: .86;
    }
    .mobile-sticky-cta strong {
        font-size: .98rem;
    }
    .mobile-sticky-cta:hover {
        background: var(--yellow-dark);
        color: var(--green-dark);
    }
}

@media (max-width: 480px) {
    .btn-header { display: none; }
    .header-inner { gap: 10px; }
    .logo { gap: 6px; }
    .logo-icon { font-size: 1.2rem; }
    .logo-text { font-size: 1.18rem; letter-spacing: 0; white-space: nowrap; }
    .hero { padding: 50px 0 36px; }
    .hero h1 { font-size: clamp(2.35rem, 10.5vw, 3rem); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; flex: none; min-height: 0; }
    .pillar-cta-row { flex-direction: column; }
    .pillar-cta-row .btn,
    .cta-banner-actions .btn,
    .ville-hero-cta .btn,
    .page-hero .hero-actions .btn {
        width: 100%;
        flex: none;
    }
    .btn-lg, .btn-large {
        padding: 14px 18px;
    }
    .ville-hero { padding: 46px 0 34px; }
    .ville-hero-stats { gap: 18px; }
    .ville-hero-stats .hero-stat { min-width: 130px; }
    .ville-form-card { border-radius: var(--radius-md); }
    .dept-hero-badge { font-size: 1.5rem; padding: 6px 18px; }
    .dept-hero .breadcrumb { margin-bottom: 16px; }
    .ville-strip-grid div { padding-left: 12px; }
    .ville-bottom-cta { padding: 22px; }
    .segments-grid { grid-template-columns: 1fr; }
    .regions-grid { grid-template-columns: repeat(2, 1fr); }
    .seo-blog-link-grid,
    .dept-communes-groups { grid-template-columns: 1fr; }
    .dept-commune-links a { align-items: flex-start; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .departments-grid { grid-template-columns: repeat(2, 1fr); }
    .regions-list-grid { grid-template-columns: 1fr; }
    .cta-banner-actions { flex-direction: column; align-items: stretch; }
    .ville-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
    .popular-cities-grid { grid-template-columns: 1fr 1fr; }
    .city-choice-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .local-stats-grid { grid-template-columns: 1fr 1fr; }
    .local-stat-number { font-size: 2rem; }
}

/* =============================================
   IDENTITY REFRESH — WEB, SEO & E-COMMERCE
   ============================================= */
body {
    background:
        linear-gradient(180deg, var(--paper) 0%, #fff 380px);
    color: var(--gray-800);
}
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5,
.logo-text,
.btn {
    letter-spacing: 0;
}
body *,
body *::before,
body *::after {
    letter-spacing: 0;
}

.topbar {
    background: var(--ink);
    color: rgba(255,255,255,.78);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner { justify-content: space-between; }
.topbar-promo {
    color: var(--cyan);
    margin-left: auto;
    font-weight: 700;
}

.site-header {
    border-bottom: 1px solid rgba(17,24,39,.08);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
}
.site-header.scrolled { box-shadow: 0 14px 34px rgba(17,24,39,.08); }
.logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: white;
    font-size: 1rem;
    font-weight: 900;
    box-shadow: inset 0 -10px 18px rgba(0,0,0,.13);
}
.logo-text {
    color: var(--ink);
    font-weight: 800;
    font-size: 1.22rem;
}
.logo-accent { color: var(--green); }
.nav-link {
    color: rgba(17,24,39,.78);
    border-radius: 8px;
}
.nav-link:hover,
.has-dropdown.open > .nav-link {
    background: rgba(11,107,91,.08);
    color: var(--green);
}
.mega-dropdown {
    border-radius: 8px;
    border: 1px solid rgba(17,24,39,.08);
    box-shadow: 0 24px 70px rgba(17,24,39,.16);
}
.mega-link:hover { background: rgba(11,107,91,.07); }
.mega-cta-box {
    background:
        linear-gradient(135deg, rgba(11,107,91,.96), rgba(17,24,39,.96)),
        radial-gradient(circle at 90% 0%, rgba(255,206,58,.24), transparent 36%);
    border-radius: 8px;
}

.btn {
    border-radius: 8px;
    box-shadow: none;
}
.btn-primary {
    background: var(--ink);
    border-color: var(--ink);
    color: white;
}
.btn-primary:hover {
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(11,107,91,.18);
}
.btn-yellow {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--ink);
}
.btn-yellow:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
    color: var(--ink);
    box-shadow: 0 14px 30px rgba(244,165,28,.22);
}
.btn-outline {
    border-color: rgba(17,24,39,.18);
    color: var(--ink);
    background: white;
}
.btn-outline:hover {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
}

.hero {
    background: var(--ink);
    min-height: clamp(620px, 76svh, 820px);
}
.hero::before {
    background:
        linear-gradient(90deg, rgba(13,18,16,.96) 0%, rgba(13,18,16,.88) 42%, rgba(13,18,16,.46) 100%),
        linear-gradient(180deg, rgba(13,18,16,.12) 0%, rgba(13,18,16,.68) 100%);
}
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(69,216,196,.6), transparent);
    z-index: 2;
}
.hero-content {
    max-width: 860px;
}
.hero-eyebrow,
.section-eyebrow {
    background: rgba(69,216,196,.12);
    color: var(--green);
    border: 1px solid rgba(69,216,196,.24);
    border-radius: 999px;
    font-weight: 800;
}
.hero .hero-eyebrow {
    color: var(--cyan);
    background: rgba(69,216,196,.12);
}
.hero h1 {
    font-size: clamp(3.1rem, 5.4vw, 5.8rem);
    line-height: .94;
    max-width: 860px;
}
.hero-desc {
    max-width: 640px;
    color: rgba(255,255,255,.82);
}
.hero-stat {
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255,255,255,.07);
}
.hero-stat-num {
    color: var(--yellow);
}

.content-section,
.segments,
.how-it-works,
.popular-cities,
.villes-search-section,
.villes-seo-block {
    padding-top: 86px;
    padding-bottom: 86px;
}
.content-section.alt,
.segments,
.villes-search-section {
    background: #f4f7f2;
}

.section-title {
    color: var(--ink);
}
.section-title span,
.text-green,
.pillar-main strong {
    color: var(--green);
}
.section-desc {
    color: var(--gray-600);
}

.pillar-aside,
.segment-card,
.popular-city-card,
.city-list-item,
.department-card,
.region-card,
.blog-card,
.dept-card,
.ville-form-card,
.search-filters-bar,
.internal-link-panel,
.devis-form,
.devis-info,
.faq-item,
.service-card-ville,
.market-insight-card,
.usecase-card {
    border-radius: 8px !important;
    border: 1px solid rgba(17,24,39,.08);
    box-shadow: 0 8px 28px rgba(17,24,39,.045);
}

.segment-card,
.blog-card,
.popular-city-card,
.city-list-item,
.department-card,
.region-card {
    background: rgba(255,255,255,.92);
}
.segment-card:hover,
.blog-card:hover,
.popular-city-card:hover,
.city-list-item:hover,
.department-card:hover,
.region-card:hover {
    border-color: rgba(11,107,91,.36);
    box-shadow: 0 18px 42px rgba(17,24,39,.09);
    transform: translateY(-3px);
}
.segment-icon,
.feature-icon,
.dept-feature-icon,
.service-icon {
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(11,107,91,.12), rgba(69,216,196,.18));
    color: var(--green);
}
.segment-card .tag {
    background: rgba(11,107,91,.08);
    color: var(--green);
    border-radius: 999px;
}

.page-hero,
.dept-hero,
.ville-hero,
.configurator-hero,
.villes-hero {
    background:
        radial-gradient(circle at 82% 16%, rgba(69,216,196,.18), transparent 34%),
        linear-gradient(135deg, var(--ink), #12372f 64%, #0b6b5b);
}
.page-hero::after {
    opacity: .4;
}
.hero-highlight,
.ville-hero h1 .highlight,
.dept-hero-badge,
.ville-badge {
    color: var(--yellow);
}
.ville-badge,
.dept-hero-badge {
    border-color: rgba(255,206,58,.34);
    background: rgba(255,206,58,.08);
}

.dept-card-green {
    background:
        linear-gradient(135deg, var(--green), var(--ink));
}
.dept-card-yellow,
.cta-banner {
    background:
        linear-gradient(135deg, var(--yellow), #ffd96f);
}
.cta-banner h2,
.cta-banner p,
.dept-card-yellow h3 {
    color: var(--ink);
}
.cta-banner .btn-yellow {
    background: var(--ink);
    border-color: var(--ink);
    color: white;
}
.cta-banner .btn-outline-white {
    color: var(--ink);
    border-color: rgba(17,24,39,.28);
}

.process-step {
    border-radius: 8px;
}
.step-number {
    background: var(--green);
}
.process-arrow {
    color: var(--green);
}

.site-footer-main {
    background: #121a18;
}
.footer-seo-links a,
.footer-links a {
    border-radius: 6px;
}
.footer-links a:hover,
.footer-seo-links a:hover,
.footer-bottom a:hover {
    color: var(--cyan);
    border-color: rgba(69,216,196,.45);
}

.mobile-sticky-cta {
    border-radius: 8px !important;
}
body.nav-is-open .mobile-sticky-cta {
    display: none;
}

@media (max-width: 1024px) {
    .city-method-layout {
        grid-template-columns: 1fr;
    }
    .city-method-copy {
        position: static;
    }
}

@media (max-width: 768px) {
    .topbar-promo { display: none; }
    .city-how-section,
    .city-method-section {
        padding: 64px 0;
    }
    .city-method-grid {
        grid-template-columns: 1fr;
    }
    .city-method-copy h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    .city-method-actions {
        flex-direction: column;
    }
    .city-method-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .main-nav {
        display: none;
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100svh - var(--header-h));
        visibility: hidden;
        pointer-events: none;
        transform: translateX(105%);
    }
    .main-nav.nav-open {
        display: block;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }
    .hero h1 {
        font-size: clamp(2.45rem, 12vw, 3.7rem);
        line-height: .94;
    }
    .hero::before {
        background:
            linear-gradient(180deg, rgba(13,18,16,.92) 0%, rgba(13,18,16,.82) 52%, rgba(13,18,16,.95) 100%),
            linear-gradient(90deg, rgba(13,18,16,.72), rgba(13,18,16,.42));
    }
    .content-section,
    .segments,
    .how-it-works,
    .popular-cities,
    .villes-search-section,
    .villes-seo-block {
        padding-top: 58px;
        padding-bottom: 58px;
    }
}

/* =============================================
   PREMIUM EXPERIENCE LAYER - SEO SAFE
   ============================================= */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--yellow), var(--coral));
    transform: scaleX(0);
    transform-origin: left;
    pointer-events: none;
}
.cursor-halo {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(69,216,196,.16), rgba(255,206,58,.08) 34%, transparent 68%);
    transform: translate(calc(var(--cursor-x, -500px) - 50%), calc(var(--cursor-y, -500px) - 50%));
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
    transition: opacity .25s ease;
}
.has-cursor-halo .cursor-halo { opacity: 1; }
.site-header {
    backdrop-filter: saturate(1.2) blur(12px);
}
.site-header.scrolled {
    background: rgba(255,255,255,.9);
}
.home-hero {
    isolation: isolate;
}
.home-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    height: auto;
    background:
        linear-gradient(90deg, rgba(69,216,196,.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(69,216,196,.07) 1px, transparent 1px),
        linear-gradient(110deg, transparent 0 42%, rgba(255,206,58,.1) 50%, transparent 58%),
        linear-gradient(180deg, transparent 0%, rgba(11,18,16,.9) 100%);
    background-size: 74px 74px, 74px 74px, 100% 100%, 100% 100%;
    opacity: .72;
    pointer-events: none;
    z-index: 1;
}
.home-hero .hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .76fr);
    align-items: center;
    gap: clamp(36px, 6vw, 82px);
}
.home-hero .hero-content {
    filter: drop-shadow(0 18px 42px rgba(0,0,0,.26));
}
.home-hero .hero-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 18px rgba(69,216,196,.9);
}
.home-hero h1 {
    text-wrap: balance;
}
.home-hero .hero-desc {
    font-size: clamp(1rem, 1.35vw, 1.18rem);
}
.home-hero .hero-actions .btn {
    position: relative;
    overflow: hidden;
}
.home-hero .hero-actions .btn::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(110deg, transparent 0 38%, rgba(255,255,255,.42) 48%, transparent 58%);
    transform: translateX(-120%);
    transition: transform .7s ease;
}
.home-hero .hero-actions .btn:hover::after {
    transform: translateX(120%);
}
.hero-stats {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 26px 80px rgba(0,0,0,.3);
}
.hero-stat {
    position: relative;
}
.hero-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.1), transparent);
    opacity: .7;
    pointer-events: none;
}
.hero-command-center {
    --mx: 50%;
    --my: 50%;
    position: relative;
    min-height: 500px;
    transform-style: preserve-3d;
}
.hero-command-center::before {
    content: '';
    position: absolute;
    inset: 18px 0 22px;
    border: 1px solid rgba(69,216,196,.18);
    background:
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(135deg, rgba(12,24,22,.78), rgba(12,24,22,.22));
    background-size: 46px 46px, 46px 46px, 100% 100%;
    border-radius: 8px;
    transform: perspective(900px) rotateY(-7deg) rotateX(3deg);
    box-shadow: 0 34px 90px rgba(0,0,0,.38);
}
.hero-command-center::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0 44%, rgba(69,216,196,.22) 50%, transparent 56%),
        linear-gradient(160deg, transparent 0 18%, rgba(255,206,58,.14) 34%, transparent 54%);
    border-radius: 8px;
    mix-blend-mode: screen;
    opacity: .74;
    pointer-events: none;
}
.hero-command-center:hover .browser-shell {
    transform: perspective(900px) rotateY(-4deg) rotateX(2deg) translateZ(54px) translateY(-4px);
}
.browser-shell {
    position: absolute;
    inset: 50px 24px 82px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: rgba(251,252,248,.92);
    box-shadow:
        0 34px 80px rgba(0,0,0,.32),
        inset 0 1px 0 rgba(255,255,255,.72);
    overflow: hidden;
    transform: perspective(900px) rotateY(-7deg) rotateX(3deg) translateZ(42px);
    transition: transform .42s cubic-bezier(.2,.8,.2,1), box-shadow .42s ease;
    animation: browserFloat 7s ease-in-out infinite;
}
.browser-top {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    color: rgba(17,24,39,.62);
    border-bottom: 1px solid rgba(17,24,39,.08);
    background: rgba(255,255,255,.8);
}
.browser-top span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--coral);
}
.browser-top span:nth-child(2) { background: var(--yellow); }
.browser-top span:nth-child(3) { background: var(--green-light); }
.browser-top strong {
    margin-left: 8px;
    font-size: .74rem;
    font-weight: 800;
}
.browser-canvas {
    position: relative;
    flex: 1;
    padding: 24px;
    background:
        linear-gradient(90deg, rgba(11,107,91,.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(11,107,91,.06) 1px, transparent 1px),
        linear-gradient(180deg, #fbfcf8, #eef5ef);
    background-size: 34px 34px, 34px 34px, 100% 100%;
}
.preview-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
}
.preview-nav span {
    height: 8px;
    width: 54px;
    border-radius: 99px;
    background: rgba(17,24,39,.12);
}
.preview-nav span:first-child {
    width: 96px;
    background: rgba(11,107,91,.24);
}
.preview-hero-block {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
    min-height: 132px;
    padding: 22px;
    border-radius: 8px;
    color: white;
    background:
        linear-gradient(135deg, rgba(17,24,39,.98), rgba(11,107,91,.94)),
        repeating-linear-gradient(90deg, transparent 0 24px, rgba(255,255,255,.08) 24px 25px);
    box-shadow: 0 18px 42px rgba(17,24,39,.2);
}
.preview-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 4px 9px;
    margin-bottom: 10px;
    border-radius: 99px;
    color: var(--cyan);
    background: rgba(69,216,196,.13);
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
}
.preview-hero-block strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.38rem;
    line-height: 1.05;
}
.preview-hero-block small {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.72);
    font-size: .78rem;
}
.preview-score {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background:
        conic-gradient(var(--yellow) 0 86%, rgba(255,255,255,.18) 86% 100%);
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 900;
    box-shadow: inset 0 0 0 10px rgba(255,255,255,.72);
}
.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 18px;
}
.preview-grid span {
    min-height: 74px;
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.72));
    box-shadow: 0 8px 20px rgba(17,24,39,.06);
}
.preview-chart {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    height: 72px;
    display: flex;
    align-items: end;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255,255,255,.68);
    border: 1px solid rgba(17,24,39,.08);
}
.preview-chart span {
    flex: 1;
    border-radius: 5px 5px 2px 2px;
    background: linear-gradient(180deg, var(--cyan), var(--green));
    transform-origin: bottom;
    animation: chartPulse 3.8s ease-in-out infinite;
}
.preview-chart span:nth-child(2) { animation-delay: .16s; }
.preview-chart span:nth-child(3) { animation-delay: .32s; }
.preview-chart span:nth-child(4) { animation-delay: .48s; }
.preview-chart span:nth-child(5) { animation-delay: .64s; }
.premium-proof {
    position: relative;
    padding: 0 0 38px;
    margin-top: -38px;
    z-index: 4;
}
.premium-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.premium-proof-card {
    --mx: 50%;
    --my: 50%;
    position: relative;
    overflow: hidden;
    min-height: 178px;
    padding: 22px;
    border-radius: 8px;
    border: 1px solid rgba(17,24,39,.08);
    color: var(--ink);
    background:
        linear-gradient(135deg, rgba(69,216,196,.12), transparent 46%),
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.88));
    box-shadow: 0 18px 48px rgba(17,24,39,.1);
}
.premium-proof-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(69,216,196,.62), rgba(255,206,58,.6), rgba(255,107,74,.38));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .78;
    pointer-events: none;
}
.premium-proof-card::after,
.segment-card::after,
.seo-copy-block::before,
.dept-feature::after,
.ville-local-needs article::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.9), transparent 34%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}
.premium-proof-card:hover::after,
.segment-card:hover::after,
.seo-copy-block:hover::before,
.dept-feature:hover::after,
.ville-local-needs article:hover::after {
    opacity: .48;
}
.premium-proof-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 8px;
    color: var(--green);
    background: rgba(69,216,196,.14);
}
.premium-proof-card h2 {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 1.06rem;
}
.premium-proof-card p {
    color: var(--gray-600);
    font-size: .9rem;
    line-height: 1.58;
}
.premium-proof-card:hover,
.segment-card:hover,
.popular-city-card:hover,
.blog-card:hover {
    box-shadow: 0 24px 72px rgba(17,24,39,.13);
}
.content-visual-section {
    padding: 70px 0;
    background:
        linear-gradient(180deg, rgba(245, 248, 246, .7), rgba(255, 255, 255, 0));
}
.content-visual-card {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 36px;
    align-items: center;
}
.content-visual-media {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(26, 71, 42, .12);
    box-shadow: var(--shadow-lg);
    background: var(--green-dark);
}
.content-visual-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1200 / 760;
    object-fit: cover;
}
.content-visual-copy {
    padding: 8px 0;
}
.content-visual-copy h2 {
    font-size: clamp(1.6rem, 3vw, 2.45rem);
    line-height: 1.06;
    color: var(--gray-800);
    margin: 12px 0 14px;
}
.content-visual-copy p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}
.content-visual-list {
    display: grid;
    gap: 9px;
}
.content-visual-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    font-weight: 700;
    font-size: .92rem;
}
.content-visual-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 5px rgba(244, 196, 48, .18);
    flex-shrink: 0;
}
.service-planner-section,
.region-mapper-section {
    background:
        radial-gradient(circle at 16% 18%, rgba(244, 196, 48, .14), transparent 28%),
        linear-gradient(135deg, #f6f8f5 0%, #ffffff 58%, #eef5f0 100%);
}
.service-planner-card,
.region-mapper-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(26, 71, 42, .14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.86)),
        linear-gradient(90deg, rgba(26,71,42,.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(26,71,42,.05) 1px, transparent 1px);
    background-size: 100% 100%, 34px 34px, 34px 34px;
    box-shadow: 0 28px 90px rgba(17, 24, 39, .12);
}
.service-planner-card::before,
.region-mapper-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(244,196,48,.18), transparent 34%);
    opacity: 0;
    transition: opacity .22s ease;
    pointer-events: none;
}
.service-planner-card:hover::before,
.region-mapper-card:hover::before { opacity: 1; }
.service-planner-card {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    padding: clamp(24px, 4vw, 42px);
}
.service-planner-main,
.service-planner-panel,
.region-mapper-copy,
.region-map-board {
    position: relative;
    z-index: 1;
}
.service-planner-main h2,
.region-mapper-copy h2 {
    max-width: 760px;
    font-size: clamp(1.75rem, 3.4vw, 3rem);
    line-height: 1.03;
    font-weight: 900;
    color: var(--gray-900);
    margin: 12px 0 16px;
    text-wrap: balance;
}
.service-planner-main > p,
.region-mapper-copy > p {
    max-width: 730px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 26px;
}
.service-flow-board {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.service-flow-step {
    position: relative;
    min-height: 220px;
    padding: 18px;
    border: 1px solid rgba(26, 71, 42, .12);
    border-radius: 8px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 16px 42px rgba(17, 24, 39, .07);
}
.service-flow-step::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--yellow));
    transform: scaleX(.42);
    transform-origin: left;
    transition: transform .22s ease;
}
.service-flow-step:hover::after { transform: scaleX(1); }
.service-flow-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}
.service-flow-index {
    color: var(--gray-400);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .08em;
}
.service-flow-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--green-dark);
    background: rgba(244, 196, 48, .22);
}
.service-flow-icon svg { width: 18px; height: 18px; }
.service-flow-step h3 {
    color: var(--gray-900);
    font-size: 1.02rem;
    line-height: 1.18;
    font-weight: 900;
    margin-bottom: 10px;
}
.service-flow-step p {
    color: var(--gray-600);
    font-size: .9rem;
    line-height: 1.62;
}
.service-planner-panel {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    min-height: 100%;
    padding: 24px;
    border-radius: 8px;
    background: linear-gradient(160deg, var(--green-dark), #0d2e25);
    color: white;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.13);
}
.service-planner-panel-head {
    display: grid;
    gap: 7px;
}
.service-planner-panel-head span {
    color: rgba(255,255,255,.62);
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.service-planner-panel-head strong {
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    line-height: 1.08;
}
.service-signal-list {
    display: grid;
    gap: 12px;
}
.service-signal-list li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 11px;
    align-items: start;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,.12);
}
.service-signal-list span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(244,196,48,.18);
    color: var(--yellow);
}
.service-signal-list svg { width: 16px; height: 16px; }
.service-signal-list p {
    color: rgba(255,255,255,.82);
    font-size: .9rem;
    line-height: 1.48;
}
.region-mapper-card {
    grid-template-columns: minmax(280px, .65fr) minmax(0, 1fr);
    padding: clamp(24px, 4vw, 40px);
    align-items: center;
}
.region-mapper-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}
.region-mapper-stats div {
    padding: 14px;
    border: 1px solid rgba(26,71,42,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.74);
}
.region-mapper-stats strong {
    display: block;
    color: var(--green-dark);
    font-size: 1.55rem;
    line-height: 1;
    font-weight: 900;
}
.region-mapper-stats span {
    display: block;
    margin-top: 7px;
    color: var(--gray-500);
    font-size: .78rem;
    line-height: 1.35;
    font-weight: 800;
}
.region-map-board {
    display: grid;
    grid-template-columns: minmax(180px, .9fr) 34px minmax(180px, 1fr) 34px minmax(180px, 1fr);
    gap: 10px;
    align-items: stretch;
}
.region-map-column {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(26,71,42,.13);
    border-radius: 8px;
    background: rgba(255,255,255,.8);
    box-shadow: 0 15px 45px rgba(17,24,39,.07);
}
.region-map-column-main {
    justify-content: center;
    background: linear-gradient(160deg, var(--green-dark), var(--green));
    color: white;
}
.region-map-column span {
    color: var(--green);
    font-size: .73rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.region-map-column-main span { color: rgba(255,255,255,.68); }
.region-map-column strong {
    color: var(--gray-900);
    font-size: 1.25rem;
    line-height: 1.1;
    font-weight: 900;
}
.region-map-column-main strong { color: white; font-size: clamp(1.45rem, 2.4vw, 2rem); }
.region-map-column p {
    color: rgba(255,255,255,.74);
    line-height: 1.55;
    font-size: .9rem;
}
.region-map-column a {
    display: block;
    padding: 11px 12px;
    border: 1px solid rgba(26,71,42,.1);
    border-radius: 8px;
    background: rgba(246,248,245,.82);
    color: var(--gray-800);
    font-size: .88rem;
    font-weight: 800;
}
.region-map-column a:hover {
    border-color: rgba(26,71,42,.25);
    color: var(--green-dark);
    transform: translateY(-1px);
}
.region-map-arrow {
    display: grid;
    place-items: center;
    color: var(--green);
}
.region-map-arrow svg { width: 24px; height: 24px; }
.segments {
    background:
        linear-gradient(90deg, rgba(11,107,91,.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(11,107,91,.04) 1px, transparent 1px),
        #f4f7f2;
    background-size: 58px 58px, 58px 58px, 100% 100%;
}
.segment-card {
    position: relative;
    overflow: hidden;
}
.segment-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(69,216,196,.16), transparent 42%),
        linear-gradient(315deg, rgba(255,206,58,.12), transparent 38%);
    opacity: 0;
    transition: opacity .28s ease;
}
.segment-card:hover::before {
    opacity: 1;
}
.segment-card > * {
    position: relative;
    z-index: 1;
}
.segment-icon {
    box-shadow: inset 0 -12px 20px rgba(11,107,91,.12), 0 12px 28px rgba(11,107,91,.1);
}
.pillar-aside,
.blog-card,
.faq-item {
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
}
.popular-city-card {
    position: relative;
    overflow: hidden;
}
.popular-city-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--cyan), var(--yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s ease;
}
.popular-city-card:hover::after {
    transform: scaleX(1);
}
.cta-banner {
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(17,24,39,.08) 0 1px, transparent 1px 58px),
        linear-gradient(110deg, transparent 0 42%, rgba(255,255,255,.28) 50%, transparent 58%);
    opacity: .52;
    pointer-events: none;
}
.cta-banner .container {
    position: relative;
    z-index: 1;
}

/* Production polish inspired by premium studio sites, without hiding SEO content. */
.seo-longform-main {
    counter-reset: seoBlock;
}
.seo-copy-block {
    counter-increment: seoBlock;
    position: relative;
    padding: clamp(24px, 3.4vw, 34px);
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,250,246,.92)),
        linear-gradient(90deg, rgba(11,107,91,.06) 1px, transparent 1px);
    background-size: 100% 100%, 38px 38px;
    box-shadow: 0 16px 48px rgba(17,24,39,.055);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.seo-copy-block::before {
    opacity: 0;
}
.seo-copy-block:hover {
    transform: translateY(-2px);
    border-color: rgba(11,107,91,.22);
    box-shadow: 0 24px 70px rgba(17,24,39,.09);
}
.seo-copy-block h3 {
    padding-right: 58px;
}
.seo-copy-block h3::after {
    content: counter(seoBlock, decimal-leading-zero);
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 28px;
    border: 1px solid rgba(11,107,91,.14);
    border-radius: 999px;
    color: var(--green);
    background: rgba(69,216,196,.12);
    font-size: .72rem;
    font-family: var(--font-head);
    font-weight: 900;
}
.seo-context-links a,
.segment-card,
.service-card-ville,
.popular-city-card {
    will-change: transform;
}
.seo-context-links a:hover strong::after,
.segment-card:hover .segment-icon,
.service-card-ville:hover .service-icon {
    transform: translateX(2px) rotate(-2deg);
}
.seo-context-links strong::after,
.segment-icon,
.service-icon {
    transition: transform .22s ease;
}
.page-hero .breadcrumb,
.ville-hero .breadcrumb,
.dept-hero .breadcrumb {
    backdrop-filter: blur(10px);
}
.dept-feature,
.ville-local-needs article,
.premium-proof-card {
    position: relative;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.dept-feature:hover,
.ville-local-needs article:hover,
.premium-proof-card:hover {
    transform: translateY(-2px);
    border-color: rgba(11,107,91,.24);
    box-shadow: 0 18px 54px rgba(17,24,39,.075);
}
@keyframes chartPulse {
    0%, 100% { transform: scaleY(.78); opacity: .84; }
    50% { transform: scaleY(1); opacity: 1; }
}
@keyframes browserFloat {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -8px; }
}
@media (prefers-reduced-motion: reduce) {
    .cursor-halo,
    .scroll-progress {
        display: none;
    }
    .browser-shell {
        animation: none;
    }
    .preview-chart span,
    .home-hero .hero-actions .btn::after,
    .seo-copy-block,
    .seo-context-links a,
    .segment-card,
    .service-card-ville,
    .popular-city-card,
    .dept-feature,
    .ville-local-needs article,
    .premium-proof-card {
        animation: none;
        transition: none;
    }
    .seo-copy-block:hover,
    .seo-context-links a:hover,
    .segment-card:hover,
    .service-card-ville:hover,
    .popular-city-card:hover,
    .dept-feature:hover,
    .ville-local-needs article:hover,
    .premium-proof-card:hover {
        transform: none;
    }
}
@media (max-width: 1100px) {
    .home-hero .hero-layout {
        grid-template-columns: 1fr;
    }
    .hero-command-center {
        min-height: 380px;
        max-width: 620px;
        width: 100%;
    }
    .premium-proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .content-visual-card {
        grid-template-columns: 1fr;
    }
    .content-visual-copy {
        max-width: 720px;
    }
}
@media (max-width: 768px) {
    .home-hero::after {
        background:
            linear-gradient(90deg, rgba(69,216,196,.08) 1px, transparent 1px),
            linear-gradient(180deg, rgba(69,216,196,.07) 1px, transparent 1px),
            linear-gradient(180deg, transparent, rgba(11,18,16,.76));
        background-size: 46px 46px, 46px 46px, 100% 100%;
    }
    .hero-command-center {
        display: none;
    }
    .premium-proof {
        margin-top: 0;
        padding: 28px 0 12px;
        background: #f4f7f2;
    }
    .premium-proof-grid {
        grid-template-columns: 1fr;
    }
    .premium-proof-card {
        min-height: 0;
    }
    .content-visual-section {
        padding: 46px 0;
    }
    .content-visual-card {
        gap: 22px;
    }
    .content-visual-copy h2 {
        font-size: clamp(1.55rem, 8vw, 2.15rem);
    }
}

@media (max-width: 1100px) {
    .service-planner-card,
    .region-mapper-card {
        grid-template-columns: 1fr;
    }
    .service-flow-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .service-planner-panel {
        min-height: auto;
    }
    .region-map-board {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .region-map-arrow {
        min-height: 22px;
        transform: rotate(90deg);
    }
    .region-map-column {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .service-planner-card,
    .region-mapper-card {
        padding: 20px;
    }
    .service-flow-board {
        grid-template-columns: 1fr;
    }
    .service-flow-step {
        min-height: auto;
    }
    .service-planner-panel {
        padding: 20px;
    }
    .region-mapper-stats {
        grid-template-columns: 1fr;
    }
    .region-map-column {
        padding: 15px;
    }
}

/* Services mega menu */
.mega-service-intro,
.mega-service-group,
.mega-side-card,
.mega-service-cta {
    border-radius: 8px;
}

.mega-service-intro {
    background:
        linear-gradient(145deg, rgba(17,24,39,.96), rgba(11,107,91,.94)),
        radial-gradient(circle at 84% 12%, rgba(255,206,58,.24), transparent 32%);
    color: white;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    min-height: 100%;
}

.mega-kicker {
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--yellow);
}

.mega-service-intro strong {
    color: white;
    font-family: var(--font-head);
    font-size: 1.28rem;
    line-height: 1.08;
}

.mega-service-intro p {
    color: rgba(255,255,255,.78);
    font-size: .88rem;
    line-height: 1.55;
}

.mega-intro-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: .84rem;
    font-weight: 800;
}

.mega-intro-link svg {
    width: 15px;
    height: 15px;
}

.mega-service-groups {
    min-width: 0;
}

.mega-service-group {
    background: rgba(247,248,245,.72);
    border: 1px solid rgba(17,24,39,.07);
    padding: 10px;
}

.mega-service-group .mega-title {
    margin: 0 0 8px;
    color: var(--green);
}

.mega-service-link {
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    border: 1px solid transparent;
}

.mega-service-link:hover {
    background: white;
    border-color: rgba(11,107,91,.16);
    box-shadow: 0 10px 28px rgba(17,24,39,.08);
    transform: translateY(-1px);
}

.mega-link-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(11,107,91,.08);
    color: var(--green);
}

.mega-link-icon svg {
    width: 17px;
    height: 17px;
}

.mega-link-copy {
    min-width: 0;
}

.mega-link-copy strong {
    display: block;
    color: var(--ink);
    font-size: .88rem;
    line-height: 1.18;
    margin-bottom: 4px;
}

.mega-link-copy small {
    display: block;
    color: var(--gray-500);
    font-size: .76rem;
    line-height: 1.35;
}

.mega-service-side {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.mega-side-card {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px 10px;
    padding: 12px;
    background: white;
    border: 1px solid rgba(17,24,39,.08);
    color: var(--ink);
}

.mega-side-card:hover {
    color: var(--green);
    border-color: rgba(11,107,91,.18);
    box-shadow: 0 12px 32px rgba(17,24,39,.08);
}

.mega-side-card span {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,206,58,.22);
    color: var(--green);
}

.mega-side-card svg {
    width: 17px;
    height: 17px;
}

.mega-side-card strong {
    font-size: .88rem;
    line-height: 1.2;
}

.mega-side-card small {
    color: var(--gray-500);
    font-size: .76rem;
    line-height: 1.35;
}

.mega-service-cta {
    margin-top: auto;
}

@media (min-width: 769px) {
    .main-nav {
        position: relative;
    }

    .nav-services {
        position: static;
    }

    .nav-services .mega-dropdown-services {
        left: auto;
        right: 0;
        transform: none;
        width: min(1080px, calc(100vw - 40px));
        min-width: 0;
        padding: 14px;
        gap: 14px;
        grid-template-columns: .82fr minmax(0, 1.6fr) .8fr;
        align-items: stretch;
    }

    .nav-services.open .mega-dropdown-services {
        display: grid;
    }

    .mega-service-groups {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

}

@media (hover: hover) and (min-width: 769px) {
    .nav-services:hover > .mega-dropdown-services {
        display: grid;
    }

    .has-dropdown:not(.nav-services):hover > .mega-dropdown {
        display: flex;
    }
}

@media (max-width: 980px) and (min-width: 769px) {
    .nav-services .mega-dropdown-services {
        grid-template-columns: 1fr 1.8fr;
        width: min(860px, calc(100vw - 28px));
    }

    .mega-service-side {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-services .mega-dropdown-services {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 10px;
        background: transparent;
    }

    .nav-services.open .mega-dropdown-services {
        display: grid !important;
    }

    .mega-service-intro {
        min-height: 0;
        padding: 16px;
    }

    .mega-service-groups {
        display: grid;
        gap: 10px;
    }

    .mega-service-group {
        padding: 10px;
    }

    .mega-service-link {
        min-height: 0;
    }

    .mega-service-side {
        display: grid;
        gap: 10px;
    }

    .mega-service-cta {
        display: none;
    }
}

/* API-backed enrichment blocks */
.market-enrichment-section .section-desc,
.service-signal-section .section-desc {
    max-width: 760px;
}

.market-insight-grid-dynamic {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    margin-bottom: 22px;
}

.market-insight-grid-dynamic .market-insight-card {
    min-height: 220px;
}

.market-insight-grid-dynamic .market-insight-number {
    font-size: clamp(1.7rem, 3vw, 2.55rem);
    overflow-wrap: anywhere;
}

.market-source-note {
    display: grid;
    gap: 6px;
    background: white;
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 8px;
    padding: 18px 20px;
    box-shadow: 0 10px 28px rgba(17,24,39,.06);
}

.market-source-note strong {
    color: var(--ink);
    font-family: var(--font-head);
    font-size: 1rem;
}

.market-source-note span {
    color: var(--green);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.market-source-note p {
    color: var(--gray-600);
    font-size: .9rem;
    line-height: 1.6;
    margin: 0;
}

.market-nearby-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.market-nearby-links a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(11,107,91,.08);
    color: var(--green);
    font-size: .82rem;
    font-weight: 800;
}

.market-nearby-links a:hover {
    background: var(--green);
    color: white;
}

@media (max-width: 768px) {
    .market-insight-grid-dynamic {
        grid-template-columns: 1fr;
    }

    .market-insight-grid-dynamic .market-insight-card {
        min-height: 0;
        padding: 24px;
    }
}
