:root {
    --navy-950: #041124;
    --navy-900: #071a35;
    --navy-800: #0b284d;
    --blue-600: #1598d0;
    --blue-500: #36b2e6;
    --blue-100: #e8f7fd;
    --yellow: #f4d700;
    --ink: #10233f;
    --muted: #607086;
    --line: #dfe7ef;
    --soft: #f4f8fb;
    --white: #ffffff;
    --success: #1da75a;
    --shadow: 0 24px 70px rgba(4, 17, 36, 0.12);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

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

h1,
h2,
h3 {
    color: var(--navy-950);
    line-height: 1.13;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
}

h3 {
    font-size: 1.25rem;
    font-weight: 800;
}

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

code {
    padding: 0.15rem 0.45rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--soft);
    font-size: 0.92em;
}

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

.narrow-container {
    width: min(820px, calc(100% - 48px));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    border-radius: 8px;
    background: var(--white);
    color: var(--navy-950);
    transform: translateY(-150%);
    box-shadow: var(--shadow);
}

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

.utility-bar {
    background: var(--navy-950);
    color: #c9dded;
    font-size: 0.77rem;
    letter-spacing: 0.03em;
}

.utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
}

.utility-inner a {
    color: var(--white);
    font-weight: 700;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(7, 26, 53, 0.08);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    width: 190px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--navy-900);
    font-size: 0.91rem;
    font-weight: 700;
}

.site-nav > a:not(.nav-cta) {
    position: relative;
    padding: 31px 0;
}

.site-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: 23px;
    left: 0;
    height: 2px;
    background: var(--blue-500);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: 13px 18px;
    border-radius: 999px;
    background: var(--navy-900);
    color: var(--white);
}

.menu-toggle {
    display: none;
}

.breadcrumb-wrap {
    border-bottom: 1px solid var(--line);
    background: var(--soft);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    min-height: 52px;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    list-style: none;
    color: var(--muted);
    font-size: 0.8rem;
    gap: 12px;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumbs li:not(:last-child)::after {
    color: #9dabb9;
    content: "/";
}

.breadcrumbs a:hover {
    color: var(--blue-600);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    color: var(--blue-600);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 2px;
    margin-right: 10px;
    background: currentColor;
    content: "";
}

.eyebrow.light {
    color: #93d8f4;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    background: var(--blue-500);
    color: var(--navy-950);
    box-shadow: 0 12px 35px rgba(54, 178, 230, 0.3);
}

.button-primary:hover {
    background: #5bc4ed;
}

.button-secondary {
    border-color: #bdcbd8;
    background: var(--white);
    color: var(--navy-900);
}

.button-secondary:hover {
    border-color: var(--blue-500);
}

.button-whatsapp {
    background: #20c76a;
    color: var(--navy-950);
}

.button-ghost-light {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
}

.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--blue-600);
    font-size: 0.86rem;
    font-weight: 800;
    gap: 8px;
}

.text-link span {
    transition: transform 180ms ease;
}

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

.light-link {
    color: #a7e2f8;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 80px;
    background:
        radial-gradient(circle at 90% 10%, rgba(54, 178, 230, 0.16), transparent 30%),
        linear-gradient(180deg, #f7fbfe 0%, #ffffff 100%);
}

.hero::after {
    position: absolute;
    right: -140px;
    bottom: -260px;
    width: 520px;
    height: 520px;
    border: 80px solid rgba(7, 26, 53, 0.025);
    border-radius: 50%;
    content: "";
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 80px;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 28px;
}

.hero h1 span {
    color: var(--blue-600);
}

.hero-lead {
    max-width: 700px;
    margin-bottom: 32px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 12px;
}

.hero-checks {
    display: flex;
    flex-wrap: wrap;
    margin: 32px 0 0;
    padding: 0;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    list-style: none;
    gap: 18px;
}

.hero-checks li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-checks li::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    content: "";
}

.hero-visual {
    position: relative;
}

.hero-image-card {
    overflow: hidden;
    border: 1px solid rgba(7, 26, 53, 0.08);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
}

.hero-image-card > img {
    aspect-ratio: 1.1 / 1;
    width: 100%;
    object-fit: cover;
}

.hero-image-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-top: 1px solid var(--line);
}

.hero-image-caption strong {
    color: var(--navy-950);
}

.hero-image-caption span {
    color: var(--muted);
    font-size: 0.73rem;
    font-weight: 700;
}

.hero-badge {
    position: absolute;
    right: -30px;
    bottom: 80px;
    display: flex;
    align-items: center;
    padding: 18px 22px;
    border: 6px solid var(--white);
    border-radius: 18px;
    background: var(--navy-900);
    color: var(--white);
    box-shadow: 0 18px 40px rgba(4, 17, 36, 0.22);
    gap: 12px;
}

.hero-badge strong {
    font-size: 2.4rem;
    line-height: 1;
}

.hero-badge span {
    color: #b8d1e6;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

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

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
    display: flex;
    align-items: center;
    min-height: 104px;
    padding: 0 24px;
    border-right: 1px solid var(--line);
    gap: 13px;
}

.trust-grid > div:first-child {
    border-left: 1px solid var(--line);
}

.trust-grid strong {
    color: var(--navy-950);
    font-size: 1.85rem;
}

.trust-grid span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.35;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 52px;
}

.section-heading h2 {
    margin-bottom: 18px;
}

.section-heading p {
    max-width: 690px;
    margin-bottom: 0;
    font-size: 1rem;
}

.split-heading {
    display: grid;
    align-items: end;
    max-width: none;
    grid-template-columns: 1.05fr 0.75fr;
    gap: 80px;
}

.split-heading h2 {
    margin-bottom: 0;
}

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

.service-card {
    position: relative;
    display: flex;
    min-height: 330px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    flex-direction: column;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
    z-index: 2;
    border-color: rgba(54, 178, 230, 0.6);
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.service-index {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 28px;
    border-radius: 50%;
    background: var(--blue-100);
    color: var(--blue-600);
    font-size: 0.74rem;
    font-weight: 800;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    margin-bottom: 22px;
    font-size: 0.86rem;
    line-height: 1.7;
}

.service-card .text-link {
    margin-top: auto;
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

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

.process-grid {
    display: grid;
    margin: 0;
    padding: 0;
    counter-reset: steps;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
}

.process-grid li {
    position: relative;
    min-height: 275px;
    padding: 30px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.process-grid li:first-child {
    border-left: 1px solid var(--line);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.process-grid li:last-child {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.process-number {
    display: block;
    margin-bottom: 42px;
    color: var(--blue-600);
    font-size: 0.75rem;
    font-weight: 800;
}

.process-grid h3 {
    margin-bottom: 12px;
}

.process-grid p {
    margin-bottom: 0;
    font-size: 0.84rem;
}

.equipment-showcase {
    overflow: hidden;
}

.equipment-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.equipment-card {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.equipment-image {
    overflow: hidden;
    background: #f7f9fb;
}

.equipment-image img {
    width: 100%;
    aspect-ratio: 1 / 0.86;
    object-fit: cover;
    transition: transform 300ms ease;
}

.equipment-card:hover .equipment-image img {
    transform: scale(1.035);
}

.equipment-copy {
    padding: 26px;
}

.equipment-copy > span {
    display: block;
    margin-bottom: 10px;
    color: var(--blue-600);
    font-size: 0.75rem;
    font-weight: 800;
}

.equipment-copy h3 {
    margin-bottom: 12px;
}

.equipment-copy p {
    margin-bottom: 0;
    font-size: 0.84rem;
}

.safety-section {
    background:
        radial-gradient(circle at 10% 100%, rgba(54, 178, 230, 0.18), transparent 24%),
        var(--navy-950);
}

.safety-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 0.28fr 1fr 0.8fr;
    gap: 58px;
}

.safety-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: var(--yellow);
    font-size: 3.6rem;
    font-weight: 800;
}

.safety-section h2 {
    color: var(--white);
}

.safety-section p {
    color: #b8cad9;
}

.safety-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.safety-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #dce8f1;
    font-size: 0.86rem;
    font-weight: 700;
}

.safety-list li::before {
    margin-right: 11px;
    color: var(--yellow);
    content: "—";
}

.region-preview {
    background: var(--soft);
}

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

.office-card {
    min-height: 190px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.office-card > span {
    color: var(--blue-600);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.office-card h3 {
    margin: 16px 0 10px;
}

.office-card p {
    margin-bottom: 0;
    font-size: 0.78rem;
}

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

.region-links a {
    padding: 11px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--navy-800);
    font-size: 0.74rem;
    font-weight: 700;
    transition: border-color 180ms ease, background-color 180ms ease;
}

.region-links a:hover {
    border-color: var(--blue-500);
    background: var(--blue-100);
}

.home-region-links {
    margin-top: 30px;
}

.fast-quote {
    display: grid;
    align-items: center;
    margin: 70px 0;
    padding: 48px 52px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 95% 0%, rgba(54, 178, 230, 0.23), transparent 32%),
        var(--navy-900);
    grid-template-columns: 1fr auto;
    gap: 35px;
}

.fast-quote h2 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.fast-quote p {
    margin-bottom: 0;
    color: #b8cad9;
    font-size: 0.82rem;
}

.fast-quote-actions {
    display: flex;
    gap: 10px;
}

.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 85px 0;
    background:
        radial-gradient(circle at 85% 10%, rgba(54, 178, 230, 0.18), transparent 28%),
        var(--soft);
}

.inner-hero::before {
    position: absolute;
    right: 5%;
    bottom: -160px;
    width: 360px;
    height: 360px;
    border: 55px solid rgba(7, 26, 53, 0.035);
    border-radius: 50%;
    content: "";
}

.inner-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    grid-template-columns: 1.05fr 0.72fr;
    gap: 100px;
}

.inner-hero h1 {
    max-width: 790px;
    margin-bottom: 24px;
    font-size: clamp(2.7rem, 5.5vw, 4.8rem);
}

.inner-hero p {
    max-width: 720px;
    font-size: 1.02rem;
}

.compact-hero {
    padding: 75px 0;
}

.fact-panel,
.location-card,
.contact-panel,
.region-map-card,
.source-principle,
.hero-quote {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
}

.fact-label {
    display: block;
    margin-bottom: 14px;
    color: var(--blue-600);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fact-panel > strong,
.region-map-card > strong {
    display: block;
    color: var(--navy-950);
    font-size: 3.5rem;
    line-height: 1;
}

.fact-panel > span:not(.fact-label),
.region-map-card > p {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.fact-panel ul {
    margin: 24px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.fact-panel li {
    padding: 6px 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.fact-panel li::before {
    margin-right: 8px;
    color: var(--success);
    content: "✓";
}

.article-layout {
    padding-top: 80px;
}

.article-grid {
    display: grid;
    align-items: start;
    grid-template-columns: 250px minmax(0, 760px);
    justify-content: space-between;
    gap: 80px;
}

.aside-sticky {
    position: sticky;
    top: 125px;
}

.article-aside nav {
    display: flex;
    margin-bottom: 30px;
    border-top: 1px solid var(--line);
    flex-direction: column;
}

.article-aside nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.article-aside nav a:hover {
    color: var(--blue-600);
}

.aside-note {
    padding: 20px;
    border-left: 3px solid var(--yellow);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: #fffceb;
}

.aside-note strong {
    color: var(--navy-950);
    font-size: 0.78rem;
}

.aside-note p {
    margin: 8px 0 0;
    font-size: 0.73rem;
    line-height: 1.65;
}

.article-intro {
    margin-bottom: 45px;
    padding: 28px;
    border-radius: var(--radius-md);
    background: var(--blue-100);
}

.article-intro span {
    display: block;
    margin-bottom: 8px;
    color: var(--blue-600);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.article-intro p {
    margin-bottom: 0;
    color: var(--navy-800);
    font-size: 1.04rem;
    font-weight: 600;
}

.article-section {
    margin-bottom: 48px;
}

.article-section h2 {
    margin-bottom: 20px;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.article-section p {
    margin-bottom: 18px;
    color: #495d74;
    font-size: 1rem;
    line-height: 1.9;
}

.source-note {
    margin-top: 60px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--soft);
}

.source-note strong {
    color: var(--navy-950);
}

.source-note p {
    margin: 8px 0 0;
    font-size: 0.84rem;
}

.source-note a {
    color: var(--blue-600);
    font-weight: 800;
}

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

.local-content {
    padding-bottom: 70px;
}

.local-content p,
.about-copy p,
.seo-note-section p {
    color: #495d74;
    font-size: 1rem;
    line-height: 1.95;
}

.location-card h2 {
    margin-bottom: 16px;
    font-size: 2rem;
}

.location-card p {
    font-size: 0.82rem;
}

.location-pin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: var(--blue-100);
    color: var(--blue-600);
}

.child-regions {
    background: var(--soft);
}

.region-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.region-card {
    min-height: 180px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.region-card > span {
    color: var(--blue-600);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.region-card h3 {
    margin: 18px 0 10px;
}

.region-card p {
    margin-bottom: 0;
    font-size: 0.78rem;
}

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

.service-list-grid a {
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--navy-800);
    font-size: 0.74rem;
    font-weight: 700;
}

.service-list-grid a:hover {
    border-color: var(--blue-500);
    background: var(--blue-100);
}

.all-regions {
    padding-top: 70px;
    background: var(--soft);
}

.about-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 0.6fr 1fr;
    gap: 100px;
}

.about-layout aside {
    position: sticky;
    top: 125px;
}

.about-facts {
    display: grid;
    margin-top: 35px;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.about-facts div {
    padding: 16px 10px;
    border-top: 2px solid var(--blue-500);
}

.about-facts strong,
.about-facts span {
    display: block;
}

.about-facts strong {
    color: var(--navy-950);
    font-size: 1.8rem;
}

.about-facts span {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
}

.hero-quote p {
    color: var(--navy-900);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.6;
}

.hero-quote span {
    color: var(--blue-600);
    font-size: 0.72rem;
    font-weight: 800;
}

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

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

.value-grid article {
    min-height: 250px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.value-grid article > span {
    color: var(--blue-600);
    font-size: 0.74rem;
    font-weight: 800;
}

.value-grid h3 {
    margin: 50px 0 12px;
}

.value-grid p {
    margin-bottom: 0;
    font-size: 0.8rem;
}

.contact-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-panel a {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy-800);
    font-size: 0.9rem;
    font-weight: 700;
}

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

.contact-office {
    min-height: 250px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.contact-office > span {
    color: var(--blue-600);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-office h3 {
    margin: 35px 0 12px;
}

.contact-office p {
    min-height: 56px;
    font-size: 0.83rem;
}

.equipment-hero-stack {
    position: relative;
    height: 390px;
}

.equipment-hero-stack img {
    position: absolute;
    width: 280px;
    border: 8px solid var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.equipment-hero-stack img:first-child {
    top: 0;
    left: 0;
}

.equipment-hero-stack img:last-child {
    right: 0;
    bottom: 0;
}

.equipment-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.equipment-detail-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    grid-template-columns: 0.8fr 1fr;
}

.equipment-detail-card:nth-child(even) .equipment-detail-image {
    order: 2;
}

.equipment-detail-image {
    background: var(--soft);
}

.equipment-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipment-detail-copy {
    padding: 45px;
}

.equipment-detail-copy h2 {
    font-size: 2.4rem;
}

.equipment-detail-copy dl {
    display: grid;
    margin: 28px 0;
    border-top: 1px solid var(--line);
    grid-template-columns: repeat(3, 1fr);
}

.equipment-detail-copy dl > div {
    padding: 16px 12px 16px 0;
    border-bottom: 1px solid var(--line);
}

.equipment-detail-copy dt {
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
}

.equipment-detail-copy dd {
    margin: 6px 0 0;
    color: var(--navy-900);
    font-size: 0.78rem;
    font-weight: 800;
}

.equipment-detail-copy p {
    font-size: 0.88rem;
}

.equipment-safety-note {
    display: grid;
    align-items: center;
    margin-top: 40px;
    padding: 34px;
    border-radius: var(--radius-md);
    background: #fffbea;
    grid-template-columns: auto 1fr;
    gap: 24px;
}

.equipment-safety-note > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--navy-950);
    font-size: 1.8rem;
    font-weight: 800;
}

.equipment-safety-note h2 {
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.equipment-safety-note p {
    margin-bottom: 0;
    font-size: 0.82rem;
}

.service-fact-panel p {
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 0.8rem;
}

.service-category + .service-category {
    margin-top: 78px;
}

.category-heading {
    display: grid;
    align-items: end;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 0.3fr 1fr;
}

.category-heading > span {
    color: var(--blue-600);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.category-heading h2 {
    margin-bottom: 0;
    font-size: 2rem;
}

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

.service-directory > a {
    display: flex;
    min-height: 220px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    flex-direction: column;
}

.service-directory > a:hover {
    border-color: var(--blue-500);
    box-shadow: 0 14px 38px rgba(4, 17, 36, 0.08);
}

.service-directory h3 {
    margin-bottom: 12px;
}

.service-directory p {
    margin-bottom: 20px;
    font-size: 0.78rem;
}

.service-directory a > span {
    margin-top: auto;
    color: var(--blue-600);
    font-size: 0.75rem;
    font-weight: 800;
}

.region-map-card {
    text-align: center;
}

.region-map-card > span {
    color: var(--blue-600);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.region-map-card strong {
    margin: 20px 0 10px;
}

.province-directory {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.province-block {
    display: grid;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    grid-template-columns: 0.35fr 1fr;
    gap: 40px;
}

.province-title > span {
    color: var(--blue-600);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.province-title h2 {
    margin: 10px 0;
    font-size: 2rem;
}

.province-title p {
    margin-bottom: 0;
    font-size: 0.75rem;
}

.province-children {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.province-children a {
    display: flex;
    padding: 12px;
    border-radius: 10px;
    background: var(--soft);
    flex-direction: column;
}

.province-children a:hover {
    background: var(--blue-100);
}

.province-children strong {
    color: var(--navy-800);
    font-size: 0.77rem;
}

.province-children span {
    color: var(--muted);
    font-size: 0.63rem;
}

.neighborhood-heading {
    margin-top: 80px;
}

.sources-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 0.55fr 1fr;
    gap: 90px;
}

.sources-layout > aside {
    position: sticky;
    top: 125px;
}

.sources-layout > aside p {
    font-size: 0.84rem;
}

.source-principle strong {
    display: block;
    margin-bottom: 14px;
    color: var(--navy-900);
    font-size: 1.2rem;
}

.source-principle p {
    margin-bottom: 0;
    font-size: 0.82rem;
}

.source-list article {
    display: grid;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 55px 1fr;
    gap: 20px;
}

.source-list article:first-child {
    padding-top: 0;
}

.source-list article > span {
    color: var(--blue-600);
    font-size: 0.75rem;
    font-weight: 800;
}

.source-list h2 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.source-list p {
    margin-bottom: 12px;
    font-size: 0.8rem;
}

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

.faq-section {
    padding: 100px 0;
    border-top: 1px solid var(--line);
    background: var(--white);
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
}

.faq-list details {
    align-self: start;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--white);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding: 18px 20px;
    color: var(--navy-900);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 800;
    gap: 18px;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    flex: 0 0 auto;
    color: var(--blue-600);
    content: "+";
    font-size: 1.35rem;
}

.faq-list details[open] summary::after {
    content: "–";
}

.faq-answer {
    padding: 0 20px 20px;
}

.faq-answer p {
    margin-bottom: 0;
    font-size: 0.78rem;
    line-height: 1.75;
}

.not-found {
    display: flex;
    min-height: 600px;
    align-items: center;
    background: var(--soft);
}

.not-found-inner {
    max-width: 760px;
}

.site-footer {
    padding: 80px 0 24px;
    background: var(--navy-950);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.8fr 0.9fr;
    gap: 55px;
}

.footer-brand img {
    width: 180px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 330px;
    color: #9fb4c8;
    font-size: 0.8rem;
}

.footer-phone {
    color: var(--blue-500);
    font-size: 1.2rem;
    font-weight: 800;
}

.site-footer h2 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 0;
}

.footer-links {
    margin: 0;
    padding: 0;
    color: #9fb4c8;
    font-size: 0.76rem;
    list-style: none;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: #70879b;
    font-size: 0.68rem;
}

.sticky-contact {
    position: fixed;
    z-index: 9999;
    bottom: 15px;
    left: 50%;
    display: none;
    width: 90%;
    max-width: 510px;
    overflow: hidden;
    border: 4px solid var(--white);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateX(-50%);
}

.contact-btn {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 20px;
    border: 0;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-call {
    background: #f55b14;
}

.btn-call:hover {
    background: #020e28;
    color: var(--white);
}

.btn-whatsapp {
    background: #25d366;
}

.btn-whatsapp:hover {
    background: #073819;
    color: var(--white);
}

.btn-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex: 0 0 auto;
}

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

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