@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
    --green-950: #0d2b24;
    --green-900: #12372e;
    --green-800: #173f34;
    --green-700: #235747;
    --green-500: #3f826d;
    --sand-50: #fcfaf5;
    --sand-100: #f5f0e5;
    --sand-200: #e9dfcc;
    --gold: #c88a3d;
    --gold-dark: #a86a25;
    --ink: #15201d;
    --muted: #60706b;
    --white: #fff;
    --danger: #9d2f2f;
    --success: #146c43;
    --border: rgba(21, 32, 29, .13);
    --shadow-sm: 0 12px 30px rgba(13, 43, 36, .08);
    --shadow-lg: 0 28px 70px rgba(13, 43, 36, .16);
    --radius-sm: 12px;
    --radius: 22px;
    --radius-lg: 34px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--sand-50);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
address { font-style: normal; }
p { margin: 0 0 1rem; }
h1, h2, h3 {
    font-family: "Manrope", "DM Sans", sans-serif;
    line-height: 1.12;
    letter-spacing: -.035em;
    margin: 0 0 1rem;
}
h1 { font-size: clamp(2.65rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: 1.25rem; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 870px; }
.section { padding: 100px 0; }
.skip-link {
    position: fixed; left: 20px; top: -100px; z-index: 9999;
    background: var(--white); padding: 12px 18px; border-radius: 10px;
}
.skip-link:focus { top: 20px; }

.topbar { background: var(--green-950); color: rgba(255,255,255,.8); font-size: .84rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { margin: 0; }
.topbar-links { display: flex; gap: 25px; }
.topbar a:hover { color: var(--white); }

.site-header {
    position: sticky; top: 0; z-index: 1000; background: rgba(252,250,245,.95);
    backdrop-filter: blur(14px); transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 40px rgba(13,43,36,.08); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 210px; }
.main-nav { display: flex; align-items: center; gap: 30px; font-weight: 600; font-size: .95rem; }
.main-nav > a:not(.btn), .nav-dropdown > button {
    border: 0; background: transparent; color: var(--ink); padding: 12px 0;
}
.main-nav > a:not(.btn):hover, .nav-dropdown > button:hover { color: var(--green-500); }
.nav-dropdown { position: relative; }
.nav-dropdown > button { display: flex; align-items: center; gap: 7px; font-weight: 600; }
.dropdown-panel {
    display: grid; position: absolute; top: calc(100% + 12px); left: 50%; transform: translate(-50%, 8px);
    min-width: 270px; padding: 12px; background: var(--white); border: 1px solid var(--border);
    border-radius: 18px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: .2s ease;
}
.nav-dropdown:hover .dropdown-panel, .nav-dropdown.is-open .dropdown-panel {
    opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.dropdown-panel a { padding: 10px 12px; border-radius: 10px; }
.dropdown-panel a:hover { background: var(--sand-100); color: var(--green-700); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.nav-toggle span { display: block; width: 26px; height: 2px; margin: 5px; background: var(--ink); transition: .2s; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 50px; padding: 13px 23px; border: 1px solid transparent; border-radius: 999px;
    font-weight: 700; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green-800); color: var(--white); box-shadow: 0 12px 26px rgba(23,63,52,.18); }
.btn-primary:hover { background: var(--green-950); box-shadow: 0 15px 32px rgba(23,63,52,.26); }
.btn-secondary { border-color: var(--green-800); color: var(--green-800); background: transparent; }
.btn-secondary:hover { background: var(--green-800); color: var(--white); }
.btn-light { background: var(--white); color: var(--green-900); }
.btn-full { width: 100%; border: 0; }
.btn svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.nav-cta { min-height: 44px; padding: 10px 19px; }

.hero {
    overflow: hidden; position: relative; padding: 75px 0 90px;
    background:
        radial-gradient(circle at 90% 10%, rgba(200,138,61,.18), transparent 30%),
        linear-gradient(135deg, var(--sand-50), var(--sand-100));
}
.hero::before {
    content: ""; position: absolute; width: 500px; height: 500px; left: -250px; bottom: -300px;
    border: 1px solid rgba(23,63,52,.14); border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(23,63,52,.025), 0 0 0 140px rgba(23,63,52,.018);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 50px; }
.eyebrow, .section-kicker {
    display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
    color: var(--gold-dark); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
}
.eyebrow::before, .section-kicker::before { content: ""; width: 30px; height: 2px; background: currentColor; }
.hero h1 strong { color: var(--green-700); }
.hero-lead { font-size: 1.15rem; max-width: 650px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-list { display: flex; flex-wrap: wrap; list-style: none; padding: 0; margin: 28px 0 0; gap: 18px; font-weight: 600; font-size: .9rem; }
.trust-list li { display: flex; align-items: center; gap: 8px; }
.trust-list li::before { content: "✓"; display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; background: var(--green-800); color: white; font-size: .72rem; }
.hero-visual { position: relative; }
.hero-visual > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-card {
    position: absolute; display: grid; gap: 2px; background: rgba(255,255,255,.93);
    border: 1px solid rgba(255,255,255,.8); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px);
    padding: 16px 18px; border-radius: 16px; font-size: .78rem;
}
.hero-card strong { color: var(--green-800); font-size: .95rem; }
.hero-card span { color: var(--muted); }
.hero-card-one { left: -25px; bottom: 22%; }
.hero-card-two { right: -10px; top: 16%; }

.answer-strip { background: var(--green-900); color: var(--white); padding: 55px 0; }
.answer-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 60px; align-items: center; }
.answer-strip .section-kicker { color: #e7b978; margin-bottom: 8px; }
.answer-strip h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin: 0; }
.answer-strip p { margin: 0; color: rgba(255,255,255,.78); font-size: 1.03rem; }
.answer-strip p strong { color: var(--white); }

.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 48px; }
.section-heading > div { max-width: 720px; }
.section-heading > p { max-width: 440px; color: var(--muted); }
.section-heading.centered { justify-content: center; text-align: center; }
.section-heading.light { color: var(--white); }
.section-heading.light > p { color: rgba(255,255,255,.72); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
    position: relative; min-height: 390px; display: flex; flex-direction: column; padding: 0;
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card-media { display: block; position: relative; overflow: hidden; aspect-ratio: 16 / 9; background: var(--sand-100); }
.service-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,43,36,.18), transparent 50%); pointer-events: none; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-card:hover .service-card-media img { transform: scale(1.045); }
.service-card-body { display: flex; flex: 1; flex-direction: column; padding: 24px 26px 27px; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-number { color: var(--gold-dark); font-weight: 800; font-size: .8rem; letter-spacing: .08em; margin-bottom: 20px; }
.service-card h3 { font-size: 1.42rem; }
.service-card p { color: var(--muted); flex: 1; }
.service-card-body > a { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--green-700); margin-top: 18px; }
.compact-grid .service-card { min-height: 360px; }

.split-section { background: var(--sand-100); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: center; }
.image-panel { position: relative; }
.image-panel img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.image-badge {
    position: absolute; right: -20px; bottom: 35px; display: grid;
    padding: 20px 25px; background: var(--green-900); color: var(--white); border-radius: 16px; box-shadow: var(--shadow-lg);
}
.image-badge strong { font-size: 1.1rem; }
.image-badge span { color: rgba(255,255,255,.7); font-size: .82rem; }
.content-panel > p { color: var(--muted); }
.process-list, .steps-detailed { list-style: none; padding: 0; margin: 35px 0 0; }
.process-list li { display: grid; grid-template-columns: 55px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.process-list li > span {
    display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
    background: var(--white); color: var(--green-700); font-weight: 800; box-shadow: var(--shadow-sm);
}
.process-list h3 { margin: 0 0 5px; }
.process-list p { color: var(--muted); margin: 0; }

.locations-section { background: var(--green-900); color: var(--white); overflow: hidden; position: relative; }
.locations-section::after { content:""; position:absolute; right:-200px; top:-200px; width:520px; height:520px; border:1px solid rgba(255,255,255,.08); border-radius:50%; box-shadow:0 0 0 80px rgba(255,255,255,.02),0 0 0 160px rgba(255,255,255,.015); }
.city-cloud { display: flex; flex-wrap: wrap; gap: 12px; position: relative; z-index: 1; }
.city-cloud a { padding: 12px 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.88); transition: .2s; }
.city-cloud a:hover { background: var(--white); color: var(--green-900); border-color: white; }
.coverage-cta { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 45px; padding-top: 35px; border-top: 1px solid rgba(255,255,255,.15); position: relative; z-index: 1; }
.coverage-cta p { margin: 0; color: rgba(255,255,255,.75); }

.sign-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sign-grid article { padding: 27px; border-left: 2px solid var(--sand-200); }
.sign-grid article > span { color: var(--gold-dark); font-size: .78rem; font-weight: 800; }
.sign-grid h3 { margin-top: 18px; }
.sign-grid p { color: var(--muted); margin: 0; }

.quote-section { background: linear-gradient(145deg, #eee5d5, #f8f4eb); }
.quote-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.quote-copy { position: sticky; top: 150px; }
.quote-copy > p { color: var(--muted); max-width: 490px; }
.quote-box { background: var(--white); padding: 36px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.contact-card { display: grid; gap: 0; margin-top: 35px; border-top: 1px solid var(--border); }
.contact-card > * { display: grid; padding: 17px 0; border-bottom: 1px solid var(--border); }
.contact-card span { color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-card strong { color: var(--green-800); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-form label { display: grid; gap: 8px; margin-bottom: 18px; }
.quote-form label > span { font-size: .87rem; font-weight: 700; }
.quote-form input, .quote-form select, .quote-form textarea {
    width: 100%; border: 1px solid var(--border); background: #fdfcf9; border-radius: 12px;
    padding: 14px 15px; color: var(--ink); outline: none; transition: border .2s, box-shadow .2s;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(63,130,109,.12); }
.quote-form textarea { resize: vertical; min-height: 130px; }
.quote-form .consent { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; }
.quote-form .consent input { width: 18px; height: 18px; margin-top: 3px; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .8rem; text-align: center; }
.form-status { margin-top: 15px; padding: 0; border-radius: 12px; }
.form-status.success, .form-status.error { padding: 15px; }
.form-status.success { color: var(--success); background: rgba(20,108,67,.08); }
.form-status.error { color: var(--danger); background: rgba(157,47,47,.08); }
.form-status p { margin: 0 0 8px; }
.form-status a { font-weight: 700; text-decoration: underline; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 25px; padding: 24px 0; font-family: "Manrope"; font-size: 1.08rem; font-weight: 700; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { display: grid; place-items: center; min-width: 30px; height: 30px; border-radius: 50%; background: var(--sand-100); color: var(--green-800); transition: .2s; }
.faq-item[open] summary span { transform: rotate(45deg); background: var(--green-800); color: white; }
.faq-item > div { padding: 0 50px 22px 0; color: var(--muted); }
.faq-item > div p { margin: 0; }

.final-cta { background: var(--gold); padding: 55px 0; color: var(--green-950); }
.final-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.final-cta span { font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.final-cta h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin: 7px 0 0; }

.page-hero {
    padding: 65px 0 75px; background:
        radial-gradient(circle at 85% 15%, rgba(200,138,61,.18), transparent 30%),
        linear-gradient(135deg, var(--sand-50), var(--sand-100));
}
.page-hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: center; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.6rem); }
.page-hero p { color: var(--muted); max-width: 760px; font-size: 1.05rem; }
.small-hero h1 { font-size: clamp(2.3rem, 4vw, 3.6rem); }
.breadcrumbs { margin-bottom: 45px; font-size: .82rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 9px; padding: 0; margin: 0; color: var(--muted); }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 9px; color: #a5aea9; }
.breadcrumbs a:hover { color: var(--green-700); }
.service-summary, .map-card {
    position: relative; display: grid; gap: 6px; padding: 32px; background: var(--green-900); color: var(--white);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden;
}
.service-summary::after, .map-card::after { content: ""; position: absolute; width: 200px; height: 200px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; right: -100px; bottom: -100px; }
.service-summary span { color: rgba(255,255,255,.58); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; margin-top: 10px; }
.service-summary strong { font-size: 1rem; }
.service-hero-side { display: grid; gap: 18px; min-width: 0; }
.service-hero-media { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--green-950); }
.service-hero-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.service-hero-media::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(to top, rgba(7,31,25,.88), transparent); pointer-events: none; }
.service-hero-media figcaption { position: absolute; z-index: 1; left: 22px; right: 22px; bottom: 18px; color: white; font-size: .9rem; line-height: 1.5; }
.service-hero-side .service-summary { grid-template-columns: 1fr; padding: 24px 28px; }
.map-card > span { color: #e7b978; text-transform: uppercase; letter-spacing: .1em; font-size: .75rem; }
.map-card > strong { font-family: "Manrope"; font-size: 2.2rem; }
.map-card p { color: rgba(255,255,255,.7); }
.map-pin { font-size: 4rem; opacity: .15; position: absolute; right: 28px; bottom: 15px; }

.two-column { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 65px; align-items: start; }
.main-article > h2 { font-size: clamp(1.8rem, 3vw, 2.65rem); margin-bottom: 27px; }
.main-article > .section-kicker:not(:first-child) { margin-top: 70px; }
.target-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin: 25px 0 45px; }
.target-grid > div { display: flex; align-items: center; gap: 12px; padding: 15px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; font-weight: 600; }
.target-grid svg { width: 22px; flex: 0 0 auto; fill: none; stroke: var(--green-700); stroke-width: 2.5; }
.answer-box { padding: 30px; margin: 45px 0; border-left: 4px solid var(--gold); background: var(--sand-100); border-radius: 0 var(--radius) var(--radius) 0; }
.answer-box h2 { font-size: 1.35rem; }
.answer-box p { margin: 0; color: var(--muted); }
.steps-detailed { display: grid; gap: 10px; }
.steps-detailed li { display: grid; grid-template-columns: 55px 1fr; align-items: center; gap: 18px; padding: 17px 20px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; }
.steps-detailed li > span { font-weight: 800; color: var(--gold-dark); }
.steps-detailed p { margin: 0; }
.warning-box { margin-top: 40px; padding: 25px; border: 1px solid rgba(200,138,61,.35); background: rgba(200,138,61,.08); border-radius: var(--radius); }
.warning-box strong { display: block; margin-bottom: 7px; color: var(--gold-dark); }
.warning-box p { margin: 0; color: var(--muted); }
.sidebar { display: grid; gap: 20px; }
.sidebar-card { padding: 26px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.sticky-card { position: sticky; top: 125px; }
.sidebar-card h2 { font-size: 1.45rem; }
.sidebar-card p { color: var(--muted); }
.phone-link { display: block; text-align: center; padding: 15px 0 0; color: var(--green-800); font-weight: 800; font-size: 1.1rem; }
.sidebar-service { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border); font-size: .9rem; font-weight: 600; }
.sidebar-service:last-child { border: 0; }
.sidebar-service b { color: var(--green-500); }
.plain-checks { list-style: none; padding: 0; margin: 25px 0; display: grid; gap: 12px; }
.plain-checks li { display: flex; align-items: center; gap: 10px; }
.plain-checks li::before { content: "✓"; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--green-800); color: white; font-size: .75rem; }
.city-content .main-article > p { color: var(--muted); }
.contact-location { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; }
.contact-location address { font-size: 1.1rem; font-weight: 700; }
.map-placeholder { min-height: 300px; display: flex; flex-direction: column; justify-content: end; padding: 35px; border-radius: var(--radius-lg); background: radial-gradient(circle at 30% 30%, rgba(200,138,61,.3), transparent 24%), linear-gradient(135deg, #173f34, #0d2b24); color: white; position: relative; overflow: hidden; }
.map-placeholder::before { content: "⌖"; position: absolute; font-size: 10rem; opacity: .08; right: 40px; top: 10px; }
.map-placeholder span { color: rgba(255,255,255,.7); }
.map-placeholder strong { font-size: 1.6rem; font-family: "Manrope"; }
.map-placeholder a { margin-top: 16px; text-decoration: underline; }
.legal-content { max-width: 860px; }
.legal-content h2 { font-size: 1.7rem; margin-top: 40px; }
.legal-content p { color: var(--muted); }
.legal-content a { color: var(--green-700); text-decoration: underline; }
.not-found { min-height: 65vh; display: grid; place-items: center; text-align: center; padding: 80px 0; }
.error-code { display: block; font-family: "Manrope"; font-size: clamp(6rem, 18vw, 13rem); font-weight: 800; color: var(--sand-200); line-height: .85; }
.not-found h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
.not-found p { color: var(--muted); max-width: 580px; margin-inline: auto; }
.not-found .hero-actions { justify-content: center; }

.site-footer { background: var(--green-950); color: rgba(255,255,255,.7); padding: 75px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1.2fr; gap: 50px; }
.footer-logo { width: 210px; margin-bottom: 22px; }
.footer-grid h2 { color: var(--white); font-size: 1rem; letter-spacing: 0; margin-bottom: 20px; }
.footer-grid > div > a, .footer-grid address > * { display: block; margin-bottom: 10px; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding-top: 22px; font-size: .78rem; }
.footer-bottom p { margin: 0; }
.whatsapp-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 900; display: grid; place-items: center;
    width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: white; box-shadow: 0 15px 32px rgba(0,0,0,.2);
}
.whatsapp-float svg { width: 33px; fill: currentColor; }
.mobile-actions { display: none; }

@media (max-width: 1020px) {
    .main-nav { gap: 18px; }
    .hero-grid, .split-grid, .quote-layout, .page-hero-grid { gap: 40px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .sign-grid { grid-template-columns: repeat(2, 1fr); }
    .two-column { grid-template-columns: minmax(0, 1fr) 300px; gap: 35px; }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
    body { padding-bottom: 60px; }
    .topbar { display: none; }
    .nav-wrap { height: 72px; }
    .brand img { width: 190px; }
    .nav-toggle { display: block; z-index: 2; }
    .main-nav {
        position: fixed; inset: 72px 0 auto 0; min-height: calc(100vh - 72px); display: flex; flex-direction: column;
        align-items: stretch; gap: 0; padding: 25px 20px 90px; background: var(--sand-50); transform: translateX(100%);
        opacity: 0; visibility: hidden; transition: .25s ease; overflow-y: auto;
    }
    .main-nav.is-open { transform: translateX(0); opacity: 1; visibility: visible; }
    .main-nav > a:not(.btn), .nav-dropdown > button { width: 100%; text-align: left; padding: 16px 5px; border-bottom: 1px solid var(--border); }
    .nav-dropdown > button { justify-content: space-between; }
    .dropdown-panel { position: static; display: none; transform: none; opacity: 1; visibility: visible; min-width: auto; box-shadow: none; border: 0; background: var(--sand-100); margin: 8px 0; }
    .nav-dropdown.is-open .dropdown-panel { display: grid; transform: none; }
    .nav-cta { margin-top: 20px; }
    .hero { padding: 50px 0 70px; }
    .hero-grid, .split-grid, .quote-layout, .page-hero-grid, .answer-grid, .two-column, .contact-location { grid-template-columns: 1fr; }
    .hero-content { text-align: center; }
    .hero-lead { margin-inline: auto; }
    .hero-actions, .trust-list { justify-content: center; }
    .hero-visual { max-width: 610px; margin-inline: auto; }
    .answer-grid { gap: 20px; }
    .section { padding: 75px 0; }
    .section-heading { display: block; }
    .section-heading > p { margin-top: 15px; }
    .image-panel { max-width: 650px; }
    .quote-copy { position: static; }
    .sidebar { order: -1; }
    .sticky-card { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: auto; }
    .whatsapp-float { display: none; }
    .mobile-actions { position: fixed; z-index: 950; inset: auto 0 0; height: 60px; display: grid; grid-template-columns: repeat(3, 1fr); box-shadow: 0 -10px 35px rgba(13,43,36,.15); }
    .mobile-actions a { display: grid; place-items: center; color: white; font-size: .86rem; font-weight: 800; }
    .mobile-call { background: var(--green-700); }
    .mobile-whatsapp { background: #25D366; }
    .mobile-quote { background: var(--gold-dark); }
}

@media (max-width: 600px) {
    .container { width: min(100% - 28px, var(--container)); }
    h1 { font-size: clamp(2.35rem, 12vw, 3.7rem); }
    .hero h1 { font-size: clamp(2.45rem, 12vw, 3.8rem); }
    .hero-actions .btn { width: 100%; }
    .hero-card-one { left: 0; bottom: 15%; }
    .hero-card-two { right: 0; top: 10%; }
    .service-grid, .sign-grid, .form-grid, .target-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 0; }
    .section-heading { margin-bottom: 32px; }
    .coverage-cta, .final-cta-inner, .footer-bottom { flex-direction: column; align-items: flex-start; }
    .quote-box { padding: 24px 18px; border-radius: 22px; }
    .page-hero { padding: 42px 0 58px; }
    .breadcrumbs { margin-bottom: 30px; }
    .service-summary, .map-card { padding: 25px; }
    .image-badge { right: 10px; bottom: 15px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div:last-child { grid-column: auto; }
    .faq-item summary { font-size: 1rem; }
    .faq-item > div { padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
