﻿:root {
    --blue: #2862d5;
    --blue-dark: #174eaf;
    --blue-deep: #0a347c;
    --yellow: #e5b100;
    --yellow2: #f3c318;
    --text: #0b1f45;
    --muted: #5d6c83;
    --line: #dbe7f7;
    --bg: #f3f8ff;
    --white: #fff;
    --shadow: 0 18px 45px rgba(10,52,124,.14);
    --radius: 22px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'Be Vietnam Pro',Arial,sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1180px,calc(100% - 40px));
    margin: 0 auto
}

.topbar {
    background: linear-gradient(90deg,var(--blue-deep),var(--blue-dark));
    color: #fff;
    padding: 8px 0;
    font-size: 13px
}

    .topbar .inner {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap
    }

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(10,52,124,.08)
}

.nav {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand-logo {
    width: 178px;
    height: 96px;
    display: block
}

.brand-text strong {
    display: block;
    color: var(--blue-deep);
    font-size: 20px;
    line-height: 1
}

.brand-text span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .3px
}

.menu {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 14px;
    font-weight: 800;
    color: #12315f
}

    .menu a:hover {
        color: var(--blue)
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 12px;
    padding: 13px 22px;
    font-weight: 900;
    font-size: 14px;
    transition: .22s ease;
    border: 1px solid transparent;
    white-space: nowrap
}

    .btn:hover {
        transform: translateY(-2px)
    }

.btn-yellow {
    background: linear-gradient(135deg,var(--yellow),var(--yellow2));
    color: #09234b;
    box-shadow: 0 12px 26px rgba(229,177,0,.28)
}

.btn-blue {
    background: linear-gradient(135deg,var(--blue-deep),var(--blue));
    color: #fff;
    box-shadow: 0 14px 30px rgba(40,98,213,.25)
}

.btn-outline {
    background: #fff;
    color: var(--blue-deep);
    border-color: #b9cfe8
}

.ft-logo-svg text {
    font-family: Arial, sans-serif
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 82px;
    background: radial-gradient(circle at 16% 18%,rgba(229,177,0,.15),transparent 26%),radial-gradient(circle at 88% 12%,rgba(40,98,213,.16),transparent 28%),linear-gradient(180deg,#fff 0%,#edf6ff 100%)
}

    .hero:after {
        content: "";
        position: absolute;
        left: -8%;
        right: -8%;
        bottom: -140px;
        height: 240px;
        background: url("data:image/svg+xml,%3Csvg width='1440' height='240' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 144C250 68 420 215 665 135C920 52 1075 50 1440 120V240H0Z' fill='%23ddecff' fill-opacity='.66'/%3E%3Cpath d='M0 180C300 97 460 230 720 160C960 95 1125 95 1440 155' stroke='%232862d5' stroke-opacity='.15' stroke-width='2' fill='none'/%3E%3Cpath d='M0 198C350 118 540 235 790 175C1000 126 1180 112 1440 176' stroke='%23e5b100' stroke-opacity='.26' stroke-width='3' fill='none'/%3E%3C/svg%3E") center bottom/cover no-repeat
    }

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 54px;
    align-items: center
}

.hero-big-logo {
    width: 310px;
    height: auto;
    margin-bottom: 18px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff6d9;
    color: #8f6400;
    border: 1px solid #ffe3a0;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px
}

h1 {
    margin: 0 0 16px;
    color: var(--blue-deep);
    font-size: clamp(40px,5vw,62px);
    line-height: 1.08;
    letter-spacing: -1.8px;
    font-weight: 900
}

    h1 span {
        color: var(--yellow)
    }

.hero p {
    font-size: 17px;
    color: #31425d;
    margin: 0 0 26px;
    max-width: 620px;
    font-weight: 500
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.badges {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    max-width: 730px
}

.badge {
    background: rgba(255,255,255,.82);
    border: 1px solid #d9e8f8;
    border-radius: 16px;
    padding: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 10px 25px rgba(10,52,124,.06)
}

    .badge i {
        font-style: normal;
        width: 38px;
        height: 38px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: #eef5ff;
        color: var(--blue);
        font-size: 24px
    }

    .badge b {
        display: block;
        font-size: 12px;
        color: var(--blue-deep)
    }

    .badge span {
        display: block;
        font-size: 11px;
        color: var(--muted)
    }

.mock {
    background: #fff;
    border: 1px solid #d7e8f8;
    border-radius: 22px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 160px 1fr;
    min-height: 480px
}

.side {
    background: linear-gradient(180deg,var(--blue-deep),var(--blue-dark));
    color: #fff;
    padding: 18px 12px
}

    .side .brand2 {
        font-weight: 900;
        margin-bottom: 16px
    }

    .side div:not(.brand2) {
        padding: 9px 10px;
        border-radius: 9px;
        font-size: 12px;
        margin-bottom: 5px;
        color: rgba(255,255,255,.9)
    }

    .side .active {
        background: rgba(255,255,255,.18)
    }

.dash {
    padding: 18px;
    background: #fbfdff
}

.dash-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px
}

    .dash-head h3 {
        margin: 0;
        font-size: 17px
    }

.search {
    height: 32px;
    width: 175px;
    background: #fff;
    border: 1px solid #dbe8f7;
    border-radius: 999px;
    color: #99a7b7;
    display: flex;
    align-items: center;
    padding-left: 14px;
    font-size: 12px
}

.kpis {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    margin-bottom: 14px
}

.kpi {
    background: #fff;
    border: 1px solid #e1edf8;
    border-radius: 14px;
    padding: 13px;
    min-height: 84px
}

    .kpi span {
        font-size: 11px;
        font-weight: 800;
        color: var(--muted)
    }

    .kpi strong {
        display: block;
        font-size: 23px;
        color: var(--blue-deep);
        line-height: 1;
        margin-top: 6px
    }

.panels {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 12px;
    margin-bottom: 14px
}

.panel, .tablebox {
    background: #fff;
    border: 1px solid #e1edf8;
    border-radius: 14px;
    padding: 13px
}

    .panel h4, .tablebox h4 {
        margin: 0 0 10px;
        font-size: 13px
    }

.donut {
    width: 102px;
    height: 102px;
    border-radius: 50%;
    margin: 5px auto;
    background: conic-gradient(var(--blue) 0 45%,var(--yellow) 45% 68%,#62b5f7 68% 84%,#d7eaff 84% 100%);
    position: relative
}

    .donut:after {
        content: "";
        position: absolute;
        inset: 26px;
        border-radius: 50%;
        background: #fff
    }

.status {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #e1edf8;
    font-size: 11px
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px
}

th {
    text-align: left;
    color: #6b7a90;
    padding: 7px 5px;
    border-bottom: 1px solid #e8f0f8
}

td {
    padding: 8px 5px;
    border-bottom: 1px solid #edf4fb;
    color: #243855
}

.ok {
    color: #0b9b62;
    font-weight: 900
}

.warn {
    color: #d98c00;
    font-weight: 900
}

section {
    padding: 72px 0
}

.section-head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 36px
}

    .section-head h2 {
        margin: 0 0 10px;
        font-size: clamp(28px,3.4vw,40px);
        line-height: 1.25;
        color: var(--blue-deep);
        letter-spacing: -.8px
    }

    .section-head p {
        margin: 0;
        color: var(--muted)
    }

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 16px
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 10px 28px rgba(10,52,124,.06);
    transition: .22s ease
}

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 42px rgba(10,52,124,.12)
    }

.icon {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    background: linear-gradient(135deg,#eef5ff,#ffffff);
    border: 1px solid #d8e8ff;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 44px;
    margin-bottom: 16px;
    box-shadow: 0 10px 24px rgba(10,52,124,.08)
}

    .icon.yellow {
        background: linear-gradient(135deg,#fff8df,#fff);
        border-color: #ffe8a1;
        color: #d99b00
    }

    .icon.green {
        background: linear-gradient(135deg,#eafaf3,#fff);
        border-color: #c9f1df;
        color: #0aa765
    }

    .icon.purple {
        background: linear-gradient(135deg,#f4efff,#fff);
        border-color: #ded0ff;
        color: #6740b8
    }

    .icon.cyan {
        background: linear-gradient(135deg,#e9fbff,#fff);
        border-color: #c5f1fb;
        color: #0095a8
    }

.feature-card {
    text-align: center;
    padding: 20px 14px
}

    .feature-card .icon {
        margin-left: auto;
        margin-right: auto
    }

.card h3 {
    margin: 0 0 8px;
    color: var(--blue-deep);
    font-size: 17px
}

.card p {
    margin: 0;
    color: #55657b;
    font-size: 13px
}

.module-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px
}

    .module-card .icon {
        width: 92px;
        height: 92px;
        flex: 0 0 92px;
        font-size: 48px;
        margin: 0
    }

    .module-card ul {
        margin: 8px 0 0;
        padding-left: 18px;
        color: #33445f;
        font-size: 13px
    }

.flow {
    background: linear-gradient(180deg,#fff,#f5fbff)
}

.process {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 14px
}

.step {
    text-align: center;
    position: relative;
    padding: 0 8px
}

    .step:after {
        content: "";
        position: absolute;
        top: 48px;
        right: -20px;
        width: 38px;
        border-top: 2px dashed #b7d1ee
    }

    .step:last-child:after {
        display: none
    }

.circle {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #d7e8f8;
    box-shadow: 0 10px 24px rgba(10,52,124,.08);
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    color: var(--blue);
    font-size: 36px
}

.num {
    position: absolute;
    left: 50%;
    top: -11px;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 900
}

.step:nth-child(even) .num {
    background: var(--yellow);
    color: #0b1f45
}

.step h3 {
    margin: 0 0 6px;
    color: var(--blue-deep);
    font-size: 14px
}

.step p {
    margin: 0;
    color: #5d6d83;
    font-size: 12px
}

.benefit-band {
    background: radial-gradient(circle at 95% 10%,rgba(229,177,0,.22),transparent 25%),linear-gradient(135deg,var(--blue-deep),var(--blue));
    color: #fff;
    border-radius: 24px;
    padding: 36px 30px;
    box-shadow: var(--shadow)
}

    .benefit-band h2 {
        text-align: center;
        margin: 0 0 24px;
        font-size: 30px
    }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 18px
}

.benefit {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.18);
    padding: 0 12px
}

    .benefit:last-child {
        border-right: 0
    }

    .benefit i {
        font-style: normal;
        font-size: 34px;
        display: block;
        margin-bottom: 8px
    }

    .benefit b {
        display: block;
        color: var(--yellow2);
        font-size: 13px
    }

    .benefit span {
        font-size: 12px;
        color: rgba(255,255,255,.84)
    }

.industry {
    overflow: hidden;
    padding: 0
}

    .industry .img {
        height: 150px;
        background-size: cover;
        background-position: center
    }

.img1 {
    background-image: linear-gradient(rgba(10,52,124,.14),rgba(10,52,124,.14)),url('https://images.unsplash.com/photo-1497633762265-9d179a990aa6?auto=format&fit=crop&w=900&q=80')
}

.img2 {
    background-image: linear-gradient(rgba(10,52,124,.14),rgba(10,52,124,.14)),url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=900&q=80')
}

.img3 {
    background-image: linear-gradient(rgba(10,52,124,.14),rgba(10,52,124,.14)),url('https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=900&q=80')
}

.industry-body {
    padding: 22px
}

.cta {
    padding-top: 0
}

.cta-box {
    background: linear-gradient(135deg,var(--blue-deep),var(--blue));
    border-radius: 24px;
    color: #fff;
    padding: 38px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow)
}

    .cta-box h2 {
        margin: 0 0 8px;
        font-size: 30px
    }

    .cta-box p {
        margin: 0;
        color: rgba(255,255,255,.85)
    }

footer {
    background: #f2f2f2;
    padding: 48px 0 25px;
    color: #000
}

.footer-grid {
    display: grid;
    grid-template-columns: .8fr 1.1fr 1.15fr 1.35fr;
    gap: 38px;
    align-items: flex-start
}

footer h3 {
    color: #2d63ad;
    font-size: 22px;
    margin: 0 0 16px;
    text-transform: uppercase
}

footer p, footer li {
    font-size: 15px;
    line-height: 1.7
}

footer ul {
    padding-left: 18px
}
.logo-imgages {
    width: 70px;
    max-width: 100%;
    display: block
}

.footer-logo-img {
    width: 230px;
    max-width: 100%;
    display: block
}

.copyright {
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 28px;
    padding-top: 15px;
    color: #666;
    font-size: 13px
}

@media(max-width:1120px) {
    .menu {
        display: none
    }

    .hero-grid {
        grid-template-columns: 1fr
    }

    .grid-6 {
        grid-template-columns: repeat(3,1fr)
    }

    .module-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .grid-3 {
        grid-template-columns: 1fr
    }

    .process {
        grid-template-columns: repeat(3,1fr);
        row-gap: 34px
    }

    .step:after {
        display: none
    }

    .benefits-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .benefit {
        border-right: 0
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:760px) {
    .container {
        width: min(100% - 28px,1180px)
    }

    .topbar .inner {
        justify-content: center;
        text-align: center
    }

    .brand-text {
        display: none
    }

    .brand-logo {
        width: 140px
    }

    .hero-big-logo {
        width: 250px
    }

    .hero {
        padding: 46px 0 60px
    }

    .badges, .mock, .kpis, .panels, .grid-6, .module-grid, .process, .benefits-grid, .cta-box, .footer-grid {
        grid-template-columns: 1fr
    }

    .side {
        display: none
    }

    .module-card {
        display: block
    }

        .module-card .icon {
            margin-bottom: 16px
        }

    .hero h1 {
        letter-spacing: -1px
    }

    .search {
        display: none
    }
}
