/* ================================================================
   NEOSECURE - Serrurier Ixelles
   Premium green design system
   ================================================================ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
    -webkit-text-size-adjust: 100%;
}

:root {
    /* Brand greens */
    --green-900: #052e1c;
    --green-800: #0a3a26;
    --green-700: #14532d;
    --green-600: #166534;
    --green-500: #1f7a3f;
    --green-400: #2d9656;
    --green-300: #4ade80;
    --green-200: #86efac;
    --green-100: #d1fae5;
    --green-50:  #ecfdf5;

    /* Neutrals */
    --ink-900: #0a1410;
    --ink-800: #14241c;
    --ink-700: #1f3329;
    --ink-600: #2f4a3d;
    --ink-500: #5b7068;
    --ink-400: #8a9a93;
    --ink-300: #b8c4be;
    --ink-200: #dde4e0;
    --ink-100: #eef2f0;
    --ink-50:  #f7faf8;
    --white:   #ffffff;

    /* Accent — fresh emerald (monochromatic green pair) */
    --accent: #34d399;
    --accent-dark: #10b981;
    --accent-soft: #d1fae5;
    /* Gold reserved for star ratings only */
    --gold: #f59e0b;

    /* Semantic */
    --primary: var(--green-700);
    --primary-dark: var(--green-900);
    --primary-light: var(--green-500);
    --bg: var(--ink-50);
    --bg-alt: var(--white);
    --text: var(--ink-900);
    --text-soft: var(--ink-500);
    --border: var(--ink-200);

    /* Effects */
    --shadow-xs: 0 1px 2px rgba(5, 46, 28, 0.04);
    --shadow-sm: 0 2px 8px rgba(5, 46, 28, 0.06);
    --shadow-md: 0 8px 24px rgba(5, 46, 28, 0.08);
    --shadow-lg: 0 20px 48px rgba(5, 46, 28, 0.14);
    --shadow-xl: 0 32px 64px rgba(5, 46, 28, 0.18);
    --shadow-glow: 0 0 0 4px rgba(31, 122, 63, 0.18);

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-pill: 999px;

    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

button {
    font: inherit;
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary);
    color: var(--white);
    padding: 12px 20px;
    z-index: 9999;
    border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus {
    left: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', 'Inter', serif;
    font-weight: 700;
    color: var(--ink-900);
    line-height: 1.18;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.4rem, 5.2vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.85rem, 3.6vw, 2.6rem);
    font-weight: 800;
}

h3 {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

p {
    color: var(--text-soft);
}

strong {
    color: var(--ink-900);
    font-weight: 600;
}

/* ---------- Icons ---------- */
.ico {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: currentColor;
}
.ico-sm { width: 16px; height: 16px; }
.ico-md { width: 28px; height: 28px; }
.ico-lg { width: 32px; height: 32px; }
.ico-xl { width: 56px; height: 56px; }
.ico-plus {
    width: 20px;
    height: 20px;
    transition: transform var(--transition);
}
.ico-star {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

/* ---------- Top bar ---------- */
.topbar {
    background: var(--green-900);
    color: var(--green-100);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 24px;
    gap: 16px;
}

.topbar-left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
}
.topbar-link:hover {
    color: var(--white);
}

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(20, 83, 45, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 100%);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(20, 83, 45, 0.3);
}

.logo-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-wordmark strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ink-900);
    letter-spacing: -0.02em;
}
.logo-wordmark small {
    font-size: 0.72rem;
    color: var(--ink-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.logo-light .logo-wordmark strong {
    color: var(--white);
}
.logo-light .logo-wordmark small {
    color: var(--green-200);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    font-weight: 500;
    color: var(--ink-700);
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}
.nav a:hover {
    color: var(--primary);
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}
.nav a:hover::after {
    width: 100%;
}

/* ---------- Header actions & Hamburger ---------- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    z-index: 110;
}

.hamburger:hover {
    background: var(--green-50);
    border-color: var(--green-300);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink-900);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}

.hamburger.is-open {
    background: var(--green-700);
    border-color: var(--green-700);
}

.hamburger.is-open .hamburger-line {
    background: var(--white);
}

.hamburger.is-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobile menu (off-canvas) ---------- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(380px, 92vw);
    background: var(--white);
    z-index: 105;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(5, 46, 28, 0.18);
    visibility: hidden;
}

.mobile-menu.is-open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 46, 28, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 104;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    padding: 96px 24px 32px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    color: var(--ink-800);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.mobile-nav-link .ico {
    color: var(--green-600);
    flex-shrink: 0;
}

.mobile-nav-link span {
    flex: 1;
}

.mobile-nav-arrow {
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition);
    color: var(--green-600);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    background: var(--green-50);
    color: var(--green-800);
    border-color: var(--green-200);
}

.mobile-nav-link:hover .mobile-nav-arrow {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-cta {
    margin-top: auto;
    padding: 24px;
    background: linear-gradient(160deg, var(--green-50) 0%, var(--ink-50) 100%);
    border-radius: 18px;
    border: 1px solid var(--green-100);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-700);
    margin: 0 0 4px;
}

.btn-block {
    width: 100%;
}

/* prevent body scroll when menu open */
body.menu-open {
    overflow: hidden;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1.2;
    text-align: center;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 1.05rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 100%);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(20, 83, 45, 0.28);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(20, 83, 45, 0.4);
}

.btn-call {
    background: var(--accent);
    color: var(--green-900);
    box-shadow: 0 6px 16px rgba(52, 211, 153, 0.35);
}
.btn-call:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(52, 211, 153, 0.5);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.6);
    color: var(--primary);
    border-color: rgba(20, 83, 45, 0.18);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--ink-50) 0%, var(--green-50) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -300px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(31, 122, 63, 0.18) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(20, 83, 45, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 83, 45, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at top right, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at top right, black 30%, transparent 70%);
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 720px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--green-200);
    color: var(--green-700);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.badge .dot {
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(31, 122, 63, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(31, 122, 63, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(31, 122, 63, 0); }
}

.hero h1 {
    margin-bottom: 24px;
}

.highlight {
    color: var(--primary);
    background: linear-gradient(120deg, var(--green-700) 0%, var(--green-500) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
.highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(74, 222, 128, 0.35);
    z-index: -1;
    border-radius: 4px;
}

.hero-text {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--ink-700);
    margin-bottom: 36px;
    max-width: 640px;
}
.hero-text strong {
    color: var(--green-700);
}

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

.hero-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    padding-top: 32px;
    border-top: 1px solid var(--ink-200);
}

.hero-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--ink-700);
    font-weight: 500;
}
.hero-trust .ico {
    color: var(--green-600);
    background: var(--green-100);
    border-radius: 50%;
    padding: 3px;
    width: 22px;
    height: 22px;
}

/* Hero card */
.hero-card {
    background: linear-gradient(160deg, var(--green-700) 0%, var(--green-900) 100%);
    color: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.25), transparent 70%);
}

.hero-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.18), transparent 70%);
}

.hero-card > * {
    position: relative;
}

.hero-card-head {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--green-100);
    margin-bottom: 18px;
}

.status-online {
    width: 8px;
    height: 8px;
    background: var(--green-300);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.3);
    animation: pulse 2s infinite;
}

.hero-card-title {
    color: var(--white);
    font-size: 1.45rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.hero-card-num {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    margin-bottom: 24px;
}
.hero-card-num .ico {
    color: var(--accent);
    width: 26px;
    height: 26px;
}
.hero-card-num a {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
}

.hero-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-card-stats > div {
    display: flex;
    flex-direction: column;
}
.hero-card-stats strong {
    font-size: 1.5rem;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    line-height: 1.1;
}
.hero-card-stats strong small {
    font-size: 0.7em;
    color: var(--green-200);
    margin-left: 2px;
    font-weight: 600;
}
.hero-card-stats span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

/* ---------- Trust strip ---------- */
.trust-strip {
    background: var(--white);
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-item .ico {
    color: var(--green-600);
    background: var(--green-50);
    padding: 10px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    flex-shrink: 0;
}

.trust-item div {
    display: flex;
    flex-direction: column;
}
.trust-item strong {
    font-size: 1rem;
    color: var(--ink-900);
}
.trust-item span {
    font-size: 0.85rem;
    color: var(--ink-500);
}

/* ---------- Sections base ---------- */
.section {
    padding: 100px 0;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green-600);
    margin-bottom: 14px;
    padding: 6px 14px;
    background: var(--green-50);
    border-radius: var(--radius-pill);
}
.eyebrow-light {
    color: var(--accent);
    background: rgba(52, 211, 153, 0.16);
}

.section-head h2 {
    margin-bottom: 18px;
}

.section-head p {
    font-size: 1.08rem;
    color: var(--ink-500);
    line-height: 1.6;
}

.section-head-light h2 {
    color: var(--white);
}
.section-head-light p {
    color: rgba(255, 255, 255, 0.75);
}

/* ---------- Emergency ---------- */
.section-emergency {
    background: var(--white);
    padding: 100px 0;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.emergency-card {
    padding: 32px 24px;
    background: var(--ink-50);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.emergency-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-50) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition);
}

.emergency-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-300);
}
.emergency-card:hover::before {
    opacity: 1;
}

.emergency-card > * {
    position: relative;
}

.emergency-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--green-600), var(--green-800));
    color: var(--white);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 6px 14px rgba(20, 83, 45, 0.25);
}

.emergency-card h3 {
    margin-bottom: 8px;
}

.emergency-card p {
    font-size: 0.94rem;
    line-height: 1.55;
}

.emergency-card-accent {
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
    color: var(--white);
    border-color: transparent;
}
.emergency-card-accent::before { display: none; }
.emergency-card-accent h3 { color: var(--white); }
.emergency-card-accent p { color: rgba(255, 255, 255, 0.78); }
.emergency-card-accent .emergency-icon {
    background: var(--accent);
    color: var(--green-900);
}

.emergency-cta {
    text-align: center;
    padding: 36px 24px;
    background: var(--green-50);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--green-300);
}
.emergency-cta p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: var(--ink-700);
    font-weight: 500;
}

/* ---------- Services ---------- */
.section-services {
    background: linear-gradient(180deg, var(--ink-50) 0%, var(--white) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 36px 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green-500), var(--green-700));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--green-50);
    color: var(--green-700);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--green-700);
    color: var(--white);
    transform: rotate(-6deg) scale(1.05);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 18px;
    line-height: 1.6;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--ink-700);
    font-weight: 500;
}
.service-list .ico {
    color: var(--green-600);
}

/* ---------- Why ---------- */
.section-why {
    background: linear-gradient(160deg, var(--green-800) 0%, var(--green-900) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-why::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.15), transparent 70%);
    border-radius: 50%;
}

.section-why::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.1), transparent 70%);
    border-radius: 50%;
}

.section-why .container {
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    padding: 36px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: var(--accent);
}

.why-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.why-card h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

/* ---------- Process ---------- */
.section-process {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step;
    position: relative;
}

.process-step {
    padding: 36px 28px;
    background: var(--ink-50);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all var(--transition);
}

.process-step:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--green-100);
    line-height: 1;
    letter-spacing: -0.04em;
}

.process-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--green-600), var(--green-800));
    color: var(--white);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.process-step h3 {
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.process-step p {
    font-size: 0.92rem;
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

/* ---------- Pricing ---------- */
.section-pricing {
    background: var(--ink-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.pricing-card {
    padding: 36px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-300);
}

.pricing-card h3 {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: var(--ink-700);
}

.price {
    margin-bottom: 18px;
}
.price .from {
    display: block;
    font-size: 0.78rem;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.price strong {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.04em;
    line-height: 1;
}
.price strong small {
    font-size: 0.5em;
    color: var(--ink-500);
    margin-left: 2px;
    font-weight: 600;
}

.pricing-card p {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 18px;
    min-height: 60px;
}

.pricing-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.pricing-card li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--ink-700);
}
.pricing-card .ico {
    color: var(--green-600);
}

.pricing-featured {
    background: linear-gradient(160deg, var(--green-700) 0%, var(--green-900) 100%);
    border-color: transparent;
    color: var(--white);
    transform: scale(1.04);
}
.pricing-featured h3 { color: var(--green-200); }
.pricing-featured .price strong { color: var(--white); }
.pricing-featured .price strong small { color: var(--green-200); }
.pricing-featured .price .from { color: var(--accent); }
.pricing-featured p { color: rgba(255, 255, 255, 0.78); }
.pricing-featured ul { border-top-color: rgba(255, 255, 255, 0.15); }
.pricing-featured li { color: rgba(255, 255, 255, 0.85); }
.pricing-featured .ico { color: var(--accent); }

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--green-900);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pricing-note {
    text-align: center;
    color: var(--ink-500);
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    margin: 0 auto;
    border: 1px solid var(--border);
    width: max-content;
    max-width: 100%;
    display: flex;
    justify-content: center;
}
.pricing-note .ico {
    color: var(--green-600);
}

/* ---------- Zones ---------- */
.section-zones {
    background: var(--white);
}

.zones-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: linear-gradient(135deg, var(--green-50) 0%, var(--ink-50) 100%);
    padding: 48px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--green-100);
}

.zones-main h3,
.zones-aside h3 {
    margin-bottom: 14px;
    color: var(--ink-900);
}

.zones-main p,
.zones-aside p {
    margin-bottom: 22px;
    font-size: 0.95rem;
}

.zones-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.zones-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-700);
    font-size: 0.92rem;
    font-weight: 500;
}
.zones-bullets .ico {
    color: var(--green-600);
    flex-shrink: 0;
}

.zones-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    color: var(--ink-700);
    font-weight: 500;
    font-size: 0.85rem;
    transition: all var(--transition);
}
.tag:hover {
    background: var(--green-700);
    color: var(--white);
    border-color: var(--green-700);
    transform: translateY(-2px);
}

/* ---------- Reviews ---------- */
.section-reviews {
    background: var(--ink-50);
}

.rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.rating-summary strong {
    font-size: 1.3rem;
    color: var(--ink-900);
}
.rating-summary span:last-child {
    color: var(--ink-500);
    font-size: 0.95rem;
}
.stars {
    display: inline-flex;
    gap: 3px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    padding: 30px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-200);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.review-card p {
    color: var(--ink-700);
    font-size: 0.97rem;
    line-height: 1.6;
    margin-bottom: 18px;
    font-style: italic;
}

.review-card footer {
    display: flex;
    flex-direction: column;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.review-card footer strong {
    color: var(--ink-900);
    font-size: 0.95rem;
}
.review-card footer span {
    color: var(--ink-500);
    font-size: 0.82rem;
}

/* ---------- About ---------- */
.section-about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .eyebrow {
    margin-bottom: 16px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--ink-700);
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-800);
    font-weight: 500;
}
.about-list .ico {
    color: var(--white);
    background: var(--green-600);
    border-radius: 50%;
    padding: 4px;
    width: 22px;
    height: 22px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-stat {
    padding: 30px 24px;
    background: linear-gradient(135deg, var(--green-50) 0%, var(--white) 100%);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
}

.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-300);
}

.about-stat .ico {
    color: var(--green-700);
    margin: 0 auto 12px;
}
.about-stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.03em;
}
.about-stat span {
    display: block;
    color: var(--ink-500);
    font-size: 0.85rem;
    margin-top: 6px;
    font-weight: 500;
}

/* ---------- FAQ ---------- */
.section-faq {
    background: linear-gradient(180deg, var(--white) 0%, var(--ink-50) 100%);
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item[open] {
    border-color: var(--green-300);
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: var(--ink-900);
    font-size: 1.02rem;
    transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
    color: var(--primary);
}

.faq-item[open] summary {
    color: var(--primary);
    border-bottom: 1px solid var(--border);
}

.faq-item summary .ico-plus {
    color: var(--green-600);
    background: var(--green-50);
    border-radius: 50%;
    padding: 4px;
    width: 28px;
    height: 28px;
    transition: transform var(--transition);
}
.faq-item[open] summary .ico-plus {
    transform: rotate(45deg);
}

.faq-body {
    padding: 22px 26px;
}
.faq-body p {
    color: var(--ink-700);
    line-height: 1.7;
    font-size: 0.97rem;
}

/* ---------- CTA ---------- */
.section-cta {
    padding: 80px 0;
    background: var(--ink-50);
}

.cta-card {
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
    color: var(--white);
    padding: 70px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.2), transparent 70%);
    border-radius: 50%;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.18), transparent 70%);
    border-radius: 50%;
}

.cta-card > * {
    position: relative;
}

.cta-icon {
    width: 96px;
    height: 96px;
    background: var(--accent);
    color: var(--green-900);
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 14px 32px rgba(52, 211, 153, 0.4);
    transform: rotate(-6deg);
}

.cta-card h2 {
    color: var(--white);
    margin-bottom: 16px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.section-contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.contact-card {
    padding: 36px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
    display: block;
    position: relative;
    overflow: hidden;
}

a.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-300);
}

a.contact-card:hover .contact-icon {
    background: var(--green-700);
    color: var(--white);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: var(--green-50);
    color: var(--green-700);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all var(--transition);
}

.contact-card h3 {
    font-size: 0.85rem;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.contact-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 6px;
    word-break: break-word;
    letter-spacing: -0.01em;
}

.contact-meta {
    display: block;
    color: var(--ink-500);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green-600);
    font-weight: 600;
    font-size: 0.9rem;
}
a.contact-card .contact-link .ico {
    transition: transform var(--transition);
}
a.contact-card:hover .contact-link .ico {
    transform: translateX(4px);
}

.contact-card-static .contact-link {
    color: var(--ink-500);
    cursor: default;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--green-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 28px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-500), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-col p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    color: var(--accent);
    font-size: 0.78rem;
    margin-bottom: 18px;
    letter-spacing: 0.1em;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.93rem;
    transition: color var(--transition);
}
.footer-col a:hover {
    color: var(--white);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.93rem;
}
.footer-contact .ico {
    color: var(--green-300);
    flex-shrink: 0;
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 14px;
    align-items: center;
}
.footer-legal a:hover { color: var(--white); }
.footer-legal span { color: rgba(255, 255, 255, 0.3); }

/* ---------- Floating call ---------- */
.floating-call {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-600), var(--green-800));
    color: var(--white);
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(20, 83, 45, 0.4);
    z-index: 90;
    transition: transform var(--transition);
}

.floating-call:hover {
    transform: scale(1.08);
}

.floating-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--green-400);
    animation: floatpulse 2s infinite;
}
@keyframes floatpulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .services-grid,
    .why-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .emergency-grid,
    .pricing-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-card {
        max-width: 460px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 980px) {
    .topbar-inner {
        flex-direction: column;
        gap: 6px;
        font-size: 0.78rem;
    }

    .nav {
        display: none;
    }

    .hamburger {
        display: inline-flex;
    }

    .header-inner {
        height: 70px;
    }

    .btn-call span {
        display: none;
    }

    .btn-call {
        padding: 12px;
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .hero {
        padding: 50px 0 70px;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 0;
    }

    .zones-layout {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }

    .zones-bullets {
        grid-template-columns: 1fr;
    }

    .pricing-featured {
        transform: none;
    }

    .cta-card {
        padding: 50px 24px;
    }

    .floating-call {
        display: inline-flex;
    }
}

@media (max-width: 640px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .container { padding: 0 18px; }

    .services-grid,
    .why-grid,
    .reviews-grid,
    .emergency-grid,
    .pricing-grid,
    .contact-grid,
    .process-steps,
    .trust-inner,
    .about-stats,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-card-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .hero-card-stats strong { font-size: 1.2rem; }

    .hero-actions .btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .pricing-featured { transform: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ================================================================
   EXTENDED SECTIONS
   ================================================================ */

/* ---------- Stats sécurité ---------- */
.section-stats {
    background: var(--white);
    padding: 100px 0;
}

.stats-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.stats-content h2 {
    margin: 16px 0 20px;
}
.stats-content p {
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--ink-700);
}
.stats-content .btn {
    margin-top: 12px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.stat-card {
    padding: 30px 26px;
    background: linear-gradient(160deg, var(--green-50) 0%, var(--white) 100%);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-300);
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 14px;
}

.stat-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.stat-card p {
    font-size: 0.9rem;
    line-height: 1.55;
}

.stat-card-accent {
    background: linear-gradient(160deg, var(--green-700) 0%, var(--green-900) 100%);
    border-color: transparent;
    color: var(--white);
}
.stat-card-accent .stat-value { color: var(--accent); }
.stat-card-accent h3 { color: var(--white); }
.stat-card-accent p { color: rgba(255, 255, 255, 0.78); }

/* ---------- Brands ---------- */
.section-brands {
    background: var(--white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.brand-card {
    padding: 32px 28px;
    background: var(--ink-50);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.18), transparent 70%);
    transform: translate(30px, -30px);
}

.brand-card:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-300);
}

.brand-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 4px;
    color: var(--primary);
}

.brand-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--green-50);
    color: var(--green-700);
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.brand-card > p:last-child {
    font-size: 0.94rem;
    line-height: 1.6;
}

/* ---------- Compare table ---------- */
.section-compare {
    background: var(--ink-50);
}

.compare-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 1fr;
    gap: 20px;
    padding: 22px 28px;
    border-bottom: 1px solid var(--border);
    align-items: center;
}
.compare-row:last-child { border-bottom: none; }

.compare-head {
    background: linear-gradient(135deg, var(--green-700), var(--green-800));
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.compare-row:not(.compare-head):hover {
    background: var(--green-50);
}

.compare-row strong {
    display: block;
    font-size: 1rem;
    color: var(--ink-900);
    margin-bottom: 2px;
}
.compare-row span:not(.level) {
    font-size: 0.85rem;
    color: var(--ink-500);
}

.compare-row-highlight {
    background: var(--green-50);
    position: relative;
}
.compare-row-highlight::before {
    content: 'Recommandé';
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    background: var(--accent);
    color: var(--green-900);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.level {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 600;
}
.level-1 { background: #fee2e2; color: #991b1b; }
.level-2 { background: #fef3c7; color: #92400e; }
.level-3 { background: var(--accent-soft); color: var(--green-800); }
.level-4 { background: var(--green-700); color: var(--white); }

.compare-note {
    text-align: center;
    margin-top: 28px;
    color: var(--ink-500);
    font-size: 0.95rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- HowTo / Prevention / Quartiers / Pros / Charte / Certif / Glossary ---------- */
.section-howto {
    background: var(--white);
}

.howto-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.howto-aside {
    background: linear-gradient(160deg, var(--green-700) 0%, var(--green-900) 100%);
    color: var(--white);
    padding: 36px 30px;
    border-radius: var(--radius-xl);
    position: sticky;
    top: 100px;
}
.howto-aside h3 {
    color: var(--white);
    margin-bottom: 14px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}
.howto-aside p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}
.howto-aside .btn {
    width: 100%;
}

.howto-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    counter-reset: howto;
}

.howto-step {
    display: flex;
    gap: 22px;
    padding: 26px;
    background: var(--ink-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--green-600);
    counter-increment: howto;
    transition: all var(--transition);
}

.howto-step:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.howto-step::before {
    content: counter(howto, decimal-leading-zero);
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--green-300);
    letter-spacing: -0.04em;
    line-height: 1;
    min-width: 60px;
    flex-shrink: 0;
}
.howto-step h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}
.howto-step p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------- Prevention ---------- */
.section-prevention {
    background: linear-gradient(180deg, var(--ink-50) 0%, var(--white) 100%);
}

.prevention-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.prevention-card {
    padding: 26px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.prevention-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-300);
}

.prevention-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--green-100);
    color: var(--green-700);
    border-radius: 50%;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    margin-bottom: 14px;
}

.prevention-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.prevention-card p {
    font-size: 0.88rem;
    line-height: 1.55;
}

/* ---------- Quartiers ---------- */
.section-quartiers {
    background: var(--white);
}

.quartiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.quartier-card {
    padding: 28px 26px;
    background: linear-gradient(160deg, var(--white) 0%, var(--green-50) 100%);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.quartier-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-400);
}

.quartier-card .ico {
    color: var(--green-600);
    margin-bottom: 14px;
}

.quartier-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.quartier-card p {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 14px;
}

.quartier-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid var(--green-100);
    font-size: 0.82rem;
    color: var(--ink-500);
}
.quartier-meta strong {
    color: var(--green-700);
}

/* ---------- Professionnels ---------- */
.section-pros {
    background: linear-gradient(180deg, var(--white) 0%, var(--ink-50) 100%);
}

.pros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.pro-card {
    padding: 30px 26px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    text-align: center;
}

.pro-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-300);
}

.pro-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green-50), var(--accent-soft));
    color: var(--green-700);
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all var(--transition);
}

.pro-card:hover .pro-icon {
    background: var(--green-700);
    color: var(--white);
    transform: rotate(-6deg);
}

.pro-card h3 {
    margin-bottom: 10px;
}
.pro-card p {
    font-size: 0.92rem;
    line-height: 1.55;
}

/* ---------- Charte / Trust pledges ---------- */
.section-charte {
    background: var(--white);
}

.charte-card {
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
}

.charte-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.18), transparent 70%);
    border-radius: 50%;
}

.charte-card > * {
    position: relative;
}

.charte-head {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.charte-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: var(--green-900);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.charte-head h2 {
    color: var(--white);
    margin: 0;
}
.charte-head p {
    color: var(--green-100);
    margin: 6px 0 0;
}

.charte-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 32px;
}

.charte-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.charte-item .ico {
    color: var(--green-900);
    background: var(--accent);
    border-radius: 50%;
    padding: 4px;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.charte-item h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}
.charte-item p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* ---------- Certifications ---------- */
.section-certif {
    background: var(--ink-50);
}

.certif-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.certif-card {
    padding: 32px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
}

.certif-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-300);
}

.certif-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: var(--green-50);
    color: var(--green-700);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.certif-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.certif-card p {
    font-size: 0.88rem;
    line-height: 1.55;
}

/* ---------- Glossary ---------- */
.section-glossary {
    background: var(--white);
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
}

.glossary-item {
    padding: 22px 24px;
    background: var(--ink-50);
    border-radius: var(--radius);
    border-left: 3px solid var(--green-500);
    transition: all var(--transition);
}

.glossary-item:hover {
    background: var(--green-50);
    border-left-color: var(--accent);
    transform: translateX(4px);
}

.glossary-item dt {
    font-weight: 700;
    color: var(--ink-900);
    font-size: 1.02rem;
    margin-bottom: 6px;
}

.glossary-item dd {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--ink-500);
    margin: 0;
}

/* ---------- Responsive additions ---------- */
@media (max-width: 1100px) {
    .stats-layout,
    .howto-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .howto-aside {
        position: static;
    }
    .brands-grid,
    .quartiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .prevention-grid,
    .pros-grid,
    .certif-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .charte-grid {
        grid-template-columns: 1fr;
    }
    .compare-row {
        grid-template-columns: 2fr 1fr 1.5fr 0.7fr;
        padding: 18px 20px;
        gap: 12px;
        font-size: 0.9rem;
    }
    .compare-row-highlight::before {
        display: none;
    }
}

@media (max-width: 720px) {
    .stats-grid,
    .brands-grid,
    .quartiers-grid,
    .prevention-grid,
    .pros-grid,
    .certif-grid,
    .glossary-grid {
        grid-template-columns: 1fr;
    }
    .compare-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .compare-head {
        display: none;
    }
    .compare-row {
        padding: 18px;
    }
    .compare-row > div:first-child {
        font-size: 1.05rem;
        margin-bottom: 4px;
    }
    .charte-card {
        padding: 40px 24px;
    }
    .charte-head {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
    .charte-icon {
        width: 64px;
        height: 64px;
    }
    .howto-step {
        flex-direction: column;
        gap: 8px;
    }
    .howto-step::before {
        font-size: 1.8rem;
    }
}

/* ---------- Print ---------- */
@media print {
    .topbar, .floating-call, .nav, .btn, .hamburger, .mobile-menu, .mobile-menu-overlay { display: none; }
    .hero, .section { padding: 20px 0; }
    body { background: white; color: black; }
}
