/* ====================================================
   DV CLEAN — feuille de styles
   Palette : blanc, bleu clair, bleu foncé, argenté
   Univers : lavage automobile premium
   ==================================================== */

:root {
    --white: #ffffff;
    --paper: #f5f8fb;
    --silver: #c8d3df;
    --silver-soft: #eef2f7;
    --sky: #4ea4d4;
    --sky-soft: #dbedf7;
    --navy: #143560;
    --navy-mid: #1f4a7c;
    --navy-soft: #c9dbed;
    --grey-50: #eef2f5;
    --grey-100: #dde4eb;
    --grey-200: #c2cdd8;
    --grey-400: #6f7c8d;
    --grey-700: #303a48;
    --grey-900: #0d1620;
    --shadow-xs: 0 1px 3px rgba(13, 22, 32, 0.06);
    --shadow-sm: 0 4px 14px rgba(13, 22, 32, 0.08);
    --shadow-md: 0 16px 36px rgba(13, 22, 32, 0.12);
    --shadow-lg: 0 28px 60px rgba(13, 22, 32, 0.16);
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --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-mid); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--sky); }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
    color: var(--grey-900);
    font-weight: 700;
    line-height: 1.20;
    letter-spacing: -0.015em;
    margin: 0 0 18px;
}
h1 { font-size: clamp(32px, 4.6vw, 50px); }
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);
    color: #c8d3df;
    font-size: 13.5px;
    padding: 10px 0;
}
.top-bar a { color: #e6eef5; }
.top-bar a:hover { color: var(--sky); }
.top-bar-inner { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.badge {
    background: var(--sky);
    color: var(--white);
    padding: 3px 12px;
    border-radius: var(--radius-xs);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.18em;
    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.02em;
}
.logo:hover { color: var(--navy); }
.logo-mark {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--sky) 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 6px 18px rgba(20, 53, 96, 0.30);
    position: relative;
    transform: rotate(-4deg);
}
.logo-mark span { transform: rotate(4deg); }
.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(--sky); 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 28px;
    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 8px 20px rgba(20, 53, 96, 0.30);
}
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(20, 53, 96, 0.38); 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(--sky);
    color: var(--white);
}
.btn-accent:hover { background: var(--navy); 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 ====== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--sky) 130%);
    color: var(--white);
    padding: 80px 0 100px;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -120px; left: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(78, 164, 212, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}
.hero h1, .hero h2, .hero h3 { color: var(--white); }
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    padding: 7px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
}
.hero h1 { font-size: clamp(34px, 4.8vw, 54px); margin-bottom: 20px; }
.hero h1 .accent {
    color: #9bd6f1;
    background: linear-gradient(120deg, #b3e0f5 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p.lead {
    font-size: 17.5px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 540px;
    margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13.5px;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 30px;
    box-shadow: var(--shadow-lg);
    color: var(--grey-700);
}
.hero-card h3 { color: var(--navy); font-size: 18px; margin-bottom: 6px; }
.hero-card p { font-size: 14.5px; color: var(--grey-400); margin: 0; }
.hero-card-list {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
}
.hero-card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--grey-100);
    font-size: 14.5px;
    color: var(--grey-700);
}
.hero-card-list li:last-child { border-bottom: 0; }
.hero-card-list .ic {
    width: 36px; height: 36px;
    background: var(--sky-soft);
    color: var(--navy);
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* ====== Sections ====== */
section { padding: 80px 0; }
.section-alt { background: var(--paper); }
.section-deep { background: var(--grey-900); color: #c5d1de; }
.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(--sky);
    background: var(--sky-soft);
    padding: 5px 14px;
    border-radius: var(--radius-xs);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.16em;
    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;
}

/* ====== Trust strip ====== */
.trust-strip {
    background: var(--white);
    padding: 40px 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;
}
.trust-strip-item .icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--sky-soft), var(--silver-soft));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--navy);
}
.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; }

/* ====== 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: 30px 26px;
    transition: var(--transition);
    display: block;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 0;
    background: linear-gradient(to bottom, var(--sky), var(--navy));
    transition: height .35s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sky-soft); }
.service-card:hover::before { height: 100%; }
.service-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--sky));
    color: var(--white);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    box-shadow: 0 6px 14px rgba(20, 53, 96, 0.20);
}
.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;
}
.service-card.secondary {
    background: var(--paper);
    border-style: dashed;
}
.service-card.secondary .service-icon {
    background: var(--silver-soft);
    color: var(--navy);
    box-shadow: none;
}

/* ====== Why ====== */
.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(--sky);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.12em;
    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: 4px solid var(--sky);
}
.stars { color: var(--sky); 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: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--sky));
    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); }

/* ====== 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(--silver-soft), 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: linear-gradient(135deg, var(--navy) 0%, var(--sky) 100%);
    color: var(--white);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255, 255, 255, 0.92); margin-bottom: 28px; font-size: 16.5px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ====== Page hero ====== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    padding: 60px 0 60px;
}
.page-hero h1 { color: var(--white); }
.page-hero .breadcrumb { color: rgba(255, 255, 255, 0.7); margin-bottom: 14px; font-size: 13.5px; }
.page-hero .breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.page-hero .breadcrumb a:hover { color: var(--sky); }
.page-hero .lead { font-size: 17.5px; max-width: 760px; color: rgba(255, 255, 255, 0.88); }

/* ====== 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(--sky-soft);
    color: var(--navy);
    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 {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 24px;
    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: 70px; height: 70px;
    background: linear-gradient(135deg, var(--navy), var(--sky));
    color: var(--white);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(20, 53, 96, 0.22);
}
.service-block h2 { font-size: 23px; margin-bottom: 12px; }

/* ====== 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(--sky-soft); transform: translateY(-2px); }
.value-num {
    display: inline-block;
    color: var(--navy);
    background: var(--sky-soft);
    padding: 4px 10px;
    border-radius: var(--radius-xs);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* ====== Callouts ====== */
.callout {
    background: var(--sky-soft);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    margin: 22px 0;
    border-left: 3px solid var(--sky);
}
.callout-warning {
    background: var(--silver-soft);
    border-left-color: var(--silver);
}
.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(--sky);
    box-shadow: 0 0 0 3px rgba(78, 164, 212, 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(--sky-soft);
    color: var(--navy);
    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);
}

/* ====== 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(--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: 60px 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: 22px; }
    .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-strip-inner { grid-template-columns: 1fr 1fr; }
    section { padding: 56px 0; }
    .hero h1 { font-size: 30px; }
}
