*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy: #0F2A4A;
    --navy-light: #1A3D66;
    --green: #22B865;
    --orange: #E8500A;
    --cream: #F8F9FA;
    --grey: #6B7280;
    --grey-light: #E9ECEF;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 8px 32px rgba(15,42,74,.12);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--navy);
    background: var(--cream);
    line-height: 1.6;
}

/* ── NAV ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(15,42,74,0.97);
    backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 6vw;
    height: 68px;
    box-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.nav-logo-icon {
    width: 36px; height: 36px;
    background: var(--green);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 22px; height: 22px; }
.nav-brand {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: -.5px;
}
.nav-brand span { color: var(--green); }

.nav-links {
    display: flex; align-items: center; gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: .45rem 1.2rem;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: #cf430a !important; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(140deg, var(--navy) 0%, var(--navy-light) 55%, #0e3a5e 100%);
    display: flex; align-items: center;
    padding: 100px 6vw 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    flex: 1; max-width: 560px; position: relative; z-index: 2;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(34,184,101,.15);
    border: 1px solid rgba(34,184,101,.4);
    color: var(--green);
    font-size: .8rem; font-weight: 600;
    padding: .35rem .9rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: .5px;
}
.hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.4); }
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.2rem;
}
.hero h1 em { color: var(--green); font-style: normal; }

.hero p {
    color: rgba(255,255,255,.72);
    font-size: 1.05rem;
    max-width: 460px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange);
    color: var(--white);
    font-weight: 700; font-size: 1rem;
    padding: .9rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(232,80,10,.4);
}
.btn-primary:hover { background: #cf430a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,80,10,.5); }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.3);
    color: var(--white);
    font-weight: 600; font-size: 1rem;
    padding: .9rem 1.8rem;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background .2s, border-color .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.6); }

.hero-stats {
    display: flex; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap;
}
.stat { }
.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2rem; font-weight: 800;
    color: var(--white); line-height: 1;
}
.stat-num span { color: var(--green); }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 2px; }

/* hero 3D visuals */
.hero-visual {
    flex: 1; display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2;
    max-width: 500px; margin-left: auto;
}

.pest-showcase {
    position: relative;
    width: 420px; height: 420px;
}

.pest-card {
    position: absolute;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 1.5rem;
    transition: transform .3s ease;
}
.pest-card:hover { transform: scale(1.05) !important; }

.pest-card.rat { width: 180px; height: 180px; top: 0; left: 50%; transform: translateX(-50%); }
.pest-card.punaise { width: 160px; height: 160px; bottom: 20px; left: 0; }
.pest-card.cafard { width: 155px; height: 155px; bottom: 30px; right: 0; }

.pest-label {
    font-size: .75rem; font-weight: 600;
    color: rgba(255,255,255,.7);
    margin-top: .6rem;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.pest-center {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 16px rgba(34,184,101,.15), 0 0 0 32px rgba(34,184,101,.06);
    animation: spin-badge 3s ease-in-out infinite;
}
@keyframes spin-badge {
    0%, 100% { box-shadow: 0 0 0 16px rgba(34,184,101,.15), 0 0 0 32px rgba(34,184,101,.06); }
    50% { box-shadow: 0 0 0 20px rgba(34,184,101,.2), 0 0 0 40px rgba(34,184,101,.08); }
}

/* ── REASSURANCE BAR ── */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--grey-light);
    padding: 1.2rem 6vw;
    display: flex; align-items: center; justify-content: center;
    gap: 3rem; flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: .6rem;
    font-size: .85rem; font-weight: 600; color: var(--navy);
}
.trust-item svg { color: var(--green); }

/* ── SECTIONS ── */
section { padding: 80px 6vw; }

.section-label {
    font-size: .78rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--green); margin-bottom: .6rem;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800; line-height: 1.15;
    letter-spacing: -1px;
    color: var(--navy);
    max-width: 560px;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--grey);
    font-size: 1rem;
    max-width: 540px;
    margin-bottom: 3rem;
}

/* ── SERVICES ── */
.services { background: var(--cream); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s;
    border: 1.5px solid transparent;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), #17a558);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(15,42,74,.16); border-color: rgba(34,184,101,.2); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.4rem;
}

.service-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem; font-weight: 700;
    margin-bottom: .6rem;
}
.service-card p { color: var(--grey); font-size: .92rem; line-height: 1.7; }

.service-tag {
    display: inline-block;
    margin-top: 1rem;
    background: rgba(34,184,101,.1);
    color: var(--green);
    font-size: .75rem; font-weight: 700;
    padding: .25rem .75rem;
    border-radius: 100px;
}

/* ── PROCESS ── */
.process { background: var(--navy); }
.process .section-title { color: var(--white); }
.process .section-subtitle { color: rgba(255,255,255,.55); }
.process .section-label { color: var(--green); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    counter-reset: step;
}

.process-step {
    position: relative;
    padding: 2rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    transition: background .25s;
}
.process-step:hover { background: rgba(255,255,255,.09); }

.step-num {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem; font-weight: 800;
    color: rgba(34,184,101,.2);
    line-height: 1;
    margin-bottom: .8rem;
}

.process-step h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--white);
    margin-bottom: .5rem;
}
.process-step p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.7; }

/* ── WHY US ── */
.why { background: var(--white); }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-visual {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.why-visual::after {
    content: '';
    position: absolute; bottom: -30px; right: -30px;
    width: 180px; height: 180px;
    background: rgba(34,184,101,.12);
    border-radius: 50%;
}

.why-cert {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    display: flex; gap: 1rem; align-items: flex-start;
}
.why-cert-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--green);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.why-cert h4 { font-size: .95rem; font-weight: 600; color: var(--white); margin-bottom: .2rem; }
.why-cert p { font-size: .82rem; color: rgba(255,255,255,.5); }

.why-points { display: flex; flex-direction: column; gap: 1.5rem; }

.why-point {
    display: flex; gap: 1rem; align-items: flex-start;
}
.why-point-dot {
    width: 8px; height: 8px; flex-shrink: 0;
    background: var(--green); border-radius: 50%;
    margin-top: .45rem;
}
.why-point h4 { font-size: 1rem; font-weight: 600; margin-bottom: .2rem; }
.why-point p { font-size: .9rem; color: var(--grey); }

/* ── ZONES ── */
.zones { background: var(--cream); }

.zones-map-wrapper {
    margin-top: 3rem;
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: .75rem;
    margin-top: 1.5rem;
}

.zone-pill {
    display: flex; align-items: center; gap: .5rem;
    background: var(--cream);
    border: 1.5px solid var(--grey-light);
    border-radius: 10px;
    padding: .6rem 1rem;
    font-size: .85rem; font-weight: 500;
    transition: border-color .2s, background .2s;
}
.zone-pill:hover { border-color: var(--green); background: rgba(34,184,101,.05); }
.zone-pill::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--green); border-radius: 50%; flex-shrink: 0;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.testi-card {
    background: var(--cream);
    border-radius: 18px;
    padding: 1.8rem;
    border: 1.5px solid var(--grey-light);
}

.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }

.testi-card blockquote {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--navy);
    margin-bottom: 1.2rem;
}

.testi-author {
    display: flex; align-items: center; gap: .8rem;
}
.testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800; font-size: 1rem; color: var(--white);
}
.testi-name { font-weight: 600; font-size: .9rem; }
.testi-loc { font-size: .78rem; color: var(--grey); }

/* ── CTA ── */
.cta-section {
    background: linear-gradient(135deg, var(--orange) 0%, #c43e08 100%);
    padding: 80px 6vw;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800; color: var(--white);
    letter-spacing: -1px; margin-bottom: 1rem;
}
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2.5rem; }

.cta-actions {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

.btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white);
    color: var(--orange);
    font-weight: 700; font-size: 1rem;
    padding: .9rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    transition: transform .15s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.25); }

.btn-outline-white {
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid rgba(255,255,255,.6);
    color: var(--white);
    font-weight: 600; font-size: 1rem;
    padding: .9rem 1.8rem;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background .2s, border-color .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

/* ── CONTACT FORM ── */
.contact { background: var(--cream); }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800; letter-spacing: -1px;
    margin-bottom: 1rem;
}
.contact-info p { color: var(--grey); font-size: .95rem; margin-bottom: 2rem; }

.contact-item {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.2rem;
}
.contact-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--navy);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.contact-item h4 { font-size: .85rem; color: var(--grey); margin-bottom: .2rem; }
.contact-item a, .contact-item p { color: var(--navy); font-weight: 600; font-size: .95rem; text-decoration: none; }

.urgency-box {
    background: rgba(232,80,10,.08);
    border: 1.5px solid rgba(232,80,10,.25);
    border-radius: 14px;
    padding: 1.2rem;
    margin-top: 2rem;
    display: flex; gap: .8rem; align-items: flex-start;
}
.urgency-box p { font-size: .88rem; color: var(--navy); }
.urgency-box strong { color: var(--orange); }

.contact-form {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block; font-size: .85rem; font-weight: 600;
    color: var(--navy); margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1.5px solid var(--grey-light);
    border-radius: 10px;
    padding: .75rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: .92rem;
    color: var(--navy);
    background: var(--cream);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(34,184,101,.12);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    font-weight: 700; font-size: 1rem;
    padding: 1rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: .5rem;
}
.form-submit:hover { background: var(--navy-light); transform: translateY(-1px); }

.form-note { font-size: .78rem; color: var(--grey); text-align: center; margin-top: .8rem; }

/* ── FOOTER ── */
footer {
    background: var(--navy);
    color: rgba(255,255,255,.55);
    padding: 3rem 6vw 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand .nav-brand { display: block; margin-bottom: .8rem; font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--white); }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 240px; }

.footer-col h4 { color: var(--white); font-weight: 700; font-size: .9rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    font-size: .8rem; flex-wrap: wrap; gap: 1rem;
}

.footer-certifs {
    display: flex; gap: .8rem; align-items: center;
}
.certif-badge {
    background: rgba(34,184,101,.15);
    border: 1px solid rgba(34,184,101,.3);
    color: var(--green);
    font-size: .72rem; font-weight: 700;
    padding: .2rem .7rem;
    border-radius: 6px;
}

/* ── FLOATING CALL BTN ── */
.float-call {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
    background: var(--orange);
    color: var(--white);
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 24px rgba(232,80,10,.5);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    animation: float-pulse 3s ease-in-out infinite;
}
.float-call:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(232,80,10,.6); }
@keyframes float-pulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(232,80,10,.5); }
    50% { box-shadow: 0 4px 36px rgba(232,80,10,.7); }
}

/* ── BURGER BUTTON ── */
.nav-burger {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none;
    cursor: pointer; padding: 6px;
}
.nav-burger span {
    display: block; width: 24px; height: 2.5px;
    background: white; border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(15,42,74,0.99);
    z-index: 99;
    padding: 1.5rem 6vw 2rem;
    flex-direction: column; gap: .5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: 1.1rem; font-weight: 500;
    padding: .8rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: block;
}
.mobile-menu a:last-child {
    margin-top: .5rem;
    background: var(--orange);
    color: white;
    text-align: center;
    border-radius: 10px;
    border-bottom: none;
    font-weight: 700;
    padding: 1rem;
}

/* ── RESPONSIVE TABLET (≤ 960px) ── */
@media (max-width: 960px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }

    .hero { flex-direction: column; gap: 2rem; padding: 90px 6vw 48px; }
    .hero-content { max-width: 100%; }
    .hero-visual { width: 100%; }
    .pest-showcase { width: 300px; height: 300px; margin: 0 auto; }
    .pest-card.rat { width: 130px; height: 130px; }
    .pest-card.punaise { width: 115px; height: 115px; }
    .pest-card.cafard { width: 110px; height: 110px; }

    .trust-bar { gap: 1.2rem; padding: 1rem 4vw; }
    .trust-item { font-size: .8rem; }

    .why-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE MOBILE (≤ 600px) ── */
@media (max-width: 600px) {
    nav { padding: 0 4vw; }
    section { padding: 56px 5vw; }

    /* Hero */
    .hero { padding: 84px 5vw 40px; gap: 2rem; }
    .hero h1 { font-size: 2rem; letter-spacing: -.8px; }
    .hero p { font-size: .95rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions a { width: 100%; justify-content: center; text-align: center; }
    .hero-stats { gap: 1.5rem; }
    .stat-num { font-size: 1.6rem; }

    /* Pest showcase réduit */
    .pest-showcase { width: 240px; height: 240px; }
    .pest-card.rat { width: 106px; height: 106px; }
    .pest-card.punaise { width: 92px; height: 92px; }
    .pest-card.cafard { width: 88px; height: 88px; }
    .pest-center { width: 60px; height: 60px; }
    .pest-label { font-size: .65rem; }

    /* Trust bar → vertical scroll */
    .trust-bar {
    gap: .8rem;
    overflow-x: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 1rem 5vw;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    }
    .trust-bar::-webkit-scrollbar { display: none; }
    .trust-item { flex-shrink: 0; font-size: .78rem; }

    /* Sections titles */
    .section-title { font-size: 1.7rem; letter-spacing: -.5px; }

    /* Services grid → 1 col */
    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .service-card { padding: 1.5rem; }
    .service-icon { width: 60px; height: 60px; border-radius: 12px; }

    /* Process steps → 1 col */
    .process-steps { grid-template-columns: 1fr; gap: 1rem; }
    .process-step { padding: 1.4rem; }
    .step-num { font-size: 2.5rem; }

    /* Why */
    .why-visual { padding: 1.8rem; }
    .why-cert { padding: .9rem; }

    /* Zones pills */
    .zones-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
    .zone-pill { font-size: .78rem; padding: .5rem .8rem; }
    .zones-map-wrapper { padding: 1.5rem; }

    /* Testi */
    .testi-grid { grid-template-columns: 1fr; }

    /* CTA */
    .cta-section { padding: 56px 5vw; }
    .cta-section h2 { font-size: 1.7rem; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions a { width: 100%; justify-content: center; text-align: center; }

    /* Contact form */
    .contact-form { padding: 1.5rem; border-radius: 16px; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 16px; /* prevent iOS zoom */ }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: .5rem; }

    /* Floating btn → plus grand sur mobile */
    .float-call { width: 64px; height: 64px; bottom: 1.5rem; right: 1.5rem; }
    .float-call svg { width: 28px; height: 28px; }
}

/* ── TRÈS PETITS MOBILES (≤ 380px) ── */
@media (max-width: 380px) {
    .hero h1 { font-size: 1.75rem; }
    .pest-showcase { width: 200px; height: 200px; }
    .pest-card.rat { width: 88px; height: 88px; }
    .pest-card.punaise { width: 76px; height: 76px; }
    .pest-card.cafard { width: 72px; height: 72px; }
    .pest-center { width: 50px; height: 50px; }
    .zones-grid { grid-template-columns: 1fr; }
}

/* ── SUCCESS / ERROR MESSAGES ── */
.form-success, .form-error {
    display: none;
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
}
.form-success {
    background: rgba(34,184,101,.1);
    border: 1.5px solid var(--green);
    color: #166534;
}
.form-error {
    background: rgba(232,80,10,.08);
    border: 1.5px solid rgba(232,80,10,.4);
    color: #9a2f04;
}
.form-error a { color: var(--orange); font-weight: 700; }

/* Spinner dans le bouton */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
    width: 18px; height: 18px;
    border: 2.5px solid rgba(255,255,255,.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    flex-shrink: 0;
}
