:root {
    --ink: #0d222b;
    --muted: #58686c;
    --line: rgba(97, 130, 137, 0.2);
    --teal: #10ab9a;
    --blue: #1193b0;
    --footer: #0d222b;
    --footer-bottom: #112931;
    --container: 1294px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    color: var(--ink);
    font-family: Rubik, Arial, sans-serif;
}
.site-container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}
.topline {
    height: 60px;
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.topline__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: none;
    padding: 0;
    color: var(--muted);
    font-size: 16px;
}
.lang-btn img:first-child {
    width: 16px;
    height: 16px;
}
.lang-chevron {
    width: 7px;
    height: 4px;
    opacity: 0.75;
}
.topline__contacts {
    display: flex;
    align-items: center;
    gap: 54px;
}
.topline__contacts a,
.topline__contacts span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
}
.topline__contacts img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.main-nav {
    height: 120px;
    padding: 40px 0;
    background: #fff;
    transition: height 0.25s, padding 0.25s, box-shadow 0.25s;
}
.main-nav.is-sticky {
    position: fixed;
    z-index: 1030;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    padding: 20px 0;
    box-shadow: 0 8px 30px rgba(13, 34, 43, 0.08);
}
.main-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand {
    padding: 0;
    margin: 0;
    line-height: 0;
}
.desktop-menu {
    /*margin-left: 110px;*/
}
.navbar-nav {
    gap: 39px;
    align-items: center;
}
.nav-link {
    padding: 10px 0 !important;
    color: var(--ink) !important;
    font-size: 18px;
    font-weight: 400;
}
.dropdown-toggle::after {
    width: 11px;
    height: 6px;
    border: 0;
    background: url("../img/chevron.svg") center/contain no-repeat;
    margin-left: 9px;
    vertical-align: middle;
}
.btn-calc {
    border: 0;
    border-radius: 8px;
    padding: 10px 40px;
    background: linear-gradient(79deg, var(--teal), var(--blue));
    color: #fff;
    font-size: 16px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.btn-calc:hover,
.btn-calc:focus {
    color: #fff;
    filter: brightness(0.96);
}
.dropdown-menu {
    border: 0;
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(13, 34, 43, 0.14);
    padding: 20px;
}
.simple-menu {
    min-width: 260px;
}
.simple-menu .dropdown-item {
    padding: 10px 14px;
    border-radius: 7px;
}
.mega-menu {
    width: 690px;
    left: 50% !important;
    transform: translateX(-50%);
    padding: 28px 30px;
}
.mega-menu h6 {
    font: 700 18px "Roboto Condensed", sans-serif;
    color: var(--ink);
    margin-bottom: 12px;
}
.mega-menu a {
    display: block;
    padding: 6px 0 6px 14px;
    color: var(--muted);
    font-size: 15px;
    text-decoration: none;
    position: relative;
}
.mega-menu a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--teal);
}
.burger {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    padding: 12px;
    border: 0;
    background: #f2f7f7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.burger:focus {
    box-shadow: none;
}
.burger span {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--ink);
    margin: auto;
}
.mobile-call {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f2f7f7;
}
.mobile-call img {
    width: 18px;
    height: 18px;
}
.mobile-menu {
    width: min(92vw, 420px);
}
.offcanvas-header {
    padding: 20px 20px 12px;
    border-bottom: 1px solid var(--line);
}
.offcanvas-body {
    padding: 12px 20px 28px;
}
.mobile-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 0 16px;
}
.mobile-meta a {
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
}
.mobile-accordion .accordion-item {
    border-color: var(--line);
}
.mobile-accordion .accordion-button,
.mobile-main-link {
    padding: 18px 0;
    color: var(--ink);
    font-size: 18px;
    font-weight: 500;
    background: #fff;
    box-shadow: none;
    text-decoration: none;
    display: block;
}
.mobile-accordion .accordion-body {
    padding: 0 0 16px;
}
.mobile-accordion .accordion-body h6 {
    margin: 18px 0 8px;
    font: 700 16px "Roboto Condensed", sans-serif;
}
.mobile-accordion .accordion-body a {
    display: block;
    padding: 8px 0;
    color: var(--muted);
    font-size: 14px;
    text-decoration: none;
}
.mobile-address {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}
.mobile-address span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}
.mobile-address img {
    width: 16px;
    height: 16px;
}
.demo-content {
    min-height: 900px;
    padding: 100px 0;
    background: linear-gradient(180deg, #f5f9f9, #fff);
}
.demo-content p {
    font-size: clamp(30px, 4vw, 54px);
    color: #c8d4d5;
}
.footer-main {
    background: var(--footer);
    padding: 60px 0;
}
.footer-grid {
    max-width: 1294px;
}
.footer-block + .footer-block {
    margin-top: 36px;
}
.footer-block h3 {
    margin: 0 0 22px;
    color: #fff;
    font: 700 18px "Roboto Condensed", sans-serif;
}
.footer-block ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-block li + li {
    margin-top: 14px;
}
.footer-block li {
    padding-left: 20px;
    position: relative;
}
.footer-block li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 0.48em;
    width: 4px;
    height: 7px;
    background: url("../img/arrow.svg") center/contain no-repeat;
}
.footer-block a,
.footer-block p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    text-decoration: none;
    margin: 0;
}
.footer-contacts p {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
}
.footer-contacts img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.footer-btn {
    margin-top: 28px;
    height: 40px;
    padding: 8px 24px;
    border: 1px solid #fff;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px !important;
}
.footer-btn:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--footer-bottom) !important;
}
.footer-bottom {
    display: flex;
    min-height: 60px;
    background: var(--footer-bottom);
    align-items: center;
}

.footer-bottom span,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
}
@media (max-width: 1199.98px) {
    .desktop-menu {
        /*margin-left: 55px;*/
    }
    .navbar-nav {
        gap: 22px;
    }
    .nav-link {
        font-size: 16px;
    }
    .topline__contacts {
        gap: 28px;
    }
    .topline__contacts a,
    .topline__contacts span {
        font-size: 14px;
    }
    .btn-calc {
        padding-inline: 25px;
    }
}
@media (max-width: 991.98px) {
    .site-container {
        width: min(calc(100% - 32px), var(--container));
    }
    .main-nav {
        height: 84px;
        padding: 18px 0;
    }
    .main-nav.is-sticky {
        height: 72px;
        padding: 12px 0;
    }
    .navbar-brand img {
        width: 143px;
        height: auto;
    }
    .demo-content {
        min-height: 620px;
        padding: 70px 0;
    }
    .footer-main {
        padding: 46px 0;
    }
    .footer-block + .footer-block {
        margin-top: 30px;
    }
    .footer-bottom {
        padding: 18px 0;
    }
    .footer-bottom .site-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        min-height: auto;
    }
    .footer-bottom span,
    .footer-bottom a {
        font-size: 13px;
    }
    .footer-bottom a:last-child {
        text-align: left;
    }
}
@media (max-width: 575.98px) {
    .site-container {
        width: min(calc(100% - 28px), var(--container));
    }
    .main-nav {
        height: 76px;
        padding: 14px 0;
    }
    .main-nav.is-sticky {
        height: 68px;
        padding: 10px 0;
    }
    .burger,
    .mobile-call {
        width: 44px;
        height: 44px;
    }
    .footer-main {
        padding: 38px 0;
    }
    .footer-block h3 {
        margin-bottom: 16px;
    }
    .footer-block li + li {
        margin-top: 12px;
    }
    .footer-block a,
    .footer-block p {
        font-size: 15px;
    }
    .demo-content {
        min-height: 520px;
    }
}

/* Home first screen */
.home-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(105deg, #0eb294 0%, #0a9e9c 46%, #118eaf 100%);
    color: #fff;
}
.home-hero__pattern {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.85;
    background: url("../img/hero-bg.jpg") repeat-x 0 0;
}
.home-hero__glow {
    position: absolute;
    z-index: -2;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.35;
    pointer-events: none;
}
.home-hero__visual {
    position: absolute;
    z-index: -2;
    top:5%;
    right: -5%;
    bottom: 0;
    aspect-ratio: 430/630;
    background: url("../img/clouds.png") no-repeat 0 0;
    background-size: cover;
}

.home-hero__glow--one {
    right: -170px;
    top: -230px;
    background: radial-gradient(circle, rgba(114, 236, 255, 0.62), transparent 68%);
}
.home-hero__glow--two {
    left: 25%;
    bottom: -420px;
    background: radial-gradient(circle, rgba(102, 255, 204, 0.52), transparent 68%);
}
.home-hero__inner {
    position: relative;
    z-index: 1;
}
.home-hero__main-row {
    min-height: 370px;
}
.home-hero__content {
    /*max-width: 800px;*/
}
.home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.home-hero__eyebrow span {
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}
.home-hero h1 {
    margin: 0;
    color: #fff;
    font-family: Roboto, Arial, sans-serif;
    font-size: clamp(46px, 4.25vw, 56px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}
.home-hero h1 span {
    display: block;
}
.home-hero__line {
    width: 281px;
    max-width: 42%;
    height: 2px;
    margin: 30px 0 27px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.75);
}
.home-hero__lead {
    margin: 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: 18px;
    line-height: 1.45;
}
.home-hero__actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 28px;
}
.home-hero__primary {
    min-height: 46px;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    background: #fff;
    color: #087c89;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 14px 32px rgba(5, 74, 85, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.home-hero__primary:hover,
.home-hero__primary:focus {
    color: #087c89;
    background: #f4ffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(5, 74, 85, 0.28);
}
.home-hero__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}
.home-hero__link span {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 50%;
    transition: transform 0.2s ease, background 0.2s ease;
}
.home-hero__link:hover,
.home-hero__link:focus {
    color: #fff;
}
.home-hero__link:hover span,
.home-hero__link:focus span {
    transform: translate(2px, -2px);
    background: rgba(255, 255, 255, 0.15);
}

.tech-visual {
    position: relative;
    width: min(100%, 500px);
    margin-left: auto;
    perspective: 1100px;
}
.tech-visual__panel {
    position: relative;
    width: 100%;
    aspect-ratio: 1.23;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(7, 73, 85, 0.52), rgba(6, 56, 74, 0.24));
    box-shadow: 0 30px 70px rgba(5, 55, 68, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transform-style: preserve-3d;
    transition: transform 0.18s ease-out;
}
.tech-visual__panel::before {
    content: "";
    position: absolute;
    inset: -35%;
    background: conic-gradient(from 80deg, transparent, rgba(137, 251, 238, 0.11), transparent 35%, rgba(159, 232, 255, 0.12), transparent 72%);
    animation: techHalo 14s linear infinite;
}
.tech-visual__grid {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle at 52% 48%, #000 12%, transparent 78%);
}
.tech-visual__scan {
    position: absolute;
    left: 8%;
    right: 8%;
    height: 1px;
    top: 10%;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(165, 255, 241, 0.9), transparent);
    box-shadow: 0 0 18px rgba(165, 255, 241, 0.7);
    animation: techScan 5.8s ease-in-out infinite;
}
.tech-visual__orbit {
    position: absolute;
    left: 50%;
    top: 49%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.tech-visual__orbit::before,
.tech-visual__orbit::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a2ffe8;
    box-shadow: 0 0 16px rgba(162, 255, 232, 0.9);
}
.tech-visual__orbit--one {
    width: 56%;
    aspect-ratio: 1;
    animation: techOrbit 14s linear infinite;
}
.tech-visual__orbit--one::before { left: 10%; top: 17%; }
.tech-visual__orbit--one::after { right: 5%; bottom: 29%; }
.tech-visual__orbit--two {
    width: 77%;
    aspect-ratio: 1.35;
    animation: techOrbitReverse 18s linear infinite;
}
.tech-visual__orbit--two::before { left: 48%; top: -4px; }
.tech-visual__orbit--two::after { left: 24%; bottom: -4px; }
.tech-node {
    position: absolute;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
    color: #fff;
    text-align: center;
    box-shadow: 0 14px 34px rgba(3, 44, 55, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
}
.tech-node strong {
    margin-top: 8px;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    line-height: 1;
}
.tech-node span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 9px;
    line-height: 1.15;
}
.tech-node--cloud {
    left: 35%;
    top: 31%;
    width: 30%;
    height: 35%;
    border-radius: 22px;
    animation: techHub 4.8s ease-in-out infinite;
}
.tech-node--server {
    left: 7%;
    bottom: 12%;
    width: 25%;
    height: 26%;
    animation: techFloat 5.7s ease-in-out infinite;
}
.tech-node--warehouse {
    right: 6%;
    bottom: 9%;
    width: 27%;
    height: 28%;
    animation: techFloat 6.4s ease-in-out -1.6s infinite;
}
.tech-node--network {
    right: 8%;
    top: 10%;
    width: 25%;
    height: 24%;
    animation: techFloat 5.2s ease-in-out -0.8s infinite;
}
.cloud-mark {
    position: relative;
    width: 60px;
    height: 36px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(169, 255, 240, 0.95), rgba(151, 227, 255, 0.92));
    box-shadow: 0 0 28px rgba(155, 244, 241, 0.32);
}
.cloud-mark i {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: inherit;
}
.cloud-mark i:nth-child(1) { width: 28px; height: 28px; left: 8px; top: -12px; }
.cloud-mark i:nth-child(2) { width: 36px; height: 36px; right: 5px; top: -17px; }
.cloud-mark i:nth-child(3) { width: 20px; height: 20px; left: 24px; top: -14px; }
.server-mark {
    display: grid;
    gap: 4px;
    width: 42px;
}
.server-mark i {
    position: relative;
    display: block;
    height: 9px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 3px;
    background: rgba(147, 247, 230, 0.14);
}
.server-mark i::before,
.server-mark i::after {
    content: "";
    position: absolute;
    top: 3px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #9dffe8;
}
.server-mark i::before { right: 5px; }
.server-mark i::after { right: 11px; opacity: 0.45; }
.warehouse-mark {
    display: grid;
    grid-template-columns: repeat(2, 17px);
    gap: 3px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}
.warehouse-mark span {
    width: 17px;
    height: 11px;
    margin: 0;
    border: 1px solid rgba(171, 255, 236, 0.76);
    border-radius: 2px;
    background: rgba(156, 249, 232, 0.12);
}
.network-mark {
    position: relative;
    width: 46px;
    height: 34px;
}
.network-mark::before,
.network-mark::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 16px;
    width: 31px;
    height: 1px;
    background: rgba(255, 255, 255, 0.52);
    transform: rotate(25deg);
}
.network-mark::after { transform: rotate(-25deg); }
.network-mark i {
    position: absolute;
    width: 9px;
    height: 9px;
    border: 2px solid #9affe7;
    border-radius: 50%;
    background: #0d7f91;
    box-shadow: 0 0 11px rgba(154, 255, 231, 0.6);
}
.network-mark i:nth-child(1) { left: 0; top: 2px; }
.network-mark i:nth-child(2) { right: 0; top: 2px; }
.network-mark i:nth-child(3) { left: 5px; bottom: 0; }
.network-mark i:nth-child(4) { right: 5px; bottom: 0; }
.tech-connection {
    position: absolute;
    z-index: 2;
    height: 1px;
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(173, 255, 240, 0.12), rgba(173, 255, 240, 0.75), rgba(173, 255, 240, 0.12));
}
.tech-connection i {
    position: absolute;
    left: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c0fff1;
    box-shadow: 0 0 12px rgba(192, 255, 241, 0.9);
    animation: techData 2.8s linear infinite;
}
.tech-connection--server {
    left: 27%;
    top: 65%;
    width: 19%;
    transform: rotate(-27deg);
}
.tech-connection--warehouse {
    left: 60%;
    top: 59%;
    width: 23%;
    transform: rotate(28deg);
}
.tech-connection--warehouse i { animation-delay: -1.1s; }
.tech-connection--network {
    left: 61%;
    top: 42%;
    width: 22%;
    transform: rotate(-39deg);
}
.tech-connection--network i { animation-delay: -2s; }
.tech-kpi {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: baseline;
    gap: 5px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    background: rgba(5, 67, 79, 0.55);
    box-shadow: 0 10px 20px rgba(2, 47, 57, 0.16);
    backdrop-filter: blur(8px);
}
.tech-kpi b {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 15px;
}
.tech-kpi span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 8px;
    text-transform: uppercase;
}
.tech-kpi--sla { left: 5%; top: 12%; animation: techFloat 5.5s ease-in-out -2s infinite; }
.tech-kpi--support { left: 10%; top: 39%; animation: techFloat 5.9s ease-in-out -0.5s infinite; }
.tech-status {
    position: absolute;
    z-index: 5;
    right: 8%;
    bottom: 3%;
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 9px;
}
.tech-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8effc7;
    box-shadow: 0 0 12px rgba(142, 255, 199, 0.9);
    animation: techPulse 2s ease-in-out infinite;
}

.home-hero__advantages {
    margin-top: 30px;
}
.advantage-card {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    min-height: 118px;
    height: 100%;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(4, 87, 94, 0.3), rgba(255, 255, 255, 0.06));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.advantage-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(145deg, rgba(4, 87, 94, 0.38), rgba(255, 255, 255, 0.1));
}
.advantage-card__icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.09);
}
.advantage-card__icon img {
    width: 32px;
    height: 32px;
}
.advantage-card h2 {
    margin: 1px 0 8px;
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.05;
}
.advantage-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.35;
}

@keyframes techHalo {
    to { transform: rotate(360deg); }
}
@keyframes techScan {
    0%, 10% { top: 9%; opacity: 0; }
    22% { opacity: 0.7; }
    72% { top: 90%; opacity: 0.35; }
    84%, 100% { top: 90%; opacity: 0; }
}
@keyframes techOrbit {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes techOrbitReverse {
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}
@keyframes techHub {
    0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 14px 34px rgba(3, 44, 55, 0.2), 0 0 0 0 rgba(165, 255, 239, 0); }
    50% { transform: translateY(-4px) scale(1.015); box-shadow: 0 18px 42px rgba(3, 44, 55, 0.26), 0 0 0 10px rgba(165, 255, 239, 0.035); }
}
@keyframes techFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}
@keyframes techData {
    0% { left: 0; opacity: 0; }
    12% { opacity: 1; }
    88% { opacity: 1; }
    100% { left: calc(100% - 7px); opacity: 0; }
}
@keyframes techPulse {
    0%, 100% { opacity: 0.7; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.15); }
}

@media (max-width: 1199.98px) {
    .home-hero {
    }
    .home-hero h1 {
        font-size: 52px;
    }
    .tech-visual {
        max-width: 440px;
    }
    .advantage-card {
        padding: 18px;
    }
    .advantage-card h2 {
        font-size: 20px;
    }
}
@media (max-width: 991.98px) {
    .home-hero {
        min-height: auto;
    }
    .home-hero__main-row {
        min-height: 0;
    }
    .home-hero__content {
        /*max-width: 740px;*/
    }
    .home-hero h1 {
        font-size: clamp(44px, 7vw, 58px);
    }
    .home-hero__lead {
    }
    .tech-visual {
        width: min(100%, 560px);
        margin: 0 auto;
    }
    .home-hero__advantages {
        margin-top: 38px;
    }
}
@media (max-width: 767.98px) {
    .home-hero {
    }
    .home-hero__eyebrow {
        font-size: 11px;
        letter-spacing: 0.06em;
    }
    .home-hero h1 {
        font-size: clamp(38px, 9.5vw, 50px);
        line-height: 1.07;
    }
    .home-hero__line {
        width: 190px;
        margin: 24px 0 22px;
    }
    .home-hero__lead {
        font-size: 16px;
    }
    .home-hero__actions {
        margin-top: 24px;
    }
    .tech-visual {
        width: min(100%, 480px);
    }
    .advantage-card {
        min-height: 0;
    }
}
@media (max-width: 575.98px) {
    .home-hero {
    }
    .home-hero__pattern {

    }
    .home-hero__eyebrow {
        align-items: flex-start;
        line-height: 1.35;
    }
    .home-hero__eyebrow span {
        margin-top: 6px;
    }
    .home-hero h1 {
        font-size: clamp(34px, 10.8vw, 43px);
        letter-spacing: -0.03em;
    }
    .home-hero h1 span {
        display: inline;
    }
    .home-hero__line {
        max-width: none;
        width: 150px;
        height: 2px;
        margin: 21px 0 19px;
    }
    .home-hero__lead {
        font-size: 15px;
        line-height: 1.45;
    }
    .home-hero__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }
    .home-hero__primary {
        width: 100%;
        min-height: 48px;
    }
    .home-hero__link {
        justify-content: center;
        min-height: 42px;
    }
    .tech-visual {
        width: calc(100% + 6px);
        margin-left: -3px;
    }
    .tech-visual__panel {
        border-radius: 23px;
    }
    .tech-node strong {
        font-size: 12px;
    }
    .tech-node span {
        font-size: 7px;
    }
    .cloud-mark {
        width: 46px;
        height: 28px;
    }
    .cloud-mark i:nth-child(1) { width: 22px; height: 22px; left: 7px; top: -9px; }
    .cloud-mark i:nth-child(2) { width: 27px; height: 27px; right: 4px; top: -13px; }
    .cloud-mark i:nth-child(3) { width: 15px; height: 15px; left: 19px; top: -10px; }
    .server-mark { width: 34px; gap: 3px; }
    .server-mark i { height: 7px; }
    .warehouse-mark {
        grid-template-columns: repeat(2, 13px);
        gap: 2px;
        padding: 5px;
    }
    .warehouse-mark span {
        width: 13px;
        height: 8px;
    }
    .network-mark {
        transform: scale(0.78);
    }
    .tech-kpi {
        padding: 5px 7px;
    }
    .tech-kpi b { font-size: 12px; }
    .tech-kpi span { font-size: 6px; }
    .tech-status { font-size: 7px; }
    .home-hero__advantages {
        margin-top: 26px;
    }
    .advantage-card {
        gap: 14px;
        padding: 17px;
        border-radius: 14px;
    }
    .advantage-card__icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
    .advantage-card__icon img {
        width: 29px;
        height: 29px;
    }
    .advantage-card h2 {
        font-size: 20px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .tech-visual__panel,
    .tech-visual__panel::before,
    .tech-visual__scan,
    .tech-visual__orbit,
    .tech-node,
    .tech-connection i,
    .tech-kpi,
    .tech-status i,
    .advantage-card,
    .home-hero__primary,
    .home-hero__link span {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

/* Home services — frame Home-Services */
.content-block {
    background: #f4f8f8;
}
.home-services {
    padding: 60px 0 100px;
}
.home-services__title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 40px;
    color: #505e61;
    font-family: Roboto, Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.02em;
}
.home-services__title img {
    flex: 0 0 auto;
}
.home-services__grid {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
}
.service-tile {
    position: relative;
    display: block;
    height: 300px;
    overflow: hidden;
    border: 1px solid rgba(13, 34, 43, 0.08);
    border-radius: 12px;
    background: #0a2230;
    box-shadow: 0 16px 38px rgba(13, 34, 43, 0.10);
    color: #fff;
    text-decoration: none;
    isolation: isolate;
    transform: translateZ(0);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.service-tile__image {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1), filter 0.3s ease;
}
.service-tile__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(3, 23, 38, 0.02) 28%, rgba(3, 23, 38, 0.36) 66%, rgba(3, 23, 38, 0.92) 100%),
        linear-gradient(90deg, rgba(3, 23, 38, 0.12), transparent 46%);
    pointer-events: none;
}
.service-tile__name {
    position: absolute;
    left: 32px;
    right: 70px;
    bottom: 28px;
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.18;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}
.service-tile__arrow {
    position: absolute;
    right: 32px;
    bottom: 36px;
    transition: transform 0.24s ease;
}
.service-tile:hover,
.service-tile:focus-visible {
    color: #fff;
    border-color: rgba(17, 147, 176, 0.38);
    box-shadow: 0 22px 50px rgba(13, 34, 43, 0.18);
    transform: translateY(-4px);
}
.service-tile:hover .service-tile__image,
.service-tile:focus-visible .service-tile__image {
    filter: saturate(1.08) brightness(1.04);
    transform: scale(1.045);
}
.service-tile:hover .service-tile__arrow,
.service-tile:focus-visible .service-tile__arrow {
    transform: translateX(5px);
}
.service-tile:focus-visible {
    outline: 3px solid rgba(17, 147, 176, 0.45);
    outline-offset: 3px;
}

@media (max-width: 1199.98px) {
    .home-services {
        padding: 56px 0 88px;
    }
    .home-services__title {
        margin-bottom: 34px;
        font-size: 44px;
    }
    .service-tile {
        height: 270px;
    }
}

@media (max-width: 991.98px) {
    .home-services {
        padding: 52px 0 72px;
    }
    .home-services__title {
        gap: 16px;
        margin-bottom: 30px;
        font-size: 38px;
    }
    .service-tile {
        height: 230px;
    }
    .service-tile__name {
        left: 24px;
        right: 58px;
        bottom: 23px;
        font-size: 24px;
    }
    .service-tile__arrow {
        right: 24px;
        bottom: 29px;
    }
}

@media (max-width: 767.98px) {
    .home-services {
        padding: 48px 0 64px;
    }
    .home-services__title {
        gap: 14px;
        margin-bottom: 26px;
        font-size: 34px;
    }
    .home-services__title img {
        width: 12px;
        height: auto;
    }
    .service-tile {
        height: clamp(220px, 62vw, 286px);
    }
    .service-tile__name {
        left: 22px;
        right: 56px;
        bottom: 22px;
        font-size: 25px;
    }
    .service-tile__arrow {
        right: 22px;
        bottom: 28px;
    }
}

@media (max-width: 575.98px) {
    .home-services {
        padding: 42px 0 54px;
    }
    .home-services__title {
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 22px;
        font-size: clamp(29px, 9vw, 34px);
        line-height: 1.12;
    }
    .home-services__title img {
        margin-top: 7px;
    }
    .service-tile {
        height: clamp(210px, 62vw, 250px);
        border-radius: 10px;
    }
    .service-tile__name {
        left: 18px;
        right: 48px;
        bottom: 18px;
        font-size: 22px;
    }
    .service-tile__arrow {
        right: 18px;
        bottom: 23px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-tile,
    .service-tile__image,
    .service-tile__arrow {
        transition: none;
    }
}

/* Secondary page — Page, Page-First and Page-Content */
.page-layout {
    background: #fff;
}
.page-hero {
    position: relative;
    isolation: isolate;
    height: 316px;
    overflow: hidden;
    background: linear-gradient(105deg, #0eb294 0%, #0a9e9c 46%, #118eaf 100%);
    color: #fff;
}
.page-hero__pattern {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: url("../img/hero-bg.jpg") repeat-x 0 0 ;
}
.page-hero__inner {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    padding-top: 68px;
    text-align: center;
}
.page-hero h1 {
    max-width: 1120px;
    margin: 0 0 20px;
    color: #fff;
    font-family: Roboto, Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.02em;
    text-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}
.page-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.page-breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.4;
}
.page-breadcrumbs li + li::before {
    content: ">";
    color: rgba(255, 255, 255, 0.38);
    font-size: 12px;
}
.page-breadcrumbs a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}
.page-breadcrumbs a:hover,
.page-breadcrumbs a:focus {
    color: #fff;
}
.page-content-section {
    position: relative;
    display: flow-root;
    padding: 0 0 100px;
    background: linear-gradient(180deg, #f3f8f8 0%, #fff 65%);
}
.page-content-section__container {
    position: relative;
    z-index: 2;
}
.page-content-card {
    min-height: 1440px;
    margin-top: -100px;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 22px 58px rgba(13, 34, 43, 0.055);
}
.page-content-card__inner {
    width: 100%;
    padding: 64px;
}
.page-content-card p,
.page-content-card li {
    color: #4d4d4d;
    font-size: 16px;
    font-weight: 400;
}
.page-content-card p {
    margin: 0 0 20px;
    line-height: 2;
}
.page-content-card ul {
    display: grid;
    gap: 10px;
    margin: 4px 0 28px;
    padding: 0;
    list-style: none;
}
.page-content-card li {
    position: relative;
    padding-left: 22px;
    line-height: 1.625;
}
.page-content-card li::before {
    content: "›";
    position: absolute;
    left: 2px;
    top: 0;
    color: var(--teal);
    font-family: Arial, sans-serif;
    font-size: 22px;
    line-height: 1.15;
}
.page-content-card h2 {
    margin: 28px 0 18px;
    color: #333;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.18;
}

@media (max-width: 1199.98px) {
    .page-hero {
        height: 300px;
    }
    .page-hero__inner {
        padding-top: 64px;
    }
    .page-hero h1 {
        font-size: 44px;
    }
    .page-content-card {
        min-height: 0;
        margin-top: -88px;
    }
    .page-content-card__inner {
        padding: 58px;
    }
}

@media (max-width: 991.98px) {
    .page-hero {
        height: 270px;
    }
    .page-hero__inner {
        justify-content: flex-start;
        padding-top: 54px;
    }
    .page-hero h1 {
        max-width: 760px;
        margin-bottom: 18px;
        font-size: clamp(38px, 6vw, 46px);
    }
    .page-content-section {
        padding-bottom: 76px;
    }
    .page-content-card {
        margin-top: -72px;
        border-radius: 14px;
    }
    .page-content-card__inner {
        padding: 48px 44px 54px;
    }
    .page-content-card p {
        line-height: 1.8;
    }
}

@media (max-width: 767.98px) {
    .page-hero {
        height: 250px;
    }
    .page-hero__inner {
        padding-top: 44px;
    }
    .page-hero h1 {
        max-width: 620px;
        margin-bottom: 16px;
        font-size: clamp(34px, 8vw, 42px);
        line-height: 1.1;
    }
    .page-breadcrumbs ol,
    .page-breadcrumbs li {
        gap: 7px;
    }
    .page-breadcrumbs li {
        font-size: 13px;
    }
    .page-content-section {
        padding-bottom: 62px;
    }
    .page-content-card {
        margin-top: -58px;
        border-radius: 12px;
    }
    .page-content-card__inner {
        padding: 38px 28px 44px;
    }
    .page-content-card p,
    .page-content-card li {
        font-size: 15px;
    }
    .page-content-card p {
        margin-bottom: 20px;
        line-height: 1.75;
    }
    .page-content-card ul {
        margin-bottom: 22px;
    }
    .page-content-card h2 {
        margin: 30px 0 17px;
        font-size: 26px;
    }
}

@media (max-width: 575.98px) {
    .page-hero {
        height: 224px;
    }
    .page-hero__inner {
        padding-top: 34px;
    }
    .page-hero h1 {
        max-width: 100%;
        font-size: clamp(30px, 9vw, 38px);
    }
    .page-breadcrumbs li {
        font-size: 12px;
    }
    .page-content-section {
        padding-bottom: 50px;
    }
    .page-content-card {
        margin-top: -46px;
        border-radius: 10px;
    }
    .page-content-card__inner {
        padding: 30px 20px 36px;
    }
    .page-content-card p,
    .page-content-card li {
        font-size: 15px;
    }
    .page-content-card p {
        line-height: 1.7;
    }
    .page-content-card li {
        padding-left: 20px;
        line-height: 1.55;
    }
    .page-content-card h2 {
        font-size: 24px;
    }
}

/* WordPress theme integration */
body.admin-bar .main-nav.is-sticky {
    top: 32px;
}
.mega-menu .mega-menu__title {
    display: block;
    margin: 0 0 12px;
    padding: 0;
    color: var(--ink);
    font: 700 18px "Roboto Condensed", sans-serif;
}
.mega-menu .mega-menu__title::before {
    display: none;
}
.mobile-accordion .accordion-body h6 a {
    padding: 0;
    color: var(--ink);
    font: inherit;
}
.mobile-accordion .accordion-body h6 a::before {
    display: none;
}

/* Yoast SEO breadcrumb output */
.page-breadcrumbs__yoast {
    color: rgba(255, 255, 255, 0.42);
    font-size: 14px;
    line-height: 1.5;
}
.page-breadcrumbs__yoast a,
.page-breadcrumbs__yoast .breadcrumb_last {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}
.page-breadcrumbs__yoast a:hover,
.page-breadcrumbs__yoast a:focus {
    color: #fff;
}

/* Native WordPress content */
.page-content-card__inner > :first-child {
    margin-top: 0;
}
.page-content-card__inner > :last-child {
    margin-bottom: 0;
}
.page-content-card__inner img,
.page-content-card__inner video,
.page-content-card__inner iframe {
    max-width: 100%;
}
.page-content-card__inner img {
    height: auto;
}
.page-content-card__inner figure {
    max-width: 100%;
    margin: 28px 0;
}
.page-content-card__inner figcaption {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}
.page-content-card__inner h3,
.page-content-card__inner h4 {
    margin: 26px 0 14px;
    color: #333;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
}
.page-content-card__inner h3 {
    font-size: 24px;
}
.page-content-card__inner h4 {
    font-size: 20px;
}
.page-content-card__inner ol {
    margin: 4px 0 28px;
    padding-left: 24px;
}
.page-content-card__inner ol li {
    padding-left: 4px;
}
.page-content-card__inner ol li::before {
    display: none;
}
.page-content-card__inner a:not(.btn):not(.post-list__more) {
    color: var(--blue);
    text-underline-offset: 3px;
}
.page-content-card__inner blockquote {
    margin: 28px 0;
    padding: 22px 26px;
    border-left: 4px solid var(--teal);
    background: #f4f9f9;
}
.page-content-card__inner table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
}
.page-content-card__inner th,
.page-content-card__inner td {
    padding: 12px 14px;
    border: 1px solid var(--line);
    text-align: left;
}
.entry-featured-image img {
    display: block;
    width: 100%;
    border-radius: 10px;
}
.page-links {
    margin-top: 28px;
}
.alignleft {
    float: left;
    margin: 0 28px 20px 0;
}
.alignright {
    float: right;
    margin: 0 0 20px 28px;
}
.aligncenter {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

/* Blog, archive, search and 404 fallbacks */
body.blog .page-content-card,
body.archive .page-content-card,
body.search .page-content-card,
body.error404 .page-content-card {
    min-height: 0;
}
.post-list__item {
    padding: 0 0 34px;
    border-bottom: 1px solid var(--line);
}
.post-list__item + .post-list__item {
    padding-top: 34px;
}
.post-list__title {
    margin: 0 0 8px !important;
}
.post-list__title a {
    color: var(--ink) !important;
    text-decoration: none;
}
.post-list__meta {
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 13px;
}
.post-list__excerpt p {
    margin-bottom: 12px;
}
.post-list__more {
    display: inline-flex;
    color: var(--blue);
    font-weight: 500;
    text-decoration: none;
}
.navigation.pagination {
    margin-top: 34px;
}
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.page-numbers {
    display: grid;
    min-width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: var(--ink);
    text-decoration: none;
}
.page-numbers.current,
.page-numbers:hover {
    border-color: transparent;
    background: linear-gradient(79deg, var(--teal), var(--blue));
    color: #fff;
}
.error-page .btn-calc {
    margin-top: 12px;
}

/* Callback Bootstrap modal */
.callback-modal .modal-dialog {
    max-width: 560px;
}
.callback-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 28px 80px rgba(13, 34, 43, 0.24);
}
.callback-modal .modal-header {
    align-items: flex-start;
    padding: 28px 30px 18px;
    border-bottom: 1px solid var(--line);
}
.callback-modal .modal-title {
    max-width: 430px;
    margin: 0;
    color: var(--ink);
    font-family: Roboto, Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
}
.callback-modal .modal-body {
    padding: 26px 30px 30px;
}
.callback-form .form-label {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
}
.callback-form .form-control {
    min-height: 50px;
    padding: 12px 14px;
    border-color: rgba(97, 130, 137, 0.3);
    border-radius: 8px;
    color: var(--ink);
    font-size: 16px;
}
.callback-form .form-control:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 0.2rem rgba(16, 171, 154, 0.13);
}
.callback-form__submit {
    width: 100%;
    min-height: 48px;
    margin-top: 4px;
}
.callback-form__privacy {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}
.callback-form__privacy a {
    color: var(--blue);
}
.callback-form__honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
.callback-modal .alert {
    margin-bottom: 20px;
    font-size: 14px;
}

@media (max-width: 782px) {
    body.admin-bar .main-nav.is-sticky {
        top: 46px;
    }
}
@media (max-width: 767.98px) {
    .page-breadcrumbs__yoast {
        font-size: 13px;
    }
    .callback-modal .modal-dialog {
        margin: 16px;
    }
    .callback-modal .modal-header {
        padding: 24px 22px 16px;
    }
    .callback-modal .modal-title {
        font-size: 26px;
    }
    .callback-modal .modal-body {
        padding: 22px;
    }
    .alignleft,
    .alignright {
        float: none;
        margin: 24px auto;
    }
}
@media (max-width: 575.98px) {
    .page-breadcrumbs__yoast {
        font-size: 12px;
    }
    .callback-modal .modal-dialog {
        margin: 10px;
    }
    .callback-modal .modal-content {
        border-radius: 12px;
    }
    .callback-modal .modal-header {
        padding: 22px 18px 15px;
    }
    .callback-modal .modal-title {
        padding-right: 8px;
        font-size: 23px;
    }
    .callback-modal .modal-body {
        padding: 20px 18px 22px;
    }
}
