:root {
    --navy: #123b56;
    --navy-dark: #0a293d;
    --navy-soft: #1a4d6b;
    --teal: #1c8e9a;
    --teal-dark: #136b75;
    --teal-pale: #e6f4f4;
    --orange: #f2a65a;
    --orange-pale: #fff1df;
    --ink: #182a36;
    --muted: #5b6c77;
    --line: #d9e3e8;
    --surface: #ffffff;
    --surface-soft: #f4f8fa;
    --surface-tint: #edf5f6;
    --shadow-sm: 0 12px 30px rgba(18, 59, 86, 0.08);
    --shadow-lg: 0 28px 75px rgba(18, 59, 86, 0.17);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --container: 1180px;
    --header-height: 82px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--surface-soft);
    color: var(--ink);
    font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body,
summary {
    font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
h1,
h2,
h3,
ul,
dl,
dd {
    margin-top: 0;
}

ul {
    padding-left: 0;
}

address {
    font-style: normal;
}

::selection {
    background: var(--orange);
    color: var(--navy-dark);
}

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

.container {
    width: min(var(--container), calc(100% - 40px));
    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;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--orange);
    color: var(--navy-dark);
    font-weight: 800;
    transform: translateY(-180%);
    transition: transform 180ms ease;
}

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

.eyebrow {
    margin-bottom: 14px;
    color: var(--teal-dark);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #84d0d5;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--navy);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(18, 59, 86, 0.2);
}

.button-primary:hover {
    background: var(--navy-dark);
    box-shadow: 0 16px 32px rgba(18, 59, 86, 0.26);
}

.button-secondary {
    border-color: #bfd0d8;
    background: rgba(255, 255, 255, 0.8);
    color: var(--navy);
}

.button-secondary:hover,
.button-outline:hover {
    border-color: var(--teal);
    background: var(--teal-pale);
}

.button-accent {
    background: var(--orange);
    color: var(--navy-dark);
    box-shadow: 0 12px 28px rgba(242, 166, 90, 0.22);
}

.button-accent:hover {
    background: #ffc078;
    box-shadow: 0 16px 34px rgba(242, 166, 90, 0.3);
}

.button-outline {
    border-color: #bfd0d8;
    background: #ffffff;
    color: var(--navy);
}

.button-small {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 11px;
    font-size: 0.9rem;
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(18, 59, 86, 0.1);
    background: rgba(248, 251, 252, 0.92);
    box-shadow: 0 4px 20px rgba(18, 59, 86, 0.04);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
}

.brand img {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
}

.brand-text {
    display: grid;
    line-height: 1.05;
}

.brand-text strong {
    font-size: 1.18rem;
    letter-spacing: -0.02em;
}

.brand-text small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.desktop-nav > a:not(.button) {
    position: relative;
    color: #334b5b;
    font-size: 0.94rem;
    font-weight: 750;
}

.desktop-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    border-radius: 99px;
    background: var(--teal);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.desktop-nav > a:not(.button):hover::after {
    transform: scaleX(1);
}

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

.mobile-menu summary {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    color: var(--navy);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

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

.mobile-menu summary svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.mobile-menu-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: min(310px, calc(100vw - 32px));
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
}

.mobile-menu-panel > a:not(.button) {
    padding: 11px 12px;
    border-radius: 9px;
    color: var(--navy);
    font-weight: 750;
}

.mobile-menu-panel > a:not(.button):hover {
    background: var(--surface-tint);
}

.mobile-menu-panel .button {
    margin-top: 8px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 8vw, 118px) 0 clamp(70px, 8vw, 112px);
    background:
        radial-gradient(circle at 88% 12%, rgba(28, 142, 154, 0.16), transparent 30%),
        radial-gradient(circle at 7% 70%, rgba(242, 166, 90, 0.14), transparent 26%),
        linear-gradient(180deg, #fbfdfd 0%, #f4f8fa 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 59, 86, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 86, 0.045) 1px, transparent 1px);
    background-size: 34px 34px;
    content: "";
    opacity: 0.62;
    pointer-events: none;
}

.hero::after {
    position: absolute;
    right: -160px;
    bottom: -250px;
    width: 580px;
    height: 580px;
    border: 1px solid rgba(28, 142, 154, 0.22);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(28, 142, 154, 0.035), 0 0 0 140px rgba(28, 142, 154, 0.025);
    content: "";
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    align-items: center;
    gap: clamp(44px, 7vw, 96px);
}

.hero-copy h1 {
    max-width: 760px;
    margin-bottom: 26px;
    color: var(--navy);
    font-size: clamp(3rem, 6.2vw, 5.45rem);
    font-weight: 860;
    letter-spacing: -0.058em;
    line-height: 0.98;
}

.hero-copy h1 span {
    color: var(--teal-dark);
}

.hero-lead {
    max-width: 690px;
    margin-bottom: 30px;
    color: #425a69;
    font-size: clamp(1.08rem, 1.6vw, 1.28rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.platform-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 28px;
    list-style: none;
}

.platform-list li {
    padding: 8px 13px;
    border: 1px solid #cad9df;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.hero-note {
    display: flex;
    max-width: 680px;
    align-items: flex-start;
    gap: 13px;
    padding-top: 20px;
    border-top: 1px solid rgba(18, 59, 86, 0.13);
}

.hero-note svg {
    width: 27px;
    height: 27px;
    flex: 0 0 auto;
    margin-top: 2px;
    fill: none;
    stroke: var(--teal-dark);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-note p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 575px;
    justify-self: end;
}

.hero-image-card {
    position: relative;
    overflow: hidden;
    padding: 14px;
    border: 1px solid rgba(18, 59, 86, 0.12);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-lg);
}

.hero-image-card::after {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    content: "";
    pointer-events: none;
}

.hero-image-card img {
    width: 100%;
    border-radius: 24px;
}

.image-kicker {
    position: absolute;
    z-index: 2;
    top: 26px;
    left: 26px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(10, 41, 61, 0.9);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.visual-float {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    border: 1px solid rgba(18, 59, 86, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 42px rgba(18, 59, 86, 0.17);
    backdrop-filter: blur(12px);
}

.visual-float strong,
.visual-float small {
    display: block;
}

.visual-float strong {
    color: var(--navy);
    font-size: 0.8rem;
    line-height: 1.25;
}

.visual-float small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.35;
}

.visual-float-top {
    top: 15%;
    left: -11%;
}

.visual-float-bottom {
    right: -7%;
    bottom: 10%;
}

.float-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    background: var(--teal-pale);
    color: var(--teal-dark);
}

.float-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.status-dot {
    width: 11px;
    height: 11px;
    flex: 0 0 auto;
    border: 3px solid #d9f0ea;
    border-radius: 50%;
    background: #2f9c7a;
    box-shadow: 0 0 0 4px rgba(47, 156, 122, 0.1);
}

.audience-strip {
    background: var(--navy);
    color: #ffffff;
}

.audience-layout {
    display: grid;
    grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: 44px;
    padding-block: 34px;
}

.strip-label {
    margin-bottom: 4px;
    color: #8ad1d5;
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.audience-layout h2 {
    margin-bottom: 0;
    font-size: clamp(1.35rem, 2.4vw, 2.05rem);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.audience-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
    margin: 0;
    list-style: none;
}

.audience-list li {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.075);
    color: #edf6f8;
    font-size: 0.82rem;
    font-weight: 700;
}

.section {
    padding: clamp(78px, 9vw, 132px) 0;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 48px;
}

.section-heading h2,
.solution-copy h2,
.license-copy h2,
.contact-copy h2 {
    margin-bottom: 18px;
    color: var(--navy);
    font-size: clamp(2.15rem, 4.6vw, 3.8rem);
    font-weight: 850;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.section-heading > p:last-child,
.section-lead,
.contact-copy > p {
    color: var(--muted);
    font-size: 1.05rem;
}

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

.service-card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: clamp(26px, 3.4vw, 38px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
    position: absolute;
    top: 0;
    left: 30px;
    width: 68px;
    height: 4px;
    border-radius: 0 0 5px 5px;
    background: var(--teal);
    content: "";
}

.service-card:hover {
    border-color: #bfd2d9;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card-featured {
    overflow: hidden;
    border-color: transparent;
    background:
        radial-gradient(circle at 100% 0%, rgba(28, 142, 154, 0.35), transparent 38%),
        linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: #ffffff;
}

.service-card-featured::before {
    background: var(--orange);
}

.service-card-featured::after {
    position: absolute;
    right: -88px;
    bottom: -94px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
    box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.025), 0 0 0 76px rgba(255, 255, 255, 0.02);
    content: "";
    pointer-events: none;
}

.featured-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--orange);
    color: var(--navy-dark);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 24px;
    padding-right: 100px;
}

.service-card:not(.service-card-featured) .service-card-header {
    padding-right: 0;
}

.service-icon {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 14px;
    background: var(--teal-pale);
    color: var(--teal-dark);
}

.service-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card-featured .service-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #8bd8dc;
}

.card-kicker {
    margin-bottom: 0;
    color: var(--teal-dark);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-card-featured .card-kicker {
    color: #8bd8dc;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--navy);
    font-size: clamp(1.55rem, 2.5vw, 2.15rem);
    letter-spacing: -0.035em;
    line-height: 1.16;
}

.service-card-featured h3 {
    color: #ffffff;
}

.service-card > p {
    margin-bottom: 22px;
    color: var(--muted);
}

.service-card-featured > p {
    color: #d8e7ed;
}

.check-list {
    display: grid;
    gap: 11px;
    margin: 0 0 28px;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #354d5c;
    font-size: 0.93rem;
    font-weight: 680;
}

.check-list svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    margin-top: 2px;
    fill: none;
    stroke: var(--teal-dark);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card-featured .check-list li {
    color: #edf6f8;
}

.service-card-featured .check-list svg {
    stroke: var(--orange);
}

.text-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    margin-top: auto;
    color: var(--teal-dark);
    font-size: 0.92rem;
    font-weight: 850;
}

.text-link svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 180ms ease;
}

.text-link:hover svg {
    transform: translateX(4px);
}

.service-card-featured .text-link {
    color: var(--orange);
}

.solution-section {
    background: var(--surface-tint);
}

.solution-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(46px, 7vw, 88px);
}

.solution-copy {
    position: sticky;
    top: calc(var(--header-height) + 30px);
}

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

.feature-list {
    display: grid;
    gap: 14px;
}

.feature-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(18, 59, 86, 0.14);
}

.feature-item:last-child {
    border-bottom: 1px solid rgba(18, 59, 86, 0.14);
}

.feature-number {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    background: var(--navy);
    color: #ffffff;
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.feature-item h3 {
    margin-bottom: 5px;
    color: var(--navy);
    font-size: 1.06rem;
    line-height: 1.3;
}

.feature-item p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.91rem;
}

.solution-visuals {
    min-width: 0;
}

.gis-mockup {
    overflow: hidden;
    margin: 0 0 44px;
    border: 10px solid var(--navy-dark);
    border-radius: 26px;
    background: var(--navy-dark);
    box-shadow: var(--shadow-lg);
}

.mock-window-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    background: #0c3149;
    color: #dceaf0;
    font-size: 0.72rem;
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.26);
}

.mock-window-bar strong {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
}

.window-status {
    justify-self: end;
    padding: 4px 8px;
    border-radius: 99px;
    background: rgba(28, 142, 154, 0.2);
    color: #8bd8dc;
    font-size: 0.64rem;
    font-weight: 800;
}

.mock-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 39px;
    padding: 7px 12px;
    border-bottom: 1px solid #d9e4e8;
    background: #f8fbfc;
}

.mock-toolbar span {
    width: 22px;
    height: 22px;
    border: 1px solid #cddbe1;
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(28, 142, 154, 0.18) 0 48%, transparent 49%),
        #ffffff;
}

.mock-toolbar b {
    width: 1px;
    height: 22px;
    margin-inline: 3px;
    background: #d4e0e5;
}

.mock-workspace {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    min-height: 430px;
    background: #e7eef1;
}

.mock-sidebar {
    padding: 18px 13px;
    border-right: 1px solid #d4e0e5;
    background: #ffffff;
}

.mock-sidebar > p {
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mock-sidebar ul {
    display: grid;
    gap: 7px;
    margin: 0;
    list-style: none;
}

.mock-sidebar li {
    display: grid;
    grid-template-columns: 11px 1fr auto;
    align-items: center;
    gap: 7px;
    padding: 7px;
    border-radius: 7px;
    background: #f3f7f9;
    color: #455d6b;
    font-size: 0.64rem;
}

.mock-sidebar li b {
    color: #78909d;
    font-size: 0.58rem;
}

.layer-swatch {
    width: 9px;
    height: 9px;
    border-radius: 3px;
}

.layer-teal {
    background: var(--teal);
}

.layer-orange {
    background: var(--orange);
}

.layer-navy {
    background: var(--navy);
}

.layer-gray {
    background: #9fb0b8;
}

.mock-filter {
    display: grid;
    gap: 5px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #dde6ea;
}

.mock-filter span {
    color: #718591;
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mock-filter strong {
    padding: 8px;
    border: 1px solid #d7e2e7;
    border-radius: 7px;
    color: #9aaab2;
    font-size: 0.58rem;
    font-weight: 650;
}

.mock-map {
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.map-illustration {
    width: 100%;
    height: 100%;
}

.map-base {
    fill: #e8ece3;
}

.map-water {
    fill: #cce8eb;
    stroke: #9bced4;
    stroke-width: 2;
}

.map-road-wide {
    fill: none;
    stroke: #ffffff;
    stroke-width: 24;
    stroke-linecap: round;
}

.map-road {
    fill: none;
    stroke: #ffffff;
    stroke-width: 14;
    stroke-linecap: round;
}

.map-road-small {
    fill: none;
    stroke: rgba(255, 255, 255, 0.82);
    stroke-width: 7;
    stroke-linecap: round;
}

.parcel-group path {
    fill: #e1e7d8;
    stroke: #aab99c;
    stroke-width: 1.3;
}

.plot-group rect {
    fill: #78bec2;
    stroke: #ffffff;
    stroke-width: 1.2;
}

.plot-group rect:nth-child(3n) {
    fill: #f1ad69;
}

.plot-group rect:nth-child(4n) {
    fill: #6d91aa;
}

.selected-area {
    fill: rgba(242, 166, 90, 0.16);
    stroke: #e38d38;
    stroke-width: 3;
    stroke-dasharray: 7 5;
}

.map-pin-halo {
    fill: rgba(242, 166, 90, 0.2);
}

.map-pin {
    fill: #d97f29;
    stroke: #ffffff;
    stroke-width: 2;
}

.map-scale {
    position: absolute;
    bottom: 12px;
    left: 14px;
    padding: 5px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    color: #536b78;
    font-size: 0.55rem;
    font-weight: 800;
    box-shadow: 0 5px 14px rgba(18, 59, 86, 0.1);
}

.map-record {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 190px;
    padding: 13px;
    border: 1px solid rgba(18, 59, 86, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 38px rgba(18, 59, 86, 0.2);
    backdrop-filter: blur(10px);
}

.record-label {
    display: block;
    margin-bottom: 4px;
    color: var(--teal-dark);
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.map-record > strong {
    display: block;
    margin-bottom: 9px;
    color: var(--navy);
    font-size: 1rem;
}

.map-record dl {
    display: grid;
    gap: 5px;
    margin-bottom: 0;
}

.map-record dl div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 5px;
    border-top: 1px solid #e3eaed;
    font-size: 0.56rem;
}

.map-record dt {
    color: #778b96;
}

.map-record dd {
    margin-bottom: 0;
    color: #324b59;
    font-weight: 800;
}

.gallery-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.gallery-heading .eyebrow {
    margin-bottom: 6px;
}

.gallery-heading h3 {
    margin-bottom: 0;
    color: var(--navy);
    font-size: clamp(1.45rem, 2.8vw, 2.2rem);
    letter-spacing: -0.035em;
    line-height: 1.2;
}

.gallery-heading > p {
    max-width: 260px;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.8rem;
    text-align: right;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 12px;
}

.gallery-item {
    position: relative;
    grid-column: span 4;
    min-height: 195px;
    overflow: hidden;
    border: 1px solid rgba(18, 59, 86, 0.12);
    border-radius: 16px;
    background: #dce6ea;
    box-shadow: 0 10px 26px rgba(18, 59, 86, 0.08);
}

.gallery-item-wide {
    grid-column: span 8;
}

.gallery-item-tall {
    min-height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(8, 34, 50, 0.78) 100%);
    content: "";
    pointer-events: none;
}

.gallery-item span {
    position: absolute;
    z-index: 1;
    right: 12px;
    bottom: 10px;
    left: 12px;
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.3;
}

.gallery-item:hover img {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.035);
}

.license-section {
    background: var(--surface-soft);
}

.license-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.34fr) minmax(280px, 0.66fr);
    align-items: center;
    gap: clamp(34px, 6vw, 76px);
    overflow: hidden;
    padding: clamp(34px, 5.8vw, 70px);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 0% 100%, rgba(28, 142, 154, 0.36), transparent 34%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: #ffffff;
    box-shadow: var(--shadow-lg);
}

.license-panel::after {
    position: absolute;
    top: -165px;
    right: -125px;
    width: 410px;
    height: 410px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 0 62px rgba(255, 255, 255, 0.025), 0 0 0 124px rgba(255, 255, 255, 0.018);
    content: "";
    pointer-events: none;
}

.license-copy {
    position: relative;
    z-index: 1;
}

.license-copy h2 {
    color: #ffffff;
}

.license-copy > p:not(.eyebrow) {
    max-width: 760px;
    margin-bottom: 30px;
    color: #d8e6ec;
    font-size: 1rem;
}

.license-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.license-facts > div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.065);
}

.license-facts svg {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--orange);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.license-facts strong,
.license-facts small {
    display: block;
}

.license-facts strong {
    font-size: 0.83rem;
}

.license-facts small {
    margin-top: 2px;
    color: #bdd0d9;
    font-size: 0.69rem;
}

.license-offer {
    position: relative;
    z-index: 1;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    color: var(--ink);
    box-shadow: 0 25px 55px rgba(5, 29, 45, 0.32);
}

.offer-label {
    display: inline-block;
    margin-bottom: 20px;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--teal-pale);
    color: var(--teal-dark);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offer-caption {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 750;
}

.offer-price {
    margin-bottom: 15px;
    color: var(--navy);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.offer-price small {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0;
}

.offer-note {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 0.82rem;
}

.license-offer .button {
    width: 100%;
}

.contact-section {
    padding-top: 20px;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
    gap: clamp(40px, 7vw, 90px);
    padding: clamp(34px, 5.5vw, 68px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.contact-copy h2 {
    margin-bottom: 16px;
}

.contact-copy > p {
    max-width: 620px;
    margin-bottom: 28px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.contact-details {
    display: grid;
    gap: 10px;
}

.contact-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 13px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--surface-soft);
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.contact-card:hover {
    border-color: #a8c8cf;
    background: var(--teal-pale);
    transform: translateX(4px);
}

.contact-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 13px;
    background: #ffffff;
    color: var(--teal-dark);
    box-shadow: 0 6px 16px rgba(18, 59, 86, 0.07);
}

.contact-icon svg,
.contact-arrow {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-card small,
.contact-card strong {
    display: block;
}

.contact-card small {
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-card strong {
    overflow-wrap: anywhere;
    color: var(--navy);
    font-size: 0.94rem;
}

.contact-arrow {
    width: 20px;
    height: 20px;
    color: var(--teal-dark);
}

.site-footer {
    margin-top: clamp(72px, 8vw, 110px);
    background: var(--navy-dark);
    color: #ffffff;
}

.footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 130px;
}

.brand-footer {
    color: #ffffff;
}

.brand-footer .brand-text small {
    color: #9cb5c2;
}

.footer-inner > p {
    margin-bottom: 0;
    color: #aec1cb;
    font-size: 0.8rem;
    text-align: center;
}

.footer-top-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #d5e4ea;
    font-size: 0.82rem;
    font-weight: 800;
}

.footer-top-link svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: var(--orange);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(370px, 0.9fr);
        gap: 46px;
    }

    .visual-float-top {
        left: -5%;
    }

    .visual-float-bottom {
        right: -2%;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .solution-copy {
        position: static;
        max-width: 820px;
    }

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

    .feature-item {
        grid-template-columns: 1fr;
        padding: 18px;
        border: 1px solid rgba(18, 59, 86, 0.13);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.52);
    }

    .feature-item:last-child {
        border-bottom: 1px solid rgba(18, 59, 86, 0.13);
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 72px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-visual {
        max-width: 690px;
        justify-self: center;
    }

    .visual-float-top {
        left: -2%;
    }

    .visual-float-bottom {
        right: -2%;
    }

    .audience-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .audience-list {
        justify-content: flex-start;
    }

    .license-panel,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .license-offer {
        max-width: 520px;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .brand img {
        width: 40px;
        height: 40px;
    }

    .brand-text strong {
        font-size: 1.05rem;
    }

    .brand-text small {
        font-size: 0.65rem;
    }

    .hero {
        padding-top: 58px;
    }

    .hero-copy h1 {
        font-size: clamp(2.55rem, 14vw, 4.1rem);
    }

    .hero-actions,
    .contact-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button,
    .contact-actions .button {
        width: 100%;
    }

    .visual-float {
        position: static;
        margin-top: 10px;
    }

    .hero-visual {
        display: grid;
        gap: 0;
    }

    .image-kicker {
        top: 22px;
        left: 22px;
        max-width: calc(100% - 44px);
        white-space: normal;
    }

    .service-grid,
    .feature-list,
    .license-facts {
        grid-template-columns: 1fr;
    }

    .service-card-header {
        padding-right: 0;
    }

    .featured-badge {
        position: static;
        align-self: flex-start;
        margin-bottom: 20px;
    }

    .mock-workspace {
        grid-template-columns: 1fr;
    }

    .mock-sidebar {
        display: none;
    }

    .mock-map {
        min-height: 360px;
    }

    .mock-window-bar {
        grid-template-columns: 1fr auto;
    }

    .window-dots {
        display: none;
    }

    .mock-window-bar strong {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .gallery-heading {
        display: block;
    }

    .gallery-heading > p {
        max-width: none;
        margin-top: 8px;
        text-align: left;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item-wide {
        grid-column: auto;
        min-height: 240px;
    }

    .contact-panel,
    .license-panel {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .contact-card {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .contact-arrow {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
        padding-block: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .mobile-menu summary span {
        display: none;
    }

    .hero-image-card {
        padding: 8px;
        border-radius: 24px;
    }

    .hero-image-card img,
    .hero-image-card::after {
        border-radius: 18px;
    }

    .hero-image-card::after {
        inset: 8px;
    }

    .image-kicker {
        top: 16px;
        left: 16px;
        padding: 6px 9px;
        font-size: 0.58rem;
    }

    .audience-layout {
        padding-block: 28px;
    }

    .section {
        padding-block: 72px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .gis-mockup {
        border-width: 6px;
        border-radius: 20px;
    }

    .mock-toolbar span:nth-of-type(n + 7) {
        display: none;
    }

    .map-record {
        right: 9px;
        bottom: 9px;
        width: 165px;
        padding: 10px;
    }

    .gallery-item,
    .gallery-item-wide {
        min-height: 210px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }
}
