:root {
    --acs-navy: #071b33;
    --acs-navy-2: #12385f;
    --acs-blue: #079bc7;
    --acs-blue-dark: #047ca1;
    --acs-blue-soft: #eaf7fb;
    --acs-green: #18a95f;
    --acs-green-dark: #11854a;
    --acs-text: #17273a;
    --acs-muted: #617185;
    --acs-line: #e2e9ef;
    --acs-light: #f6f9fb;
    --acs-white: #fff;
    --acs-container: 1240px;
    --acs-gutter: clamp(18px, 3vw, 34px);
    --acs-font: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --acs-shadow: 0 16px 42px rgba(7, 27, 51, .09);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    color: var(--acs-text);
    background: var(--acs-white);
    font-family: var(--acs-font);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.acs-menu-open {
    overflow: hidden;
}

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

a:hover {
    color: var(--acs-blue-dark);
    text-decoration: none;
}

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

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

address {
    margin: 0;
    font-style: normal;
}

.acs-container {
    width: min(100%, var(--acs-container));
    margin-inline: auto;
    padding-inline: var(--acs-gutter);
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    color: #fff;
    background: var(--acs-navy);
    transform: translateY(-150%);
}

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

:where(a, button):focus-visible {
    outline: 3px solid rgba(7, 155, 199, .4);
    outline-offset: 3px;
}

section[id] {
    scroll-margin-top: 112px;
}

/* Header */
.acs-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--acs-line);
}

.acs-utility-bar {
    background: #f2f7fa;
    border-bottom: 1px solid #e6edf2;
}

.acs-utility-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #55677b;
    font-size: 12px;
}

.acs-service-note {
    margin: 0;
    font-weight: 600;
}

.acs-status-dot {
    display: none;
}

.acs-utility-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.acs-utility-links a,
.acs-utility-links>span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    transition: color .18s ease;
}

.acs-utility-links a:hover {
    color: var(--acs-blue-dark);
}

.acs-utility-divider {
    width: 1px;
    height: 13px;
    background: #ccd8e2;
}

.acs-navbar {
    background: #fff;
}

.acs-navbar-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 28px;
}

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

.acs-brand-logo {
    width: 148px;
    max-height: 50px;
    object-fit: contain;
    object-position: left center;
}

.acs-desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.35vw, 20px);
    margin-left: auto;
}

.acs-nav-link {
    position: relative;
    min-height: 78px;
    display: inline-flex;
    align-items: center;
    color: #3d4c5f;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.acs-nav-link::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--acs-blue);
    transform: scaleX(0);
    transition: transform .18s ease;
}

.acs-nav-link:hover,
.acs-nav-link.is-active {
    color: var(--acs-navy);
}

.acs-nav-link:hover::after,
.acs-nav-link.is-active::after {
    transform: scaleX(1);
}

.acs-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.acs-whatsapp-link,
.acs-call-button {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.acs-whatsapp-link {
    width: 43px;
    color: #fff;
    background: var(--acs-green);
}

.acs-whatsapp-link:hover {
    color: #fff;
    background: var(--acs-green-dark);
}

.acs-call-button {
    padding: 8px 15px;
    color: #fff;
    background: var(--acs-navy);
}

.acs-call-button:hover {
    color: #fff;
    background: var(--acs-navy-2);
}

.acs-call-button i {
    font-size: 13px;
}

.acs-call-button strong {
    font-size: 13px;
    font-weight: 700;
}

.acs-menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--acs-line);
    border-radius: 8px;
    background: #fff;
}

.acs-menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--acs-navy);
}

/* Drawer */
html.acs-menu-open,
body.acs-menu-open {
    overflow: hidden !important;
    touch-action: none;
    -webkit-overflow-scrolling: auto;
}

#main-content,
.acs-footer {
    transition: filter .28s ease;
}

body.acs-menu-open #main-content,
body.acs-menu-open .acs-footer {
    filter: blur(4px);
}

.acs-drawer-backdrop {
    position: fixed;
    z-index: 1090;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    background: rgba(7, 27, 51, .36);
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    transition: opacity .28s ease, visibility .28s, -webkit-backdrop-filter .28s ease, backdrop-filter .28s ease;
    touch-action: none;
}

.acs-drawer-backdrop.is-active {
    visibility: visible;
    opacity: 1;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.acs-drawer {
    position: fixed;
    z-index: 1100;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(390px, 100%);
    display: flex;
    flex-direction: column;
    visibility: hidden;
    background: #fff;
    box-shadow: -20px 0 50px rgba(7, 27, 51, .14);
    transform: translateX(100%);
    transition: transform .26s ease, visibility .26s;
    touch-action: pan-y;
}

.acs-drawer.is-active {
    visibility: visible;
    transform: translateX(0);
}

.acs-drawer-header {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--acs-line);
}

.acs-brand-drawer .acs-brand-logo {
    width: 155px;
}

.acs-drawer-close {
    width: 42px;
    height: 42px;
    border: 1px solid var(--acs-line);
    border-radius: 50%;
    color: var(--acs-navy);
    background: #fff;
}

.acs-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 28px 22px;
}

.acs-drawer-kicker {
    margin: 0 0 12px;
    color: var(--acs-muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.acs-drawer-kicker span {
    display: none;
}

.acs-drawer-nav {
    display: grid;
}

.acs-drawer-nav>a,
.acs-drawer-group-row {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--acs-line);
    color: var(--acs-navy);
    font-weight: 600;
}

.acs-drawer-nav>a {
    font-size: 16px;
}

.acs-drawer-nav>a i {
    color: var(--acs-blue);
    font-size: 12px;
}

.acs-drawer-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 16px 20px;
    border-top: 1px solid var(--acs-line);
}

.acs-drawer-call,
.acs-drawer-whatsapp {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.acs-drawer-call {
    background: var(--acs-navy);
}

.acs-drawer-whatsapp {
    background: var(--acs-green);
}

/* Shared */
.acs-section {
    padding-block: clamp(54px, 6.2vw, 82px);
}

.acs-label {
    margin: 0 0 13px;
    color: var(--acs-blue-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.acs-heading {
    max-width: 680px;
    margin-bottom: 32px;
}

.acs-heading-centered {
    margin-inline: auto;
    text-align: center;
}

.acs-heading h2,
.acs-split-copy h2,
.acs-why-copy h2,
.acs-coverage-copy h2,
.acs-contact h2 {
    margin: 0;
    color: var(--acs-navy);
    font-size: clamp(29px, 4vw, 45px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.035em;
}

.acs-heading p,
.acs-section-intro,
.acs-split-copy>p,
.acs-coverage-copy>p,
.acs-contact-layout>div>p {
    margin: 16px 0 0;
    color: var(--acs-muted);
    font-size: 16px;
}

.acs-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 19px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

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

.acs-button-call {
    color: #fff;
    background: var(--acs-navy);
}

.acs-button-call:hover {
    color: #fff;
    background: var(--acs-navy-2);
}

.acs-button-whatsapp {
    color: #fff !important;
    background: var(--acs-green);
}

.acs-button-whatsapp:hover,
.acs-button-whatsapp:focus,
.acs-button-whatsapp:active {
    color: #fff !important;
    background: var(--acs-green-dark);
}

.acs-button-white,
.acs-button-white:link,
.acs-button-white:visited {
    color: var(--acs-navy) !important;
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.acs-button-white span,
.acs-button-white i {
    color: inherit !important;
}

.acs-button-white:hover,
.acs-button-white:focus,
.acs-button-white:active {
    color: var(--acs-navy) !important;
    background: #f1f5f9;
    border-color: #f1f5f9;
    transform: translateY(-2px);
}

.acs-button-whatsapp,
.acs-button-whatsapp:link,
.acs-button-whatsapp:visited,
.acs-button-whatsapp:hover,
.acs-button-whatsapp:focus,
.acs-button-whatsapp:active,
.acs-button-whatsapp *,
.acs-button-whatsapp i,
.acs-button-whatsapp span,
.acs-whatsapp-link,
.acs-whatsapp-link:link,
.acs-whatsapp-link:visited,
.acs-whatsapp-link:hover,
.acs-whatsapp-link:focus,
.acs-whatsapp-link:active,
.acs-whatsapp-link *,
.acs-whatsapp-link i,
.acs-drawer-whatsapp,
.acs-drawer-whatsapp:link,
.acs-drawer-whatsapp:visited,
.acs-drawer-whatsapp:hover,
.acs-drawer-whatsapp:focus,
.acs-drawer-whatsapp:active,
.acs-drawer-whatsapp *,
.acs-drawer-whatsapp i,
.acs-drawer-whatsapp span,
.acs-floating-whatsapp,
.acs-floating-whatsapp:link,
.acs-floating-whatsapp:visited,
.acs-floating-whatsapp:hover,
.acs-floating-whatsapp:focus,
.acs-floating-whatsapp:active,
.acs-floating-whatsapp *,
.acs-floating-whatsapp i {
    color: #fff !important;
}

.acs-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--acs-blue-dark);
    font-weight: 700;
    transition: color .18s ease;
}

.acs-text-link:hover {
    color: var(--acs-navy);
}

.acs-text-link i {
    transition: transform .18s ease;
}

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

.acs-outline-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid var(--acs-line);
    border-radius: 7px;
    color: var(--acs-navy);
    font-size: 13px;
    font-weight: 600;
    background: transparent;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.acs-outline-link:hover {
    color: var(--acs-navy);
    border-color: var(--acs-blue);
    background: var(--acs-blue-soft);
}

/* Hero */
.acs-hero {
    position: relative;
    min-height: calc(100svh - 112px);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    isolation: isolate;
    background: var(--acs-navy);
}

.acs-hero-background,
.acs-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.acs-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

video.acs-hero-background {
    object-fit: cover;
    object-position: center center;
}

.acs-hero-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(4, 18, 35, .98) 0%, rgba(5, 24, 45, .94) 38%, rgba(7, 27, 51, .67) 65%, rgba(7, 27, 51, .2) 100%),
        linear-gradient(0deg, rgba(4, 18, 35, .58), transparent 46%);
}

.acs-hero-inner {
    position: relative;
    z-index: 2;
    min-height: inherit;
    display: flex;
    align-items: center;
    padding-top: clamp(42px, 7vh, 72px);
    padding-bottom: clamp(70px, 10vh, 104px);
}

.acs-hero-copy {
    width: min(100%, 720px);
}

.acs-hero h1 {
    max-width: 680px;
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 5.1vw, 66px);
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: -.052em;
}

.acs-hero-lead {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: clamp(16px, 1.5vw, 18px);
}

.acs-primary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.acs-primary-actions .acs-button-call strong {
    padding-left: 7px;
    border-left: 1px solid rgba(255, 255, 255, .22);
    font-size: 12px;
}

.acs-hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 24px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
}

.acs-hero-notes span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.acs-hero-notes i {
    color: var(--acs-blue);
}

.acs-hero .acs-label {
    color: #62d7f5;
}

.acs-hero .acs-button-call {
    color: var(--acs-navy);
    background: #45caec;
}

.acs-hero .acs-button-call:hover {
    color: var(--acs-navy);
    background: #79ddf5;
}

.acs-hero .acs-primary-actions .acs-button-call strong {
    border-left-color: rgba(7, 27, 51, .22);
}

/* About */
.acs-about {
    background: var(--acs-light);
}

/* Services */
.acs-services {
    background: #fff;
}

.acs-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: clamp(24px, 4vw, 42px);
    row-gap: 0;
    border-top: 1px solid var(--acs-line);
}

.acs-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 16px;
    border-bottom: 1px solid var(--acs-line);
}

.acs-service-item>i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    color: var(--acs-blue-dark);
    background: var(--acs-blue-soft);
    border-radius: 50%;
    font-size: 26px;
    transition: background-color .18s ease, color .18s ease, transform .18s ease;
    flex-shrink: 0;
}

.acs-service-item:hover>i {
    color: #fff;
    background: var(--acs-blue-dark);
    transform: translateY(-2px);
}

.acs-service-item h3 {
    margin: 0 0 10px;
    color: var(--acs-navy);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

.acs-service-item p {
    margin: 0 auto;
    color: var(--acs-muted);
    font-size: 14px;
    line-height: 1.65;
    max-width: 320px;
    text-align: center;
}

/* Split and why */
.acs-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: clamp(48px, 6vw, 92px);
}

.acs-split.is-text-only,
.acs-why-layout.is-text-only,
.acs-coverage-layout.is-text-only,
.acs-contact-layout.is-text-only {
    display: block;
}

.acs-split.is-text-only>*,
.acs-why-layout.is-text-only>*,
.acs-coverage-layout.is-text-only>*,
.acs-contact-layout.is-text-only>* {
    max-width: 820px;
}

.acs-split-media {
    display: flex;
    height: 100%;
}

.acs-split-media img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.acs-split-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.acs-split-copy .acs-label {
    margin: 0 0 10px;
}

.acs-split-copy h2 {
    margin: 0;
}

.acs-split-copy .acs-about-lead {
    margin: 14px 0 32px;
    color: var(--acs-muted);
    font-size: 15px;
    line-height: 1.65;
}

.acs-about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 28px;
}

.acs-about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 18px;
    background: var(--acs-light);
    border: 1px solid var(--acs-line);
    border-radius: 10px;
}

.acs-about-feature-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--acs-blue-soft);
    color: var(--acs-blue-dark);
    font-size: 19px;
    flex-shrink: 0;
}

.acs-about-feature-text strong {
    display: block;
    color: var(--acs-navy);
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 2px;
}

.acs-about-feature-text p {
    margin: 0;
    color: var(--acs-muted);
    font-size: 13px;
    line-height: 1.45;
}

.acs-about-action {
    margin-top: auto;
}

.acs-why {
    background: var(--acs-light);
}

.acs-why-layout {
    display: grid;
    grid-template-columns: 1fr .95fr;
    align-items: stretch;
    gap: clamp(44px, 7vw, 90px);
}

.acs-why-copy {
    display: flex;
    flex-direction: column;
}

.acs-reason-list {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--acs-line);
}

.acs-reason-list li {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--acs-line);
    flex: 1;
    align-items: center;
}

.acs-reason-list li>span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 7px;
    background: var(--acs-navy);
    font-size: 11px;
    font-weight: 700;
}

.acs-reason-list h3 {
    margin: 0;
    color: var(--acs-navy);
    font-size: 16px;
    font-weight: 700;
}

.acs-reason-list p {
    margin: 5px 0 0;
    color: var(--acs-muted);
    font-size: 13px;
}

.acs-why-banner {
    position: relative;
    margin: 0;
    height: 100%;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 16px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 16px 36px rgba(7, 27, 51, 0.12);
}

.acs-why-banner-media,
.acs-why-banner-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.acs-why-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.acs-why-banner-overlay {
    background: linear-gradient(180deg,
            rgba(7, 27, 51, 0.3) 0%,
            rgba(7, 27, 51, 0.52) 35%,
            rgba(4, 18, 35, 0.92) 80%,
            rgba(4, 18, 35, 0.98) 100%);
    pointer-events: none;
}

.acs-why-banner-content {
    position: relative;
    z-index: 2;
    padding: clamp(24px, 3vw, 36px);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.acs-why-banner-tag {
    display: inline-block;
    color: #22c8f6;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.acs-why-banner-content h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(20px, 2vw, 25px);
    font-weight: 750;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.acs-why-banner-content p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13.5px;
    line-height: 1.55;
    max-width: 420px;
}

/* Parallax Section System */
.custom-parallax-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.custom-parallax-bg {
    position: absolute;
    inset: -30% 0;
    z-index: 0;
    pointer-events: none;
    background-position: center 40%;
    background-size: cover;
    background-repeat: no-repeat;
    will-change: transform;
}

.custom-parallax-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(7, 27, 51, 0.78) 0%, rgba(7, 27, 51, 0.52) 50%, rgba(7, 27, 51, 0.82) 100%);
}

.custom-parallax-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Conversion */
.acs-conversion {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: clamp(74px, 8.5vw, 104px);
    overflow: hidden;
    isolation: isolate;
    background: #071b33;
    box-shadow: inset 0 24px 48px rgba(0, 0, 0, .4), inset 0 -24px 48px rgba(0, 0, 0, .4);
    border-block: 1px solid rgba(255, 255, 255, .08);
}

.acs-conversion-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 820px;
    margin-inline: auto;
    gap: 22px;
}

.acs-conversion h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3.8vw, 44px);
    font-weight: 750;
    letter-spacing: -.03em;
    text-shadow: 0 3px 20px rgba(0, 0, 0, .7);
    line-height: 1.22;
}

.acs-conversion p {
    margin: 0;
    color: #e2f0fc;
    font-size: clamp(15px, 1.8vw, 17.5px);
    font-weight: 450;
    line-height: 1.6;
    max-width: 620px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .65);
}

.acs-conversion-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 6px;
}

.acs-conversion-actions .acs-button {
    min-width: 170px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.acs-conversion-actions .acs-button-call {
    background: #fff;
    color: var(--acs-navy);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.acs-conversion-actions .acs-button-call:hover {
    background: var(--acs-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(7, 155, 199, .35);
}

.acs-conversion-actions .acs-button-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 12px 30px rgba(37, 211, 102, .3);
}

.acs-conversion-actions .acs-button-whatsapp:hover {
    background: #1eb956;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(37, 211, 102, .4);
}

/* Coverage */
.acs-coverage-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: clamp(42px, 6vw, 78px);
}

.acs-map-frame {
    overflow: hidden;
    border: 1px solid var(--acs-line);
    border-radius: 12px;
    background: #eef2f5;
}

.acs-map-frame iframe {
    width: 100%;
    min-height: 520px;
    display: block;
}

.acs-location-line {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid var(--acs-line);
    color: #526276;
    font-size: 14px;
}

.acs-location-line a {
    color: inherit;
    text-decoration: none;
    transition: color .18s ease;
}

.acs-location-line a:hover {
    color: var(--acs-blue-dark);
    text-decoration: underline;
}

.acs-location-line i {
    color: var(--acs-blue-dark);
    font-size: 20px;
}

.acs-coverage-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px 18px;
    margin-top: 18px;
}

.acs-coverage-actions .acs-text-link {
    margin-top: 0;
    font-size: 13px;
}

/* FAQ */
.acs-faq {
    background: var(--acs-light);
}

.acs-faq-container {
    max-width: 940px;
}

.acs-faq-list {
    border-top: 1px solid #d9e2e9;
}

.acs-faq-item {
    border-bottom: 1px solid #d9e2e9;
}

.acs-faq-trigger {
    width: 100%;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    color: var(--acs-navy);
    border: 0;
    background: transparent;
    text-align: left;
    font-weight: 650;
    cursor: pointer;
}

.acs-faq-trigger i {
    flex: 0 0 auto;
    color: var(--acs-blue-dark);
    transition: transform .18s ease;
}

.acs-faq-item.is-open .acs-faq-trigger i {
    transform: rotate(45deg);
}

.acs-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .22s ease;
}

.acs-faq-body {
    padding: 0 46px 22px 0;
    color: var(--acs-muted);
    font-size: 14px;
}

/* Contact */
.acs-contact {
    background: #fff;
}

.acs-contact-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: start;
    gap: clamp(42px, 7vw, 94px);
}

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

.acs-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid rgba(7, 27, 51, .07);
    color: inherit;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.acs-contact-card:hover {
    color: inherit;
    background: #fff;
    border-color: rgba(7, 155, 199, .35);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -4px rgba(7, 27, 51, .07);
}

.acs-contact-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--acs-blue-dark);
    border-radius: 11px;
    background: #fff;
    border: 1px solid rgba(7, 27, 51, .06);
    font-size: 19px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(7, 27, 51, .04);
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.acs-contact-card:hover .acs-contact-icon {
    color: #fff;
    background: var(--acs-blue-dark);
    border-color: var(--acs-blue-dark);
    transform: scale(1.05);
}

.acs-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.acs-contact-info small {
    color: var(--acs-muted);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.acs-contact-info strong {
    color: var(--acs-navy);
    font-size: 15px;
    font-weight: 700;
    word-break: break-word;
    transition: color .2s ease;
}

.acs-contact-card:hover .acs-contact-info strong {
    color: var(--acs-blue-dark);
}

.acs-contact-arrow {
    margin-left: auto;
    color: #9cb2c6;
    font-size: 14px;
    transition: color .2s ease, transform .2s ease;
}

.acs-contact-card:hover .acs-contact-arrow {
    color: var(--acs-blue-dark);
    transform: translateX(4px);
}

/* Footer */
.acs-footer {
    color: #c0d1e2;
    background: var(--acs-navy);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.acs-footer-main {
    padding-block: 56px 42px;
}

.acs-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr 1.05fr 1fr;
    gap: clamp(24px, 3.5vw, 56px);
}

.acs-brand-footer {
    display: inline-flex;
    align-items: center;
}

.acs-brand-footer .acs-brand-logo {
    width: 152px;
    max-height: 52px;
    object-fit: contain;
    object-position: left center;
}

.acs-footer-desc {
    max-width: 480px;
    margin: 16px 0 0;
    color: #8fa5bb;
    font-size: 13px;
    line-height: 1.6;
}

.acs-footer-title {
    margin: 0 0 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
}

.acs-footer-links,
.acs-footer-contact {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.acs-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a8bdd2;
    font-size: 13px;
    text-decoration: none;
    transition: color .18s ease, transform .18s ease;
}

.acs-footer-links a i {
    font-size: 11px;
    color: #22c8f6;
    opacity: .75;
    transition: transform .18s ease, opacity .18s ease, color .18s ease;
}

.acs-footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.acs-footer-links a:hover i {
    opacity: 1;
    color: #22c8f6;
    transform: translateX(2px);
}

.acs-footer-contact a,
.acs-footer-contact span {
    color: #a8bdd2;
    font-size: 13px;
    transition: color .18s ease;
}

.acs-footer-contact a:hover {
    color: #22c8f6;
}

.acs-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.acs-footer-contact i {
    margin-top: 3px;
    color: #22c8f6;
    font-size: 14px;
}

.acs-footer-bottom {
    padding-block: 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .2);
}

.acs-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: #7289a0;
    font-size: 11px;
}

.acs-footer-bottom p {
    margin: 0;
}

.acs-developer-credit a {
    color: #fff;
    font-weight: 600;
    transition: color .18s ease;
}

.acs-developer-credit a:hover {
    color: #22c8f6;
}

.acs-floating-actions {
    display: block;
}

.acs-floating-btn {
    position: fixed;
    z-index: 990;
    bottom: 24px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(7, 27, 51, .18);
    transition: transform .18s ease, background-color .18s ease, opacity .18s ease;
}

.acs-floating-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

.acs-floating-btn>i {
    font-size: 19px;
}

.acs-floating-btn>span {
    position: absolute;
    bottom: calc(100% + 9px);
    padding: 5px 8px;
    visibility: hidden;
    opacity: 0;
    color: #fff;
    border-radius: 5px;
    background: var(--acs-navy);
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    transition: opacity .18s ease, visibility .18s;
}

.acs-floating-btn:hover>span,
.acs-floating-btn:focus-visible>span {
    visibility: visible;
    opacity: 1;
}

.acs-floating-call {
    left: 24px;
    background: var(--acs-navy);
}

.acs-floating-call:hover {
    background: var(--acs-navy-2);
}

.acs-floating-whatsapp {
    right: 24px;
    background: var(--acs-green);
}

.acs-floating-whatsapp:hover {
    background: var(--acs-green-dark);
}

.acs-floating-actions.is-docked .acs-floating-btn {
    position: absolute;
    top: var(--acs-floating-dock-top);
    bottom: auto;
}

@media (max-width: 1199.98px) {
    .acs-desktop-nav {
        display: none;
    }

    .acs-header-actions {
        margin-left: auto;
    }

    .acs-menu-toggle {
        display: grid;
    }
}

@media (max-width: 991.98px) {

    .acs-split,
    .acs-why-layout,
    .acs-coverage-layout,
    .acs-contact-layout {
        grid-template-columns: 1fr;
    }

    .acs-hero-copy {
        max-width: 760px;
    }

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

    .acs-split-media {
        order: 2;
        height: auto;
        min-height: 0;
    }

    .acs-split-media img {
        height: auto;
        min-height: 0;
        aspect-ratio: 16/10;
    }

    .acs-about-action .acs-button {
        width: 100%;
        justify-content: center;
    }

    .acs-why-banner {
        order: 1;
        height: auto;
        min-height: 380px;
    }

    .acs-why-copy {
        order: 2;
    }

    .acs-map-frame iframe {
        min-height: 380px;
    }

    .acs-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }

    .acs-footer-brand,
    .acs-footer-contact-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    section[id] {
        scroll-margin-top: 72px;
    }

    .acs-utility-bar {
        display: none;
    }

    .acs-header-actions {
        display: flex;
        margin-left: auto;
    }

    .acs-header-actions .acs-whatsapp-link,
    .acs-header-actions .acs-call-button {
        display: none;
    }

    .acs-header,
    .acs-navbar,
    .acs-navbar-inner,
    .acs-brand,
    .acs-menu-toggle {
        visibility: visible;
    }

    .acs-navbar-inner {
        min-height: 70px;
    }

    .acs-brand-logo {
        width: 146px;
        max-height: 46px;
    }

    .acs-menu-toggle {
        display: grid;
        margin-left: auto;
    }

    .acs-section {
        padding-block: 66px;
    }

    .acs-hero {
        min-height: auto;
        padding: 0;
    }

    .acs-hero-background img {
        object-position: 63% center;
    }

    .acs-hero-overlay {
        background:
            linear-gradient(90deg, rgba(4, 18, 35, .97) 0%, rgba(5, 24, 45, .91) 68%, rgba(7, 27, 51, .68) 100%),
            linear-gradient(0deg, rgba(4, 18, 35, .74), transparent 58%);
    }

    .acs-hero-inner {
        min-height: auto;
        padding-top: 38px;
        padding-bottom: 54px;
    }

    .acs-hero .acs-label {
        margin-bottom: 16px;
    }

    .acs-hero h1 {
        font-size: clamp(31px, 8.8vw, 40px);
        line-height: 1.18;
    }

    .acs-hero-lead {
        margin-top: 22px;
        font-size: 14.5px;
        line-height: 1.62;
    }

    .acs-primary-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 30px;
    }

    .acs-primary-actions .acs-button {
        min-height: 50px;
        padding: 12px 12px;
        font-size: 14px;
    }

    .acs-primary-actions .acs-button-call strong {
        display: none;
    }

    .acs-hero-notes {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 11px;
        margin-top: 20px;
        width: 100%;
    }

    .acs-hero-notes span {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        width: 100%;
        padding: 11px 8px;
        font-size: 11.5px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.88);
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        white-space: nowrap;
        text-align: center;
    }

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

    .acs-service-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 12px;
    }

    .acs-service-item>i {
        width: 52px;
        height: 52px;
        font-size: 24px;
        margin: 0 auto 14px auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .acs-service-item h3 {
        margin: 0 0 6px;
        font-size: 17px;
        text-align: center;
    }

    .acs-service-item p {
        font-size: 13.5px;
        max-width: none;
        text-align: center;
        margin: 0 auto;
    }

    .acs-why-banner {
        min-height: 350px;
    }

    .acs-why-banner-content {
        padding: 24px 18px;
    }

    .acs-why-banner-content h3 {
        font-size: 19px;
    }

    .acs-why-banner-content p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .acs-why-banner-content .acs-button {
        width: 100%;
        justify-content: center;
    }

    .acs-conversion {
        min-height: auto;
        padding-block: 54px 48px;
    }

    .custom-parallax-bg {
        inset: -25% 0;
    }


    .acs-conversion-inner {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .acs-conversion-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        max-width: 320px;
        gap: 8px;
    }

    .acs-conversion-actions .acs-button {
        flex: 1 1 130px;
        min-width: 0;
        padding: 9px 14px;
        font-size: 13px;
        border-radius: 8px;
    }

    .acs-map-frame iframe {
        min-height: 300px;
    }

    .acs-contact-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .acs-contact-card {
        padding: 14px 16px;
        gap: 14px;
    }

    .acs-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 18px;
    }

    .acs-footer-brand,
    .acs-footer-contact-col {
        grid-column: 1 / -1;
    }

    .acs-footer-bottom-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 6px;
    }

    .acs-floating-btn {
        bottom: 14px;
        width: 50px;
        height: 50px;
    }

    .acs-floating-call {
        left: 14px;
    }

    .acs-floating-whatsapp {
        right: 14px;
    }
}

@media (max-width: 479.98px) {
    :root {
        --acs-gutter: 16px;
    }

    .acs-heading {
        margin-bottom: 30px;
    }

    .acs-heading h2,
    .acs-split-copy h2,
    .acs-why-copy h2,
    .acs-coverage-copy h2,
    .acs-contact h2 {
        font-size: 29px;
    }

    .acs-hero h1 {
        font-size: 30px;
    }

    .acs-why-photo img {
        aspect-ratio: 4/5;
    }

    .acs-reason-list li {
        grid-template-columns: 40px 1fr;
        gap: 13px;
    }

    .acs-conversion-actions {
        max-width: 300px;
        gap: 8px;
    }

    .acs-conversion-actions .acs-button {
        padding: 8px 12px;
        font-size: 12.5px;
    }

    .acs-map-frame iframe {
        min-height: 260px;
    }

    .acs-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 14px;
    }

    .acs-footer-brand,
    .acs-footer-contact-col {
        grid-column: 1 / -1;
    }

    .acs-footer-links a {
        font-size: 12.5px;
        gap: 6px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}