:root {
    --ink: #082738;
    --ink-2: #0d3548;
    --teal: #18b8aa;
    --teal-dark: #087c76;
    --orange: #ff9e45;
    --paper: #ffffff;
    --mist: #f2f7f7;
    --line: #d8e3e5;
    --muted: #59707a;
    --shadow: 0 24px 70px rgba(8, 39, 56, .13);
    --radius: 24px;
    --shell: min(1180px, calc(100% - 40px));
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: radial-gradient(rgba(8, 39, 56, .045) .7px, transparent .7px);
    background-size: 18px 18px;
    mask-image: linear-gradient(to bottom, #000, transparent 56%);
}

.maintenance-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: var(--mist); }
.maintenance-card { width: min(620px, 100%); padding: clamp(34px, 7vw, 66px); background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.maintenance-mark { width: 54px; height: 54px; display: grid; place-items: center; color: #fff; background: var(--ink); border-radius: 16px; font-weight: 900; }
.maintenance-card h1 { margin: 28px 0 14px; font-size: clamp(2rem, 8vw, 3.7rem); line-height: 1; letter-spacing: -.05em; }
.maintenance-card p { margin: 0; color: var(--muted); }
.maintenance-line { width: 54px; height: 3px; margin-top: 30px; background: var(--teal); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; transform: translateY(-150%); padding: 10px 14px; border-radius: 8px; background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.skip-link:focus { transform: none; }

.preview-alert { padding: 7px 20px; color: #3a250a; background: #ffe2a7; text-align: center; font-size: .82rem; font-weight: 750; }

.policy-strip { color: #dff8f4; background: #061d2a; font-size: .82rem; }
.policy-strip__inner { min-height: 35px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.policy-strip span { display: inline-flex; align-items: center; gap: 7px; }

.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255, 255, 255, .94); border-bottom: 1px solid rgba(216, 227, 229, .9); backdrop-filter: blur(15px); }
.nav-shell { min-height: 82px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark { width: 45px; height: 45px; display: grid; place-items: center; position: relative; overflow: hidden; border-radius: 14px; color: #fff; background: var(--ink); font-weight: 900; letter-spacing: -.08em; }
.brand-mark::after { content: ""; position: absolute; width: 17px; height: 17px; right: -5px; top: -5px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px rgba(24, 184, 170, .2); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-size: 1.02rem; letter-spacing: -.025em; }
.brand-copy small { margin-top: 3px; color: var(--muted); font-size: .72rem; font-weight: 650; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 25px; }
.site-nav a { position: relative; font-size: .91rem; font-weight: 700; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--teal); transition: right .2s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.header-call { min-height: 49px; display: inline-flex; align-items: center; gap: 10px; padding: 7px 15px; color: #fff; background: var(--ink); border-radius: 15px; }
.header-call svg { color: var(--teal); }
.header-call span { display: flex; flex-direction: column; line-height: 1.1; }
.header-call small { color: #b9d0d8; font-size: .65rem; font-weight: 650; }
.header-call strong { margin-top: 4px; font-size: .9rem; }
.menu-toggle { display: none; margin-left: auto; padding: 9px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 11px; }

.hero { position: relative; overflow: hidden; padding: 72px 0 0; background: linear-gradient(148deg, #f3f9f8 0 58%, #fff 58%); }
.hero::before { content: ""; position: absolute; width: 410px; height: 410px; left: -205px; top: -170px; border-radius: 50%; border: 1px solid rgba(24, 184, 170, .25); box-shadow: 0 0 0 55px rgba(24, 184, 170, .035), 0 0 0 110px rgba(24, 184, 170, .025); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr); align-items: center; gap: clamp(40px, 7vw, 88px); }
.hero-copy { position: relative; z-index: 2; padding-bottom: 66px; }
.eyebrow { margin: 0 0 15px; display: flex; align-items: center; gap: 10px; color: var(--teal-dark); font-size: .74rem; line-height: 1.35; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 26px; height: 2px; background: currentColor; }
.eyebrow--light { color: #e6fffb; }
.hero h1 { max-width: 690px; margin: 0; font-size: clamp(2.8rem, 5vw, 5rem); line-height: .99; letter-spacing: -.065em; }
.hero h1 em { display: inline-block; margin-top: 11px; color: var(--teal-dark); font-family: Georgia, "Times New Roman", serif; font-size: .78em; font-weight: 400; letter-spacing: -.045em; }
.hero-lead { max-width: 650px; margin: 26px 0 0; color: #405d68; font-size: 1.08rem; line-height: 1.7; }
.hero-actions { margin-top: 29px; display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 19px; color: #fff; background: var(--teal-dark); border: 0; border-radius: 13px; box-shadow: 0 12px 30px rgba(8, 124, 118, .18); font-weight: 800; cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); background: #056c67; box-shadow: 0 16px 34px rgba(8, 124, 118, .24); }
.button--large { min-height: 57px; padding-inline: 23px; border-radius: 16px; }
.button--light { color: var(--ink); background: #fff; box-shadow: none; }
.button--light:hover, .button--light:focus-visible { background: #eaf8f6; }
.button--quiet { color: var(--ink); background: #e7eeee; box-shadow: none; }
.button--quiet:hover, .button--quiet:focus-visible { color: #fff; background: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 800; }
.text-link svg { transition: transform .2s ease; }
.text-link:hover svg, .text-link:focus-visible svg { transform: translateX(4px); }
.hero-points { margin: 29px 0 0; padding: 0; display: grid; gap: 9px; list-style: none; color: #3d5a65; font-size: .88rem; font-weight: 650; }
.hero-points li { display: flex; align-items: center; gap: 9px; }
.hero-points svg { flex: 0 0 auto; color: var(--teal-dark); }

.hero-visual { min-height: 600px; position: relative; align-self: end; isolation: isolate; }
.hero-visual::before { content: ""; position: absolute; inset: 33px -70px -40px 63px; z-index: -1; border-radius: 46% 0 0 0; background: var(--ink); transform: rotate(2deg); }
.hero-visual picture { display: block; height: 600px; overflow: hidden; border-radius: 190px 28px 0 28px; box-shadow: var(--shadow); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.hero-card { position: absolute; left: -46px; bottom: 45px; min-width: 240px; display: flex; align-items: center; gap: 13px; padding: 16px 18px; border-radius: 16px; color: #fff; background: rgba(8, 39, 56, .94); box-shadow: 0 22px 45px rgba(8, 39, 56, .28); backdrop-filter: blur(10px); }
.hero-card > span { width: 45px; height: 45px; display: grid; place-items: center; flex: 0 0 auto; color: var(--ink); background: var(--teal); border-radius: 13px; }
.hero-card p { margin: 0; display: flex; flex-direction: column; color: #bfdae1; font-size: .75rem; line-height: 1.35; }
.hero-card strong { color: #fff; font-size: .92rem; }
.hero-index { position: absolute; right: -25px; top: 50px; width: 98px; height: 98px; display: grid; place-content: center; color: var(--ink); background: var(--orange); border: 8px solid #fff; border-radius: 50%; text-align: center; box-shadow: 0 14px 34px rgba(8, 39, 56, .18); }
.hero-index span { font: 700 1.45rem/1 Georgia, serif; }
.hero-index small { margin-top: 3px; font-size: .55rem; font-weight: 850; text-transform: uppercase; }

.service-rail { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(3, 1fr); color: #fff; background: var(--ink); border-radius: 19px 19px 0 0; }
.service-rail > div { min-height: 96px; display: flex; align-items: center; gap: 16px; padding: 20px 27px; border-right: 1px solid rgba(255,255,255,.11); }
.service-rail > div:last-child { border-right: 0; }
.service-rail span { color: var(--teal); font: 700 1.1rem/1 Georgia, serif; }
.service-rail p { margin: 0; display: flex; flex-direction: column; color: #acc5ce; font-size: .76rem; line-height: 1.45; }
.service-rail strong { color: #fff; font-size: .86rem; }

.section { padding: 104px 0; }
.section--soft { background: var(--mist); }
.section--ink { position: relative; overflow: hidden; color: #fff; background: var(--ink); }
.section--ink::after { content: "04"; position: absolute; right: -20px; bottom: -100px; color: rgba(255,255,255,.03); font-size: 27rem; font-weight: 900; line-height: 1; letter-spacing: -.1em; }
.section-heading { margin-bottom: 40px; display: grid; grid-template-columns: 1.05fr .72fr; align-items: end; gap: 70px; }
.section-heading h2, .process-intro h2, .coverage-copy h2, .faq-layout h2, .final-cta h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.45rem); line-height: 1.08; letter-spacing: -.05em; }
.section-heading > p { margin: 0; color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 315px; position: relative; display: flex; flex-direction: column; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.78); transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.service-card:hover, .service-card:focus-visible { z-index: 2; transform: translateY(-6px); background: #fff; box-shadow: var(--shadow); outline: none; }
.service-card__number { position: absolute; right: 23px; top: 20px; color: #5b6b70; font: 700 1.1rem/1 Georgia, serif; }
.service-card__icon { width: 59px; height: 59px; display: grid; place-items: center; color: var(--teal-dark); background: #e4f7f4; border-radius: 18px; }
.service-card h3 { margin: 28px 0 9px; font-size: 1.22rem; line-height: 1.25; letter-spacing: -.025em; }
.service-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }
.service-card__link { margin-top: auto; padding-top: 24px; display: inline-flex; align-items: center; gap: 8px; color: var(--teal-dark); font-size: .83rem; font-weight: 850; }

.process-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(55px, 9vw, 120px); align-items: center; }
.process-intro p:not(.eyebrow) { margin: 22px 0 29px; color: #b9cdd4; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.13); }
.process-list li { display: grid; grid-template-columns: 62px 1fr; gap: 22px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.process-list > li > span { color: var(--teal); font: 700 1.25rem/1.3 Georgia, serif; }
.process-list h3 { margin: 0 0 4px; font-size: 1.08rem; }
.process-list p { margin: 0; color: #b7ccd3; font-size: .9rem; }

.coverage-panel { display: grid; grid-template-columns: .86fr 1.14fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.coverage-map { min-height: 430px; position: relative; display: grid; place-items: center; color: #fff; background: var(--teal-dark); isolation: isolate; }
.coverage-map::before, .coverage-map::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); }
.coverage-map::before { width: 290px; height: 290px; }
.coverage-map::after { width: 190px; height: 190px; }
.coverage-map span { font-size: clamp(2.5rem, 6vw, 5.2rem); font-weight: 900; letter-spacing: -.07em; opacity: .14; transform: rotate(-13deg); }
.coverage-map i { position: absolute; width: 32px; height: 32px; border: 8px solid #fff; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 0 0 10px rgba(255,255,255,.14); }
.coverage-map b { position: absolute; top: 25px; left: 28px; font: 700 1.05rem/1 Georgia, serif; }
.coverage-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 7vw, 80px); background: #fff; }
.coverage-copy > p:not(.eyebrow) { margin: 22px 0; color: var(--muted); }
.coverage-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.coverage-tags span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; color: var(--ink); background: var(--mist); border: 1px solid var(--line); border-radius: 999px; font-size: .82rem; font-weight: 750; }
.coverage-tags svg { color: var(--teal-dark); }

.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(55px, 9vw, 120px); align-items: start; }
.faq-layout > div:first-child > p:last-child { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; background: var(--ink); border-radius: 50%; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); background: var(--teal-dark); }
.faq-list details p { max-width: 700px; margin: -6px 45px 23px 0; color: var(--muted); }

.final-cta { padding: 68px 0; color: #fff; background: var(--teal-dark); }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta h2 { max-width: 760px; }

.site-footer { padding: 78px 0 100px; color: #c1d4da; background: #061d2a; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .8fr .8fr 1fr; gap: 55px; }
.brand--footer .brand-mark { color: var(--ink); background: var(--teal); }
.brand--footer .brand-copy strong { color: #fff; }
.brand--footer .brand-copy small { color: #98b5bf; }
.footer-intro p { max-width: 390px; margin: 22px 0 0; font-size: .9rem; }
.footer-intro .footer-note { color: #85a4af; font-size: .77rem; }
.site-footer h2 { margin: 0 0 18px; color: #fff; font-size: .84rem; letter-spacing: .09em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; display: grid; gap: 8px; list-style: none; }
.site-footer nav a { font-size: .84rem; }
.site-footer a:hover, .site-footer a:focus-visible { color: #fff; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-contact a:first-of-type { color: #fff; font-size: 1.1rem; font-weight: 850; }
.footer-contact a:not(:first-of-type), .footer-contact span { font-size: .82rem; word-break: break-word; }
.footer-bottom { margin-top: 50px; padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); color: #7899a5; font-size: .74rem; }

.mobile-action { display: none; }

.simple-hero { min-height: 55vh; padding-block: 110px; }
.simple-hero h1 { max-width: 800px; margin: 0; font-size: clamp(2.5rem, 7vw, 5rem); line-height: 1; letter-spacing: -.06em; }
.simple-hero > p:not(.eyebrow) { max-width: 620px; margin: 24px 0; color: var(--muted); }

.breadcrumb { margin-bottom: 27px; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; color: #71868e; font-size: .78rem; font-weight: 700; }
.breadcrumb a:hover, .breadcrumb a:focus-visible { color: var(--teal-dark); }
.breadcrumb--light { color: #a9c1c9; }

.page-hero { position: relative; overflow: hidden; padding: 79px 0 84px; background: linear-gradient(145deg, #f2f8f8 0 72%, #fff 72%); }
.page-hero::after { content: ""; position: absolute; right: -100px; top: -150px; width: 420px; height: 420px; border: 1px solid rgba(24,184,170,.2); border-radius: 50%; box-shadow: 0 0 0 65px rgba(24,184,170,.035), 0 0 0 130px rgba(24,184,170,.02); }
.page-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); align-items: center; gap: clamp(50px, 10vw, 135px); }
.page-hero h1 { max-width: 850px; margin: 0; font-size: clamp(2.8rem, 6vw, 5.2rem); line-height: .98; letter-spacing: -.065em; }
.page-hero__grid > div:first-child > p:last-of-type { max-width: 720px; margin: 25px 0 0; color: var(--muted); font-size: 1.06rem; }
.page-hero__actions { margin-top: 29px; display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.scope-card, .contact-card { position: relative; padding: 32px; color: #fff; background: var(--ink); border-radius: 24px; box-shadow: var(--shadow); }
.scope-card::after, .contact-card::after { content: ""; position: absolute; right: 18px; bottom: 18px; width: 55px; height: 55px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 12px rgba(255,255,255,.035); }
.scope-card > span, .contact-card > span { width: 56px; height: 56px; display: grid; place-items: center; color: var(--ink); background: var(--teal); border-radius: 17px; }
.scope-card h2 { margin: 23px 0 8px; font-size: 1.35rem; }
.scope-card p { margin: 0; color: #bcd1d8; font-size: .9rem; }

.device-stage { min-height: 330px; position: relative; display: grid; align-content: center; justify-items: center; overflow: hidden; padding: 38px; color: #fff; background: var(--ink); border-radius: 32% 24px 24px 24px; box-shadow: var(--shadow); }
.device-stage::before { content: ""; position: absolute; width: 250px; height: 250px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 38px rgba(255,255,255,.025), 0 0 0 76px rgba(255,255,255,.018); }
.device-stage__icon { width: 132px; height: 132px; position: relative; display: grid; place-items: center; color: var(--ink); background: var(--teal); border-radius: 42px; transform: rotate(-4deg); }
.device-stage__icon svg { transform: rotate(4deg); }
.device-stage p { position: relative; margin: 24px 0 0; display: flex; flex-direction: column; align-items: center; line-height: 1.35; text-align: center; }
.device-stage small { color: #9bb8c1; font-size: .68rem; font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
.device-stage strong { margin-top: 4px; font-size: 1.2rem; }
.device-stage em { margin-top: 5px; color: #b9cfd6; font-size: .72rem; font-style: normal; }
.device-stage > b { position: absolute; right: 20px; top: 16px; color: #5f7f8b; font: 700 3.8rem/1 Georgia, serif; }

.detail-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.detail-column { padding: clamp(35px, 6vw, 68px); }
.detail-column--tint { background: var(--mist); }
.detail-column h2 { margin: 0 0 28px; font-size: clamp(1.75rem, 3.4vw, 2.8rem); line-height: 1.08; letter-spacing: -.045em; }
.check-list, .number-list { margin: 0; padding: 0; list-style: none; }
.check-list { display: grid; gap: 12px; }
.check-list li { min-height: 51px; display: flex; align-items: center; gap: 11px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 12px; font-size: .9rem; font-weight: 750; }
.check-list svg { color: var(--teal-dark); }
.number-list { border-top: 1px solid var(--line); }
.number-list li { min-height: 63px; display: grid; grid-template-columns: 45px 1fr; align-items: center; gap: 15px; border-bottom: 1px solid var(--line); }
.number-list span { color: var(--teal-dark); font: 700 1rem/1 Georgia, serif; }
.number-list strong { font-size: .9rem; }

.safe-callout { padding: 67px 0; color: #fff; background: var(--teal-dark); }
.safe-callout__inner { display: grid; grid-template-columns: 76px 1fr; align-items: center; gap: 25px; }
.safe-callout__inner > span { width: 70px; height: 70px; display: grid; place-items: center; color: var(--ink); background: #fff; border-radius: 20px; }
.safe-callout h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.05em; }
.safe-callout p:last-child { max-width: 800px; margin: 13px 0 0; color: #fff; }

.pricing-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: clamp(55px, 9vw, 125px); }
.pricing-layout h2, .narrow-copy h2, .region-layout h2, .story-layout h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.08; letter-spacing: -.05em; }
.pricing-layout > div > p:last-child, .narrow-copy > p:last-child, .region-layout > div > p, .story-layout > div > p { color: var(--muted); }
.pricing-layout ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.pricing-layout li { min-height: 73px; display: grid; grid-template-columns: 55px 1fr; align-items: center; gap: 15px; border-bottom: 1px solid var(--line); }
.pricing-layout li span { color: var(--teal-dark); font: 700 1.05rem/1 Georgia, serif; }

.lead-panel { width: var(--shell); margin: 0 auto 104px; display: grid; grid-template-columns: .82fr 1.18fr; overflow: hidden; color: #fff; background: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); }
.lead-panel__intro { position: relative; overflow: hidden; padding: clamp(38px, 6vw, 68px); }
.lead-panel__intro::after { content: ""; position: absolute; width: 240px; height: 240px; left: -130px; bottom: -130px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 40px rgba(255,255,255,.025), 0 0 0 80px rgba(255,255,255,.015); }
.lead-panel h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.04; letter-spacing: -.05em; }
.lead-panel__intro > p:not(.eyebrow) { color: #b8cdd4; }
.lead-phone { position: relative; z-index: 2; margin-top: 28px; display: flex; align-items: center; gap: 13px; }
.lead-phone > span { width: 51px; height: 51px; display: grid; place-items: center; color: var(--ink); background: var(--teal); border-radius: 15px; }
.lead-phone p { margin: 0; display: flex; flex-direction: column; line-height: 1.3; }
.lead-phone small { color: #92b1bb; font-size: .68rem; }
.lead-phone strong { font-size: 1.12rem; }
.lead-phone em { margin-top: 3px; color: #a9c1c9; font-size: .68rem; font-style: normal; }
.lead-panel__form-wrap { padding: clamp(32px, 5vw, 58px); color: var(--ink); background: #f5f9f9; }
.form-unavailable { min-height: 100%; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.form-unavailable > span { display: grid; width: 58px; height: 58px; place-items: center; margin-bottom: 24px; color: var(--teal-dark); background: #dff7f3; border-radius: 50%; }
.form-unavailable h3 { max-width: 16ch; margin: 0 0 14px; font-size: clamp(1.75rem, 4vw, 2.55rem); line-height: 1.08; letter-spacing: -.04em; }
.form-unavailable > p:not(.eyebrow) { max-width: 44ch; margin: 0 0 28px; color: var(--muted); }
.lead-form { display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.lead-form label { display: grid; gap: 7px; color: #274653; font-size: .78rem; font-weight: 800; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; min-height: 49px; padding: 11px 13px; color: var(--ink); background: #fff; border: 1px solid #c9d8db; border-radius: 11px; outline: 0; }
.lead-form textarea { min-height: 105px; resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--teal-dark); box-shadow: 0 0 0 3px rgba(8,124,118,.12); }
.lead-form .button { justify-self: start; }
.lead-form .button:disabled { opacity: .6; cursor: wait; transform: none; }
.form-notice { margin: -2px 0 0; color: #637983; font-size: .72rem; line-height: 1.55; }
.form-notice a { color: var(--teal-dark); text-decoration: underline; }
.form-status { min-height: 1.3em; margin: -7px 0 0; color: var(--teal-dark); font-size: .78rem; font-weight: 750; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-result { margin-bottom: 20px; display: flex; gap: 12px; padding: 15px; border: 1px solid; border-radius: 12px; font-size: .82rem; }
.form-result p { margin: 2px 0 0; }
.form-result--success { color: #075c51; background: #def7f1; border-color: #a7ded4; }
.form-result--error { color: #842323; background: #fff0f0; border-color: #f0b7b7; }

.service-grid--index .service-card { min-height: 340px; }
.narrow-copy { max-width: 850px; }
.narrow-copy > p:last-child { margin-top: 23px; font-size: 1.02rem; }
.narrow-copy--light > p:last-child { color: #b7ccd3; }

.region-figure { min-height: 260px; display: grid; place-content: center; justify-items: center; color: #fff; background: var(--teal-dark); border-radius: 24px; box-shadow: var(--shadow); }
.region-figure span { font: 700 6rem/.85 Georgia, serif; }
.region-figure strong { margin-top: 12px; font-size: 1.05rem; }
.region-figure small { margin-top: 5px; color: #e6fffb; font-size: .72rem; }
.region-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(55px, 9vw, 120px); }
.primary-regions { margin-top: 27px; display: flex; flex-wrap: wrap; gap: 11px; }
.primary-regions span { display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; color: #fff; background: var(--teal-dark); border-radius: 12px; font-weight: 800; }
.district-list { padding: 35px; background: var(--mist); border: 1px solid var(--line); border-radius: 20px; }
.district-list h2 { font-size: 1.65rem; }
.district-list > p { margin-top: 10px; }
.district-list > div { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.district-list span { padding: 7px 11px; color: #36545f; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: .79rem; font-weight: 700; }

.story-layout { display: grid; grid-template-columns: .6fr 1.4fr; gap: clamp(55px, 9vw, 120px); }
.principle-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.principle-grid article { min-height: 225px; padding: 27px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle-grid article > span { color: var(--teal-dark); font: 700 1rem/1 Georgia, serif; }
.principle-grid h3 { margin: 24px 0 7px; }
.principle-grid p { margin: 0; color: var(--muted); font-size: .87rem; }

.contact-card { display: flex; flex-direction: column; align-items: flex-start; }
.contact-card small { margin-top: 21px; color: #9db8c1; font-size: .72rem; font-weight: 750; text-transform: uppercase; }
.contact-card > a { position: relative; z-index: 2; color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; letter-spacing: -.04em; }
.contact-card > p { position: relative; z-index: 2; margin: 7px 0 0; color: #aec6ce; font-size: .77rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.contact-grid article { min-height: 245px; padding: 33px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-grid article > span { width: 48px; height: 48px; display: grid; place-items: center; color: var(--teal-dark); background: #e3f5f3; border-radius: 14px; }
.contact-grid h2 { margin: 24px 0 9px; font-size: 1.25rem; }
.contact-grid a { color: var(--teal-dark); font-weight: 850; }
.contact-grid p { margin: 7px 0 0; color: var(--muted); font-size: .85rem; }
.business-identity { padding-top: 0; }
.business-identity__grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: clamp(45px, 9vw, 120px); }
.business-identity h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.08; letter-spacing: -.05em; }
.business-identity p:last-child { color: var(--muted); }
.business-identity address { display: grid; gap: 10px; padding: 28px; color: #d7e8ec; background: var(--ink); border-radius: 18px; box-shadow: var(--shadow); font-style: normal; }
.business-identity address strong { color: #fff; font-size: 1.1rem; }
.business-identity address a { color: #70e2d7; font-weight: 750; }
.footer-legal { max-width: 280px; margin-top: 8px; line-height: 1.5; }
.footer-legal strong { display: block; color: #fff; }

.legal-hero { padding: 75px 0 82px; color: #fff; background: var(--ink); }
.legal-hero h1 { max-width: 920px; margin: 0; font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1; letter-spacing: -.06em; }
.legal-hero > div > p:last-child { max-width: 760px; margin: 24px 0 0; color: #b6ccd3; }
.legal-copy { max-width: 860px; padding-block: 72px 105px; }
.legal-copy h2 { margin: 42px 0 12px; font-size: 1.5rem; letter-spacing: -.03em; }
.legal-copy p { color: #49636e; }
.legal-copy a { color: var(--teal-dark); text-decoration: underline; }
.legal-copy code { padding: 2px 6px; background: var(--mist); border: 1px solid var(--line); border-radius: 5px; font-size: .82em; }
.legal-warning { margin-bottom: 35px; padding: 18px; color: #55380d; background: #fff2cf; border: 1px solid #ebcd86; border-radius: 13px; }
.legal-warning p { margin: 3px 0 0; color: #6d4e19; }

.related-services.section { padding-top: 0; }
.related-services .section-heading { grid-template-columns: 1fr auto; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.related-grid a { min-height: 100px; display: grid; grid-template-columns: 45px 1fr auto; align-items: center; gap: 12px; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.related-grid a > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--teal-dark); background: var(--mist); border-radius: 12px; }
.related-grid a > svg { color: var(--teal-dark); }

.brand-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.brand-finder { padding: 34px 0; color: #fff; background: var(--ink); }
.brand-finder__inner { display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: clamp(30px, 8vw, 110px); }
.brand-finder h2 { margin: 0; font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -.04em; }
.brand-finder__inner > div:first-child > p:last-child { margin: 9px 0 0; color: #b7cdd4; }
.brand-search { display: grid; gap: 8px; }
.brand-search label { font-size: .73rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.brand-search input { width: 100%; min-height: 54px; padding: 0 17px; color: var(--ink); background: #fff; border: 2px solid transparent; border-radius: 12px; font: inherit; }
.brand-search input:focus { border-color: var(--teal); outline: 0; box-shadow: 0 0 0 3px rgba(67,210,196,.18); }
.brand-search p { margin: 0; color: #b7cdd4; font-size: .75rem; }
.brand-card { min-height: 134px; display: grid; grid-template-columns: 45px minmax(0, 1fr); align-content: center; gap: 2px 13px; padding: 20px; background: rgba(255,255,255,.82); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.brand-card:hover, .brand-card:focus-visible { z-index: 2; transform: translateY(-3px); background: #fff; box-shadow: var(--shadow); outline: 0; }
.brand-card > span { grid-row: 1 / 3; width: 43px; height: 43px; display: grid; place-items: center; color: #fff; background: var(--ink); border-radius: 13px; font: 700 1.1rem/1 Georgia, serif; }
.brand-card strong { align-self: end; min-width: 0; overflow-wrap: anywhere; font-size: .97rem; line-height: 1.2; }
.brand-card small { align-self: start; color: var(--muted); font-size: .68rem; line-height: 1.35; }
.brand-preview-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.brand-preview-groups > div { padding: 27px; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.brand-preview-groups h3 { margin: 0 0 17px; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 1.1rem; }
.brand-preview-groups h3 span { min-width: 34px; padding: 4px 9px; color: var(--teal-dark); background: #e4f7f4; border-radius: 999px; text-align: center; font-size: .72rem; }
.brand-preview-list { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-preview-list a { padding: 7px 10px; color: #31515d; background: var(--mist); border: 1px solid var(--line); border-radius: 9px; font-size: .76rem; font-weight: 750; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.brand-preview-list a:hover, .brand-preview-list a:focus-visible { color: #fff; background: var(--teal-dark); border-color: var(--teal-dark); }
.brand-directory__action { margin-top: 24px; }
.brand-stage { min-height: 330px; position: relative; display: grid; align-content: center; justify-items: center; overflow: hidden; padding: 42px 30px; color: #fff; background: var(--ink); border-radius: 32% 24px 24px 24px; box-shadow: var(--shadow); text-align: center; }
.brand-stage::before { content: ""; position: absolute; width: 235px; height: 235px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 38px rgba(255,255,255,.025), 0 0 0 76px rgba(255,255,255,.016); }
.brand-stage > * { position: relative; }
.brand-stage > span { color: var(--teal); font-size: .66rem; font-weight: 850; letter-spacing: .24em; }
.brand-stage > strong { max-width: 100%; margin-top: 15px; overflow-wrap: anywhere; font: 700 clamp(2rem, 4.5vw, 4rem)/.95 Georgia, serif; letter-spacing: -.045em; }
.brand-stage > small { margin-top: 16px; color: #b7cdd4; font-size: .73rem; }
.page-hero--brand-detail h1 { font-size: clamp(2.7rem, 5.4vw, 4.75rem); }
.page-hero__grid > div:first-child > .brand-independence { max-width: 680px; margin-top: 21px; padding: 14px 16px; color: #264956; background: #fff; border: 1px solid #b9dcda; border-left: 4px solid var(--teal-dark); border-radius: 11px; font-size: .88rem; }
.brand-independence strong { display: block; color: var(--ink); }
.brand-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.brand-service-grid a { min-height: 112px; display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; grid-template-rows: auto auto; align-content: center; align-items: center; gap: 2px 13px; padding: 18px; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brand-service-grid a > span { grid-row: 1 / 3; width: 46px; height: 46px; display: grid; place-items: center; color: var(--teal-dark); background: #e4f7f4; border-radius: 13px; }
.brand-service-grid a > strong { align-self: end; font-size: .9rem; }
.brand-service-grid a > small { align-self: start; color: var(--muted); font-size: .68rem; }
.brand-service-grid a > svg { grid-column: 3; grid-row: 1 / 3; color: var(--teal-dark); }
.brand-service-grid a:hover, .brand-service-grid a:focus-visible { background: var(--mist); outline-offset: -3px; }
.brand-detail-grid .detail-column > p:not(.eyebrow) { color: var(--muted); }
.brand-related-grid { grid-template-columns: repeat(4, 1fr); }
.brand-related-grid a { grid-template-columns: 45px minmax(0, 1fr) auto; }
.brand-related-grid .brand-related-initial { color: #fff; background: var(--ink); font: 700 1rem/1 Georgia, serif; }

.page-hero--climate, .page-hero--climate-brand, .page-hero--climate-region { background: linear-gradient(145deg, #edfafa 0 64%, #fff 64%); }
.page-hero--climate::before, .page-hero--climate-brand::before, .page-hero--climate-region::before { content: ""; position: absolute; left: -110px; bottom: -180px; width: 360px; height: 360px; border: 1px solid rgba(8,124,118,.14); border-radius: 50%; box-shadow: 0 0 0 54px rgba(24,184,170,.025), 0 0 0 108px rgba(24,184,170,.018); }
.climate-stage { min-height: 330px; position: relative; display: grid; place-content: center; justify-items: center; overflow: hidden; padding: 40px; color: #fff; background: linear-gradient(145deg, #063249, #087c76); border-radius: 110px 24px 24px 24px; box-shadow: var(--shadow); text-align: center; }
.climate-stage::before, .climate-stage::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.climate-stage::before { width: 235px; height: 235px; }
.climate-stage::after { width: 165px; height: 165px; }
.climate-stage > * { position: relative; z-index: 1; }
.climate-stage > span { width: 116px; height: 116px; display: grid; place-items: center; color: var(--ink); background: #c7fff7; border-radius: 38px; transform: rotate(-5deg); }
.climate-stage > span svg { transform: rotate(5deg); }
.climate-stage > small { margin-top: 20px; color: #8ce8de; font-size: .68rem; font-weight: 900; letter-spacing: .24em; }
.climate-stage > strong { margin-top: 4px; font-size: 1.25rem; }
.climate-stage > em { margin-top: 5px; color: #c6e2e4; font-size: .72rem; font-style: normal; }
.brand-stage--climate { background: linear-gradient(145deg, #082738, #0b6d70); }
.brand-stage--climate > span { color: #8ff1e5; }
.region-figure--climate { background: linear-gradient(145deg, #075e66, #082738); }
.climate-intent-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.climate-intent-grid a { min-height: 185px; display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; grid-template-rows: auto auto; align-content: center; align-items: center; gap: 5px 14px; padding: 24px; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease; }
.climate-intent-grid a:hover, .climate-intent-grid a:focus-visible { position: relative; z-index: 2; transform: translateY(-3px); box-shadow: var(--shadow); outline-offset: -3px; }
.climate-intent-grid a > span { grid-row: 1 / 3; width: 46px; height: 46px; display: grid; place-items: center; color: var(--teal-dark); background: #e2f8f5; border-radius: 14px; }
.climate-intent-grid strong { align-self: end; font-size: 1rem; }
.climate-intent-grid small { align-self: start; color: var(--muted); font-size: .72rem; line-height: 1.45; }
.climate-intent-grid a > svg { grid-column: 3; grid-row: 1 / 3; color: var(--teal-dark); }
.region-link-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.region-link-grid a { min-height: 126px; display: grid; grid-template-columns: 45px minmax(0, 1fr) auto; grid-template-rows: auto auto; align-content: center; align-items: center; gap: 3px 13px; padding: 20px; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.region-link-grid a:hover, .region-link-grid a:focus-visible { background: var(--mist); outline-offset: -3px; }
.region-link-grid a > span { grid-row: 1 / 3; width: 42px; height: 42px; display: grid; place-items: center; color: var(--teal-dark); background: #e4f7f4; border-radius: 13px; }
.region-link-grid strong { align-self: end; line-height: 1.25; }
.region-link-grid small { align-self: start; color: var(--muted); font-size: .7rem; }
.region-link-grid a > svg { grid-column: 3; grid-row: 1 / 3; color: var(--teal-dark); }
.climate-region-brands { gap: 10px; }
.climate-region-brands a { padding: 10px 13px; }

.footer-button { padding: 0; color: inherit; background: none; border: 0; font-size: .84rem; cursor: pointer; text-align: left; }
.footer-button:hover, .footer-button:focus-visible { color: #fff; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

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

@media (max-width: 1040px) {
    .site-nav { gap: 17px; }
    .site-nav a { font-size: .84rem; }
    .header-call span { display: none; }
    .header-call { width: 48px; padding: 0; justify-content: center; }
    .hero { padding-top: 55px; }
    .hero-grid { gap: 38px; }
    .hero-visual { min-height: 530px; }
    .hero-visual picture { height: 530px; border-radius: 150px 24px 0 24px; }
    .hero-card { left: -28px; }
    .service-card { min-height: 335px; padding: 25px; }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-contact { grid-column: 2 / 4; }
    .brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .brand-preview-groups { grid-template-columns: repeat(2, 1fr); }
    .climate-intent-grid, .region-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .brand-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    :root { --shell: min(100% - 30px, 680px); }
    body { padding-bottom: 64px; }
    .policy-strip__inner { min-height: 42px; justify-content: center; text-align: center; }
    .policy-strip__inner span:last-child { display: none; }
    .nav-shell { min-height: 72px; }
    .menu-toggle { display: grid; place-items: center; }
    .header-call { display: none; }
    .site-nav { position: absolute; left: 15px; right: 15px; top: calc(100% + 8px); margin: 0; padding: 12px; display: none; align-items: stretch; flex-direction: column; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: 17px; box-shadow: var(--shadow); }
    .site-nav[data-open] { display: flex; }
    .site-nav a { padding: 11px 12px; border-radius: 9px; font-size: .95rem; }
    .site-nav a:hover { background: var(--mist); }
    .site-nav a::after { display: none; }
    .brand-finder__inner { grid-template-columns: 1fr; align-items: stretch; gap: 22px; }
    .hero { padding-top: 46px; background: linear-gradient(160deg, #f3f9f8 0 64%, #fff 64%); }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { padding-bottom: 5px; }
    .hero h1 { font-size: clamp(2.65rem, 12vw, 4.5rem); }
    .hero-visual { width: 100%; min-height: 480px; margin-top: 15px; }
    .hero-visual picture { height: 480px; border-radius: 120px 24px 24px 24px; }
    .hero-visual::before { inset: 35px -50px -20px 60px; border-radius: 35% 0 0 0; }
    .hero-card { left: 15px; bottom: 22px; }
    .hero-index { right: 8px; top: 23px; }
    .service-rail { width: 100%; margin-top: 30px; grid-template-columns: 1fr; border-radius: 17px 17px 0 0; }
    .service-rail > div { min-height: 79px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
    .service-rail > div:last-child { border-bottom: 0; }
    .section { padding: 78px 0; }
    .section-heading, .process-layout, .coverage-panel, .faq-layout { grid-template-columns: 1fr; }
    .page-hero__grid, .detail-grid, .pricing-layout, .lead-panel, .region-layout, .story-layout, .business-identity__grid { grid-template-columns: 1fr; }
    .page-hero { padding: 58px 0 66px; }
    .page-hero__grid { gap: 40px; }
    .device-stage { min-height: 290px; }
    .scope-card, .contact-card { max-width: 560px; }
    .safe-callout__inner { grid-template-columns: 62px 1fr; }
    .safe-callout__inner > span { width: 58px; height: 58px; }
    .pricing-layout, .region-layout, .story-layout { gap: 48px; }
    .lead-panel { margin-bottom: 78px; }
    .related-grid { grid-template-columns: 1fr; }
    .brand-grid, .brand-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .brand-preview-groups { grid-template-columns: 1fr; }
    .brand-stage { min-height: 290px; }
    .climate-stage { min-height: 290px; }
    .climate-intent-grid, .region-link-grid { grid-template-columns: 1fr; }
    .brand-related-grid { grid-template-columns: 1fr; }
    .section-heading { gap: 20px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .process-layout, .faq-layout { gap: 48px; }
    .coverage-map { min-height: 330px; }
    .final-cta__inner { align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1.25fr 1fr; }
    .footer-intro { grid-column: 1 / 3; }
    .footer-contact { grid-column: auto; }
    .mobile-action { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; height: 64px; display: grid; grid-template-columns: 1.15fr .85fr; color: #fff; background: var(--ink); box-shadow: 0 -12px 35px rgba(8,39,56,.17); }
    .mobile-action a { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .88rem; font-weight: 850; }
    .mobile-action a:first-child { background: var(--teal-dark); }
    .mobile-action a:last-child { border-left: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 540px) {
    :root { --shell: calc(100% - 24px); --radius: 18px; }
    .brand-mark { width: 41px; height: 41px; border-radius: 12px; }
    .brand-copy strong { font-size: .92rem; }
    .brand-copy small { font-size: .66rem; }
    .hero { padding-top: 36px; }
    .hero-lead { font-size: 1rem; }
    .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
    .hero-actions .button { width: 100%; }
    .hero-visual { min-height: 390px; }
    .hero-visual picture { height: 390px; border-radius: 88px 18px 18px 18px; }
    .hero-visual img { object-position: 59% center; }
    .hero-card { min-width: 215px; padding: 13px; }
    .hero-index { width: 79px; height: 79px; border-width: 6px; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 280px; }
    .brand-grid { grid-template-columns: 1fr 1fr; }
    .brand-card { min-height: 112px; grid-template-columns: 37px minmax(0, 1fr); gap: 2px 9px; padding: 13px; }
    .brand-card > span { width: 35px; height: 35px; border-radius: 10px; font-size: .9rem; }
    .brand-card strong { font-size: .84rem; }
    .brand-card small { font-size: .61rem; }
    .brand-service-grid { grid-template-columns: 1fr; }
    .brand-preview-groups > div { padding: 21px; }
    .brand-stage { min-height: 245px; border-radius: 72px 18px 18px 18px; }
    .climate-stage { min-height: 250px; border-radius: 78px 18px 18px 18px; }
    .coverage-copy { padding: 34px 25px; }
    .coverage-map { min-height: 260px; }
    .faq-list summary { min-height: 70px; font-size: .92rem; }
    .final-cta { padding: 53px 0; }
    .final-cta .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 28px; }
    .footer-intro { grid-column: 1 / 3; }
    .footer-contact { grid-column: 1 / 3; }
    .footer-bottom { gap: 10px; flex-direction: column; }
    .page-hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
    .detail-column { padding: 30px 22px; }
    .safe-callout__inner { grid-template-columns: 1fr; }
    .form-grid, .contact-grid, .principle-grid { grid-template-columns: 1fr; }
    .lead-panel__intro, .lead-panel__form-wrap { padding: 31px 22px; }
    .lead-form .button { width: 100%; }
    .region-figure { min-height: 230px; }
    .story-layout { gap: 36px; }
}
