/* ====================================================
   GOPRO CLEAN — feuille de styles
   Palette : blanc, bleu clair, vert tendre, gris clair
   ==================================================== */

:root {
    --white: #ffffff;
    --off-white: #f8fbfd;
    --sky: #5cb6e0;
    --sky-soft: #d8eef8;
    --sky-deep: #2d8cb8;
    --leaf: #7ec99a;
    --leaf-soft: #def0e2;
    --leaf-deep: #4d9b6e;
    --grey-50: #f3f5f7;
    --grey-100: #e6ebf0;
    --grey-200: #cbd3da;
    --grey-400: #8893a0;
    --grey-700: #3a4654;
    --grey-900: #1a2230;
    --shadow-sm: 0 2px 6px rgba(33, 60, 90, 0.06);
    --shadow-md: 0 8px 24px rgba(33, 60, 90, 0.08);
    --shadow-lg: 0 18px 50px rgba(33, 60, 90, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;
    --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(--off-white);
    line-height: 1.6;
    font-size: 16px;
}

a { color: var(--sky-deep); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--leaf-deep); }

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

h1, h2, h3, h4 {
    color: var(--grey-900);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0 0 18px;
}
h1 { font-size: clamp(30px, 4vw, 46px); }
h2 { font-size: clamp(24px, 3vw, 34px); }
h3 { font-size: 20px; }
h4 { font-size: 17px; }
p { margin: 0 0 14px; }

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

/* ====== Top bar ====== */
.top-bar {
    background: var(--grey-900);
    color: #c8d3df;
    font-size: 13.5px;
    padding: 9px 0;
}
.top-bar a { color: #e3ecf3; }
.top-bar a:hover { color: var(--sky); }
.top-bar-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.badge {
    background: linear-gradient(135deg, var(--sky), var(--leaf));
    color: var(--white);
    padding: 3px 12px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 0.12em;
}
.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: 50;
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
    color: var(--grey-900);
    letter-spacing: 0.02em;
}
.logo:hover { color: var(--sky-deep); }
.logo-mark {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--sky) 0%, var(--leaf) 100%);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border-radius: 12px;
    font-size: 14px;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 12px rgba(92, 182, 224, 0.35);
}
.main-nav ul {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    gap: 6px;
}
.main-nav a {
    display: inline-block;
    padding: 9px 14px;
    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(--sky-deep); }
.main-nav a.active { color: var(--sky-deep); background: var(--sky-soft); }
.main-nav a.nav-cta {
    background: linear-gradient(135deg, var(--sky), var(--leaf));
    color: var(--white);
    padding: 9px 18px;
    box-shadow: 0 4px 12px rgba(92, 182, 224, 0.35);
}
.main-nav a.nav-cta:hover { transform: translateY(-1px); background: linear-gradient(135deg, var(--sky-deep), var(--leaf-deep)); color: var(--white); }
.nav-toggle {
    display: none;
    background: var(--sky-soft);
    border: 0;
    width: 40px; height: 40px;
    border-radius: 10px;
    color: var(--sky-deep);
    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-pill);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 0;
    text-align: center;
    transition: var(--transition);
}
.btn-primary {
    background: linear-gradient(135deg, var(--sky) 0%, var(--leaf) 100%);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(92, 182, 224, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(92, 182, 224, 0.5); color: var(--white); }
.btn-secondary {
    background: var(--white);
    color: var(--sky-deep);
    border: 1.5px solid var(--sky);
}
.btn-secondary:hover { background: var(--sky-soft); color: var(--sky-deep); }
.btn-ghost {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.28); color: var(--white); }

/* ====== Hero (homepage) ====== */
.hero {
    position: relative;
    background:
        radial-gradient(ellipse at top right, rgba(126, 201, 154, 0.20), transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(92, 182, 224, 0.20), transparent 50%),
        linear-gradient(180deg, #f3faff 0%, #ffffff 100%);
    padding: 76px 0 80px;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 40px;
    background: var(--off-white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 60%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--sky-deep);
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--grey-100);
}
.hero h1 {
    font-size: clamp(32px, 4.5vw, 50px);
    margin-bottom: 18px;
}
.hero h1 .accent {
    background: linear-gradient(120deg, var(--sky-deep) 0%, var(--leaf-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p.lead {
    font-size: 17px;
    color: var(--grey-700);
    max-width: 560px;
    margin-bottom: 26px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.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-visual {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--grey-100);
}
.hero-visual h3 { font-size: 17px; color: var(--sky-deep); }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 22px;
}
.hero-stat {
    background: var(--off-white);
    border: 1px solid var(--grey-100);
    border-radius: var(--radius-md);
    padding: 16px;
}
.hero-stat strong {
    display: block;
    font-size: 26px;
    color: var(--grey-900);
    margin-bottom: 3px;
}
.hero-stat span { font-size: 13px; color: var(--grey-400); }

.hero-checklist {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}
.hero-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14.5px;
    color: var(--grey-700);
}
.hero-checklist li::before {
    content: "✓";
    width: 22px; height: 22px;
    flex-shrink: 0;
    background: var(--leaf-soft);
    color: var(--leaf-deep);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
}

/* ====== Sections ====== */
section { padding: 70px 0; }
.section-alt { background: var(--white); }
.section-deep { background: linear-gradient(135deg, var(--grey-900) 0%, #243043 100%); color: #d3dde7; }
.section-deep h2, .section-deep h3 { color: var(--white); }

.section-head { text-align: center; margin-bottom: 46px; }
.section-eyebrow {
    display: inline-block;
    background: var(--sky-soft);
    color: var(--sky-deep);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    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: 16px;
}

/* ====== Service cards (homepage grid) ====== */
.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;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sky), var(--leaf));
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sky-soft); }
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--sky-soft), var(--leaf-soft));
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}
.service-card h3 { color: var(--grey-900); margin-bottom: 8px; }
.service-card p { font-size: 14.5px; color: var(--grey-400); margin: 0; }
.service-card .more {
    margin-top: 14px;
    font-size: 13.5px;
    color: var(--sky-deep);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ====== Trust bar ====== */
.trust-bar {
    background: var(--white);
    padding: 30px 0;
    border-top: 1px solid var(--grey-100);
    border-bottom: 1px solid var(--grey-100);
}
.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    text-align: center;
}
.trust-bar-item strong {
    display: block;
    font-size: 24px;
    color: var(--sky-deep);
    margin-bottom: 4px;
}
.trust-bar-item span {
    color: var(--grey-400);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ====== USP / why ====== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.why-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--grey-100);
}
.why-num {
    display: inline-block;
    background: var(--leaf-soft);
    color: var(--leaf-deep);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

/* ====== Testimonials ====== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testimonial {
    background: var(--white);
    padding: 26px;
    border-radius: var(--radius-md);
    border: 1px solid var(--grey-100);
    position: relative;
}
.testimonial::before {
    content: "\201C";
    position: absolute;
    top: -10px; left: 18px;
    background: var(--sky);
    color: var(--white);
    width: 38px; height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    padding-top: 8px;
}
.testimonial p { font-style: italic; color: var(--grey-700); margin: 14px 0 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky), var(--leaf));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.testimonial-name { font-weight: 700; color: var(--grey-900); font-size: 15px; }
.testimonial-role { font-size: 12.5px; color: var(--grey-400); }

/* ====== Areas served ====== */
.areas-band {
    background: linear-gradient(135deg, var(--sky-soft) 0%, var(--leaf-soft) 100%);
    padding: 60px 0;
}
.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 24px;
}
.areas-list span {
    background: var(--white);
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    color: var(--grey-700);
    font-size: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* ====== Before / after placeholder ====== */
.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 10px;
    border-radius: 6px;
    color: var(--sky-deep);
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}
.ba-card-body { padding: 20px; }
.ba-card-body h4 { margin-bottom: 6px; }
.ba-card-body p { color: var(--grey-400); font-size: 14px; margin: 0; }

/* ====== CTA band ====== */
.cta-band {
    background: linear-gradient(135deg, var(--sky-deep) 0%, var(--leaf-deep) 100%);
    color: var(--white);
    padding: 64px 0;
    text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255, 255, 255, 0.92); margin-bottom: 24px; font-size: 16px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ====== Page hero (interior pages) ====== */
.page-hero {
    background: linear-gradient(180deg, #f3faff 0%, var(--off-white) 100%);
    padding: 56px 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: 17px; max-width: 720px; }

/* ====== Two-column block ====== */
.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: 10px;
    padding: 7px 0;
    font-size: 15px;
    color: var(--grey-700);
}
.check-list li::before {
    content: "✓";
    width: 22px; height: 22px;
    flex-shrink: 0;
    background: var(--leaf-soft);
    color: var(--leaf-deep);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    margin-top: 2px;
}

/* ====== Service detail blocks ====== */
.services-detail .service-block {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 28px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--grey-100);
    margin-bottom: 22px;
    transition: var(--transition);
}
.services-detail .service-block:hover { box-shadow: var(--shadow-md); border-color: var(--sky-soft); }
.service-block-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--sky-soft), var(--leaf-soft));
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
}

/* ====== 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);
}
.value-num {
    color: var(--sky-deep);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

/* ====== Callouts ====== */
.callout {
    background: var(--sky-soft);
    border-left: 4px solid var(--sky);
    padding: 18px 22px;
    border-radius: 8px;
    margin: 22px 0;
}
.callout-warning {
    background: var(--leaf-soft);
    border-left-color: var(--leaf);
}
.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: 40px;
    align-items: start;
}
.contact-info, .contact-form-wrapper, .quote-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--grey-100);
}
.contact-info h3 { margin-top: 22px; font-size: 16px; color: var(--sky-deep); }
.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: 11px 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(--sky);
    box-shadow: 0 0 0 3px rgba(92, 182, 224, 0.18);
}
.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(--leaf-soft);
    color: var(--leaf-deep);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}
.contact-note {
    margin-top: 22px;
    background: var(--sky-soft);
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--sky-deep);
}

/* ====== 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 70px;
    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(--sky-deep); margin-top: 22px; }
.content-page p { font-size: 15.5px; color: var(--grey-700); }
.content-page ul { padding-left: 0; }
.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: 4px;
    font-size: 13px;
    color: var(--sky-deep);
}

/* ====== Footer ====== */
.site-footer {
    background: var(--grey-900);
    color: #b3bfcd;
    padding: 60px 0 26px;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
}
.footer-grid h4 {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.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(--sky); }
.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-bar-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; }
    .services-detail .service-block { grid-template-columns: 1fr; }
}
@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-bar-inner { grid-template-columns: 1fr 1fr; }
    section { padding: 50px 0; }
    .hero h1 { font-size: 30px; }
}
