@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600&display=swap");
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    background: var(--bg);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

img, svg, video {
    display: block;
    max-width: 100%;
}

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

button {
    color: inherit;
}

::selection {
    background: rgba(15, 98, 254, 0.16);
    color: #161616;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-family: var(--font-main);
    color: #fff;
    font-weight: 300;
    letter-spacing: -0.035em;
}

p {
    margin-top: 0;
}

:root {
    --bg: #ffffff;
    --bg2: #f4f7fb;
    --surface: #ffffff;
    --surface-soft: #f4f7fb;
    --surface-muted: #edf2f7;
    --card: #ffffff;
    --line: rgba(22, 22, 22, 0.11);
    --border: rgba(22, 22, 22, 0.11);
    --border-strong: rgba(22, 22, 22, 0.18);
    --text: #161616;
    --text-main: #161616;
    --muted: #525252;
    --text-muted: #525252;
    --text-soft: #6f6f6f;
    --darkText: #161616;
    --white: #ffffff;
    --blue: #0f62fe;
    --blue-dark: #0043ce;
    --blue-soft: #edf5ff;
    --cyan: #78a9ff;
    --header-bg: rgba(255, 255, 255, 0.96);
    --header-text: #161616;
    --header-muted: #525252;
    --header-line: rgba(22, 22, 22, 0.10);
    --ibm-blue: #0f62fe;
    --ibm-blue-dark: #0043ce;
    --soft-blue: #edf5ff;
    --font-primary: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
    --font-main: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
    --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.08);
    --container: min(1560px, calc(100% - 96px));
    --surface: #ffffff;
    --surface-soft: #f4f7fb;
    --surface-muted: #edf2f7;
    --text-main: #161616;
    --text-muted: #525252;
    --text-soft: #6f6f6f;
    --border: rgba(22, 22, 22, 0.11);
    --border-strong: rgba(22, 22, 22, 0.18);
    --blue: #0f62fe;
    --blue-dark: #0043ce;
    --blue-soft: #edf5ff;
    --font-main: "IBM Plex Sans", "Inter", "Segoe UI", Arial, sans-serif;
}

.dashboard {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 1px;
    background:
        linear-gradient(
            135deg,
            rgba(237, 245, 255, 0.98),
            rgba(255, 255, 255, 0.98)
        );
}

.dashboard::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(22, 22, 22, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 22, 22, 0.035) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}

.bar {
    position: relative;
    z-index: 2;
    height: 8px;
    margin: 18px 0;
    background: rgba(22, 22, 22, 0.10);
    border-radius: 0;
}

.bar::after {
    content: "";
    display: block;
    width: 42%;
    height: 100%;
    background: rgba(15, 98, 254, 0.65);
}

.bar:nth-child(2) {
    width: 70%;
}

.bar:nth-child(3) {
    width: 88%;
}

.bar:nth-child(4) {
    width: 55%;
}

.orb {
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(15, 98, 254, 0.20) 0%,
        rgba(15, 98, 254, 0.08) 42%,
        transparent 70%
    );
    filter: blur(8px);
    opacity: 0.75;
    pointer-events: none;
}

.section {
    padding: clamp(72px, 8vw, 112px) 6%;
}

.section.light {
    background: var(--surface-soft);
    color: var(--text-main);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.section-head .eyebrow {
    margin-bottom: 16px;
    color: var(--blue);
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-head h2 {
    margin: 0;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.section-head p {
    max-width: 650px;
    margin-top: 22px;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.65;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s ease;
}

.card:hover::before {
    width: 100%;
}

.light .card {
    background: var(--surface);
    color: var(--text-main);
}

.card h3 {
    margin: 14px 0 12px;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.015em;
}

.card p {
    margin: 0;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
}

.light .card p {
    color: var(--text-muted);
}

.card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--blue);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

.card a:hover {
    color: var(--blue-dark);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.stat {
    min-height: 180px;
    padding: 30px;
    background: var(--surface);
    border: 0;
    border-radius: 0;
}

.stat b {
    display: block;
    color: var(--blue);
    font-family: var(--font-main);
    font-size: clamp(42px, 4vw, 62px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.04em;
}

.stat span,
.stat p {
    display: block;
    margin-top: 14px;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.45;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 160px 6% 88px;
    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #ffffff 60%,
            #edf5ff 100%
        );
    color: var(--text-main);
    border-bottom: 1px solid var(--border);
}

.page-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 38%;
    height: 100%;
    background-image:
        linear-gradient(rgba(22, 22, 22, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 22, 22, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
}

.page-hero h1 {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0;
    font-family: var(--font-main);
    font-size: clamp(52px, 7vw, 92px);
    font-weight: 300;
    line-height: 0.96;
    letter-spacing: -0.045em;
}

.page-hero p {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin-top: 24px;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
}

.form {
    display: grid;
    gap: 18px;
}

.form label {
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 400;
}

.input,
textarea,
select {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--border-strong);
    border-radius: 1px;
    background: var(--surface);
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.input::placeholder,
textarea::placeholder {
    color: #8d8d8d;
}

.input:focus,
textarea:focus,
select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(15, 98, 254, 0.12);
}

.light .input,
.light textarea,
.light select {
    background: var(--surface);
    color: var(--text-main);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.notice {
    position: relative;
    margin-bottom: 18px;
    padding: 17px 18px 17px 22px;
    border: 1px solid rgba(15, 98, 254, 0.20);
    border-left: 3px solid var(--blue);
    border-radius: 0;
    background: var(--blue-soft);
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.55;
}

@media (max-width: 700px) {
    .section {
        padding: 64px 20px;
    }
    .section-head {
        margin-bottom: 34px;
    }
    .section-head h2 {
        font-size: clamp(38px, 11vw, 50px);
    }
    .grid,
    .grid-2,
    .stats {
        grid-template-columns: 1fr;
    }
    .card {
        min-height: auto;
        padding: 28px 24px;
    }
    .card h3 {
        font-size: 25px;
    }
    .dashboard {
        min-height: 300px;
        padding: 22px;
    }
    .stat {
        min-height: 140px;
        padding: 26px 24px;
    }
    .page-hero {
        padding: 112px 20px 58px;
    }
    .page-hero h1 {
        font-size: clamp(46px, 14vw, 68px);
    }
    .page-hero p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-card {
        padding: 3px;
    }
    .dashboard {
        min-height: 260px;
    }
    .bar {
        height: 6px;
        margin: 14px 0;
    }
    .section-head p,
    .card p {
        font-size: 16px;
    }
}

.admin-wrap {
    display: flex;
    min-height: 100vh;
}

.sidebar a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.admin-main {
    width: calc(100% - 260px);
    margin-left: 260px;
    padding: 28px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5ebf5;
}

.table th {
    background: #f7f9fd;
}

.login-box input {
    background: #f5f8ff;
    color: #13233a;
}

.danger {
    background: #e53e3e !important;
}

.small {
    font-size: 13px;
    color: #718096;
}

.brand {
    min-width: 190px;
    text-decoration: none;
}

.nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 38px);
}

.nav a,
.nav-item > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 24px 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: rgba(1, 0, 12, 0.952);
    text-decoration: none;
    letter-spacing: 0.07em;
    transition:
        color 0.35s ease,
        transform 0.35s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.nav a:hover,
.nav-item:hover > a {
    color: #0057ff;
    transform: translateY(-1px);
}

.nav-item {
    position: static;
}

.nav a::before,
.nav-item > a::before {
    position: absolute;
    left: 50%;
    bottom: 19px;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #0057ff,
        transparent
    );
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition:
        transform 0.38s cubic-bezier(0.4, 0.2, 0.2, 1),
        opacity 0.25s ease;
}

.nav a:hover::before,
.nav-item:hover > a::before {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

.about-mega {
    grid-template-columns: 1.2fr 1.2fr 1.2fr 1.2fr 0.9fr;
}

.about-mega .mega-card {
    display: flex;
    flex-direction: column;
}

.about-mega .mega-card p {
    flex: 1;
}

.about-mega .mega-card a {
    margin-top: auto;
}

.about-mega .mega-card h3 {
    margin-bottom: 16px;
}

.about-mega .mega-side {
    background:
        linear-gradient(
            180deg,
            rgba(0,87,255,.03),
            rgba(0,87,255,.00)
        );
}

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

.mega-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #0057ff;
    display: inline-flex;
    margin-bottom: 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #0057ff;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #0057ff;
}

.has-mega > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 6px;
    height: 6px;
    background: #0057ff;
    border-radius: 50%;
    box-shadow:
        0 0 0 6px rgba(0, 87, 255, 0.08),
        0 0 18px rgba(0, 87, 255, 0.65);
    transform: translateX(-50%) scale(0);
    opacity: 0;
    transition:
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.25s ease;
}

.has-mega:hover > a::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.nav a:focus-visible,
.nav-item > a:focus-visible {
    outline: none;
    color: #0057ff;
}

.nav a:focus-visible::before,
.nav-item > a:focus-visible::before {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
}

.mega-menu::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,87,255,0.75), rgba(86,215,255,0.65), transparent);
}

.mega-card,
.mega-tile,
.mega-side {
    position: relative;
    padding: 26px 26px;
    border-right: 1px solid rgba(213, 211, 217, 0.75);
    overflow: hidden;
}

.mega-side {
    border-right: 0;
}

.mega-card::after,
.mega-tile::after,
.mega-side::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(198,222,255,0.55), transparent 40%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.mega-card:hover::after,
.mega-tile:hover::after,
.mega-side:hover::after {
    opacity: 1;
}

.mega-card h3,
.mega-tile h3 {
    margin: 0 0 24px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: #040507;
}

.mega-card h3::after,
.mega-tile h3::after {
    content: "";
    display: block;
    width: 44px;
    height: 1px;
    margin-top: 10px;
    background: #0057ff;
    border-radius: 1px;
}

.mega-card a,
.mega-side a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -0.025em;
    color: #34324d;
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 6, 116, 0.443);
    transition: color 0.28s ease, padding-left 0.28s ease;
    z-index: 1;
}

.mega-card a::before,
.mega-side a::before {
    content: "";
    width: 5px;
    height: 1px;
    background: #ffffff;
    border-radius: 1px;
    transition: width 0.28s ease;
}

.mega-card a::after,
.mega-side a::after {
    content: "➝";
    font-size: 14px;
    font-weight: 400;
    opacity: 0;
    transform: translate(-8px, 8px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.mega-card a:hover,
.mega-side a:hover {
    color: #0057ff;
    padding-left: 4px;
}

.mega-card a:hover::before,
.mega-side a:hover::before {
    width: 18px;
}

.mega-card a:hover::after,
.mega-side a:hover::after {
    opacity: 1;
    transform: translate(0, 0);
}

.mega-tile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mega-tile span {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.9), transparent 35%),
                linear-gradient(135deg, #dce8ff, #f4f8ff);
    color: #0057ff;
    font-size: 28px;
    border-radius: 22px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 14px 30px rgba(0,87,255,0.12);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.mega-tile:hover span {
    transform: translateY(-4px) scale(1.02);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 20px 42px rgba(0,87,255,0.18);
}

.image-card {
    display: flex;
    flex-direction: column;
}

.mini-visual {
    height: 160px;
    margin-top: auto;
    border-radius: 0;
    overflow: hidden;
    background: radial-gradient(circle at 28% 48%, rgba(0,87,255,0.26) 0 28px, transparent 29px),
                radial-gradient(circle at 60% 34%, rgba(0,87,255,0.22) 0 46px, transparent 47px),
                radial-gradient(circle at 72% 60%, rgba(0,87,255,0.18) 0 24px, transparent 25px),
                linear-gradient(135deg, #f6f7fb, #edf1f8);
}

.mini-visual.laptop {
    border: 1px solid #e9edf5;
    background: linear-gradient(#9ea3b4, #9ea3b4) center 74% / 68% 4px no-repeat,
                linear-gradient(#ffffff, #ffffff) center 48% / 68% 58% no-repeat,
                linear-gradient(135deg, #f6f7fb, #edf1f8);
}

@media (max-width: 991px) {
    .section {
        padding: 76px 30px;
    }
    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .dashboard {
        min-height: 360px;
    }
    .page-hero {
        padding: 135px 30px 72px;
    }
    .mega-menu {
        position: static;
        width: 100%;
        display: none;
        grid-template-columns: 1fr;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
    }
    .has-mega:hover .mega-menu {
        display: grid;
        transform: none;
    }
    .mega-card,
    .mega-tile,
    .mega-side {
        padding: 18px 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(213, 211, 217, 0.65);
    }
}

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

.lang {
    font-size: 16px;
    font-weight: 600;
    color: #1e1d28;
    text-decoration: none;
}

.contact-btn::after {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.contact-btn:hover::after {
    transform: translate(3px, -2px);
}

.search-btn:hover {
    background: #0057ff;
    color: #ffffff;
}

.menu-btn {
    display: none;
    width: 44px;
    height: 40px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    height: 2px;
    margin: 8px 0;
    background: #1e1d28;
    transition: 0.3s ease;
}

.mobile-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(430px, 100%);
    height: 100vh;
    padding: 22px 24px 34px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-left: 1px solid rgba(18,24,38,.08);
    box-shadow: -28px 0 80px rgba(15,25,55,.14);
    transform: translateX(105%);
    opacity: 0;
    visibility: hidden;
    transition: .42s cubic-bezier(.22,1,.36,1);
    z-index: 10000;
    overflow-y: auto;
}

.mobile-drawer.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 22px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(18,24,38,.08);
}

.drawer-head strong {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.06em;
    color: #06080f;
}

.drawer-head button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(18,24,38,.1);
    border-radius: 50%;
    background: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.mobile-drawer > a,
.drawer-toggle {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-bottom: 1px solid rgba(18,24,38,.07);
    background: transparent;
    color: #151823;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -.02em;
    text-decoration: none;
    cursor: pointer;
}

.drawer-toggle span {
    font-size: 20px;
    color: #0057ff;
    transition: transform .3s ease;
}

.drawer-toggle.active span {
    transform: rotate(45deg);
}

.drawer-submenu {
    display: none;
    padding: 10px 0 14px 14px;
    border-bottom: 1px solid rgba(18,24,38,.07);
}

.drawer-submenu.open {
    display: block;
}

.drawer-submenu a {
    display: block;
    padding: 9px 0;
    font-size: 13px;
    color: #50586a;
    text-decoration: none;
}

.drawer-contact {
    margin-top: 18px;
    min-height: 50px !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 999px;
    background: #11131c !important;
    color: #fff !important;
}

.footer-mdhp::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(15, 25, 55, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 25, 55, .035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 78%);
}

.footer-mdhp::after {
    content: "";
    position: absolute;
    inset: 0 6% auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0057ff, #56d7ff, transparent);
}

.footer-wrap {
    position: relative;
    width: min(1540px, calc(100% - 96px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 255px 1fr;
    gap: clamp(46px, 5vw, 86px);
}

.footer-office h5,
.footer-company-id strong,
.footer-col h6 {
    margin: 0 0 11px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #171923;
}

.footer-office p,
.footer-office a,
.footer-company-id span {
    display: block;
    max-width: 230px;
    margin: 0 0 9px;
    font-size: 12.5px;
    line-height: 1.7;
    color: #4b5263;
}

.footer-company-id {
    margin-top: 38px;
}

.footer-mdhp a {
    color: inherit;
    text-decoration: none;
}

.footer-menu {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: clamp(38px, 4.8vw, 74px);
}

.footer-subgrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 44px;
}

.footer-col a,
.footer-office a,
.footer-policy a,
.footer-lang a {
    position: relative;
    display: table;
    width: fit-content;
    margin: 0 0 10px;
    padding-bottom: 2px;
    font-size: 12.8px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -.01em;
    color: #4d5362;
    transition:
        color .32s ease,
        transform .32s cubic-bezier(.22,1,.36,1);
}

.footer-col a::before,
.footer-office a::before,
.footer-policy a::before,
.footer-lang a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #0057ff, #56d7ff);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s cubic-bezier(.22,1,.36,1);
}

.footer-col a::after,
.footer-office a::after,
.footer-policy a::after,
.footer-lang a::after {
    content: "";
    position: absolute;
    left: calc(100% + 2px);
    top: 50%;
    font-size: 10px;
    opacity: 0;
    transform: translate(-5px, 2px);
    transition: .32s ease;
}

.footer-col a:hover,
.footer-office a:hover,
.footer-policy a:hover,
.footer-lang a:hover {
    color: #0057ff;
    transform: translateX(2px);
}

.footer-col a:hover::before,
.footer-office a:hover::before,
.footer-policy a:hover::before,
.footer-lang a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-col a:hover::after,
.footer-office a:hover::after,
.footer-policy a:hover::after,
.footer-lang a:hover::after {
    opacity: 1;
    transform: translate(0, -50%);
}

.footer-bottom {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 255px 1fr auto auto;
    align-items: center;
    gap: 44px;
    margin-top: 78px;
    padding-top: 26px;
    border-top: 1px solid rgba(20, 28, 44, .08);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a:hover {
    background: #0057ff;
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0,87,255,.24);
}

.footer-policy,
.footer-lang {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-policy a,
.footer-lang a,
.footer-bottom p {
    margin: 0;
    font-size: 11.8px;
    color: #4b5263;
}

.footer-lang a.active {
    color: #0057ff;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .footer-wrap {
        width: min(100% - 56px, 1080px);
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .footer-menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px;
    }
    .footer-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
        margin-top: 54px;
    }
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #0057ff;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10,20,40,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,20,40,.045) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 82%);
}

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

.hero-copy p {
    max-width: 650px;
    margin: 28px 0 0;
    font-size: 18px;
    line-height: 1.75;
    color: #4d5362;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 42px;
}

.premium-btn:hover {
    background: #0057ff;
    transform: translateY(-3px);
    box-shadow: 0 24px 55px rgba(0,87,255,.28);
}

.premium-link {
    position: relative;
    color: #11131c;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.premium-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(.35);
    transform-origin: left;
    transition: .35s ease;
}

.premium-link:hover::after {
    transform: scaleX(1);
}

.hero-intelligence {
    display: flex;
    justify-content: flex-end;
}

.panel-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #5a6273;
}

.panel-top b {
    font-size: 34px;
    font-weight: 300;
    letter-spacing: -0.06em;
    color: #0057ff;
}

.signal-map {
    position: relative;
    height: 285px;
    margin: 42px 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(0,87,255,.18), transparent 31%),
        radial-gradient(circle at 30% 38%, rgba(86,215,255,.20), transparent 20%),
        linear-gradient(135deg, #f8faff, #edf2fb);
    border: 1px solid rgba(20,28,44,.07);
}

.signal-map i {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #0057ff;
    border-radius: 50%;
    box-shadow: 0 0 0 12px rgba(0,87,255,.08);
}

.signal-map i:nth-child(1) {
    left: 18%;
    top: 28%;
}

.signal-map i:nth-child(2) {
    left: 58%;
    top: 22%;
}

.signal-map i:nth-child(3) {
    left: 74%;
    top: 62%;
}

.signal-map i:nth-child(4) {
    left: 34%;
    top: 70%;
}

.metric-lines span {
    display: block;
    height: 8px;
    margin-bottom: 14px;
    background: linear-gradient(90deg, #0057ff, rgba(0,87,255,.08));
}

.metric-lines span:nth-child(2) {
    width: 76%;
}

.metric-lines span:nth-child(3) {
    width: 58%;
}

.intel-bottom {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    margin-top: 26px;
    background: rgba(20,28,44,.08);
}

.intel-bottom div {
    padding: 18px;
    background: rgba(255,255,255,.78);
}

.intel-bottom b {
    display: block;
    font-size: 18px;
    color: #11131c;
}

.intel-bottom span {
    font-size: 11px;
    color: #687083;
}

.trust-strip {
    border-top: 1px solid rgba(18,24,38,.08);
    border-bottom: 1px solid rgba(18,24,38,.08);
    background: #fff;
}

.trust-inner {
    min-height: 92px;
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    gap: 40px;
}

.trust-inner > span {
    font-size: 12px;
    color: #687083;
}

.trust-inner div {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 1px;
    background: rgba(18,24,38,.08);
}

.trust-inner b {
    padding: 18px 16px;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    color: #30313a;
    text-align: center;
}

.home-section {
    padding: 118px 0;
}

.section-intro {
    max-width: 860px;
    margin-bottom: 70px;
}

.section-intro h2,
.transform-grid h2,
.case-feature h2,
.why-grid h2,
.final-cta h2 {
    margin: 0;
    font-size: clamp(38px, 4.2vw, 64px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.065em;
    color: #090b12;
}

.section-intro p {
    max-width: 620px;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.75;
    color: #5d6474;
}

.capability-section {
    background: #fbfcff;
}

.capability-list {
    border-top: 1px solid rgba(18,24,38,.09);
}

.capability-item {
    display: grid;
    grid-template-columns: 110px 340px 1fr;
    gap: 34px;
    align-items: center;
    padding: 34px 0;
    border-bottom: 1px solid rgba(18,24,38,.09);
    text-decoration: none;
    color: inherit;
    transition: .35s ease;
}

.capability-item:hover {
    padding-left: 18px;
    background: linear-gradient(90deg, rgba(0,87,255,.035), transparent);
}

.capability-item span {
    font-size: 12px;
    font-weight: 800;
    color: #0057ff;
}

.capability-item h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -0.04em;
    color: #11131c;
}

.capability-item p {
    margin: 0;
    max-width: 620px;
    font-size: 14px;
    line-height: 1.7;
    color: #5d6474;
}

.transformation-section {
    background:
        linear-gradient(135deg, #10131d, #071b3e);
    color: #fff;
}

.transformation-section .eyebrow {
    color: #56d7ff;
}

.transform-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 90px;
}

.transform-grid h2 {
    color: #fff;
}

.large-text {
    margin: 0 0 34px;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 300;
    color: rgba(255,255,255,.82);
}

.clean-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255,255,255,.14);
}

.clean-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.82);
}

.numbers-section {
    padding: 0;
    background: #fff;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-left: 1px solid rgba(18,24,38,.08);
}

.number-item {
    min-height: 190px;
    padding: 42px 34px;
    border-right: 1px solid rgba(18,24,38,.08);
}

.number-item b {
    display: block;
    font-size: clamp(42px, 4vw, 68px);
    font-weight: 300;
    letter-spacing: -0.07em;
    color: #0057ff;
}

.number-item span {
    font-size: 13px;
    color: #4d5362;
}

.case-section {
    background: #f3f6fb;
}

.case-feature {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    padding: 72px;
    background:
        radial-gradient(circle at 90% 20%, rgba(86,215,255,.16), transparent 30%),
        linear-gradient(135deg, #071224, #0b3478);
    color: #fff;
}

.case-feature h2 {
    color: #fff;
}

.case-feature p {
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,.78);
}

.light-link {
    color: #fff;
}

.case-list {
    margin-top: 34px;
    border-top: 1px solid rgba(18,24,38,.1);
}

.case-row {
    display: grid;
    grid-template-columns: 180px 1fr 1.1fr;
    gap: 34px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(18,24,38,.1);
    color: inherit;
    text-decoration: none;
}

.case-row span {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #0057ff;
}

.case-row h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: -0.04em;
}

.case-row p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #5d6474;
}

.why-section {
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}

.why-points {
    border-top: 1px solid rgba(18,24,38,.09);
}

.why-points div {
    display: grid;
    grid-template-columns: 80px 1fr;
    padding: 24px 0;
    border-bottom: 1px solid rgba(18,24,38,.09);
}

.why-points strong {
    color: #0057ff;
    font-size: 12px;
}

.why-points span {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: -0.04em;
}

.tech-section {
    background: #fbfcff;
}

.section-intro.compact {
    margin-bottom: 42px;
}

.tech-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-cloud span {
    padding: 14px 20px;
    border: 1px solid rgba(18,24,38,.1);
    border-radius: 999px;
    background: #fff;
    font-size: 13px;
    color: #30313a;
}

.final-cta {
    padding: 130px 0;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(86,215,255,.22), transparent 34%),
        linear-gradient(135deg, #071224, #11131c);
    color: #fff;
}

.final-cta .eyebrow {
    color: #56d7ff;
}

.final-cta h2 {
    max-width: 860px;
    margin: 0 auto;
    color: #fff;
}

.final-cta p {
    margin: 24px auto 36px;
    max-width: 560px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,.72);
}

.white-btn {
    background: #fff;
    color: #11131c;
}

.white-btn:hover {
    background: #0057ff;
    color: #fff;
}

.mdhp-hero {
    width: 100%;
    height: calc(100vh - 88px);
    min-height: 600px;
    display: grid;
    grid-template-columns: 310px 1fr;
    overflow: hidden;
    background: #f7f9fc;
}

.mdhp-rails {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-left: 54px;
    padding-right: 10px;
    background: #ffffff;
}

.mdhp-rail {
    position: relative;
    height: 100%;
    border: 0;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

.mdhp-rail::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8,16,28,.40), rgba(8,16,28,.62)),
        radial-gradient(circle at 50% 22%, rgba(255,255,255,.14), transparent 34%);
    z-index: 1;
    transition: .35s ease;
}

.mdhp-rail.is-active::before {
    background:
        linear-gradient(180deg, rgba(4,25,44,.72), rgba(2,13,24,.86)),
        radial-gradient(circle at 50% 18%, rgba(86,215,255,.16), transparent 35%);
}

.mdhp-rail span {
    position: absolute;
    top: 58px;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    transform-origin: center;
    white-space: nowrap;
    color: #fff;
    font-size: 16.5px;
    font-weight: 400;
    letter-spacing: -.01em;
    z-index: 2;
}

.mdhp-rail span::after,
.mdhp-tag::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 9px;
    border: 1px solid currentColor;
    border-radius: 50%;
}

.mdhp-rail i {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    font-style: normal;
    font-weight: 200;
    z-index: 2;
    transition: .35s cubic-bezier(.22,1,.36,1);
}

.mdhp-rail:hover i,
.mdhp-rail.is-active i {
    background: rgba(255,255,255,.14);
    transform: translateX(-50%) scale(1.05);
}

.mdhp-main {
    position: relative;
    height: 100%;
    color: #ffffff;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: opacity .25s ease;
}

.mdhp-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5,12,22,.48), rgba(5,12,22,.18) 48%, rgba(5,12,22,.36)),
        linear-gradient(180deg, rgba(5,12,22,.12), rgba(5,12,22,.42));
    z-index: 1;
    pointer-events: none;
}

.mdhp-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.075) 1px, transparent 1px);
    background-size: 86px 86px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.38), transparent 80%);
    z-index: 1;
    pointer-events: none;
}

.mdhp-tag {
    position: absolute;
    top: 44px;
    right: 44px;
    font-size: 13px;
    font-weight: 500;
    z-index: 2;
}

.mdhp-content {
    position: absolute;
    left: 112px;
    top: 108px;
    max-width: 690px;
    z-index: 2;
}

.mdhp-content h1 {
    margin: 0 0 28px;
    max-width: 720px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 4.2vw, 64px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -2.1px;
    color: #ffffff;
    text-wrap: balance;
}

.mdhp-content p {
    width: 540px;
    margin: 0 0 20px 112px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.65;
    color: rgba(255,255,255,.92);
}

.mdhp-btn {
    margin-left: 112px;
    height: 34px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,.96);
    color: #171923;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(0,0,0,.14);
    transition: .35s cubic-bezier(.22,1,.36,1);
}

.mdhp-btn:hover {
    background: #0057ff;
    color: #ffffff;
    transform: translateY(-2px);
}

.mdhp-clients {
    position: absolute;
    left: 112px;
    bottom: 46px;
    width: min(610px, calc(100% - 220px));
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.55);
    z-index: 2;
}

.mdhp-clients > span {
    display: block;
    margin-bottom: 34px;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,.96);
}

.mdhp-clients div {
    display: flex;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
}

.mdhp-clients b {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #ffffff;
}

.mdhp-arrows {
    position: absolute;
    right: 42px;
    bottom: 22px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.mdhp-arrows button {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    color: #ffffff;
    font-size: 19px;
    cursor: pointer;
    transition: .35s cubic-bezier(.22,1,.36,1);
}

.mdhp-arrows button:hover {
    background: rgba(255,255,255,.18);
    transform: translateY(-2px);
}

* {
    box-sizing:border-box
}

.mdhp-split-hero {
    position:relative;
    width:100%;
    height:520px;
    padding:10px;
    background:#f5f6f7;
    overflow:hidden;
    font-family:"Inter","Manrope",Arial,sans-serif;
}

.hero-track {
    height:100%;
    display:flex;
    gap:6px;
}

.hero-item {
    position:relative;
    height:100%;
    flex:0 0 70px;
    overflow:hidden;
    color:#fff;
    background:#111;
    transition:
    flex-basis 1.65s cubic-bezier(.16,1,.3,1),
    flex-grow 1.65s cubic-bezier(.16,1,.3,1),
    opacity .6s ease;
    will-change:flex-basis,flex-grow;
}

.hero-item.is-active,
.hero-item.is-opening {
    flex:1 1 auto;
}

.hero-bg {
    position:absolute;
    inset:0;
    transition:
    transform 1.8s cubic-bezier(.16,1,.3,1),
    filter 1.2s ease,
    opacity 1.2s ease;
    background:var(--bg) center/cover no-repeat !important;
    transform:scale(1.03);
}

.hero-item.is-active .hero-bg,
.hero-item.is-opening .hero-bg {
    transform:scale(1);
}

.hero-item:not(.is-active):not(.is-opening) .hero-bg {
    transform:scale(1.08);
    filter:blur(2px);
    opacity:.82;
}

.hero-bg:after {
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(90deg,rgba(6,14,23,.72),rgba(6,14,23,.22) 58%,rgba(6,14,23,.52)),
    linear-gradient(180deg,rgba(0,0,0,.12),rgba(0,0,0,.55));
}

.hero-item:not(.is-active):not(.is-opening) .hero-bg:after {
    background:rgba(10,12,16,.54);
}

.rail-btn {
    position:absolute;
    inset:0;
    z-index:12;
    border:0;
    background:transparent;
    color:#fff;
    cursor:pointer;
}

.hero-item.is-active .rail-btn {
    display:none;
}

.hero-item.is-opening .rail-btn {
    display:block;
    pointer-events:none;
}

.rail-btn span {
    position:absolute;
    top:58px;
    left:50%;
    transform:translateX(-50%) rotate(-90deg);
    white-space:nowrap;
    font-size:18px;
    font-weight:400;
    letter-spacing:.5px;
    transition:
    transform 1.35s cubic-bezier(.16,1,.3,1),
    top 1.35s cubic-bezier(.16,1,.3,1),
    left 1.35s cubic-bezier(.16,1,.3,1),
    opacity .75s ease;
}

.hero-item.is-opening .rail-btn span {
    top:34px;
    left:38px;
    transform:translate(0,0) rotate(0deg);
}

.rail-btn span:after {
    content:"○";
    font-size:8px;
    margin-left:8px;
}

.rail-btn i {
    position:absolute;
    left:50%;
    bottom:26px;
    transform:translateX(-50%);
    width:22px;
    height:22px;
    border:1px solid rgba(255,255,255,.8);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-style:normal;
    font-size:18px;
    font-weight:300;
    transition:opacity .45s ease;
}

.hero-item.is-opening .rail-btn i {
    opacity:0;
}

.hero-top {
    position:absolute;
    top:34px;
    right:38px;
    z-index:4;
    display:flex;
    align-items:center;
    gap:8px;
    font-size:12px;
    font-weight:300;
    opacity:0;
    letter-spacing:.9px;
    transform:translateY(-8px);
    transition:opacity 1s ease, transform 1.25s cubic-bezier(.16,1,.3,1);
}

.hero-item.is-active .hero-top {
    opacity:1;
    transform:translateY(0);
}

.hero-content {
    position:absolute;
    z-index:5;
    left:11.5%;
    top:19%;
    max-width:580px;
    opacity:0;
    transform:translateY(22px);
    transition:opacity 1s ease, transform 1.25s cubic-bezier(.16,1,.3,1);
}

.hero-item.is-active .hero-content {
    opacity:1;
    transform:translateY(0);
    transition-delay:.18s;
}

.hero-content h1 {
    margin:0;
    font-family:"jura","Times New Roman",serif;
    font-size:46px;
    line-height:2.02;
    font-weight:300;
    letter-spacing:0.2em;
}

.hero-content p {
    max-width:430px;
    margin:30px 0 0 112px;
    font-size:16px;
    line-height:1.65;
    font-weight:300;
    color:rgba(255,255,255,.88);
}

.hero-content a {
    display:inline-flex;
    margin:20px 0 0 112px;
    padding:15px 20px;
    border-radius:1px;
    background:#fff;
    color:#111;
    text-decoration:none;
    font-size:11px;
    font-weight:400;
}

.hero-services {
    position:absolute;
    z-index:5;
    left:30%;
    bottom:42px;
    width:420px;
    opacity:0;
    transform:translateY(18px);
    transition:opacity 1s ease, transform 1.25s cubic-bezier(.16,1,.3,1);
}

.hero-item.is-active .hero-services {
    opacity:1;
    transform:translateY(0);
    transition-delay:.26s;
}

.hero-services span {
    font-size:14px;
    font-weight:300;
    letter-spacing:.9px;
}

.hero-services em {
    position:relative;
    display:block;
    width:500px;
    height:1px;
    background:rgba(255,255,255,.35);
    margin:10px 0 22px;
    overflow:hidden;
}

.hero-services em:after {
    content:"";
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width: 0;
    background:#fff;
}

.hero-item.is-active .hero-services em:after {
    animation:serviceLineFill 6.5s linear forwards;
}

@keyframes serviceLineFill {
    from {
        width:0
    }
    to {
        width:100%
    }
}

.hero-services div {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px 26px;
}

.hero-services b {
    font-size:12px;
    line-height:1.25;
    font-weight:200;
}

.hero-arrows {
    position:absolute;
    right:34px;
    bottom:30px;
    z-index:6;
    display:flex;
    gap:10px;
    opacity:0;
    transition:opacity 1s ease;
}

.hero-item.is-active .hero-arrows {
    opacity:1;
}

.hero-arrows button {
    width:28px;
    height:28px;
    border:1px solid rgba(255,255,255,.75);
    border-radius:50%;
    background:transparent;
    color:#fff;
    cursor:pointer;
}

.hero-card {
    position: relative;
    overflow: hidden;
    padding: 6px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 2px;
    box-shadow:
        0 24px 70px rgba(15, 23, 42, 0.10),
        0 4px 14px rgba(15, 23, 42, 0.04);
    position:absolute;
    z-index:20;
    top:145px;
    right:8px;
    width:250px;
    min-height:82px;
    display:grid;
    grid-template-columns:100px 1fr;
    background:#fff;
    color:#111;
    box-shadow:0 18px 44px rgba(0,0,0,.18);
}

.hero-card-media {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:3px;
    padding:7px 0 7px 7px;
}

.hero-card-media img {
    width:100%;
    height:68px;
    object-fit:cover;
}

.hero-card p {
    margin:13px 13px 0;
    font-size:10px;
    line-height:1.35;
}

.hero-card a {
    display:inline-block;
    margin:13px 13px 0;
    font-size:10px;
    font-weight:700;
    color:#111;
    text-decoration:none;
}

@media(max-width:991px) {
    .mdhp-split-hero {
        height:620px;
        padding:0;
        background:#07090d;
    }
    .hero-track {
        position:relative;
        height:100%;
        display:block;
        overflow:hidden;
    }
    .hero-item,
  .hero-item.is-active,
  .hero-item.is-opening {
        position:absolute;
        inset:0;
        flex:none;
        width:100%;
        height:100%;
        opacity:0;
        visibility:hidden;
        transform:translateX(100%);
        transition:
      transform 1.05s cubic-bezier(.16,1,.3,1),
      opacity .65s ease,
      visibility .65s ease;
    }
    .hero-item.is-active {
        opacity:1;
        visibility:visible;
        transform:translateX(0);
        z-index:3;
    }
    .hero-item.is-prev {
        transform:translateX(-100%);
    }
    .rail-btn {
        display:none !important;
    }
    .hero-bg {
        filter:none !important;
        opacity:1 !important;
    }
    .hero-content {
        left:26px;
        top:110px;
        max-width:86%;
    }
    .hero-content h1 {
        font-size:36px;
        line-height:1.08;
    }
    .hero-content p,
  .hero-content a {
        margin-left:0;
    }
    .hero-card {
        top:auto;
        right:auto;
        left:26px;
        bottom:110px;
        width:245px;
    }
    .hero-services {
        left:26px;
        bottom:42px;
        width:280px;
    }
    .hero-services div {
        grid-template-columns:1fr 1fr;
    }
    .hero-arrows {
        right:24px;
        bottom:34px;
    }
}

@media(max-width:575px) {
    .mdhp-split-hero {
        height:640px;
    }
    .hero-top {
        top:24px;
        right:24px;
    }
    .hero-content {
        left:22px;
        top:95px;
    }
    .hero-content h1 {
        font-size:31px;
    }
    .hero-content p {
        font-size:11px;
        line-height:1.6;
    }
    .hero-card {
        left:22px;
        bottom:118px;
    }
}

.site-header {
    height: 92px;
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 0 38px;
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(30, 29, 40, 0.12);
    box-shadow: 0 18px 45px rgba(15, 25, 55, 0.06);
    font-family: var(--font-main);
    min-height: 78px;
    height: 78px;
    padding: 0 clamp(18px, 4vw, 56px);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(22,22,22,.02);
}

.site-header.is-scrolled {
    background: rgba(255,255,255,.985);
    box-shadow: 0 12px 38px rgba(15,23,42,.07);
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -1.4px;
    color: #0057ff;
    font-size: clamp(23px, 2vw, 29px);
    font-weight: 500;
    letter-spacing: -.045em;
    color: var(--blue);
}

.nav a, .nav-item > a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .015em;
}

.contact-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #1e1d28;
    color: #ffffff;
    letter-spacing: 0.1em;
    border-radius: 1px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 16px;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 44px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .035em;
    background: #161616;
    border-radius: 1px;
}

.contact-btn:hover {
    background: #0057ff;
    background: var(--blue);
}

.search-btn {
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: #eef2f8;
    color: #1e1d28;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s ease;
    width: 44px;
    height: 44px;
    border-radius: 1px;
    background: #f4f4f4;
    font-size: 21px;
}

.mega-menu {
    position: absolute;
    left: 50%;
    top: 72px;
    width: 90%;
    min-height: 25px;
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1.2fr 1.05fr 1.25fr;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,255,0.98));
    border-top: 1px solid rgba(30, 29, 40, 0.1);
    border-bottom: 1px solid rgba(30, 29, 40, 0.1);
    box-shadow: 0 28px 70px rgba(15, 25, 55, 0.12), inset 0 1px 0 rgba(255,255,255,0.85);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 14px) scale(0.985);
    transform-origin: top center;
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 999;
    top: 78px;
    width: min(1480px, calc(100% - 48px));
    background: rgba(255,255,255,.99);
    border: 1px solid var(--line);
    box-shadow: 0 26px 70px rgba(15,23,42,.12);
}

.mega-card, .mega-tile, .mega-side {
    padding: 28px;
}

.mega-card h3, .mega-tile h3 {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: -.03em;
}

.mega-card p {
    max-width: 310px;
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: #687083;
    color: var(--text-muted);
    font-weight: 300;
}

.mega-card a, .mega-side a {
    border-bottom-color: rgba(22,22,22,.09);
    color: #393939;
    font-weight: 300;
}

.home-shell {
    width: min(1560px, calc(100% - 110px));
    margin: 0 auto;
    width: var(--container);
}

.home-hero {
    position: relative;
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 20%, rgba(0,87,255,.11), transparent 34%),
        radial-gradient(circle at 92% 76%, rgba(86,215,255,.12), transparent 36%),
        linear-gradient(135deg, #fbfcff 0%, #eef3fb 48%, #e3e8f1 100%);
    min-height: calc(100svh - 78px);
    background:
        radial-gradient(circle at 86% 22%, rgba(15,98,254,.09), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f7f9fc 56%, #edf3fb 100%);
}

.hero-copy h1 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(54px, 6.2vw, 92px);
    font-weight: 300;
    line-height: .94;
    letter-spacing: -0.075em;
    color: #080a12;
    font-weight: 300;
    letter-spacing: -.065em;
    text-wrap: balance;
}

.hero-copy p, .section-intro p, .capability-item p {
    color: var(--text-muted);
    font-weight: 300;
}

.premium-btn {
    height: 52px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #11131c;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(17,19,28,.18);
    transition: .35s cubic-bezier(.22,1,.36,1);
    border-radius: 1px;
    box-shadow: none;
    font-weight: 400;
}

.intel-panel {
    position: relative;
    width: min(620px, 100%);
    min-height: 520px;
    padding: 32px;
    background: rgba(255,255,255,.62);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255,255,255,.75);
    box-shadow:
        0 42px 100px rgba(15,25,55,.16),
        inset 0 1px 0 rgba(255,255,255,.95);
    overflow: hidden;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(22,22,22,.10);
    box-shadow: 0 30px 80px rgba(15,23,42,.10);
}

.section, .home-section {
    padding-top: clamp(76px, 8vw, 118px);
    padding-bottom: clamp(76px, 8vw, 118px);
}

.section-head h2, .section-intro h2, .transform-grid h2, .case-feature h2, .why-grid h2, .final-cta h2 {
    font-weight: 300;
    letter-spacing: -.055em;
}

.card, .stat, .admin-card, .login-box {
    border-radius: 1px;
    box-shadow: none;
}

.card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 34px;
    background: var(--surface);
    border: 0;
    border-radius: 0;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
    border: 1px solid var(--line);
}

.card:hover {
    background: var(--blue-soft);
    transform: none;
    background: var(--blue-soft);
}

.input, textarea, select {
    border-radius: 1px;
}

.footer-mdhp {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(0, 87, 255, .105), transparent 34%),
        radial-gradient(circle at 92% 88%, rgba(86, 215, 255, .09), transparent 36%),
        linear-gradient(135deg, #fbfcff 0%, #eef2f8 44%, #dfe3ea 100%);
    color: #171923;
    padding: 72px 0 30px;
    font-family: var(--font-main);
    border-top: 1px solid rgba(20, 28, 44, .08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
    font-family: var(--font-main);
    background: #f4f4f4;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 34px;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #0057ff !important;
    font-weight: 500;
}

.footer-col h3 {
    margin: 0 0 28px;
    max-width: 430px;
    font-size: clamp(30px, 2.35vw, 44px);
    font-weight: 300;
    line-height: .98;
    letter-spacing: -1.9px;
    color: #11131c;
    font-weight: 300;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 1;
    background: rgba(17, 19, 28, .92);
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    box-shadow: 0 10px 24px rgba(17,19,28,.14);
    transition: .32s cubic-bezier(.22,1,.36,1);
    border-radius: 1px;
}

.admin-body {
    background: #eef3fb;
    color: #13233a;
    background: #f4f4f4;
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 260px;
    padding: 24px;
    background: #07111f;
    color: #ffffff;
    background: #161616;
}

.sidebar a {
    display: block;
    margin: 5px 0;
    padding: 12px 14px;
    border-radius: 12px;
    color: #dce9ff;
    border-radius: 1px;
}

.admin-card {
    margin-bottom: 20px;
    padding: 24px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(20, 40, 80, 0.08);
    border: 1px solid var(--line);
}

.login-screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: linear-gradient(
        135deg,
        #07111f,
        #103c78
    );
    background: #f4f4f4;
}

.login-box {
    width: min(420px, 92vw);
    padding: 32px;
    background: #ffffff;
    color: #13233a;
    border-radius: 24px;
    border: 1px solid var(--line);
}

@media (max-width: 1100px) {
    .nav,
    .header-actions {
        display: none;
    }
    .brand-text {
        font-size: 28px;
    }
    .menu-btn {
        display: block;
    }
    .hero-grid,
    .transform-grid,
    .case-feature,
    .why-grid {
        grid-template-columns: 1fr;
    }
    .hero-copy h1 {
        font-size: clamp(48px, 9vw, 76px);
    }
    .trust-inner {
        grid-template-columns: 1fr;
        padding: 28px 0;
    }
    .trust-inner div {
        grid-template-columns: repeat(3,1fr);
    }
    .capability-item {
        grid-template-columns: 70px 1fr;
    }
    .capability-item p {
        grid-column: 2;
    }
    .numbers-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .case-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .mdhp-hero {
        height: auto;
        min-height: auto;
        grid-template-columns: 1fr;
    }
    .mdhp-rails {
        display: none;
    }
    .mdhp-main {
        min-height: 560px;
        padding: 64px 20px 30px;
    }
    .mdhp-content,
    .mdhp-clients,
    .mdhp-tag,
    .mdhp-arrows {
        position: relative;
        inset: auto;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }
    .mdhp-tag {
        display: inline-flex;
        margin-bottom: 28px;
    }
    .mdhp-content h1 {
        font-size: 38px;
        margin-bottom: 20px;
        letter-spacing: -1.2px;
    }
    .mdhp-content p,
    .mdhp-btn {
        margin-left: 0;
        width: auto;
    }
    .mdhp-clients {
        width: 100%;
        margin-top: 42px;
    }
    .mdhp-clients > span {
        margin-bottom: 22px;
    }
    .mdhp-clients div {
        gap: 18px 26px;
    }
    .mdhp-clients b {
        font-size: 18px;
    }
    .mdhp-arrows {
        margin-top: 26px;
    }
    .site-header {
        height: 74px;
        padding: 0 18px;
        justify-content: space-between;
        height: 68px;
        min-height: 68px;
    }
    .mega-menu {
        top: 68px;
    }
    .home-shell {
        width: calc(100% - 56px);
        width: min(100% - 44px, 980px);
    }
}

@media (max-width: 680px) {
    .footer-mdhp {
        padding: 44px 0 24px;
    }
    .footer-wrap {
        width: calc(100% - 34px);
        gap: 32px;
    }
    .footer-logo {
        margin-bottom: 24px;
        font-size: 24px;
    }
    .footer-menu {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-col h3 {
        margin-bottom: 18px;
        font-size: 30px;
        letter-spacing: -1.2px;
    }
    .footer-subgrid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-bottom {
        grid-template-columns: 1fr;
        margin-top: 36px;
        gap: 18px;
    }
    .footer-policy,
    .footer-lang {
        gap: 18px;
        flex-wrap: wrap;
    }
    .home-hero {
        min-height: auto;
        padding: 78px 0 60px;
    }
    .hero-copy p {
        font-size: 15px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .intel-panel {
        min-height: 390px;
        padding: 22px;
    }
    .signal-map {
        height: 210px;
    }
    .home-section {
        padding: 72px 0;
    }
    .section-intro h2,
    .transform-grid h2,
    .case-feature h2,
    .why-grid h2,
    .final-cta h2 {
        font-size: 36px;
    }
    .trust-inner div {
        grid-template-columns: repeat(2,1fr);
    }
    .capability-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 26px 0;
    }
    .capability-item p {
        grid-column: auto;
    }
    .capability-item h3 {
        font-size: 24px;
    }
    .numbers-grid {
        grid-template-columns: 1fr;
    }
    .case-feature {
        padding: 34px 24px;
    }
    .why-points div {
        grid-template-columns: 48px 1fr;
    }
    .why-points span {
        font-size: 18px;
    }
    .final-cta {
        padding: 82px 0;
    }
    :root {
        --container: calc(100% - 34px);
    }
    .site-header {
        padding: 0 17px;
    }
    .brand-text {
        font-size: 24px;
    }
    .home-shell {
        width: calc(100% - 34px);
        width: var(--container);
    }
    .hero-copy h1 {
        font-size: 44px;
        letter-spacing: -.045em;
    }
    .mobile-drawer {
        width: 100%;
        padding-inline: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    min-width: 190px;

    color: #161616;
    text-decoration: none;
}

.brand-logo {
    display: block;

    width: auto;
    height: 132px;
    max-width: 150px;

    object-fit: contain;
    object-position: left center;

    flex-shrink: 0;
}

.brand-text {
    color: #0f62fe;

    font-family: "IBM Plex Sans", "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
}

/* Logo-only header */
.brand.logo-only .brand-text {
    display: none;
}

@media (max-width: 1100px) {
    .brand {
        min-width: 0;
    }

    .brand-logo {
        height: 125px;
        max-width: 132px;
    }

    .brand-text {
        font-size: 21px;
    }
}

@media (max-width: 575px) {
    .brand {
        gap: 9px;
    }

    .brand-logo {
        height: 94px;
        max-width: 116px;
    }

    .brand-text {
        font-size: 19px;
    }
}