﻿:root {
    color-scheme: light;
    --surface: #f8f9ff;
    --surface-soft: #eef5fb;
    --surface-strong: #ffffff;
    --ink: #084c61;
    --ink-deep: #062f45;
    --muted: #475569;
    --line: #d9e4ea;
    --line-strong: #c8d8e0;
    --mint: #2af598;
    --mint-soft: #dffdf0;
    --amber: #f59e0b;
    --danger: #b42318;
    --shadow: 0 22px 70px rgba(8, 76, 97, 0.12);
    --radius: 8px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--surface);
    color: var(--ink);
    font-family: "Plus Jakarta Sans", "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: 10px;
    transform: translateY(-140%);
    padding: 10px 12px;
    background: var(--ink);
    color: #fff;
    border-radius: 4px;
    z-index: 10;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: rgba(248, 249, 255, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.nav-shell,
.section-inner,
.hero-inner {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
}

.nav-shell {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    text-decoration: none;
}

.brand-logo {
    width: min(240px, 56vw);
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.nav a {
    text-decoration: none;
}

.nav a:hover,
.nav a:focus {
    color: var(--ink);
}

.mobile-nav {
    display: none;
    position: relative;
}

.mobile-nav summary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    background: #fff;
    color: var(--ink-deep);
    font-weight: 850;
    cursor: pointer;
    list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-nav summary:focus-visible {
    outline: 3px solid rgba(42, 245, 152, 0.4);
    outline-offset: 3px;
}

.mobile-nav-bars {
    display: grid;
    gap: 4px;
}

.mobile-nav-bars span {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
}

.mobile-nav-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    z-index: 20;
    display: grid;
    width: min(330px, calc(100vw - 32px));
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.mobile-nav-panel a {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 4px;
    color: var(--ink-deep);
    font-weight: 850;
    text-decoration: none;
}

.mobile-nav-panel a:hover,
.mobile-nav-panel a:focus {
    background: var(--surface-soft);
}

.mobile-nav-panel .button {
    width: 100%;
    margin-top: 6px;
    color: #fff;
}

.button,
button.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid var(--ink);
    border-radius: 4px;
    background: var(--ink);
    color: #fff;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.button:hover,
.button:focus {
    background: var(--ink-deep);
    border-color: var(--ink-deep);
}

.button.secondary {
    background: transparent;
    color: var(--ink);
}

.button.secondary:hover,
.button.secondary:focus {
    background: #fff;
}

.button.small {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.92rem;
}

.hero {
    position: relative;
    min-height: calc(88vh - 76px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(248, 249, 255, 0.98) 0%, rgba(248, 249, 255, 0.92) 45%, rgba(248, 249, 255, 0.60) 68%, rgba(248, 249, 255, 0.86) 100%),
        url("../images/steadypage-preview-hero.jpg") right center / min(760px, 58vw) auto no-repeat;
    background:
        linear-gradient(90deg, rgba(248, 249, 255, 0.98) 0%, rgba(248, 249, 255, 0.92) 45%, rgba(248, 249, 255, 0.60) 68%, rgba(248, 249, 255, 0.86) 100%),
        image-set(
            url("../images/steadypage-preview-hero.webp") type("image/webp"),
            url("../images/steadypage-preview-hero.jpg") type("image/jpeg")
        ) right center / min(760px, 58vw) auto no-repeat;
    border-bottom: 1px solid var(--line);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 70px;
    background: linear-gradient(180deg, rgba(248, 249, 255, 0), var(--surface));
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding-block: clamp(72px, 10vw, 124px);
}

.hero-copy {
    max-width: 720px;
}

.hero-mobile-preview {
    display: none;
}

.hero-mobile-preview img {
    display: block;
    width: 100%;
    height: auto;
}

h1,
h2,
h3,
p {
    margin-top: 0;
    overflow-wrap: break-word;
}

h1 {
    margin-bottom: 24px;
    max-width: 780px;
    font-size: clamp(3rem, 6vw, 5.7rem);
    line-height: 0.98;
    letter-spacing: 0;
    color: var(--ink-deep);
}

h2 {
    max-width: 820px;
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 3.55rem);
    line-height: 1.05;
    letter-spacing: 0;
    color: var(--ink-deep);
}

h3 {
    margin-bottom: 8px;
    font-size: 1.16rem;
    line-height: 1.25;
    letter-spacing: 0;
    color: var(--ink-deep);
}

.lead {
    max-width: 680px;
    margin-bottom: 0;
    color: #294957;
    font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.section {
    padding-block: clamp(64px, 9vw, 108px);
}

.section.soft {
    background: var(--surface-soft);
    border-block: 1px solid var(--line);
}

.section.dark {
    background: var(--ink-deep);
    color: #ecfbf6;
}

.section.dark h2,
.section.dark h3 {
    color: #fff;
}

.section.dark .muted,
.section.dark p {
    color: #d6e7e9;
}

.intro-row {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: end;
    margin-bottom: 36px;
}

.muted {
    color: var(--muted);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
}

.proof-item {
    min-height: 118px;
    padding: 20px;
    border-right: 1px solid var(--line);
}

.proof-item:last-child {
    border-right: 0;
}

.proof-value {
    display: block;
    margin-bottom: 6px;
    color: var(--ink-deep);
    font-size: clamp(1.28rem, 2.4vw, 2rem);
    line-height: 1;
    font-weight: 900;
}

.proof-label {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.plan,
.panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.card,
.panel {
    padding: 24px;
}

.card p:last-child,
.panel p:last-child {
    margin-bottom: 0;
}

.visual-split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.74fr);
    gap: clamp(28px, 5vw, 68px);
    align-items: center;
}

.visual-split.reverse {
    grid-template-columns: minmax(360px, 0.74fr) minmax(0, 0.9fr);
}

.visual-split.reverse .visual-copy {
    order: 2;
}

.visual-copy > :last-child {
    margin-bottom: 0;
}

.visual-split h1 {
    font-size: clamp(2.45rem, 4.8vw, 4.35rem);
    line-height: 1.02;
}

.visual-copy .panel {
    margin-top: 24px;
}

.visual-media {
    min-width: 0;
}

.site-preview-frame {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.browser-bar {
    display: grid;
    grid-template-columns: repeat(3, 10px) 1fr;
    gap: 8px;
    align-items: center;
    padding: 12px;
    background: #edf6f7;
    border-bottom: 1px solid var(--line);
}

.browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--mint);
}

.browser-bar strong {
    justify-self: center;
    width: min(260px, 100%);
    padding: 5px 10px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 800;
    text-align: center;
}

.site-preview-body {
    display: grid;
    gap: 18px;
    padding: clamp(18px, 3vw, 28px);
}

.site-preview-top,
.site-preview-cards {
    display: grid;
    gap: 12px;
}

.site-preview-top {
    grid-template-columns: 1fr auto;
    align-items: center;
    color: var(--ink-deep);
}

.site-preview-top span,
.preview-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 4px;
    background: var(--mint);
    color: var(--ink-deep);
    font-size: 0.85rem;
    font-weight: 900;
}

.site-preview-hero {
    padding: clamp(20px, 4vw, 36px);
    background: linear-gradient(135deg, #eef8f8, #ffffff 62%);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.site-preview-hero h3 {
    max-width: 560px;
    margin-bottom: 10px;
    font-size: clamp(1.45rem, 3vw, 2.25rem);
    line-height: 1.08;
}

.site-preview-hero p {
    max-width: 520px;
}

.site-preview-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-preview-cards div {
    display: grid;
    gap: 4px;
    min-height: 96px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.site-preview-cards span {
    color: var(--muted);
    font-size: 0.9rem;
}

.visual-picture {
    display: block;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.visual-picture img {
    width: 100%;
    height: auto;
    aspect-ratio: 1000 / 625;
    object-fit: cover;
}

.section-visual {
    margin-bottom: 36px;
}

.form-visual {
    margin-top: 28px;
}

.numbered {
    counter-reset: steps;
}

.numbered .card {
    position: relative;
    padding-top: 58px;
}

.numbered .card::before {
    counter-increment: steps;
    content: counter(steps, decimal-leading-zero);
    position: absolute;
    top: 20px;
    left: 24px;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 900;
}

.check-list,
.plain-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.plain-list li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--mint);
    box-shadow: 0 0 0 4px var(--mint-soft);
}

.plain-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.64em;
    width: 12px;
    height: 2px;
    background: var(--ink);
}

.plan {
    padding: 26px;
    display: grid;
    gap: 18px;
}

.plan h2 {
    margin-bottom: 8px;
    font-size: 1.35rem;
    line-height: 1.15;
}

.plan.featured {
    border-color: var(--ink);
    box-shadow: var(--shadow);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: var(--ink-deep);
}

.price strong {
    font-size: clamp(2.4rem, 4vw, 3.25rem);
    line-height: 1;
}

.dashboard-preview {
    display: grid;
    gap: 12px;
    padding: 18px;
    background: var(--ink-deep);
    border: 1px solid rgba(42, 245, 152, 0.25);
    border-radius: var(--radius);
    color: #fff;
}

.dash-row,
.dash-cards {
    display: grid;
    gap: 10px;
}

.dash-row {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dash-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dash-card {
    min-height: 104px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--mint);
    box-shadow: 0 0 0 4px rgba(42, 245, 152, 0.14);
}

.portal-activity {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.portal-activity div {
    display: grid;
    gap: 3px;
    padding: 12px;
    background: rgba(42, 245, 152, 0.08);
    border: 1px solid rgba(42, 245, 152, 0.18);
    border-radius: 6px;
}

.portal-activity span {
    color: #b9d3d8;
    font-size: 0.82rem;
}

.location-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.location-links a {
    max-width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fff;
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
    overflow-wrap: break-word;
}

.location-hero {
    padding-block: clamp(44px, 6vw, 74px);
}

.location-hero h1 {
    max-width: 900px;
    font-size: clamp(2.55rem, 4.6vw, 4.35rem);
    line-height: 1.02;
}

.location-detail {
    padding-block: clamp(38px, 5.5vw, 64px);
}

.location-overview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: clamp(24px, 4vw, 44px);
    align-items: start;
    margin-bottom: 18px;
}

.location-overview h2 {
    max-width: 760px;
    margin-bottom: 16px;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.08;
}

.location-overview .lead {
    max-width: 740px;
    font-size: clamp(1.04rem, 1.5vw, 1.18rem);
}

.location-overview .panel {
    align-self: start;
    padding: 22px;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 0;
}

.location-grid .card {
    min-height: auto;
    padding: 22px;
}

.location-service-band {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
    gap: clamp(24px, 4vw, 44px);
    align-items: center;
    margin-top: 16px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.location-service-band h2 {
    max-width: 520px;
    margin-bottom: 10px;
    font-size: clamp(1.55rem, 2.3vw, 2.2rem);
    line-height: 1.14;
}

.location-service-band .lead {
    max-width: 520px;
    font-size: 1.02rem;
}

.location-markets {
    padding-block: clamp(42px, 6vw, 68px);
}

.location-markets h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 3.3vw, 3.1rem);
}

.legal-page {
    padding-block: clamp(42px, 7vw, 82px);
}

.legal-shell {
    width: min(1040px, calc(100% - 32px));
    margin-inline: auto;
}

.legal-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.legal-header h1 {
    max-width: 720px;
    margin-bottom: 12px;
    font-size: clamp(2.2rem, 4vw, 3.45rem);
    line-height: 1.05;
}

.legal-header .lead {
    max-width: 760px;
    font-size: clamp(1.02rem, 1.5vw, 1.16rem);
}

.legal-meta {
    display: grid;
    gap: 5px;
    min-width: 190px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    color: var(--muted);
    font-size: 0.92rem;
}

.legal-meta strong {
    color: var(--ink-deep);
}

.legal-hero-visual {
    margin-top: 24px;
}

.legal-body {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
    padding-top: 34px;
}

.legal-nav {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 10px;
    color: var(--muted);
    font-size: 0.95rem;
}

.legal-nav a {
    padding-block: 7px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-weight: 800;
    text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a:focus {
    color: var(--ink);
}

.legal-doc {
    padding: clamp(24px, 4vw, 42px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.legal-section {
    padding-block: 26px;
    border-top: 1px solid var(--line);
}

.legal-section:first-child {
    padding-top: 0;
    border-top: 0;
}

.legal-section:last-child {
    padding-bottom: 0;
}

.legal-section h2 {
    max-width: none;
    margin-bottom: 10px;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.18;
}

.legal-section p,
.legal-section li {
    color: #385260;
}

.legal-section ul {
    display: grid;
    gap: 8px;
    margin: 12px 0 0;
    padding-left: 22px;
}

.legal-note {
    margin-top: 28px;
    padding: 16px 18px;
    border-left: 4px solid var(--mint);
    background: var(--mint-soft);
    color: var(--ink-deep);
    font-weight: 700;
}

.form-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: start;
}

form {
    display: grid;
    gap: 16px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--ink-deep);
    font-weight: 800;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    padding: 12px 13px;
    color: var(--ink-deep);
    background: #fff;
    font: inherit;
}

textarea {
    min-height: 132px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: 3px solid rgba(42, 245, 152, 0.32);
    border-color: var(--ink);
}

.error {
    color: var(--danger);
    font-size: 0.92rem;
    font-weight: 800;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #fff;
}

.footer-inner {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
    padding-block: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-copy {
    display: grid;
    gap: 3px;
}

.footer-copy strong {
    color: var(--ink-deep);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-links a {
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
        background:
            linear-gradient(180deg, rgba(248, 249, 255, 0.98), rgba(248, 249, 255, 0.90)),
            url("../images/steadypage-preview-hero-mobile.jpg") right bottom / 620px auto no-repeat;
        background:
            linear-gradient(180deg, rgba(248, 249, 255, 0.98), rgba(248, 249, 255, 0.90)),
            image-set(
                url("../images/steadypage-preview-hero-mobile.webp") type("image/webp"),
                url("../images/steadypage-preview-hero-mobile.jpg") type("image/jpeg")
            ) right bottom / 620px auto no-repeat;
    }

    .intro-row,
    .visual-split,
    .visual-split.reverse,
    .form-wrap,
    .grid,
    .grid.two {
        grid-template-columns: 1fr;
    }

    .visual-split.reverse .visual-copy {
        order: 0;
    }

    .proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-item {
        border-bottom: 1px solid var(--line);
    }

    .dash-cards {
        grid-template-columns: 1fr;
    }

    .site-preview-top,
    .site-preview-cards,
    .portal-activity {
        grid-template-columns: 1fr;
    }

    .legal-header,
    .legal-body {
        grid-template-columns: 1fr;
    }

    .legal-nav {
        position: static;
    }

    .location-overview,
    .location-grid,
    .location-service-band {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .nav-shell,
    .section-inner,
    .hero-inner {
        width: min(var(--container), calc(100% - 32px));
    }

    .nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .site-header {
        background: rgba(248, 249, 255, 0.98);
        backdrop-filter: none;
    }

    .nav-shell {
        min-height: 70px;
        gap: 12px;
    }

    .hero {
        background: linear-gradient(180deg, rgba(248, 249, 255, 0.98), rgba(248, 249, 255, 0.92));
    }

    .hero::after {
        display: none;
    }

    .hero-mobile-preview {
        display: block;
        margin-top: 26px;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
    }

    .brand-logo {
        width: min(184px, 55vw);
    }

    .hero-inner {
        padding-block: 52px 66px;
    }

    .section,
    .location-hero {
        padding-block: 46px;
    }

    .visual-split {
        gap: 22px;
    }

    .actions {
        align-items: stretch;
        gap: 10px;
        margin-top: 24px;
    }

    .actions .button {
        width: 100%;
        max-width: 340px;
    }

    .card,
    .panel,
    .plan,
    .location-card,
    .legal-card {
        padding: 20px;
    }

    .visual-picture {
        box-shadow: 0 12px 36px rgba(8, 76, 97, 0.12);
    }

    h1 {
        font-size: clamp(1.85rem, 8vw, 2.35rem);
        line-height: 1.04;
    }

    h2 {
        font-size: clamp(1.65rem, 7vw, 2.1rem);
    }

    h1,
    h2,
    .lead {
        width: auto;
        max-width: 100%;
    }

    .location-hero h1,
    .visual-split h1 {
        font-size: clamp(1.85rem, 8vw, 2.35rem);
    }

    .lead {
        font-size: 1rem;
    }

    .location-overview h2,
    .location-markets h2 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .proof-strip {
        grid-template-columns: 1fr;
    }

    .proof-item {
        border-right: 0;
        min-height: auto;
        padding: 18px;
    }
}

