/* ====================================================
   D&E CLEAN — feuille de styles
   Palette : blanc, bleu profond, vert sauge, gris doux
   ==================================================== */

:root {
    --white: #ffffff;
    --paper: #f4f7fa;
    --navy: #1f4d7e;
    --navy-dark: #143a63;
    --navy-soft: #dceaf3;
    --sky: #4a90c2;
    --sky-soft: #e9f2f8;
    --sage: #7fb88f;
    --sage-dark: #4d8a5d;
    --sage-soft: #e1efe4;
    --grey-50: #eef1f4;
    --grey-100: #dde3ea;
    --grey-200: #c2cbd6;
    --grey-400: #7d8a9b;
    --grey-700: #3a4654;
    --grey-900: #14202e;
    --shadow-xs: 0 1px 2px rgba(20, 32, 46, 0.04);
    --shadow-sm: 0 4px 12px rgba(20, 32, 46, 0.06);
    --shadow-md: 0 14px 30px rgba(20, 32, 46, 0.10);
    --shadow-lg: 0 24px 60px rgba(20, 32, 46, 0.14);
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --transition: all .25s ease;
    --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--grey-700);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
}
a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--sage-dark); }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
    color: var(--grey-900);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.015em;
    margin: 0 0 18px;
}
h1 { font-size: clamp(32px, 4.4vw, 48px); }
h2 { font-size: clamp(24px, 3vw, 34px); }
h3 { font-size: 19px; }
h4 { font-size: 16px; }
p { margin: 0 0 14px; }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ====== Top bar ====== */
.top-bar {
    background: var(--navy-dark);
    color: #c8d8e6;
    font-size: 13.5px;
    padding: 9px 0;
}
.top-bar a { color: #e6eef5; }
.top-bar a:hover { color: var(--sage); }
.top-bar-inner { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.badge {
    background: var(--sage);
    color: var(--white);
    padding: 3px 11px;
    border-radius: var(--radius-xs);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.top-bar-item { display: inline-flex; align-items: center; gap: 5px; }

/* ====== Header ====== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--grey-100);
    position: sticky;
    top: 0;
    z-index: 60;
    box-shadow: var(--shadow-xs);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 19px;
    color: var(--grey-900);
    letter-spacing: 0.01em;
}
.logo:hover { color: var(--navy); }
.logo-mark {
    width: 46px; height: 46px;
    background: var(--navy);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border-radius: 50%;
    font-size: 14px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(31, 77, 126, 0.32);
    position: relative;
}
.logo-mark::before {
    content: "";
    position: absolute;
    inset: -3px;
    border: 2px solid var(--sage);
    border-radius: 50%;
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(45deg);
}
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.main-nav a {
    display: inline-block;
    padding: 10px 16px;
    color: var(--grey-700);
    font-weight: 500;
    border-radius: var(--radius-sm);
    font-size: 15px;
}
.main-nav a:hover { background: var(--sky-soft); color: var(--navy); }
.main-nav a.active { color: var(--navy); background: var(--sky-soft); }
.main-nav a.nav-cta {
    background: var(--navy);
    color: var(--white);
    padding: 10px 22px;
    margin-left: 6px;
}
.main-nav a.nav-cta:hover { background: var(--navy-dark); color: var(--white); }
.nav-toggle {
    display: none;
    background: var(--paper);
    border: 1px solid var(--grey-100);
    width: 42px; height: 42px;
    border-radius: var(--radius-sm);
    color: var(--navy);
    font-size: 22px;
    cursor: pointer;
}

/* ====== Buttons ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 0;
    text-align: center;
    transition: var(--transition);
}
.btn-primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(31, 77, 126, 0.32);
}
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(20, 58, 99, 0.40); color: var(--white); }
.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid var(--navy);
}
.btn-secondary:hover { background: var(--sky-soft); color: var(--navy); }
.btn-accent {
    background: var(--sage);
    color: var(--white);
}
.btn-accent:hover { background: var(--sage-dark); color: var(--white); }
.btn-ghost {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.25); color: var(--white); }

/* ====== Hero (homepage) ====== */
.hero {
    position: relative;
    background:
        linear-gradient(135deg, var(--paper) 0%, var(--white) 60%);
    padding: 70px 0 90px;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -180px; right: -100px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, var(--navy-soft) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -120px; left: -60px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, var(--sage-soft) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--grey-100);
}
.hero h1 { font-size: clamp(34px, 4.6vw, 52px); margin-bottom: 18px; }
.hero h1 .accent {
    color: var(--navy);
    background: linear-gradient(120deg, transparent 0%, transparent 50%, var(--sage-soft) 50%, var(--sage-soft) 100%);
    background-size: 100% 50%;
    background-repeat: no-repeat;
    background-position: 0 88%;
    padding: 0 6px;
}
.hero p.lead {
    font-size: 17.5px;
    color: var(--grey-700);
    max-width: 540px;
    margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: var(--grey-400);
    font-size: 13.5px;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* Hero stats panel */
.hero-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--grey-100);
    padding: 30px;
    box-shadow: var(--shadow-lg);
}
.hero-panel h3 { color: var(--navy); font-size: 18px; }
.hero-panel-list { list-style: none; padding: 0; margin: 18px 0 0; }
.hero-panel-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--grey-100);
    font-size: 14.5px;
    color: var(--grey-700);
}
.hero-panel-list li:last-child { border-bottom: 0; }
.hero-panel-list .check {
    width: 28px; height: 28px;
    flex-shrink: 0;
    background: var(--sage);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
}

/* ====== Sections ====== */
section { padding: 80px 0; }
.section-alt { background: var(--paper); }
.section-deep { background: var(--navy-dark); color: #d3dde7; }
.section-deep h2, .section-deep h3, .section-deep h4 { color: var(--white); }

.section-head { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
    display: inline-block;
    color: var(--sage-dark);
    padding: 4px 12px;
    background: var(--sage-soft);
    border-radius: var(--radius-xs);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-title { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 12px; }
.section-lead {
    color: var(--grey-400);
    max-width: 680px;
    margin: 0 auto;
    font-size: 16.5px;
}

/* ====== Service cards ====== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
    display: block;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--sage));
    transition: width .4s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--navy-soft); }
.service-card:hover::after { width: 100%; }
.service-icon {
    width: 56px; height: 56px;
    background: var(--sky-soft);
    color: var(--navy);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--navy); color: var(--white); }
.service-card h3 { color: var(--grey-900); margin-bottom: 8px; font-size: 18px; }
.service-card p { font-size: 14.5px; color: var(--grey-400); margin: 0; }
.service-card .more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 14px;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
}

/* ====== Trust strip ====== */
.trust-strip {
    background: var(--white);
    padding: 30px 0;
    border-top: 1px solid var(--grey-100);
    border-bottom: 1px solid var(--grey-100);
}
.trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 12px;
    border-left: 3px solid var(--sage);
}
.trust-strip-item .icon {
    flex-shrink: 0;
    width: 38px; height: 38px;
    background: var(--sky-soft);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.trust-strip-item h4 { margin: 0 0 2px; font-size: 15px; color: var(--grey-900); }
.trust-strip-item p { font-size: 13px; color: var(--grey-400); margin: 0; }

/* ====== Why us ====== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.why-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    border: 1px solid var(--grey-100);
}
.why-num {
    display: inline-block;
    color: var(--navy);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

/* ====== Testimonials ====== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testimonial {
    background: var(--white);
    padding: 28px 26px;
    border-radius: var(--radius-md);
    border: 1px solid var(--grey-100);
    border-top: 3px solid var(--sage);
}
.stars { color: var(--sage); margin-bottom: 12px; letter-spacing: 1.5px; }
.testimonial p { color: var(--grey-700); margin: 0 0 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}
.testimonial-name { font-weight: 700; color: var(--grey-900); font-size: 15px; }
.testimonial-role { font-size: 12.5px; color: var(--grey-400); }

/* ====== Areas ====== */
.areas-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 64px 0;
}
.areas-band h2 { color: var(--white); }
.areas-band .section-eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #c8d8e6;
}
.areas-band .section-lead { color: #c8d8e6; }
.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 24px;
}
.areas-list span {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 9px 18px;
    border-radius: 999px;
    font-weight: 500;
    color: var(--white);
    font-size: 14px;
}

/* ====== Before / after ====== */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.ba-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--grey-100);
}
.ba-card-image {
    height: 220px;
    background: linear-gradient(135deg, var(--grey-100), var(--grey-50));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-400);
    font-size: 14px;
    position: relative;
}
.ba-card-image::after {
    content: attr(data-label);
    position: absolute;
    top: 14px; left: 14px;
    background: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-xs);
    color: var(--navy);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.ba-card-body { padding: 22px; }
.ba-card-body h4 { margin-bottom: 6px; font-size: 17px; }
.ba-card-body p { color: var(--grey-400); font-size: 14px; margin: 0; }

/* ====== CTA band ====== */
.cta-band {
    background: var(--navy-dark);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage), var(--sky));
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin-bottom: 28px; font-size: 16.5px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ====== Page hero ====== */
.page-hero {
    background: var(--paper);
    padding: 60px 0 50px;
    border-bottom: 1px solid var(--grey-100);
}
.breadcrumb { color: var(--grey-400); font-size: 13.5px; margin-bottom: 14px; }
.page-hero .lead { font-size: 17.5px; max-width: 760px; }

/* ====== Two col ====== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* ====== Check list ====== */
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--grey-700);
}
.check-list li::before {
    content: "✓";
    width: 22px; height: 22px;
    flex-shrink: 0;
    background: var(--sage-soft);
    color: var(--sage-dark);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    margin-top: 3px;
}

/* ====== Service detail blocks ====== */
.services-detail .service-block {
    background: var(--white);
    padding: 32px 30px;
    border: 1px solid var(--grey-100);
    border-radius: var(--radius-md);
    margin-bottom: 22px;
    box-shadow: var(--shadow-xs);
}
.service-block-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--grey-100);
}
.service-block-icon {
    width: 60px; height: 60px;
    background: var(--sky-soft);
    color: var(--navy);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}
.service-block h2 { margin: 0; font-size: 23px; }

/* ====== Values ====== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.value-card {
    background: var(--white);
    padding: 26px;
    border-radius: var(--radius-md);
    border: 1px solid var(--grey-100);
    transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); border-color: var(--navy-soft); transform: translateY(-2px); }
.value-num {
    display: inline-block;
    color: var(--navy);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ====== Callouts ====== */
.callout {
    background: var(--sky-soft);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    margin: 22px 0;
    border-left: 3px solid var(--navy);
}
.callout-warning {
    background: var(--sage-soft);
    border-left-color: var(--sage);
}
.callout strong { color: var(--grey-900); display: block; margin-bottom: 4px; }
.callout p { margin: 0; font-size: 14.5px; }

/* ====== Forms ====== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 36px;
    align-items: start;
}
.contact-info, .contact-form-wrapper, .quote-form-wrapper {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--grey-100);
    box-shadow: var(--shadow-xs);
}
.contact-info h3 { margin-top: 22px; font-size: 16px; color: var(--navy); }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--grey-100);
    font-size: 14.5px;
}
.hours-list li:last-child { border-bottom: 0; }

.contact-form .form-row { margin-bottom: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--grey-700);
    margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--grey-100);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14.5px;
    background: var(--white);
    color: var(--grey-700);
    transition: var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 0;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(31, 77, 126, 0.15);
}
.contact-form textarea { resize: vertical; }
.checkbox-row label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13.5px;
    color: var(--grey-700);
    font-weight: 400;
}
.checkbox-row input { width: auto; margin-top: 3px; }
.form-success {
    margin-top: 14px;
    padding: 12px 16px;
    background: var(--sage-soft);
    color: var(--sage-dark);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
}
.contact-note {
    margin-top: 22px;
    background: var(--sky-soft);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--navy);
}

/* ====== Map ====== */
.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--grey-100);
}

/* ====== Content pages ====== */
.content-page { padding: 50px 0 80px; background: var(--white); }
.content-page .container { max-width: 880px; }
.content-page h2 {
    color: var(--grey-900);
    font-size: 22px;
    margin-top: 36px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--sky-soft);
}
.content-page h3 { font-size: 17px; color: var(--navy); margin-top: 22px; }
.content-page p { font-size: 15.5px; color: var(--grey-700); }
.legal-date {
    color: var(--grey-400);
    font-style: italic;
    margin-bottom: 30px;
    font-size: 14px;
}
.content-page code {
    background: var(--grey-50);
    padding: 2px 6px;
    border-radius: var(--radius-xs);
    font-size: 13px;
    color: var(--navy);
}

/* ====== Footer ====== */
.site-footer {
    background: var(--grey-900);
    color: #b3bfcd;
    padding: 64px 0 26px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 36px;
    margin-bottom: 36px;
}
.footer-grid h4 {
    color: var(--white);
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}
.footer-grid p { font-size: 14px; color: #98a8b8; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 5px 0; font-size: 14px; }
.footer-grid a { color: #b3bfcd; }
.footer-grid a:hover { color: var(--sage); }
.legal-info { font-size: 13px; color: #7d8a9b; margin-top: 12px; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
    color: #7d8a9b;
}

/* ====== Cookie banner ====== */
.cookie-banner {
    position: fixed;
    bottom: 18px; left: 18px; right: 18px;
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--grey-100);
    z-index: 100;
    display: none;
}
.cookie-banner.show { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.cookie-banner p { margin: 0; font-size: 13.5px; flex: 1; min-width: 220px; }
.cookie-banner .btn { padding: 9px 18px; font-size: 13.5px; }

/* ====== Responsive ====== */
@media (max-width: 960px) {
    .hero { padding: 50px 0; }
    .hero-grid,
    .two-col,
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .services-grid,
    .why-grid,
    .testimonials-grid,
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .ba-grid { grid-template-columns: 1fr; }
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--grey-100);
        box-shadow: var(--shadow-md);
        padding: 14px 24px;
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 4px; }
}
@media (max-width: 600px) {
    .services-grid,
    .why-grid,
    .testimonials-grid,
    .values-grid { grid-template-columns: 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .trust-strip-inner { grid-template-columns: 1fr 1fr; }
    section { padding: 56px 0; }
    .hero h1 { font-size: 30px; }
    .service-block-head { flex-direction: column; align-items: flex-start; }
}
