:root {
    --bg: #f3f8fd;
    --surface: #ffffff;
    --text: #10253a;
    --muted: #4f657c;
    --line: #d3dfeb;
    --accent: #4398cb;
    --accent-contrast: #f4f8fb;
    --brand-purple: #8e2c8a;
    --brand-magenta: #c50061;
    --brand-orange: #d98917;
    --brand-green: #82af36;
    --radius: 14px;
    --shadow: 0 10px 24px rgba(16, 37, 58, 0.12);
    --max: 1100px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", "Avenir Next", "Helvetica Neue", sans-serif;
    background: #ffffff;
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

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

.container {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #d8e2ec;
}

.header-utility {
    border-bottom: 1px solid rgba(111, 147, 177, 0.25);
    background: linear-gradient(180deg, #0a2235 0%, #113a58 100%);
    position: relative;
}

.header-utility::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4.5px;
    background: linear-gradient(
        90deg,
        var(--brand-green) 0%,
        var(--brand-green) 22%,
        var(--accent) 22%,
        var(--accent) 41%,
        var(--brand-orange) 41%,
        var(--brand-orange) 61%,
        var(--brand-magenta) 61%,
        var(--brand-magenta) 81%,
        var(--brand-purple) 81%,
        var(--brand-purple) 100%
    );
}

.header-utility-wrap {
    min-height: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.header-utility-wrap a {
    color: #c6d0db;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.header-utility-wrap a:hover {
    color: #ffffff;
}

.header-main {
    background: #ffffff;
}

@media (min-width: 901px) {
    .header-main .container,
    .header-utility .container {
        width: min(100% - 1rem, 1320px);
    }
}

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

.nav-tools {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.34rem;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid #c6d3e2;
    background: #f5f9fd;
    cursor: pointer;
    padding: 0;
}

.menu-toggle-bar {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #1f3447;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:first-child {
    transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

.brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: 0;
}

.brand-logo {
    display: block;
    width: clamp(220px, 21vw, 290px);
    height: auto;
    max-width: 100%;
}

nav {
    display: flex;
    gap: 0.2rem;
    flex-wrap: wrap;
}

nav a {
    padding: 0.5rem 0.62rem;
    border-radius: 0;
    color: #193146;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    border-bottom: 2px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-item-services {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-item-services::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
}

.services-link {
    display: inline-flex;
    align-items: center;
}

.services-menu-toggle {
    display: none;
    margin-left: 0.15rem;
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.services-menu-toggle-caret {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    color: #193146;
}

.services-submenu {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    min-width: 250px;
    max-width: 320px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.45rem;
    background: #ffffff;
    border: 1px solid #d0dae6;
    border-radius: 12px;
    box-shadow: 0 16px 28px rgba(16, 37, 58, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    pointer-events: none;
    z-index: 1300;
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.services-submenu a {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 0.52rem 0.58rem;
    color: #153049;
    border-bottom: 0;
}

.services-submenu a:hover {
    color: #0f2740;
    background: #eef5fb;
    border-radius: 8px;
}

.nav-item-services:hover .services-submenu,
.nav-item-services:focus-within .services-submenu,
.nav-item-services.is-open .services-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

nav a[aria-current="page"],
nav a:hover,
.nav-item-services:hover .services-link,
.nav-item-services:focus-within .services-link,
.nav-item-services .services-link[aria-current="page"] {
    background: transparent;
}

nav > a[href*="page=home"][aria-current="page"],
nav > a[href*="page=home"]:hover {
    color: #8e2c8a;
    border-bottom-color: #8e2c8a;
}

nav > a[href*="page=about"][aria-current="page"],
nav > a[href*="page=about"]:hover {
    color: #c50061;
    border-bottom-color: #c50061;
}

.nav-item-services:hover .services-link,
.nav-item-services:focus-within .services-link,
.nav-item-services .services-link[aria-current="page"] {
    color: #d98917;
    border-bottom-color: #d98917;
}

nav > a[href*="page=legal"][aria-current="page"],
nav > a[href*="page=legal"]:hover {
    color: #4398cb;
    border-bottom-color: #4398cb;
}

nav > a[href*="page=news"][aria-current="page"],
nav > a[href*="page=news"]:hover {
    color: #82af36;
    border-bottom-color: #82af36;
}

nav > a[href*="page=contact"][aria-current="page"],
nav > a[href*="page=contact"]:hover {
    color: #111111;
    border-bottom-color: #111111;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding-left: 0.5rem;
    border-left: 1px solid #d0dae6;
}

.lang-flag {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 1.05rem;
    border: 1px solid #d5dfeb;
    background: #f7fbff;
}

.lang-flag:hover {
    border-color: #a9bed3;
    background: #eaf4fb;
}

.lang-flag.is-active {
    border-color: #4398cb;
    background: rgba(67, 152, 203, 0.18);
}

.hero,
.section {
    padding: 4rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
}

main > .section .eyebrow {
    display: none;
}

h1 {
    line-height: 1.15;
    margin: 0.5rem 0 1rem;
    font-size: clamp(1.4rem, 2.2vw, 2.2rem);
}

h2 {
    margin: 0.4rem 0 0.7rem;
    font-size: 1rem;
}

.lead {
    color: var(--muted);
    max-width: 55ch;
    font-size: 0.92rem;
}

.cards {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.1rem;
}

.card ul {
    margin: 0;
    padding-left: 1.1rem;
}

.narrow {
    max-width: 740px;
}

form {
    display: grid;
    gap: 0.6rem;
    margin-top: 1.2rem;
}

label {
    font-size: 0.95rem;
    font-weight: 600;
}

input,
textarea,
button {
    font: inherit;
}

input,
textarea {
    width: 100%;
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    border: 1px solid #b8c8d8;
    background: #f8fbff;
    color: #153049;
}

input:focus,
textarea:focus {
    outline: 2px solid var(--accent);
    border-color: var(--accent);
}

.btn {
    display: inline-block;
    width: fit-content;
    margin-top: 0.7rem;
    background: #1f5f8f;
    color: #ffffff;
    border: 1px solid #184d74;
    border-radius: 10px;
    padding: 0.72rem 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    filter: none;
    background: #2f7fb8;
    border-color: #276ea0;
}

.btn-maxtel-green {
    background: #1f5f8f;
    color: #ffffff;
    border-color: #184d74;
}

.btn-maxtel-green:hover {
    background: #2f7fb8;
    border-color: #276ea0;
}

.home-slide-overlay .btn.btn-maxtel-green {
    background: #1f5f8f !important;
    color: #ffffff !important;
    border: 1px solid #184d74;
}

.alert {
    border-radius: 10px;
    border: 1px solid transparent;
    padding: 0.9rem 1rem;
    margin: 1rem 0;
}

.alert p,
.alert ul {
    margin: 0;
}

.alert ul {
    padding-left: 1rem;
    margin-top: 0.4rem;
}

.success {
    border-color: #5d8b2a;
    background: rgba(130, 175, 54, 0.15);
}

.error {
    border-color: #9b5f0f;
    background: rgba(217, 137, 23, 0.16);
}

.contact-drawer-open {
    overflow: hidden;
}

.contact-drawer {
    position: fixed;
    inset: 0;
    z-index: 2200;
    pointer-events: none;
}

.contact-drawer-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    margin: 0;
    background: rgba(6, 10, 17, 0.5);
    opacity: 0;
    transition: opacity 0.25s ease;
    cursor: pointer;
}

.contact-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(94vw, 460px);
    height: 100%;
    overflow: auto;
    background: #ffffff;
    border-left: 1px solid var(--line);
    box-shadow: -14px 0 28px rgba(16, 37, 58, 0.18);
    padding: 1rem 1.1rem 1.4rem;
    transform: translateX(100%);
    transition: transform 0.26s ease;
}

.contact-drawer-close {
    appearance: none;
    border: 1px solid #c6d4e2;
    background: #f7fbff;
    color: #193850;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    margin-left: auto;
    display: block;
}

.contact-drawer-close:hover {
    background: #eaf3fb;
}

.contact-drawer.is-open {
    pointer-events: auto;
}

.contact-drawer.is-open .contact-drawer-backdrop {
    opacity: 1;
}

.contact-drawer.is-open .contact-drawer-panel {
    transform: translateX(0);
}

.contact-drawer.is-bottom .contact-drawer-panel {
    top: auto;
    right: auto;
    left: 50%;
    bottom: 0;
    width: min(96vw, 980px);
    height: auto;
    max-height: 86vh;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -12px 24px rgba(16, 37, 58, 0.2);
    transform: translateX(-50%) translateY(100%);
}

.contact-drawer.is-bottom.is-open .contact-drawer-panel {
    transform: translateX(-50%) translateY(0);
}

.site-footer {
    border-top: 1px solid rgba(111, 147, 177, 0.25);
    padding: 2rem 0 1.1rem;
    color: #d7e7f5;
    background:
        radial-gradient(circle at 18% 18%, rgba(0, 186, 214, 0.12), transparent 38%),
        radial-gradient(circle at 82% 84%, rgba(41, 149, 221, 0.14), transparent 42%),
        linear-gradient(175deg, #06131d 0%, #0b1d2c 100%);
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(
        90deg,
        var(--brand-green) 0%,
        var(--brand-green) 22%,
        var(--accent) 22%,
        var(--accent) 41%,
        var(--brand-orange) 41%,
        var(--brand-orange) 61%,
        var(--brand-magenta) 61%,
        var(--brand-magenta) 81%,
        var(--brand-purple) 81%,
        var(--brand-purple) 100%
    );
}

.footer-mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1.35fr;
    gap: 0;
    border-bottom: 1px solid rgba(145, 175, 201, 0.24);
    padding-bottom: 1.25rem;
    margin-bottom: 0.95rem;
}

.footer-col {
    padding: 0 1rem;
}

.footer-col + .footer-col {
    border-left: 1px dotted rgba(167, 194, 215, 0.34);
}

.footer-col h2 {
    margin: 0 0 0.55rem;
    color: #ffffff;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    color: #b7d1e8;
    margin: 0.22rem 0;
    font-size: 0.9rem;
    line-height: 1.35;
    text-decoration: none;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-col-about p {
    margin: 0.2rem 0 0.75rem;
    color: #b7d1e8;
    font-size: 0.9rem;
    line-height: 1.38;
}

.footer-follow {
    text-align: center;
    margin-top: 0.85rem;
    padding: 0.3rem 0 0.75rem;
}

.footer-follow p {
    margin: 0 0 0.5rem;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.footer-social {
    display: flex;
    gap: 0.62rem;
    justify-content: center;
}

.footer-social a {
    width: 33px;
    height: 33px;
    border-radius: 8px;
    border: 1px solid rgba(183, 209, 232, 0.45);
    background: rgba(11, 35, 52, 0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #dff2ff;
    text-decoration: none;
}

.footer-links-row {
    margin-top: 0.35rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(145, 175, 201, 0.24);
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    color: #96b7d1;
    font-size: 0.9rem;
}

.footer-links-row a {
    color: #b7d1e8;
    text-decoration: none;
}

.footer-links-row a:hover {
    color: #ffffff;
}

.footer-link-button {
    appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    font-size: 0.9rem;
    color: #b7d1e8;
    background: transparent;
    cursor: pointer;
}

.footer-link-button:hover {
    color: #ffffff;
}

.footer-copy {
    margin-top: 0.7rem;
    color: #8eaec8;
    font-size: 0.86rem;
}

.footer-copy p {
    margin: 0.12rem 0;
}

.cookie-consent {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1300;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.cookie-consent.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    pointer-events: none;
}

.cookie-consent-inner {
    border: 1px solid #b8cde2;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 20px 36px rgba(16, 37, 58, 0.22);
    padding: 0.9rem 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-consent-copy strong {
    display: block;
    color: #163451;
    margin-bottom: 0.12rem;
}

.cookie-consent-copy p {
    margin: 0;
    color: #4d6781;
    font-size: 0.9rem;
    line-height: 1.45;
    max-width: 72ch;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    min-width: 122px;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 1320;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.cookie-modal.is-hidden {
    display: none;
}

.cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 25, 42, 0.62);
}

.cookie-modal-dialog {
    position: relative;
    width: min(720px, 96vw);
    border-radius: 14px;
    border: 1px solid #b8cde2;
    background: #ffffff;
    box-shadow: 0 26px 48px rgba(8, 25, 42, 0.35);
    padding: 1rem 1rem 1.05rem;
    z-index: 1;
}

.cookie-modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid #c2d4e6;
    background: #f4f9ff;
    color: #163451;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
}

.cookie-modal-dialog h2 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.3rem, 2.1vw, 1.6rem);
}

.cookie-modal-lead {
    margin: 0 0 0.8rem;
    color: #4d6781;
}

.cookie-option {
    border: 1px solid #d3e1ef;
    border-radius: 12px;
    padding: 0.75rem 0.8rem;
    margin-bottom: 0.55rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.cookie-option h3 {
    margin: 0;
    font-size: 1rem;
}

.cookie-option p {
    margin: 0.14rem 0 0;
    color: #4d6781;
    font-size: 0.9rem;
}

.cookie-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #314d67;
    font-size: 0.86rem;
}

.cookie-switch input {
    width: 16px;
    height: 16px;
}

.cookie-modal-actions {
    margin-top: 0.75rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
}

body.cookie-modal-open {
    overflow: hidden;
}

.footer-partners {
    background:
        linear-gradient(90deg, rgba(130, 175, 54, 0.26), rgba(130, 175, 54, 0.26)),
        #edf3f9;
    border-top: 1px solid rgba(145, 175, 201, 0.2);
    border-bottom: 0;
    padding: 0.48rem 0 0.8rem;
}

.footer-partners-title {
    margin: 0 0 0.9rem;
    text-align: center;
    color: #111a24;
    font-size: clamp(0.95rem, 1.3vw, 1.2rem);
    font-weight: 600;
    opacity: 0.78;
    letter-spacing: 0.01em;
}

.footer-partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.8rem, 2.6vw, 1.8rem);
    align-items: center;
}

.footer-partner-logo {
    width: auto;
    max-height: 24px;
    object-fit: contain;
    opacity: 1;
    filter: none;
    transition: opacity 0.2s ease;
}

.footer-partner-logo:hover {
    opacity: 0.95;
}

@media (max-width: 900px) {
    .hero-grid,
    .cards {
        grid-template-columns: 1fr;
    }

    .hero,
    .section {
        padding: 3rem 0;
    }

    .brand-logo {
        width: clamp(185px, 52vw, 245px);
    }

    .nav-wrap {
        align-items: center;
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
        position: relative;
    }

    .header-utility-wrap {
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
        padding: 0.28rem 0;
    }

    .nav-tools {
        align-items: center;
        gap: 0.45rem;
        position: relative;
    }

    .lang-switcher {
        padding-left: 0;
        border-left: 0;
    }

    .footer-partners-row {
        gap: 0.9rem;
    }

    .footer-mega-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col + .footer-col {
        border-left: 0;
    }

    .footer-col-about {
        grid-column: 1 / -1;
    }

    .footer-links-row {
        margin-top: 0.8rem;
    }

    .cookie-consent-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.85rem;
    }

    .cookie-consent-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .cookie-btn {
        min-width: 0;
    }

    .cookie-option {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 0.55rem);
        right: 0;
        width: min(92vw, 320px);
        padding: 0.42rem;
        border-radius: 12px;
        border: 1px solid #2b3443;
        background: rgba(9, 13, 20, 0.98);
        box-shadow: 0 14px 26px rgba(0, 0, 0, 0.34);
        z-index: 1200;
    }

    .nav-tools.is-open .site-nav {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .site-nav a {
        width: 100%;
        text-align: left;
        font-size: 0.8rem;
        letter-spacing: 0.07em;
        color: #d4dde7;
        border-bottom: 1px solid #1f2733;
        padding: 0.8rem 0.72rem;
    }

    .site-nav a[aria-current="page"],
    .site-nav a:hover {
        border-bottom-color: #1f2733;
    }

    .services-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #d4dde7;
    }

    .nav-item-services {
        display: block;
        width: 100%;
    }

    .nav-item-services > .services-link {
        width: calc(100% - 40px);
    }

    .nav-item-services > .services-menu-toggle {
        position: absolute;
        top: 0.52rem;
        right: 0.45rem;
    }

    .services-submenu {
        position: static;
        min-width: 0;
        max-width: none;
        grid-template-columns: 1fr;
        margin: 0.2rem 0 0.35rem;
        padding: 0.3rem;
        border: 1px solid #253245;
        border-radius: 8px;
        background: rgba(12, 18, 28, 0.72);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        display: none;
    }

    .nav-item-services.is-open .services-submenu {
        display: grid;
    }

    .services-submenu a {
        color: #c6d2de;
        border-bottom: 1px solid #233043;
        padding: 0.55rem 0.6rem;
    }

    .services-submenu a:hover {
        color: #ffffff;
        background: rgba(67, 152, 203, 0.16);
    }

    .site-nav > a[href*="page=home"][aria-current="page"],
    .site-nav > a[href*="page=home"]:hover {
        color: #8e2c8a;
    }

    .site-nav > a[href*="page=about"][aria-current="page"],
    .site-nav > a[href*="page=about"]:hover {
        color: #c50061;
    }

    .site-nav .nav-item-services:hover > .services-link,
    .site-nav .nav-item-services:focus-within > .services-link,
    .site-nav .nav-item-services > .services-link[aria-current="page"] {
        color: #d98917;
    }

    .site-nav > a[href*="page=legal"][aria-current="page"],
    .site-nav > a[href*="page=legal"]:hover {
        color: #4398cb;
    }

    .site-nav > a[href*="page=news"][aria-current="page"],
    .site-nav > a[href*="page=news"]:hover {
        color: #82af36;
    }

    .site-nav > a[href*="page=contact"][aria-current="page"],
    .site-nav > a[href*="page=contact"]:hover {
        color: #111111;
    }

    .site-nav a:last-child {
        border-bottom: 0;
    }

    .contact-drawer-panel {
        width: min(100vw, 430px);
        padding: 0.9rem 0.95rem 1.2rem;
    }
}

@media (max-width: 1200px) {
    .services-hero-panel {
        padding-right: 0.75rem;
    }

    .footer-partner-logo {
        max-height: 22px;
    }

    .footer-partners-row {
        gap: 1rem;
    }
}

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

.legal-cards .card {
    display: flex;
    flex-direction: column;
}

.legal-cards .btn {
    margin-top: auto;
    align-self: flex-start;
    font-size: 0.82rem;
    padding: 0.56rem 0.82rem;
}

.legal-cards .btn.btn-disabled {
    opacity: 0.62;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .legal-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.legal-doc {
    max-width: 860px;
}

.legal-doc h2 {
    margin-top: 2rem;
    font-size: 1.1rem;
}

.legal-doc p {
    max-width: 72ch;
}

@media (max-width: 900px) {
    .legal-cards {
        grid-template-columns: 1fr;
    }
}

.legal-pdf-viewer {
    margin-top: 1.25rem;
    background: #f8fbff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
}

.legal-pdf-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
}

.legal-pdf-header h2 {
    margin: 0;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.legal-pdf-frame-wrap {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
}

.legal-pdf-frame {
    display: block;
    width: 100%;
    height: min(78vh, 860px);
    border: 0;
}

@media (max-width: 900px) {
    .legal-pdf-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-pdf-frame {
        height: 68vh;
    }
}

.services-list {
    margin-top: 2rem;
    display: grid;
    gap: 1.2rem;
}

.service-card {
    display: grid;
    grid-template-columns: minmax(220px, 34%) 1fr;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-media {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
}

.service-body {
    padding: 1.2rem 1.3rem 1.25rem;
}

.service-body h2 {
    margin-top: 0;
}

.service-body p {
    color: var(--muted);
    margin: 0.35rem 0 0.8rem;
}

.service-sublist {
    margin: 0;
    padding-left: 1.1rem;
}

.service-sublist li + li {
    margin-top: 0.45rem;
}

.service-sublist strong {
    color: var(--text);
}

.service-link {
    display: inline-flex;
    margin-top: 0.95rem;
    color: #256fa1;
    font-weight: 600;
}

.service-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.service-link:hover {
    color: #14364f;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .service-card {
        grid-template-columns: 1fr;
    }

    .service-media {
        min-height: 190px;
    }
}

.service-detail {
    max-width: 920px;
}

.service-detail h1 {
    font-size: clamp(1.45rem, 2.2vw, 2.05rem);
    margin: 0.45rem 0 1rem;
}

.service-detail h2 {
    font-size: clamp(1.06rem, 1.5vw, 1.24rem);
    margin-bottom: 0.55rem;
}

.service-detail .lead,
.service-detail .detail-list li {
    font-size: 15px;
    line-height: 1.62;
}

.service-detail .lead {
    max-width: none;
    width: 100%;
}

.news-hero-banner {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    height: clamp(220px, 32vw, 340px);
    border-radius: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 0;
    border-right: 0;
    overflow: hidden;
    margin: 1rem 0 1.2rem;
    box-shadow: var(--shadow);
    background: #0f1726;
}

.news-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    display: block;
}

.news-cards {
    margin-top: 1rem;
}

.news-cards .card {
    display: flex;
    flex-direction: column;
}

.news-card-actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
}

.news-card-actions .btn {
    font-size: 0.82rem;
    padding: 0.56rem 0.82rem;
}

.news-detail-page {
    max-width: 920px;
}

.news-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.9rem;
    font-weight: 700;
    color: #1f5f8f;
}

.news-back-link:hover {
    color: #143f61;
    text-decoration: underline;
}

.news-detail-body {
    margin-top: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f9fcff;
    padding: 1rem 1.1rem;
    line-height: 1.7;
    color: var(--text);
}

.news-title-with-icon {
    position: relative;
    display: block;
    width: 100%;
    min-height: 0;
    padding-right: 220px;
}

.news-title-with-icon .news-title-text {
    display: inline-block;
}

.news-title-with-icon .news-title-icon {
    position: absolute;
    right: 0;
    top: -12px;
    width: 224px;
    height: 224px;
    background-image: url('/assets/img/iconos/news.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(0 2px 4px rgba(13, 34, 57, 0.14));
    pointer-events: none;
}

.legal-title-with-icon {
    position: relative;
    display: block;
    width: 100%;
    min-height: 0;
    padding-right: 248px;
}

.legal-title-with-icon .legal-title-text {
    display: inline-block;
}

.legal-title-with-icon .legal-title-icon {
    position: absolute;
    right: 0;
    top: -50px;
    width: 224px;
    height: 224px;
    background-image: url('/assets/img/iconos/legal.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(0 2px 4px rgba(13, 34, 57, 0.14));
    pointer-events: none;
}

.service-cta-row {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
}

.service-cta-row .btn {
    min-width: 150px;
    text-align: center;
}

.btn.btn-ghost {
    background: #eff5fb;
    color: #1e4f78;
    border: 1px solid #a9c4dd;
}

.btn.btn-ghost:hover {
    background: #e2edf7;
    color: #173f61;
}

.cloud-servers-detail h1 {
    font-size: clamp(1.45rem, 2.2vw, 2.05rem);
}

.cloud-servers-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.cloud-servers-title-row h1 {
    margin: 0.5rem 0 1rem;
}

.cloud-servers-detail h2 {
    font-size: clamp(1.06rem, 1.5vw, 1.24rem);
}

.cloud-servers-detail .lead,
.cloud-servers-detail .btn {
    font-size: 15px;
}

.cloud-servers-detail .lead {
    font-size: 15px;
    max-width: none;
}

.cloud-servers-detail .detail-list li {
    font-size: 15px;
}

.datasheet-print-header {
    display: none;
}

@media (max-width: 720px) {
    .cloud-servers-title-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media print {
    .site-header,
    .site-footer,
    .footer-partners,
    .contact-drawer,
    .cloud-servers-detail > .btn {
        display: none !important;
    }

    body {
        background: #ffffff !important;
    }

    .section {
        padding: 0 !important;
    }

    .cloud-servers-detail {
        max-width: none !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .datasheet-print-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        border: 1px solid #c8d7e6;
        border-radius: 10px;
        padding: 0.65rem 0.9rem;
        margin: 0 0 0.8rem;
        background: linear-gradient(140deg, #0e2a4c 0%, #153a66 100%);
        color: #ffffff;
    }

    .datasheet-print-header img {
        width: 168px;
        height: auto;
        background: #ffffff;
        border-radius: 6px;
        padding: 0.28rem 0.45rem;
    }

    .datasheet-print-title {
        text-align: right;
    }

    .datasheet-print-title h2 {
        margin: 0;
        font-size: 1.15rem !important;
        color: #ffffff;
    }

    .datasheet-print-title p {
        margin: 0.18rem 0 0;
        font-size: 0.93rem;
        color: #d6e7f8;
    }

    .cloud-servers-detail h1 {
        font-size: 1.4rem !important;
        margin-top: 0.25rem !important;
    }

    .cloud-servers-detail .detail-block {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

.detail-block {
    margin-top: 1rem;
}

.detail-list {
    margin: 0.4rem 0 0;
    padding-left: 1.15rem;
}

.detail-list li + li {
    margin-top: 0.45rem;
}

.detail-list ul {
    margin-top: 0.45rem;
}

.detail-list strong {
    color: var(--text);
}

.location-list li {
    font-weight: 600;
}

.location-logos {
    margin-top: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.location-logo-card {
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    display: inline-flex;
    position: relative;
}

.location-logo-card img {
    width: 36px;
    max-width: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    border: 0;
    padding: 0;
}

.location-logo-link {
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    display: inline-flex;
    position: relative;
    text-decoration: none;
}

.location-logo-link img {
    width: 36px;
    max-width: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    border: 0;
    padding: 0;
}

.location-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%) translateY(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    white-space: nowrap;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    background: #0f2a4b;
    border: 1px solid #2f7ad0;
    border-radius: 999px;
    padding: 0.22rem 0.5rem;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 15;
}

.location-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #0f2a4b;
}

.location-logo-card:hover .location-tooltip,
.location-logo-card:focus-within .location-tooltip,
.location-logo-link:hover .location-tooltip,
.location-logo-link:focus-within .location-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.datacenter-site-page {
    max-width: 900px;
}

.datacenter-site-gallery-carousel {
    margin: 2rem 0 1.1rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem;
    align-items: center;
}

.gallery-nav {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #c7d7ea;
    background: #fff;
    color: #14395f;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.datacenter-site-gallery-track-wrap {
    overflow: hidden;
}

.datacenter-site-gallery-track {
    display: flex;
    gap: 0.7rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    padding-bottom: 0.2rem;
}

.datacenter-site-gallery-item {
    margin: 0;
    min-width: min(100%, 260px);
    flex: 0 0 min(100%, 260px);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    background: #f3f8fe;
}

.datacenter-site-gallery-item.is-broken {
    border-style: dashed;
    border-color: #b7cbe0;
}

.datacenter-site-gallery-open {
    display: block;
    width: 100%;
    border: 0;
    background: #f3f8fe;
    cursor: zoom-in;
    padding: 0;
}

.datacenter-site-gallery-item img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    background: #0c2239;
    display: block;
}

.site-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 130px 2vw 2vh;
    box-sizing: border-box;
}

.site-gallery-modal[hidden] {
    display: none !important;
}

.site-gallery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 22, 40, 0.72);
}

.site-gallery-modal-dialog {
    position: relative;
    width: min(94vw, 1180px);
    max-height: calc(100vh - 150px);
    margin: 0;
    background: #0c1f36;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
}

.site-gallery-modal-image {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    background: #031224;
}

.site-gallery-modal-nav {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(11, 33, 57, 0.88);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
}

.site-gallery-modal-close {
    position: absolute;
    top: 0.35rem;
    right: 0.5rem;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    font-size: 1.5rem;
    line-height: 1;
    color: #fff;
    background: rgba(10, 31, 52, 0.82);
    cursor: pointer;
}

body.site-gallery-modal-open {
    overflow: hidden;
}

.datacenter-site-card p {
    margin-top: 0.4rem;
    color: var(--muted);
}

.datacenter-site-links {
    margin-top: 0.9rem;
    display: flex;
    gap: 0.6rem;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.datacenter-site-links .btn {
    flex: 0 0 auto;
}

.about-grid {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.about-page-compact {
    padding-top: 3.6rem;
}

.about-page-compact h1 {
    font-size: clamp(1.35rem, 2.1vw, 2.05rem);
    margin-bottom: 0.85rem;
}

.about-page-compact .lead {
    font-size: 0.9rem;
    max-width: 60ch;
}

.about-page-compact .about-block {
    padding: 1.2rem;
}

.about-page-compact .about-block h2 {
    font-size: 1rem;
}

.about-page-compact .about-block p {
    font-size: 0.9rem;
    line-height: 1.52;
}

@media (max-width: 900px) {
    .datacenter-site-gallery-item {
        min-width: min(100%, 220px);
        flex-basis: min(100%, 220px);
    }
}

@media (max-width: 640px) {
    .datacenter-site-gallery-carousel {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .gallery-nav {
        width: 100%;
        border-radius: 10px;
        height: 36px;
    }

    .site-gallery-modal-dialog {
        grid-template-columns: 1fr;
        margin: 0;
        width: min(96vw, 96vw);
        max-height: calc(100vh - 120px);
        padding: 0.6rem;
    }

    .site-gallery-modal-nav {
        width: 100%;
        height: 36px;
        border-radius: 8px;
    }

    .site-gallery-modal {
        padding-top: 100px;
    }

    .datacenter-site-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

.about-block {
    padding: 1.4rem;
}

.about-block p {
    color: var(--muted);
    margin: 0.6rem 0;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.about-datacenter-cta {
    margin-top: 1.75rem;
}

.about-datacenter-copy {
    margin: 0 0 0.55rem;
    color: var(--muted);
    font-size: 0.97rem;
}

.partners-logos {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.partner-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 86px;
    border: 1px solid #d8dde5;
    border-radius: 10px;
    padding: 0.5rem 0.7rem;
    background: #ffffff;
}

.partner-logo {
    width: 100%;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 0 0.35px rgba(0, 0, 0, 0.65));
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

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

}

.services-enterprise {
    position: relative;
}

.services-enterprise .container {
    max-width: 1180px;
}

.home-hero {
    padding-top: 0;
}

.home-carousel-wrap {
    width: 100%;
    margin-bottom: 2.1rem;
}

.home-carousel {
    position: relative;
    width: 100%;
    min-height: clamp(340px, 58vh, 620px);
    min-height: clamp(340px, 58svh, 620px);
    border-radius: 0;
    overflow: hidden;
    border-top: 1px solid rgba(67, 152, 203, 0.3);
    border-bottom: 1px solid rgba(67, 152, 203, 0.3);
    background: #0f1726;
}

.home-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease;
    background-color: #0f1726;
    background-image: url("/assets/img/home/racks-servers.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.home-slide::before {
    content: "";
    position: absolute;
    inset: -6%;
    z-index: 0;
    background-image: inherit;
    background-position: center;
    background-size: cover;
    filter: blur(16px) saturate(1.08);
    transform: scale(1.05);
    opacity: 0.58;
    pointer-events: none;
}

.home-slide img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.home-slide--cover img {
    object-fit: cover;
    object-position: center 46%;
}

.home-slide--streaming img {
    object-fit: cover;
    object-position: center 40%;
}

.home-slide-overlay {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 3;
    padding: 1.2rem 0 1.1rem;
    background: linear-gradient(180deg, rgba(6, 10, 17, 0.01), rgba(6, 10, 17, 0.58) 42%, rgba(6, 10, 17, 0.78));
}

.home-slide-content {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
}

.home-slide-overlay h2 {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.55rem);
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(4, 10, 18, 0.55);
}

.home-slide-overlay p {
    margin: 0.4rem 0 0.75rem;
    max-width: 60ch;
    color: #ecf3fb;
    text-shadow: 0 1px 8px rgba(4, 10, 18, 0.5);
}

.home-carousel-dots {
    position: absolute;
    right: clamp(0.9rem, 3.2vw, 2.8rem);
    bottom: clamp(0.8rem, 2vw, 1.4rem);
    display: flex;
    gap: 0.4rem;
    z-index: 4;
}

.home-carousel-dots .dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
}

.home-carousel-dots .dot.is-active {
    background: #ffffff;
    border-color: #ffffff;
}

.home-copy-below-carousel h1 {
    max-width: 100%;
}

.home-title-main,
.home-title-sub {
    display: block;
}

.home-title-sub {
    font-size: clamp(1.2rem, 2.1vw, 2rem);
    font-weight: 500;
    line-height: 1.25;
    margin-top: 0.25rem;
    color: #d9e4ef;
}

.home-hero-layout {
    display: grid;
    grid-template-columns: 1.2fr minmax(260px, 360px);
    gap: 1rem;
    align-items: stretch;
}

.home-hero-copy h1 {
    max-width: 100%;
}

.home-cta-row {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.btn-ghost {
    background: transparent;
    border: 1px solid #8eabc4;
    color: #1b4768;
}

.btn-ghost:hover {
    background: rgba(67, 152, 203, 0.15);
}

.home-kpi-card {
    padding: 1.15rem;
    border-color: rgba(67, 152, 203, 0.4);
    background: linear-gradient(160deg, rgba(18, 26, 40, 0.98), rgba(10, 14, 22, 0.98));
}

.home-hero-image {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(67, 152, 203, 0.35);
    background:
        radial-gradient(circle at 22% 18%, rgba(67, 152, 203, 0.42), transparent 38%),
        radial-gradient(circle at 85% 78%, rgba(142, 44, 138, 0.36), transparent 40%),
        linear-gradient(145deg, #16253a 0%, #0d1422 58%, #0a111b 100%);
}

.home-kpi-card h2 {
    margin-top: 0;
}

.home-kpi-list {
    display: grid;
    gap: 0.7rem;
}

.home-kpi-list p {
    margin: 0;
    color: var(--muted);
}

.home-kpi-value {
    display: block;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
}

.home-pillars {
    padding-top: 0.5rem;
}

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

.home-pillar-image {
    width: 100%;
    height: 155px;
    border-radius: 10px;
    border: 1px solid rgba(67, 152, 203, 0.26);
    margin-bottom: 0.65rem;
    object-fit: cover;
    display: block;
}

.home-pillar-image--cloud {
    background:
        linear-gradient(160deg, rgba(67, 152, 203, 0.34), rgba(142, 44, 138, 0.34)),
        linear-gradient(145deg, #1a2234 0%, #0c1320 100%);
}

.home-pillar-image--network {
    background:
        radial-gradient(circle at 18% 22%, rgba(67, 152, 203, 0.4), transparent 34%),
        radial-gradient(circle at 80% 76%, rgba(142, 44, 138, 0.36), transparent 40%),
        linear-gradient(145deg, #16202f 0%, #0b111a 100%);
}

.home-pillar-image--security {
    background:
        radial-gradient(circle at 50% 50%, rgba(197, 0, 97, 0.26), transparent 45%),
        linear-gradient(145deg, #1d1a2d 0%, #0d111a 100%);
}

@media (max-width: 900px) {
    .home-carousel-wrap {
        margin-bottom: 1.4rem;
    }

    .home-carousel {
        min-height: clamp(250px, 46svh, 430px);
    }

    .home-slide-overlay {
        padding: 0.95rem 0 0.9rem;
    }

    .news-hero-banner {
        height: clamp(190px, 50vw, 270px);
        margin: 0.9rem 0 1rem;
    }

    .news-hero-image {
        object-position: center 34%;
    }

    .news-title-with-icon {
        padding-right: 132px;
    }

    .news-title-with-icon .news-title-icon {
        position: absolute;
        width: 120px;
        height: 120px;
        top: -6px;
    }

    .legal-title-with-icon {
        padding-right: 132px;
    }

    .legal-title-with-icon .legal-title-icon {
        width: 120px;
        height: 120px;
        top: -6px;
    }
}

.home-hero-layout-v2 {
    grid-template-columns: 1.1fr minmax(320px, 420px);
}

.home-quick-metrics {
    margin-top: 1.15rem;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.home-quick-metrics span {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.36rem;
    border: 1px solid rgba(67, 152, 203, 0.35);
    border-radius: 999px;
    padding: 0.42rem 0.8rem;
    font-size: 0.86rem;
    color: #e7f0fb;
    background: linear-gradient(160deg, rgba(35, 58, 82, 0.9), rgba(25, 42, 62, 0.9));
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-quick-metrics .home-quick-metric-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.36rem;
    border: 1px solid rgba(67, 152, 203, 0.4);
    border-radius: 999px;
    padding: 0.42rem 0.8rem;
    font-size: 0.86rem;
    color: #e7f0fb;
    background: linear-gradient(160deg, rgba(35, 58, 82, 0.95), rgba(25, 42, 62, 0.95));
    text-align: center;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.14s ease, border-color 0.14s ease, background 0.14s ease;
}

.home-quick-metrics .home-quick-metric-link:hover {
    transform: translateY(-1px);
    border-color: rgba(93, 176, 225, 0.6);
    background: linear-gradient(160deg, rgba(42, 70, 98, 0.98), rgba(29, 49, 74, 0.98));
}

.home-quick-metrics strong {
    color: #ffffff;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
}

.home-quick-metrics small {
    font-size: 0.9rem;
    color: #d8e4f1;
    font-weight: 500;
    line-height: 1;
}

.home-media-stack {
    display: grid;
    gap: 0.75rem;
}

.home-media-main {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    border-radius: 14px;
    border: 1px solid rgba(67, 152, 203, 0.36);
    background:
        radial-gradient(circle at 18% 18%, rgba(67, 152, 203, 0.5), transparent 35%),
        radial-gradient(circle at 84% 70%, rgba(142, 44, 138, 0.42), transparent 42%),
        linear-gradient(145deg, #18263a 0%, #0f1726 60%, #0a111b 100%);
}

.home-media-main img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
}

.home-media-main::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(155deg, rgba(8, 12, 20, 0.12), rgba(8, 12, 20, 0.48));
}

.home-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.home-media-card {
    border: 1px solid rgba(67, 152, 203, 0.28);
    border-radius: 12px;
    background: rgba(14, 20, 31, 0.9);
    padding: 0.45rem;
}

.home-media-card img {
    width: 100%;
    height: 104px;
    object-fit: cover;
    border-radius: 9px;
    display: block;
}

.home-pillars-v2 {
    padding-top: 1.1rem;
}

.home-pillar-card p {
    margin-bottom: 0;
}


.services-hero-panel {
    display: grid;
    grid-template-columns: 1fr minmax(240px, 300px);
    gap: 1.45rem;
    align-items: stretch;
    margin-bottom: 2.25rem;
    padding-right: 0;
}

.services-hero-panel > div .lead {
    max-width: 62ch;
    line-height: 1.62;
}

.services-kpi-box {
    display: grid;
    gap: 0.75rem;
    padding: 1.05rem 1.1rem;
    border-color: rgba(67, 152, 203, 0.30);
    background: linear-gradient(170deg, #ffffff, #f5f9fd);
    border-radius: 14px;
    text-align: right;
}

.service-segment-page .services-kpi-box {
    place-items: center;
    text-align: center;
    padding: 0.9rem 1rem;
}

.service-segment-page .services-kpi-box img {
    width: min(74%, 185px);
    max-height: 124px;
    object-fit: contain;
    display: block;
    margin-inline: auto;
}

.service-segment-page .segment-cloud-banner {
    width: 100%;
    height: 136px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(67, 152, 203, 0.22);
}

.service-segment-page .segment-cloud-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(9, 31, 58, 0.62) 12%, rgba(9, 31, 58, 0.25) 56%, rgba(9, 31, 58, 0.06) 100%);
}

.service-segment-page .segment-cloud-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-segment-page .segment-cloud-banner-title {
    position: absolute;
    left: 0.9rem;
    bottom: 0.7rem;
    z-index: 1;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.service-segment-page .services-hero-panel.service-segment-no-aside {
    grid-template-columns: 1fr;
}

.service-segment-page .segment-title-with-icon {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.service-segment-page .segment-title-with-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 2px 4px rgba(13, 34, 57, 0.14));
}

.service-segment-page .service-segment-opposite-icon .segment-title-with-icon img {
    width: 224px;
    height: 224px;
    position: absolute;
    right: 0;
    top: -12px;
}

.service-segment-page .service-segment-opposite-icon .segment-title-with-icon {
    position: relative;
    display: block;
    width: 100%;
    min-height: 0;
    padding-right: 248px;
}

.service-segment-page .service-segment-opposite-icon .segment-title-with-icon span {
    display: inline-block;
}

.kpi-item {
    display: grid;
    gap: 0.08rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(67, 152, 203, 0.2);
    justify-items: end;
}

.kpi-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.services-kpi-bubbles {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.3rem;
}

.services-kpi-bubble {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(161, 188, 214, 0.72);
    box-shadow: 0 3px 8px rgba(15, 35, 57, 0.12);
    cursor: default;
}

.services-kpi-bubble img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.services-kpi-bubble .location-tooltip {
    left: 50%;
    bottom: calc(100% + 7px);
}

.services-kpi-bubble:hover .location-tooltip,
.services-kpi-bubble:focus-within .location-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.kpi-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #123955;
    letter-spacing: 0.01em;
}

.kpi-label {
    font-size: 0.84rem;
    color: var(--muted);
}

.enterprise-grid {
    margin-top: 1.4rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
}

.enterprise-card {
    border-color: rgba(146, 165, 186, 0.62);
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(14, 37, 62, 0.06);
    background: linear-gradient(170deg, #ffffff, #fbfdff);
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.enterprise-card[id] {
    scroll-margin-top: 118px;
}

.enterprise-card h2 {
    margin-top: 0;
}

.service-segment-page h1 {
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
    margin: 0.45rem 0 1rem;
}

.service-segment-page .enterprise-card h2 {
    font-size: 1.02rem;
    margin: 0;
}

.service-segment-page .lead {
    font-size: 15px;
    margin-bottom: 1.1rem;
}

.service-segment-page .enterprise-card {
    display: flex;
    flex-direction: column;
}

.service-segment-page .enterprise-card p {
    font-size: 15px;
    line-height: 1.6;
}

.service-segment-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    border-top: 1px solid #d6e0ea;
    padding-top: 0.95rem;
}

.service-segment-page .service-segment-actions .service-link {
    margin-top: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 9px;
    border: 1px solid #afc5d9;
    background: #f6fbff;
    color: #245f8a;
    padding: 0.45rem 0.68rem;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.service-segment-page .service-segment-actions .service-link.quote {
    border-color: #1f6796;
    background: #1f6796;
    color: #ffffff;
}

.service-segment-page .service-segment-actions .service-link.datasheet {
    background: #e8f2fb;
    border-color: #aac7e0;
    color: #204a6f;
}

.service-segment-page .service-segment-actions .service-link:hover {
    text-decoration: none;
    filter: brightness(0.97);
}

@media (max-width: 760px) {
    .service-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .service-cta-row .btn {
        width: 100%;
    }

    .service-segment-actions {
        flex-wrap: wrap;
    }

    .service-segment-page .service-segment-actions .service-link {
        flex: 1 1 calc(50% - 0.4rem);
    }
}

.enterprise-card-media {
    width: 100%;
    height: 168px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    border: 1px solid rgba(67, 152, 203, 0.28);
    margin: 0.25rem 0 0.8rem;
    display: block;
}

.enterprise-card p {
    margin-top: 0.35rem;
    margin-bottom: 0.45rem;
    color: var(--muted);
}

.enterprise-meta {
    margin: 0.15rem 0 0.55rem;
    padding-left: 0.65rem;
    border-left: 3px solid rgba(67, 152, 203, 0.45);
    font-size: 0.92rem;
    line-height: 1.5;
    color: #46627d;
}

.enterprise-card--featured {
    position: relative;
    border-color: rgba(67, 152, 203, 0.55);
    background: linear-gradient(160deg, #ffffff, #f2f8fd);
}

.featured-tag {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    color: #1f6796;
}

.enterprise-list {
    margin: 0.65rem 0 0;
    padding-left: 1.05rem;
}

.enterprise-list li + li {
    margin-top: 0.26rem;
}

.enterprise-card .service-link {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    border: 1px solid #1f6796;
    background: #1f6796;
    color: #ffffff;
    padding: 0.46rem 0.78rem;
    font-size: 0.83rem;
    font-weight: 700;
    text-decoration: none;
}

.enterprise-card .service-link:hover {
    background: #2a79ac;
    border-color: #2a79ac;
    color: #ffffff;
    text-decoration: none;
}

.pill-page-card {
    max-width: 100%;
}

.pill-page-body {
    margin: 0 0 1rem;
    text-align: justify;
}

.pill-page-actions {
    margin-top: 0.9rem;
    border-top: 0;
    padding-top: 0;
    padding-inline: 1.55rem;
    box-sizing: border-box;
}

.pill-logos-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
}

.pill-logo-card {
    border: 1px solid #c9d8e6;
    border-radius: 10px;
    background: #ffffff;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem;
}

.pill-logo-card img {
    max-width: 100%;
    max-height: 58px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 980px) {
    .pill-logos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.service-option-link {
    color: #245d88;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.service-option-link:hover {
    color: #133853;
    border-bottom-color: rgba(36, 93, 136, 0.5);
}

@media (max-width: 980px) {
    .services-hero-panel,
    .enterprise-grid {
        grid-template-columns: 1fr;
    }

    .service-segment-page .services-kpi-box img {
        width: min(66%, 190px);
        max-height: 112px;
    }

    .service-segment-page .segment-cloud-banner {
        height: 120px;
    }

    .service-segment-page .service-segment-opposite-icon .segment-title-with-icon {
        padding-right: 132px;
    }

    .service-segment-page .service-segment-opposite-icon .segment-title-with-icon img {
        width: 120px;
        height: 120px;
        top: -6px;
    }

    .home-hero-layout,
    .home-pillars-grid {
        grid-template-columns: 1fr;
    }

    .home-quick-metrics {
        grid-template-columns: 1fr;
    }

    .location-logos {
        justify-content: center;
    }

}

@media (max-width: 560px) {
    .location-logos {
        justify-content: center;
    }
}

@media (max-width: 680px) {
    .contact-drawer.is-bottom .contact-drawer-panel {
        width: 100vw;
        border-radius: 14px 14px 0 0;
        max-height: 88vh;
    }
}
