/* =========================================================
   ECR — Maintenance Multi-Technique
   Refonte moderne — 2026
   ========================================================= */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Variables ---------- */
:root {
    --primary: #24423D;
    --primary-light: #3A6B62;
    --primary-dark: #182E2A;
    --accent: #24423D;
    --accent-light: #3A6B62;
    --accent-dark: #182E2A;
    --highlight: #5C9A8F;
    --secondary: #5C9A8F;
    --text: #0F1F1C;
    --text-muted: #4B5F5C;
    --text-light: #94A3A0;
    --bg: #FFFFFF;
    --bg-soft: #F0F5F2;
    --bg-soft-darker: #DCE9E1;
    --bg-card: #FFFFFF;
    --bg-card-tinted: #F4FAF6;
    --border: #C8DDD0;
    --border-light: #DDE6E2;
    --shadow-sm: 0 1px 3px rgba(36, 66, 61, 0.08);
    --shadow: 0 4px 16px rgba(36, 66, 61, 0.12);
    --shadow-lg: 0 12px 40px rgba(36, 66, 61, 0.22);
    --shadow-glow: 0 8px 32px rgba(36, 66, 61, 0.30);
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --gradient-hero: linear-gradient(135deg, #182E2A 0%, #24423D 60%, #3A6B62 100%);
    --gradient-accent: linear-gradient(135deg, #24423D 0%, #182E2A 100%);
    --gradient-accent-soft: linear-gradient(135deg, #3A6B62 0%, #24423D 100%);
    --gradient-soft: linear-gradient(180deg, #F0F5F2 0%, #FFFFFF 100%);
    --gradient-card: linear-gradient(135deg, #F4FAF6 0%, #E8F2EC 100%);
    --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

body { background: #F7FAF8; }

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 96px 0; position: relative; }
.section--soft {
    background: var(--bg-soft);
    position: relative;
}
.section--soft::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(36, 66, 61, 0.06), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(36, 66, 61, 0.05), transparent 40%);
    pointer-events: none;
}
.section--soft > * { position: relative; }
.section--dark {
    background: var(--primary);
    color: #fff;
}
.section--dark .section-subtitle { color: rgba(255,255,255,0.75); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-eyebrow {
    display: inline-block;
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(36, 66, 61, 0.12);
    border-radius: 100px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--primary);
}
.section--dark .section-title { color: #fff; }
.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 100px;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn--primary {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: var(--shadow-glow);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(36, 66, 61, 0.4);
}
.btn--ghost {
    background: rgba(255,255,255,0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}
.btn--outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn--outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}
.header.is-scrolled {
    background: rgba(255,255,255,0.95);
    border-bottom-color: var(--accent);
    box-shadow: 0 2px 16px rgba(36, 66, 61, 0.08);
}
.header.is-scrolled {
    border-bottom-width: 2px;
}
.header-top {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    padding: 8px 0;
}
.header-top-inner {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}
.header-top a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}
.header-top a:hover { color: var(--accent); }
.header-top svg { width: 14px; height: 14px; }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    height: 48px;
    width: auto;
    display: block;
    transition: transform var(--transition);
}
.logo:hover .logo-img { transform: scale(1.03); }
.logo-img--footer {
    height: 56px;
    filter: brightness(0) invert(1);
}
/* Logo SVG inline */
.logo-svg {
    height: 48px;
    width: auto;
    display: block;
    color: var(--primary);
    transition: transform var(--transition);
}
.logo:hover .logo-svg { transform: scale(1.03); }
.footer .logo-svg {
    height: 56px;
    color: #FFFFFF;
}
@media (max-width: 640px) {
    .logo-svg { height: 38px; }
    .footer .logo-svg { height: 48px; }
}
.logo--footer { display: inline-block; }
.logo-tagline-side {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    padding-left: 16px;
    margin-left: 4px;
    border-left: 2px solid var(--border);
    line-height: 1.2;
}
.footer .logo-tagline-side {
    color: #FFFFFF;
    border-left-color: rgba(255, 255, 255, 0.35);
    font-weight: 700;
    padding-left: 18px;
    font-size: 0.78rem;
}
@media (max-width: 640px) {
    .logo-img { height: 40px; }
    .logo-tagline-side { display: none; }
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-weight: 800; color: var(--primary); font-size: 1.15rem; letter-spacing: -0.02em; }
.logo-tagline { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
    padding: 10px 18px;
    font-weight: 500;
    color: var(--text);
    border-radius: 100px;
    transition: all var(--transition);
    position: relative;
}
.nav-link:hover { color: var(--accent-dark); background: rgba(36, 66, 61, 0.1); }
.nav-link.is-active {
    color: #fff;
    background: var(--gradient-accent);
    box-shadow: 0 4px 12px rgba(36, 66, 61, 0.35);
}

.nav-cta { margin-left: 12px; }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--bg-soft);
    position: relative;
}
.nav-toggle span {
    position: absolute;
    left: 12px;
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    background: var(--gradient-hero);
    color: #fff;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(52, 211, 153, 0.28), transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(92, 154, 143, 0.35), transparent 50%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero-content { animation: fadeUp 0.8s ease-out; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px 6px 8px;
    background: rgba(36, 66, 61, 0.18);
    border: 1.5px solid rgba(36, 66, 61, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    box-shadow: 0 4px 16px rgba(36, 66, 61, 0.2);
}
.hero-badge-dot {
    width: 8px; height: 8px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 12px #22C55E;
    animation: pulse 2s infinite;
}
.hero-badge-icon {
    display: inline-grid;
    place-items: center;
    width: 20px; height: 20px;
    background: var(--accent);
    border-radius: 50%;
}
.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 24px;
}
.hero h1 .accent {
    background: linear-gradient(135deg, #B8E0CC, #88C5A8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero p.lead {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.6;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 540px;
}
.hero-stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1;
}
.hero-stat-num .plus { color: var(--accent); }
.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}

.hero-visual {
    position: relative;
    animation: fadeUp 0.8s ease-out 0.2s backwards;
}
.hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(36, 66, 61,0.1), transparent);
    pointer-events: none;
}
.hero-card-image {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #0F1F1C, #24423D);
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

/* ---------- Facility Management overlay (style smart-building) ---------- */
.hero-facility {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-facility > img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.85) saturate(1.15) hue-rotate(70deg);
}
.hero-facility-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(36, 66, 61, 0.15), transparent 70%),
        radial-gradient(circle at 20% 20%, rgba(52, 211, 153, 0.12), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(92, 154, 143, 0.15), transparent 50%);
}
.hero-facility-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 216, 200, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 216, 200, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}
.facility-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    background: rgba(15, 31, 28, 0.5);
    border: 1px solid rgba(168, 216, 200, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow:
        0 0 0 4px rgba(168, 216, 200, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.4);
}
.facility-center-title {
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    text-shadow: 0 0 16px rgba(168, 216, 200, 0.6);
}
.facility-center-sub {
    color: rgba(168, 216, 200, 0.85);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 600;
}
.facility-icon {
    position: absolute;
    width: 48px; height: 48px;
    background: rgba(15, 31, 28, 0.7);
    border: 1.5px solid rgba(168, 216, 200, 0.5);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #B8E0CC;
    box-shadow:
        0 0 0 6px rgba(168, 216, 200, 0.06),
        0 0 20px rgba(168, 216, 200, 0.35);
    animation: facility-float 4s ease-in-out infinite;
    z-index: 2;
}
.facility-icon svg { width: 22px; height: 22px; }
.facility-icon--1 { top: 12%; left: 18%; animation-delay: 0s; }
.facility-icon--2 { top: 16%; right: 14%; animation-delay: 0.5s; }
.facility-icon--3 { top: 48%; left: 6%; animation-delay: 1s; }
.facility-icon--4 { top: 48%; right: 6%; animation-delay: 1.5s; }
.facility-icon--5 { bottom: 14%; left: 18%; animation-delay: 2s; }
.facility-icon--6 { bottom: 12%; right: 18%; animation-delay: 2.5s; }
@keyframes facility-float {
    0%, 100% { transform: translateY(0); box-shadow: 0 0 0 6px rgba(168, 216, 200, 0.06), 0 0 20px rgba(168, 216, 200, 0.35); }
    50% { transform: translateY(-6px); box-shadow: 0 0 0 10px rgba(168, 216, 200, 0.1), 0 0 30px rgba(168, 216, 200, 0.55); }
}
@media (max-width: 640px) {
    .facility-icon { width: 36px; height: 36px; }
    .facility-icon svg { width: 16px; height: 16px; }
    .facility-center-title { font-size: 0.95rem; }
}
.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 800ms ease;
}
.hero-card:hover .hero-card-image img { transform: scale(1.05); }
.hero-card-image svg {
    width: 100%; height: 100%;
}
.hero-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}
.hero-card-meta-icon {
    width: 48px; height: 48px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.hero-card-meta-icon svg { width: 24px; height: 24px; color: #fff; }
.hero-card-meta-title { font-weight: 700; font-size: 1.05rem; }
.hero-card-meta-sub { font-size: 0.875rem; color: rgba(255,255,255,0.7); }

.hero-float {
    position: absolute;
    background: #fff;
    color: var(--text);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
}
.hero-float--1 { top: -16px; right: -24px; }
.hero-float--2 { bottom: 24px; left: -32px; animation-delay: 1s; }
.hero-float-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.hero-float--1 .hero-float-icon { background: rgba(34, 197, 94, 0.1); color: #16A34A; }
.hero-float--2 .hero-float-icon { background: rgba(92, 154, 143, 0.15); color: #3A6B62; }
.hero-float-icon svg { width: 18px; height: 18px; }
.hero-float-text { font-size: 0.85rem; font-weight: 600; }
.hero-float-sub { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

/* ---------- Trust bar ---------- */
.trust {
    padding: 36px 0;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-soft-darker) 100%);
    border-bottom: 2px solid var(--border);
    border-top: 2px solid var(--border);
}
.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}
.trust-label {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.trust-items { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; }
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
    background: #fff;
    padding: 10px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    transition: all var(--transition);
}
.trust-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 66, 61, 0.15);
}
.trust-item svg {
    width: 20px; height: 20px;
    color: #fff;
    background: var(--gradient-accent);
    padding: 3px;
    border-radius: 50%;
}

/* ---------- Services cards ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: -1;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    color: #fff;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon { background: rgba(255,255,255,0.2); color: #fff; }
.service-card:hover .service-link { color: #fff; }
.service-card:hover .service-link svg { transform: translateX(4px); }
.service-card:hover h3 { color: #fff; }
.service-card:hover p { color: rgba(255,255,255,0.9); }

.service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--gradient-accent);
    color: #fff;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    transition: all var(--transition);
    box-shadow: 0 6px 16px rgba(36, 66, 61, 0.3);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    transition: color var(--transition);
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color var(--transition);
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    transition: color var(--transition);
}
.service-link svg { width: 16px; height: 16px; transition: transform var(--transition); }

/* ---------- Why us ---------- */
.why {
    position: relative;
    overflow: hidden;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.why-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gradient-hero);
}
.why-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
}
.why-visual:hover img { transform: scale(1.04); }
.why-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(36, 66, 61,0.25), transparent 60%),
        linear-gradient(180deg, rgba(24,46,42,0.1) 0%, rgba(24,46,42,0.6) 100%);
    pointer-events: none;
}
.why-visual-badge {
    position: absolute;
    background: #fff;
    color: var(--primary);
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.why-visual-badge--top {
    top: 24px; right: 24px;
    display: flex; align-items: center; gap: 12px;
}
.why-visual-badge--top svg { width: 28px; height: 28px; color: var(--accent); }
.why-visual-badge-num { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.why-visual-badge-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.why-visual-badge--bottom {
    bottom: 24px; left: 24px; right: 24px;
}
.why-visual-badge--bottom .why-visual-badge-title { font-weight: 700; margin-bottom: 8px; }
.why-visual-badge--bottom .why-visual-badge-text { font-size: 0.85rem; color: var(--text-muted); }

.why-content { padding: 32px 0; }
.why-list {
    display: grid;
    gap: 20px;
    margin-top: 32px;
}
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.why-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow);
    border-color: var(--accent-light);
}
.why-check {
    width: 36px; height: 36px;
    background: var(--gradient-accent);
    color: #fff;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(36, 66, 61, 0.3);
}
.why-check svg { width: 18px; height: 18px; }
.why-item-text { flex: 1; }
.why-item-title { font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.why-item-desc { font-size: 0.9rem; color: var(--text-muted); }

/* ---------- Stats band (grosse bande verte) ---------- */
.stats-band {
    background: var(--primary);
    color: #fff;
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(255,255,255,0.06), transparent 50%),
        radial-gradient(circle at 85% 50%, rgba(92, 154, 143, 0.25), transparent 50%);
    pointer-events: none;
}
.stats-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    pointer-events: none;
}
.stats-band-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stats-band-item {
    padding: 16px;
    position: relative;
}
.stats-band-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255,255,255,0.15);
}
.stats-band-num {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #fff;
    margin-bottom: 8px;
}
.stats-band-num span {
    color: #B8E0CC;
    font-weight: 700;
}
.stats-band-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    letter-spacing: 0.02em;
}
@media (max-width: 768px) {
    .stats-band { padding: 56px 0; }
    .stats-band-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stats-band-item:not(:last-child)::after { display: none; }
}

/* ---------- Process en 4 étapes (page prestations) ---------- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
    margin-top: 32px;
}
.process-step {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px 32px;
    position: relative;
    transition: all var(--transition);
}
.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}
.process-step-num {
    position: absolute;
    top: -22px;
    left: 28px;
    width: 56px; height: 56px;
    background: var(--gradient-accent);
    color: #fff;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(36, 66, 61, 0.3);
    letter-spacing: -0.02em;
}
.process-step h3 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 8px 0 20px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.process-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}
.process-list li {
    padding-left: 30px;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}
.process-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px; height: 20px;
    background-color: var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 14px 14px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(36, 66, 61, 0.2);
}
@media (max-width: 768px) {
    .process-grid { grid-template-columns: 1fr; gap: 36px; }
    .process-step { padding: 36px 24px 24px; }
}

/* ---------- Variants taille titres ---------- */
.hero-title-sm {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
    line-height: 1.15 !important;
}
.section-title--sm {
    font-size: clamp(1.6rem, 3vw, 2.1rem) !important;
    line-height: 1.2 !important;
}

/* ---------- Hero compact (sans actions ni stats) ---------- */
.hero { padding: 140px 0 80px; }
.hero-inner { align-items: center; }

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 16px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 800ms ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(24, 46, 42, 0.85) 100%);
    pointer-events: none;
}
.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: #fff;
    z-index: 1;
}
.gallery-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-accent);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.gallery-item figcaption h3 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 240px 240px;
    }
    .gallery-item--tall { grid-row: span 2; }
    .gallery-item--wide { grid-column: span 2; }
}
@media (max-width: 540px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item {
        height: 240px;
    }
    .gallery-item--tall { grid-row: span 1; height: 280px; }
    .gallery-item--wide { grid-column: span 1; }
}

/* ---------- Domains ---------- */
.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.domain-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
}
.domain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}
.domain-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    color: #fff;
    box-shadow: 0 6px 16px rgba(36, 66, 61, 0.25);
    transition: all var(--transition);
}
.domain-card:hover .domain-icon {
    background: var(--gradient-accent);
    transform: rotate(-6deg) scale(1.05);
    box-shadow: 0 8px 24px rgba(36, 66, 61, 0.4);
}
.domain-icon svg { width: 32px; height: 32px; }
.domain-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.domain-card > p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.domain-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.domain-tag {
    padding: 4px 12px;
    background: var(--bg-soft);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 100px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.domain-card:hover .domain-tag {
    background: rgba(36, 66, 61, 0.12);
    border-color: var(--accent-light);
    color: var(--accent-dark);
}

/* ---------- Values ---------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon {
    width: 72px; height: 72px;
    margin: 0 auto 20px;
    background: var(--gradient-accent);
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: var(--shadow-glow);
}
.value-icon svg { width: 32px; height: 32px; }
.value-card h3 { color: var(--primary); margin-bottom: 12px; font-weight: 700; }
.value-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- CTA section ---------- */
.cta {
    background: var(--primary);
    color: #fff;
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(36, 66, 61,0.25), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(92,154,143,0.25), transparent 50%);
}
.cta-inner {
    position: relative;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.15;
}
.cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 36px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Contact section ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}
.contact-grid--single {
    grid-template-columns: 1fr 1fr;
}
.contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.contact-map {
    position: relative;
    aspect-ratio: 4/5;
    min-height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    background: var(--bg-soft);
}
.contact-map iframe {
    width: 100%; height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.15);
    transition: filter var(--transition);
}
.contact-map:hover iframe { filter: grayscale(0); }
.contact-info { padding: 16px 0; }
.contact-info h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 20px;
}
.contact-info > p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 36px; }
.contact-list { display: grid; gap: 20px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.contact-item:hover {
    transform: translateX(6px);
    border-color: var(--accent-light);
    box-shadow: var(--shadow);
}
.contact-item-icon {
    width: 48px; height: 48px;
    background: var(--gradient-accent);
    color: #fff;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(36, 66, 61, 0.3);
}
.contact-item-icon svg { width: 22px; height: 22px; }
.contact-item-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-item-value { font-weight: 600; color: var(--primary); font-size: 1rem; }

.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 28px; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.form-control {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-soft);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    transition: all var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(36, 66, 61, 0.14);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

/* ---------- Footer ---------- */
.footer {
    background: linear-gradient(180deg, #182E2A 0%, #0F1F1C 100%);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0; right: 0;
    height: 4px;
    background: var(--gradient-accent);
}
.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(36, 66, 61, 0.08), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(92, 154, 143, 0.06), transparent 50%);
    pointer-events: none;
}
.footer > * { position: relative; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-name { color: #fff; }
.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 320px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-social {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    display: grid;
    place-items: center;
    transition: all var(--transition);
}
.footer-social:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}
.footer-contact-item svg {
    width: 18px; height: 18px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ---------- Page header (intérieures) ---------- */
.page-header {
    padding: 160px 0 80px;
    background: var(--gradient-hero);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(36, 66, 61,0.25), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(92,154,143,0.3), transparent 50%);
}
.page-header-inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.1;
}
.page-header p { color: rgba(255,255,255,0.85); font-size: 1.15rem; }
.breadcrumb {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 6px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: #fff; }

/* ---------- About page ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.75;
}
.about-content p:last-child { margin-bottom: 0; }
.about-content p strong { color: var(--primary); font-weight: 700; }
.about-values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 8px 0 24px;
    list-style: none;
    padding: 0;
}
.about-values-list li {
    padding: 14px 16px 14px 48px;
    background: var(--bg-soft);
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    transition: all var(--transition);
}
.about-values-list li::before {
    content: '✓';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    box-shadow: 0 2px 6px rgba(36, 66, 61, 0.3);
}
.about-values-list li:hover {
    transform: translateX(4px);
    background: var(--bg-soft-darker);
    box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) {
    .about-values-list { grid-template-columns: 1fr; }
}
.about-visual {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    overflow: hidden;
}
.about-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 70% 30%, rgba(36, 66, 61,0.18), transparent 60%),
        linear-gradient(180deg, transparent 50%, rgba(24,46,42,0.4) 100%);
    pointer-events: none;
}
.about-visual-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}
.about-visual-badge-icon {
    width: 44px; height: 44px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
}
.about-visual-badge-icon svg { width: 22px; height: 22px; }
.about-visual-badge-num { font-size: 1.4rem; font-weight: 800; color: var(--primary); line-height: 1; }
.about-visual-badge-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.team-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent-light); }
.team-avatar {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 8px 24px rgba(36, 66, 61, 0.35);
    transition: transform var(--transition);
}
.team-card:hover .team-avatar { transform: scale(1.1) rotate(-8deg); }
.team-avatar svg { width: 36px; height: 36px; }
.team-card h3 { color: var(--primary); margin-bottom: 8px; font-weight: 700; }
.team-card p { color: var(--text-muted); font-size: 0.95rem; }

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.commitment-card {
    padding: 32px;
    background: var(--bg-card);
    border-left: 5px solid var(--accent);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.commitment-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(36, 66, 61,0.12), transparent 70%);
    pointer-events: none;
}
.commitment-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
}
.commitment-card h3 { color: var(--primary); font-weight: 700; margin-bottom: 12px; }
.commitment-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Animations ---------- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Float button ---------- */
.float-call {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-glow);
    z-index: 90;
    transition: all var(--transition);
    animation: pulse-ring 2s infinite;
}
.float-call:hover { transform: scale(1.1); }
.float-call svg { width: 24px; height: 24px; }
@keyframes pulse-ring {
    0% { box-shadow: 0 8px 24px rgba(36, 66, 61,0.4), 0 0 0 0 rgba(36, 66, 61,0.5); }
    70% { box-shadow: 0 8px 24px rgba(36, 66, 61,0.4), 0 0 0 16px rgba(36, 66, 61,0); }
    100% { box-shadow: 0 8px 24px rgba(36, 66, 61,0.4), 0 0 0 0 rgba(36, 66, 61,0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-inner, .why-grid, .contact-grid, .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-float--1 { right: 0; }
    .hero-float--2 { left: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .hero { padding: 140px 0 80px; }
    .header-top { display: none; }
    .nav-links {
        position: fixed;
        top: 78px;
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        max-height: calc(100vh - 78px);
        overflow-y: auto;
    }
    .nav-links.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-link { width: 100%; text-align: center; padding: 14px; }
    .nav-cta { margin: 12px 0 0; width: 100%; justify-content: center; }
    .nav-toggle { display: block; }
    .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
    .hero-stat-num { font-size: 1.6rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .float-call { bottom: 16px; right: 16px; width: 54px; height: 54px; }
    .hero-float { display: none; }
    .container { padding: 0 20px; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { gap: 12px; }
    .hero-stat-num { font-size: 1.4rem; }
    .contact-form-wrap { padding: 28px 20px; }
}
