@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
}

:root {
    --blue: #0067a8;
    --blue-dark: #082238;
    --green: #007a3d;
    --green-dark: #055f34;
    --ink: #102033;
    --muted: #5d6f82;
    --soft: #f4f8fb;
    --soft-green: #eef8f2;
    --line: #d9e5ee;
    --white: #ffffff;
    --amber: #f6b23a;
    --radius: 8px;
    --shadow: 0 18px 42px rgba(9, 33, 54, .12);
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: "Manrope", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.66;
    letter-spacing: 0;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

strong,
b {
    font-weight: 650;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(0, 152, 74, .28);
    outline-offset: 3px;
}

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

.alert-strip {
    overflow: hidden;
    background: var(--green);
    color: var(--white);
    font-size: 13px;
    font-weight: 400;
}

.alert-strip__inner {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.alert-strip__inner::-webkit-scrollbar {
    display: none;
}

.alert-strip__item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    min-height: 36px;
    color: inherit;
    font-weight: 430;
    line-height: 1;
}

.alert-strip__item::before {
    content: "";
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    background: currentColor;
    opacity: .92;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
}

.alert-strip__item--location::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.alert-strip__item--whatsapp::before {
    background: url("../images/whatsapp.png") center / contain no-repeat;
    filter: brightness(0) invert(1);
    -webkit-mask-image: none;
    mask-image: none;
}

.alert-strip__item--email::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a2 2 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a2 2 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
}

.alert-strip a {
    color: inherit;
    font-weight: 430;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(217, 229, 238, .9);
    backdrop-filter: blur(14px);
}

.nav-shell {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    width: 220px;
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex: 1 1 auto;
    min-width: 0;
    color: #28445d;
    font-size: 15px;
    font-weight: 540;
}

.desktop-nav > a,
.nav-dropdown > summary {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    border-radius: var(--radius);
    padding: 8px 6px;
    cursor: pointer;
}

.desktop-nav a:hover,
.nav-dropdown > summary:hover,
.desktop-nav [aria-current="page"] {
    color: var(--green-dark);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown summary {
    list-style: none;
}

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

.nav-dropdown summary::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown__panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    display: grid;
    width: 318px;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.nav-dropdown__panel--mega {
    width: min(880px, calc(100vw - 40px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 22px;
}

.nav-dropdown__panel--services {
    left: 50%;
    width: min(1080px, calc(100vw - 40px));
    max-height: calc(100vh - 150px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow-y: auto;
    transform: translateX(-35%);
    overscroll-behavior: contain;
}

.nav-dropdown__panel--solutions {
    width: 300px;
    grid-template-columns: 1fr;
}

.nav-dropdown__all {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--line);
    color: var(--blue-dark) !important;
    font-weight: 700 !important;
}

.nav-group {
    display: grid;
    align-content: start;
    gap: 4px;
}

.nav-group__title {
    display: block;
    border-radius: var(--radius);
    padding: 9px 10px;
    color: var(--green-dark) !important;
    font-weight: 760 !important;
}

span.nav-group__title {
    cursor: default;
}

.nav-group--single .nav-group__title {
    border: 1px solid rgba(0, 152, 74, .18);
    background: var(--soft-green);
}

.nav-dropdown__panel a {
    border-radius: var(--radius);
    padding: 9px 10px;
    color: #28445d;
    line-height: 1.35;
}

.nav-dropdown__panel a:hover {
    background: var(--soft-green);
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 11px 18px;
    font-size: 15px;
    font-weight: 640;
    line-height: 1.2;
    text-align: center;
}

.button--whatsapp {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(0, 122, 61, .18);
}

.button--whatsapp::before {
    content: "";
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    background: url("../images/whatsapp.png") center / contain no-repeat;
    filter: brightness(0) invert(1);
}

.site-floating-whatsapp {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 80;
    display: inline-flex;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #25D366;
    color: var(--white);
    box-shadow: 0 18px 42px rgba(37, 211, 102, .34);
    padding: 0;
    font-size: 0;
    line-height: 0;
}

.site-floating-whatsapp::before {
    content: "";
    width: 38px;
    height: 38px;
    background: url("../images/whatsapp.png") center / contain no-repeat;
    filter: brightness(0) invert(1);
}

.site-floating-whatsapp:hover {
    background: #1fbd5b;
    transform: translateY(-1px);
}

.modal-open {
    overflow: hidden;
}

.whatsapp-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 20px;
}

.whatsapp-modal[hidden] {
    display: none;
}

.whatsapp-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 20, 35, .72);
    backdrop-filter: blur(6px);
}

.whatsapp-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
    padding: 34px;
    overflow: hidden;
}

.whatsapp-modal__dialog h2 {
    max-width: 430px;
    font-size: 34px;
    overflow-wrap: anywhere;
}

.whatsapp-modal__dialog p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
    overflow-wrap: anywhere;
}

.whatsapp-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: var(--soft);
    color: var(--blue-dark);
    cursor: pointer;
}

.whatsapp-modal__close::before,
.whatsapp-modal__close::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.whatsapp-modal__close::before {
    transform: rotate(45deg);
}

.whatsapp-modal__close::after {
    transform: rotate(-45deg);
}

.whatsapp-modal__actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.whatsapp-modal__actions .button {
    width: 100%;
    min-width: 0;
    white-space: normal;
}

.button--ghost {
    border-color: var(--line);
    background: var(--white);
    color: var(--blue-dark);
}

.button--primary {
    background: var(--blue);
    color: var(--white);
}

.button--client {
    border-color: var(--line);
    background: var(--white);
    color: var(--blue-dark);
}

.button--client::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23082238' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button--secondary {
    border-color: rgba(255, 255, 255, .46);
    background: rgba(255, 255, 255, .12);
    color: var(--white);
}

.page-hero .button--secondary,
.service-hero .button--secondary,
.contact-card .button--secondary {
    border-color: var(--line);
    background: var(--white);
    color: var(--blue-dark);
}

.header-cta {
    white-space: nowrap;
}

.header-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
}

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

.mobile-menu > summary {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 9px 13px;
    color: var(--blue-dark);
    font-weight: 640;
    list-style: none;
    cursor: pointer;
}

.mobile-menu__panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: min(330px, calc(100vw - 32px));
    max-height: calc(100vh - 210px);
    overflow-y: auto;
    overscroll-behavior: contain;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.mobile-menu:not([open]) .mobile-menu__panel {
    display: none;
}

.mobile-menu__panel a {
    min-height: 42px;
    border-radius: var(--radius);
    padding: 9px 11px;
    color: #28445d;
    font-weight: 560;
}

.mobile-menu__label {
    margin: 8px 0 2px;
    padding: 6px 10px 2px;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 760;
    text-transform: uppercase;
}

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

.mobile-menu__panel .button--whatsapp {
    color: var(--white);
}

.mobile-menu__panel .button--client {
    color: var(--blue-dark);
}

.mobile-submenu {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.mobile-submenu + .mobile-submenu {
    margin-top: 4px;
}

.mobile-submenu summary {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 11px;
    color: var(--blue-dark);
    font-weight: 650;
    list-style: none;
    cursor: pointer;
}

.mobile-submenu summary::after {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.mobile-submenu[open] > summary::after {
    transform: rotate(225deg) translateY(-1px);
}

.mobile-submenu > div {
    display: grid;
    gap: 2px;
    padding: 0 8px 8px;
}

.mobile-submenu--nested {
    border-color: rgba(217, 229, 238, .75);
    background: var(--soft);
}

.mobile-submenu--nested summary {
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 760;
    text-transform: uppercase;
}

.mobile-submenu--nested a {
    padding-left: 18px;
    font-size: 14px;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--blue-dark);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center right;
    opacity: .56;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(5, 24, 40, .96) 0%, rgba(5, 24, 40, .86) 46%, rgba(5, 24, 40, .48) 100%);
}

.hero__inner {
    display: flex;
    align-items: center;
    min-height: 650px;
    padding: 78px 0;
}

.hero__content {
    max-width: 720px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 13px;
    font-weight: 640;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section--dark .eyebrow,
.hero .eyebrow,
.cta-band .eyebrow {
    color: #77e0a7;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.12;
    letter-spacing: 0;
}

h1 {
    max-width: 900px;
    font-size: 50px;
    font-weight: 650;
}

h2 {
    font-size: 34px;
    font-weight: 620;
}

h3 {
    font-size: 22px;
    font-weight: 590;
}

p {
    margin: 12px 0 0;
    color: var(--muted);
}

.hero p,
.section--dark p,
.cta-band p {
    color: rgba(255, 255, 255, .84);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

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

.proof-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}

.proof-strip__grid div {
    min-height: 92px;
    padding: 20px 18px;
    border-left: 1px solid var(--line);
}

.proof-strip__grid div:last-child {
    border-right: 1px solid var(--line);
}

.proof-strip strong {
    display: block;
    color: var(--blue-dark);
    font-size: 20px;
}

.proof-strip span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 14px;
}

.section {
    padding: 82px 0;
}

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

.section--dark {
    background: #071d30;
    color: var(--white);
}

.section-head {
    max-width: 760px;
    margin-bottom: 30px;
}

.section-head p {
    font-size: 18px;
}

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

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

.service-card,
.article-card,
.info-card,
.contact-card,
.faq-list article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 22px rgba(9, 33, 54, .06);
}

.service-card {
    overflow: hidden;
}

.service-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--soft);
}

.service-card > div,
.article-card,
.info-card,
.contact-card {
    padding: 22px;
}

.card-kicker {
    margin: 0 0 8px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 640;
    letter-spacing: 0;
    text-transform: uppercase;
}

.text-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--blue);
    font-weight: 640;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 46px;
    align-items: start;
}

.stack-list,
.timeline,
.faq-list {
    display: grid;
    gap: 12px;
}

.stack-list article {
    border-left: 4px solid var(--green);
    border-radius: var(--radius);
    background: var(--white);
    padding: 18px 18px 18px 20px;
}

.stack-list strong {
    display: block;
    color: var(--blue-dark);
}

.stack-list h3 {
    margin: 0;
    color: var(--blue-dark);
    font-size: 18px;
}

.stack-list span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.stack-list p {
    margin-top: 4px;
}

.brand-panel {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 34px;
    align-items: center;
}

.brand-logos {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    align-items: center;
}

.brand-logos img {
    width: 100%;
    height: 86px;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding: 14px;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-list span {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    padding: 8px 13px;
    font-size: 14px;
    font-weight: 560;
}

.local-area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: start;
}

.local-area-list a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--blue-dark);
    padding: 8px 13px;
    font-size: 14px;
    font-weight: 560;
}

.local-area-list a:hover {
    border-color: rgba(0, 152, 74, .32);
    background: var(--soft-green);
    color: var(--green-dark);
}

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

.service-region-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding: 20px;
    box-shadow: 0 8px 22px rgba(9, 33, 54, .06);
}

.service-region-card h2 {
    font-size: 22px;
}

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

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

.cta-band {
    padding: 72px 0;
    background: linear-gradient(135deg, #082238 0%, #0067a8 58%, #00984a 100%);
    color: var(--white);
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.cta-band__inner > div {
    max-width: 720px;
}

.page-hero,
.service-hero,
.article-hero {
    background: linear-gradient(135deg, #eef8f2 0%, #f6fbff 58%, #ffffff 100%);
    border-bottom: 1px solid var(--line);
}

.page-hero .container {
    padding: 78px 0;
}

.page-hero p,
.service-hero p,
.article-hero p {
    max-width: 760px;
    font-size: 18px;
}

.service-hero__grid,
.article-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
    gap: 38px;
    align-items: center;
    padding: 70px 0;
}

.service-hero img,
.article-hero img,
.about-grid img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    object-position: center center;
}

.service-hero img,
.article-hero img {
    aspect-ratio: 4 / 3;
}

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

.info-card h2 {
    font-size: 23px;
}

.timeline article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
    border-bottom: 1px solid var(--line);
    padding: 0 0 18px;
}

.timeline span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--green);
    color: var(--white);
    font-weight: 640;
}

.timeline p {
    margin: 4px 0 0;
}

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

.faq-list article {
    padding: 24px;
}

.faq-list h3 {
    font-size: 20px;
}

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

.related-links a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    padding: 9px 14px;
    color: var(--blue-dark);
    font-weight: 560;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    min-height: 48px;
    padding: 14px 0;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--blue);
    font-weight: 560;
}

.breadcrumbs strong {
    color: var(--blue-dark);
    font-weight: 620;
}

.real-installation-carousel {
    position: relative;
}

.real-installation-scroller {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 50%;
    scroll-behavior: smooth;
    padding: 2px 4px;
    scrollbar-width: none;
}

.real-installation-scroller::-webkit-scrollbar {
    display: none;
}

.real-installation-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(217, 229, 238, .92);
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 32px rgba(9, 33, 54, .16);
    color: var(--blue-dark);
    cursor: pointer;
    transform: translateY(-50%);
    transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}

.real-installation-nav:hover {
    box-shadow: 0 16px 38px rgba(9, 33, 54, .2);
}

.real-installation-nav:disabled {
    opacity: .28;
    cursor: default;
    pointer-events: none;
}

.real-installation-nav::before {
    content: "";
    width: 11px;
    height: 11px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.real-installation-nav--prev {
    left: -22px;
}

.real-installation-nav--prev::before {
    transform: rotate(-135deg) translate(-1px, -1px);
}

.real-installation-nav--next {
    right: -22px;
}

.real-installation-nav--next::before {
    transform: rotate(45deg) translate(-1px, 1px);
}

.real-installation-card {
    display: grid;
    flex: 0 0 min(360px, 82vw);
    grid-template-rows: auto 1fr;
    scroll-snap-align: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 22px rgba(9, 33, 54, .06);
}

.real-installation-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center center;
}

.real-installation-card > div {
    padding: 18px;
}

.real-installation-card h3 {
    font-size: 22px;
}

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

.service-silo-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding: 22px;
    box-shadow: 0 8px 22px rgba(9, 33, 54, .06);
}

.service-silo-card h2 {
    margin-bottom: 14px;
    font-size: 24px;
}

.field-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 34px;
    align-items: center;
}

.field-proof-photo {
    margin: 0;
}

.field-proof-photo img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.field-proof-photo figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.about-grid {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.about-grid img {
    aspect-ratio: 3 / 4;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.value-grid article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
}

.value-grid h3 {
    font-size: 18px;
}

.value-grid p {
    margin-top: 5px;
    color: var(--muted);
}

.visit-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
    gap: 30px;
    align-items: stretch;
}

.visit-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit-address {
    margin: 24px 0;
    border-left: 4px solid var(--green);
    padding-left: 16px;
    color: var(--muted);
}

.visit-address strong {
    display: block;
    margin-bottom: 4px;
    color: var(--blue-dark);
}

.visit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.visit-map {
    min-height: 360px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.visit-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

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

.manufacturer-card {
    display: flex;
    min-height: 228px;
    flex-direction: column;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding: 18px;
    box-shadow: 0 14px 32px rgba(9, 33, 54, .07);
}

.manufacturer-card__logo {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
}

.manufacturer-card__logo img {
    width: 100%;
    height: 54px;
    object-fit: contain;
}

.manufacturer-card h3,
.manufacturer-card p {
    margin: 0;
}

.manufacturer-card h3 {
    font-size: 18px;
    line-height: 1.25;
}

.manufacturer-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: 22px;
    align-items: start;
}

.contact-form-panel,
.contact-summary {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 22px rgba(9, 33, 54, .06);
    padding: 24px;
}

.contact-form-panel > p,
.contact-summary > p {
    color: var(--muted);
}

.contact-form {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    border: 0;
    padding: 0;
    min-inline-size: 0;
}

.form-grid__legend {
    grid-column: 1 / -1;
    margin: 0 0 4px;
    padding: 0;
    color: var(--blue-dark);
    font-size: 18px;
    font-weight: 640;
}

.form-field {
    display: grid;
    gap: 7px;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field span {
    color: var(--blue-dark);
    font-weight: 640;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    font: inherit;
    padding: 12px 13px;
    outline: 0;
}

.form-field textarea {
    min-height: 160px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 103, 168, .14);
}

.form-field small {
    color: #b42318;
    font-size: 13px;
    font-weight: 560;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    margin-top: 18px;
    border-radius: var(--radius);
    padding: 12px 14px;
    font-weight: 600;
}

.form-status--success {
    border: 1px solid rgba(0, 122, 61, .24);
    background: var(--soft-green);
    color: var(--green-dark);
}

.form-status--error {
    border: 1px solid rgba(180, 35, 24, .24);
    background: #fff4f2;
    color: #9f1f16;
}

.contact-summary {
    display: grid;
    gap: 16px;
}

.contact-summary .button {
    width: 100%;
}

.contact-summary dl {
    display: grid;
    gap: 5px;
    margin: 4px 0 0;
}

.contact-summary dt {
    color: var(--blue-dark);
    font-weight: 650;
}

.contact-summary dd {
    margin: 0 0 10px;
    color: var(--muted);
}

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

.contact-card {
    display: flex;
    min-height: 270px;
    flex-direction: column;
}

.contact-card .button {
    margin-top: auto;
}

.contact-card span {
    color: var(--muted);
    font-size: 14px;
}

.article-body {
    max-width: 790px;
}

.content-rich {
    max-width: 850px;
}

.content-rich h2 {
    margin-top: 34px;
}

.content-rich h2:first-child,
.content-rich h3:first-child,
.content-rich p:first-child {
    margin-top: 0;
}

.content-rich h3 {
    margin-top: 24px;
}

.content-rich p,
.content-rich li {
    font-size: 18px;
}

.content-rich ul,
.content-rich ol {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding-left: 22px;
    color: var(--muted);
}

.content-rich li p {
    margin: 0;
}

.content-rich a {
    color: var(--blue);
    font-weight: 640;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.content-rich blockquote {
    margin: 22px 0 0;
    border-left: 4px solid var(--green);
    padding: 12px 0 12px 18px;
    color: var(--blue-dark);
}

.article-body h2 {
    margin-top: 34px;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body p {
    font-size: 18px;
}

.site-footer {
    background: #061725;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .9fr .9fr 1fr;
    gap: 28px;
    padding: 58px 0;
}

.footer-logo {
    width: 218px;
    height: auto;
    margin-bottom: 18px;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, .76);
}

.site-footer strong {
    display: block;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-links {
    display: grid;
    gap: 7px;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.footer-badges img {
    width: auto;
    max-width: 140px;
    height: 42px;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom__inner {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
}

@media (max-width: 1220px) {
    .desktop-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .nav-shell {
        min-height: 72px;
    }
}

@media (max-width: 980px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    .hero,
    .hero__inner {
        min-height: 570px;
    }

    .proof-strip__grid,
    .service-grid,
    .service-grid--wide,
    .article-grid,
    .article-grid--wide,
    .three-columns,
    .contact-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split,
    .brand-panel,
    .service-hero__grid,
    .article-hero__grid,
    .about-grid,
    .field-proof-grid,
    .visit-grid,
    .contact-form-grid,
    .cta-band__inner {
        grid-template-columns: 1fr;
    }

    .cta-band__inner {
        display: grid;
    }

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

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

    .service-silo-grid {
        grid-template-columns: 1fr;
    }

    .real-installation-nav--prev {
        left: -10px;
    }

    .real-installation-nav--next {
        right: -10px;
    }

    .about-grid {
        gap: 28px;
    }
}

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

    .brand img {
        width: 176px;
    }

    .alert-strip__inner {
        justify-content: flex-start;
    }

    .whatsapp-modal {
        padding: 14px;
    }

    .whatsapp-modal__dialog {
        max-width: calc(100vw - 28px);
        padding: 28px 22px 22px;
    }

    .whatsapp-modal__dialog h2 {
        max-width: calc(100% - 44px);
        font-size: 26px;
    }

    .whatsapp-modal__dialog p:not(.eyebrow) {
        font-size: 16px;
    }

    .hero,
    .hero__inner {
        min-height: 540px;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(5, 24, 40, .96) 0%, rgba(5, 24, 40, .9) 68%, rgba(5, 24, 40, .72) 100%);
    }

    .hero__inner {
        padding: 54px 0;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    .section {
        padding: 58px 0;
    }

    .real-installation-scroller {
        gap: 12px;
        padding-inline: 2px;
    }

    .real-installation-nav {
        width: 38px;
        height: 38px;
    }

    .real-installation-nav--prev {
        left: 2px;
    }

    .real-installation-nav--next {
        right: 2px;
    }

    .page-hero .container,
    .service-hero__grid,
    .article-hero__grid {
        padding: 52px 0;
    }

    .hero__actions,
    .cta-band .button {
        width: 100%;
    }

    .hero__actions .button,
    .cta-band .button {
        width: 100%;
    }

    .site-floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 56px;
        height: 56px;
    }

    .site-floating-whatsapp::before {
        width: 36px;
        height: 36px;
    }

    .proof-strip__grid,
    .service-grid,
    .service-grid--wide,
    .article-grid,
    .article-grid--wide,
    .three-columns,
    .service-region-grid,
    .service-silo-grid,
    .faq-list,
    .contact-grid,
    .footer-grid,
    .value-grid,
    .manufacturer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

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

    .visit-map,
    .visit-map iframe {
        min-height: 310px;
    }

    .proof-strip__grid div,
    .proof-strip__grid div:last-child {
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid var(--line);
    }

    .footer-bottom__inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 16px 0;
    }
}
