:root {
    --blue: #0754d7;
    --deep: #06357f;
    --ink: #172b4d;
    --muted: #60708a;
    --line: #dce6f2;
    --pale: #f4f8fd;
    --shadow: 0 14px 34px rgba(20, 61, 123, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    color: var(--ink);
    font: 16px/1.7 Arial, "Microsoft YaHei", sans-serif;
    background: #fff
}

.site-breadcrumb {
    border-bottom: 1px solid #dce8f3;
    background: #f7fbff
}

.site-breadcrumb-list {
    display: flex;
    min-height: 46px;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 9px 0;
    color: #69839d;
    list-style: none;
    font-size: 13px
}

.site-breadcrumb-list .breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.site-breadcrumb-list .breadcrumb-item + .breadcrumb-item:before {
    color: #a3b7c9;
    content: "/"
}

.site-breadcrumb-list a {
    color: #527a9f
}

.site-breadcrumb-list a:hover,
.site-breadcrumb-list a:focus {
    color: var(--blue);
    text-decoration: none
}

.site-breadcrumb-list .breadcrumb-current {
    color: #345675
}

.site-breadcrumb-list .breadcrumb-current:empty {
    display: none
}

.homeindex .site-breadcrumb {
    display: none
}

.site-container {
    max-width: 1440px;
    padding-left: 32px;
    padding-right: 32px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 1px 0 rgba(10, 44, 93, .08)
}

html.mobile-menu-open,
body.mobile-menu-open {
    overflow: hidden
}

html.mobile-header-overlay-open,
body.mobile-header-overlay-open {
    overflow: hidden
}

.mobile-header-overlay {
    position: fixed;
    z-index: 2147483647;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 10dvh 10vw;
    background: rgba(5, 23, 53, .58)
}

.mobile-header-overlay[hidden] {
    display: none
}

.mobile-header-overlay-dialog {
    position: relative;
    display: flex;
    width: 80vw;
    min-height: 0;
    flex-direction: column;
    padding: 20px 20px 20px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 24px 56px rgba(5, 23, 53, .3)
}

.mobile-header-overlay-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9e5f3;
    border-radius: 50%;
    background: #f7faff;
    color: #244a7d;
    font-size: 24px;
    line-height: 1;
    cursor: pointer
}

.mobile-header-overlay-close:hover,
.mobile-header-overlay-close:focus {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
    outline: 0
}

.mobile-header-overlay-title {
    margin: 0 44px 18px 0;
    color: #133b70;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35
}

.mobile-header-overlay-content {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch
}

.mobile-header-overlay-content .language-menu {
    position: static;
    width: 100%;
    padding: 0;
    box-shadow: none
}

.mobile-header-overlay-content .language-menu a {
    padding: 12px 10px;
    border-bottom: 1px solid #e6edf6;
    font-size: 14px
}

.mobile-header-overlay-content .header-search-panel {
    position: static;
    display: flex;
    width: 100%;
    margin: 0;
    padding: 7px
}

.navbar {
    min-height: 88px;
    padding: 0
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 64px;
    margin-right: 20px;
    padding: 0;
    gap: 3px
}

.navbar-brand img {
    display: block;
    height: auto
}

.navbar-brand .brand-mark {
    flex: 0 0 auto;
    max-height: 46px;
    object-fit: contain
}

.brand-slogan {
    display: block;
    max-width: 164px;
    color: #71809a;
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: -.04em;
    text-align: center;
    margin-top: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    padding: 33px 13px 28px;
    color: var(--ink);
    font-weight: 700;
    white-space: nowrap
}

.navbar-light .navbar-nav .nav-link:after {
    position: absolute;
    right: 13px;
    bottom: 21px;
    left: 13px;
    height: 3px;
    background: var(--blue);
    content: "";
    transform: scaleX(0);
    transition: .2s
}

.navbar-light .navbar-nav .nav-link:hover:after,
.navbar-light .navbar-nav .active:after {
    transform: scaleX(1)
}

.navbar-light .navbar-nav .nav-item.has-dropdown {
    position: relative
}

.navbar-light .navbar-nav .simple-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050;
    display: none;
    min-width: 220px;
    margin: 0;
    padding: 10px 0;
    border: 1px solid #dbe6f4;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(10, 44, 93, .14)
}

.navbar-light .navbar-nav .simple-dropdown-list {
    margin: 0;
    padding: 0;
    list-style: none
}

.navbar-light .navbar-nav .simple-dropdown a {
    display: block;
    padding: 9px 18px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    white-space: nowrap
}

.navbar-light .navbar-nav .simple-dropdown a:hover,
.navbar-light .navbar-nav .simple-dropdown a:focus {
    background: #f3f8ff;
    color: var(--blue);
    text-decoration: none
}

@media(min-width:991px) {
    .navbar-light .navbar-nav .nav-item.has-dropdown:hover .simple-dropdown,
    .navbar-light .navbar-nav .nav-item.has-dropdown:focus-within .simple-dropdown {
        display: block
    }
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 28px;
    padding-left: 20px;
    border-left: 1px solid #d9e4f2
}

.btn-brand {
    border: 1px solid var(--blue);
    border-radius: 4px;
    background: var(--blue);
    color: #fff !important;
    font-weight: 700
}

.header-search {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbe6f4;
    border-radius: 50%;
    background: #f7faff;
    color: #49627f;
    font-size: 15px;
    transition: .2s
}

.header-search:hover,
.header-search:focus {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
    outline: 0
}

.language-switcher {
    position: relative;
    font-size: 13px
}

.language-switcher summary {
    display: inline-flex;
    height: 34px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid #dbe6f4;
    border-radius: 17px;
    background: #f7faff;
    color: #49627f;
    cursor: pointer;
    list-style: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    transition: .2s
}

.language-switcher summary::-webkit-details-marker {
    display: none
}

.language-switcher summary:after {
    margin-left: 5px;
    font-family: FontAwesome;
    font-size: 10px;
    content: "\f107"
}

.language-switcher[open] summary,
.language-switcher summary:hover {
    border-color: var(--blue);
    background: #edf4ff;
    color: var(--blue)
}

.language-menu {
    position: absolute;
    top: 40px;
    right: 0;
    width: 150px;
    padding: 8px;
    background: #fff;
    box-shadow: var(--shadow)
}

.language-menu a {
    display: flex;
    gap: 8px;
    padding: 5px 8px;
    color: var(--ink);
    font-size: 12px;
    text-decoration: none;
    transition: .2s
}

.language-menu a:hover,
.language-menu a:focus {
    background: #edf4ff;
    color: var(--blue);
    text-decoration: none
}

.language-menu span {
    width: 22px;
    color: var(--blue);
    font-weight: 700
}

.header-search-panel {
    display: flex;
    position: absolute;
    top: calc(100% + 12px);
    right: max(18px, calc((100vw - 1440px) / 2 + 32px));
    z-index: 1050;
    width: min(500px, calc(100vw - 36px));
    margin: 0;
    padding: 7px;
    border: 1px solid #d9e5f3;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(14, 54, 112, .18)
}

.header-search-panel[hidden] {
    display: none
}

.header-search-panel input {
    flex: 1;
    border: 0;
    padding: 10px 12px;
    background: transparent;
    outline: 0
}

.header-search-panel button {
    width: 48px;
    border: 0;
    border-radius: 7px;
    background: var(--blue);
    color: #fff
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 0 0 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 52%, rgba(255, 255, 255, .78) 82%, #fff 100%), #eef6ff url('../img/bg.webp') center/cover no-repeat
}

.hero-copy>span,
.section-kicker {
    color: var(--blue);
    font-weight: 700;
    letter-spacing: .12em
}

.hero-copy h1 {
    margin: 13px 0 18px;
    font-size: 48px;
    line-height: 1.25;
    font-weight: 400
}

.hero-copy h1 strong {
    color: var(--blue)
}

.hero-copy p {
    max-width: 550px;
    color: var(--muted);
    font-size: 17px
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 28px
}

.btn {
    padding: 11px 20px
}

.btn-outline-brand {
    border: 1px solid var(--blue);
    color: var(--blue);
    font-weight: 700
}

.hero-visual {
    position: relative;
    min-height: 560px
}

.hero-visual>img {
    display: block;
    width: 100%;
    max-width: 720px;
    margin: 0 auto
}

.hero-specs {
    position: absolute;
    right: 0;
    bottom: 2%;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 10px
}

.hero-specs div {
    min-width: 150px;
    padding: 12px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow);
    text-align: center
}

.hero-specs i {
    display: block;
    color: var(--blue);
    font-size: 22px
}

.hero-specs b,
.hero-specs small {
    display: block
}

.hero-specs small {
    color: var(--muted);
    font-size: 12px
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 32px;
    padding: 14px 22px;
    overflow: hidden;
    border: 1px solid rgba(220, 230, 243, .78);
    border-radius: 16px;
    background: rgba(255, 255, 255, .93);
    box-shadow: 0 14px 34px rgba(19, 68, 137, .08)
}

.feature-strip div {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 17px;
    align-items: center;
    min-height: 110px;
    padding: 18px 29px;
    background: transparent
}

.feature-strip div:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 48px;
    background: #c9dcf6;
    content: "";
    transform: translateY(-50%)
}

.feature-strip i {
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin: 0;
    color: var(--blue);
    font-size: 46px;
    line-height: 1
}

.feature-strip b,
.feature-strip small {
    display: block
}

.feature-strip b {
    font-size: 18px;
    line-height: 1.45
}

.feature-strip small {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65
}

.section-pad {
    padding: 82px 0
}

.section-head {
    margin-bottom: 34px
}

.section-head h2,
.about-shell h2 {
    margin: 8px 0;
    font-size: 34px;
    font-weight: 700
}

.section-head h2:before {
    display: inline-block;
    width: 7px;
    height: 28px;
    margin-right: 12px;
    background: var(--blue);
    vertical-align: -4px;
    content: ""
}

.section-head p {
    margin: 0;
    color: var(--muted)
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 5px 20px rgba(12, 47, 93, .06);
    transition: .25s
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.product-card img {
    width: 100%;
    object-fit: cover
}

.product-card h3,
.product-card p,
.product-card a {
    display: block;
    margin-right: 17px;
    margin-left: 17px
}

.product-card h3 {
    margin-top: 18px;
    font-size: 18px
}

.product-card p {
    min-height: 77px;
    color: var(--muted);
    font-size: 14px
}

.product-card a {
    margin-bottom: 18px;
    color: var(--blue);
    font-weight: 700
}

.advantages-section {
    padding: 74px 0;
    background: #fff
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.advantage-grid article {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    min-height: 158px;
    padding: 24px 18px 20px;
    border: 1px solid #e6edf7;
    border-radius: 7px;
    background: #fafbfd
}

.advantage-visual {
    min-height: 104px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 72px auto
}

.advantage-visual-1 { background-image: url("../img/i1.webp") }
.advantage-visual-2 { background-image: url("../img/i2.webp") }
.advantage-visual-3 { background-image: url("../img/i3.webp") }
.advantage-visual-4 { background-image: url("../img/i4.webp") }

.advantage-content {
    padding-top: 6px
}

.advantage-grid h3 {
    margin: 0 0 8px;
    color: #1d2f4e;
    font-size: 16px;
    line-height: 1.45
}

.advantage-grid p {
    margin: 0;
    color: #687a95;
    font-size: 13px;
    line-height: 1.85
}

.industry-section {
    background: #fff
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.industry-card {
    position: relative;
    overflow: hidden;
    height: 200px
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s
}

.industry-card:hover img {
    transform: scale(1.06)
}

.industry-card span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 13px 17px;
    background: linear-gradient(transparent, rgba(2, 20, 58, .88));
    color: #fff;
    font-size: 18px;
    font-weight: 700
}

.industry-card i {
    margin-right: 8px
}

.selection-section {
    background: #f1f7fd url('../img/home/bg-selection.webp') center/cover
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(240px, 1.08fr);
    gap: 42px
}

.step-card,
.support-card {
    min-height: 222px;
    border: 1px solid #dbe7f6;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(6, 53, 127, .05)
}

.step-card {
    position: relative;
    padding: 16px
}

.step-card:not(:nth-child(3))::after {
    position: absolute;
    top: 50%;
    right: -35px;
    z-index: 1;
    color: #1069eb;
    content: "\f061";
    font: 27px/1 FontAwesome;
    transform: translateY(-50%)
}

.step-card>b {
    display: inline-flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #176dec;
    color: #fff;
    font-size: 18px;
    line-height: 1
}

.step-card-main {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 145px;
    padding-top: 7px
}

.step-visual {
    display: block;
    width: 80px;
    height: 80px;
    background: center/contain no-repeat
}

.step-visual-1 { background-image: url("../img/s1.webp") }
.step-visual-2 { background-image: url("../img/s2.webp") }
.step-visual-3 { background-image: url("../img/s3.webp") }

.step-card h3,
.support-card h3 {
    color: var(--blue)
}

.step-card h3 {
    margin: 0 0 9px;
    font-size: 17px;
    line-height: 1.45
}

.step-card p,
.support-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9
}

.support-card {
    padding: 42px 20px 20px;
    overflow: hidden;
    background: #eff6ff url("../img/s4.webp") right 10px bottom 10px/61% auto no-repeat
}

.support-card h3 {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.5
}

.support-card p {
    width: 50%;
    color: #60718d
}

.selection-action {
    text-align: center;
    margin: 30px 0 0
}

.selection-action .btn {
    min-width: 266px;
    min-height: 56px;
    padding: 13px 24px;
    border-radius: 11px;
    font-size: 18px
}

.about-shell {
    display: grid;
    grid-template-columns: minmax(0, 46%) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
    background: #fff
}

.about-shell>img {
    width: 100%;
    height: 420px;
    min-height: 420px;
    border-radius: 8px;
    object-fit: cover
}

.about-shell>div {
    padding: 10px 0 0
}

.about-shell .section-kicker {
    display: inline-block;
    padding: 1px 7px;
    border-radius: 4px;
    background: #eff5ff;
    color: #1d63dd;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 1.7
}

.about-shell h2 {
    margin: 10px 0 8px;
    color: #0a1d43;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.3
}

.about-shell p {
    color: #52627b
}

.about-lead {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.9
}

.about-lead strong {
    color: #1263df
}

.about-description {
    margin: 0;
    font-size: 14px;
    line-height: 1.9
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    margin-top: 28px
}

.about-shell>.metric-grid {
    grid-column: 1 / -1;
    margin-top: 0
}

.metric-card {
    min-width: 0;
    padding: 0 18px;
    border-left: 1px solid #dbe5f3
}

.metric-card:first-child {
    padding-left: 0;
    border-left: 0
}

.metric-grid b,
.metric-grid strong,
.metric-grid span,
.metric-card i {
    display: block
}

.metric-grid b {
    color: #0f63df;
    font-size: 33px;
    line-height: 1.05
}

.metric-card i {
    height: 40px;
    color: #0f63df;
    font-size: 37px;
    line-height: 1
}

.metric-card img {
    display: block;
    width: 48px;
    height: 40px;
    margin: 0;
    object-fit: contain;
    object-position: left center
}

.metric-grid strong {
    margin-top: 5px;
    color: #1462d8;
    font-size: 14px;
    line-height: 1.45
}

.metric-grid span {
    margin-top: 9px;
    color: #66758b;
    font-size: 12px;
    line-height: 1.75
}

.trust-section {
    background: #f8fbff url('../img/home/bg-trust.webp') center/cover
}

.trust-section .section-head {
    margin-bottom: 14px;
    text-align: center
}

.trust-section .section-kicker {
    position: relative;
    display: inline-block;
    padding: 0 27px;
    color: #1465df;
    font-size: 12px;
    letter-spacing: 0
}

.trust-section .section-kicker::before,
.trust-section .section-kicker::after {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: #6ba0f3;
    content: ""
}

.trust-section .section-kicker::before { left: 0 }
.trust-section .section-kicker::after { right: 0 }

.trust-section .section-head h2 {
    margin: 4px 0 3px;
    color: #0a1f48;
    font-size: 32px;
    line-height: 1.35
}

.trust-section .section-head h2::before {
    display: none
}

.trust-section .section-head p {
    margin: 0;
    color: #71809a;
    font-size: 13px
}

.trust-panels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px
}

.trust-panel {
    padding: 13px 15px 12px;
    border: 1px solid #dce7f5;
    border-radius: 9px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 7px 20px rgba(30, 84, 158, .045)
}

.trust-panel h3 {
    margin: 0 0 10px;
    color: #155ecb;
    font-size: 16px
}

.cert-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.cert-item {
    min-width: 0;
    padding: 0 13px 5px;
    text-align: center;
    border-left: 1px solid #dce7f5
}

.cert-item:first-child {
    border-left: 0
}

.cert-item img {
    display: block;
    width: 54px;
    height: 54px;
    margin: 0 auto 5px;
    object-fit: contain
}

.cert-item strong,
.cert-item span {
    display: block
}

.cert-item strong {
    color: #155ecb;
    font-size: 14px;
    line-height: 1.45
}

.cert-item span {
    margin-top: 4px;
    color: #65758d;
    font-size: 11px;
    line-height: 1.6
}

.cert-note {
    margin: 7px 0 0;
    padding: 4px 8px;
    border: 1px solid #dce7f5;
    border-radius: 5px;
    background: #f7fbff;
    color: #63738c;
    font-size: 11px;
    line-height: 1.55
}

.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 12px
}

.client-logo {
    display: flex;
    height: 66px;
    align-items: center;
    justify-content: center;
    padding: 7px;
    border: 1px solid #dce7f5;
    border-radius: 7px;
    background: #fff
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.certificate-showcase {
    margin-top: 12px;
    padding: 12px 15px 10px;
    border: 1px solid #dce7f5;
    border-radius: 9px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 7px 20px rgba(30, 84, 158, .045)
}

.certificate-showcase h3 {
    margin: 0 0 8px;
    color: #155ecb;
    font-size: 16px
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 9px
}

.certificate-grid img {
    width: 100%;
    height: 260px;
    padding: 4px;
    border: 1px solid #dce7f5;
    border-radius: 3px;
    background: #fff;
    object-fit: contain
}

.cta-section {
    padding: 76px 0;
    background: var(--deep) url('../img/home/bg-cta.webp') center/cover;
    color: #fff;
    text-align: center
}

.cta-section h2 {
    font-size: 34px
}

.cta-section p {
    color: #dceaff
}

.cta-section .btn {
    font-weight: 700
}

.contact-section {
    padding: 82px 0;
    background: var(--pale)
}

.contact-shell {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 54px;
    align-items: center
}

.contact-copy h2 {
    margin: 10px 0;
    font-size: 34px
}

.contact-copy p {
    color: var(--muted)
}

.contact-copy ul {
    padding: 0;
    list-style: none
}

.contact-copy li {
    margin: 9px 0
}

.contact-copy i {
    margin-right: 8px;
    color: var(--blue)
}

.contact-expert {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 22px;
    padding: 13px 16px;
    border-radius: 8px;
    background: #f3f5f8
}

.contact-expert>img {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover
}

.contact-expert strong {
    display: block;
    color: #113a7b;
    font-size: 14px;
    line-height: 1.45
}

.contact-expert-links {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 17px;
    margin-top: 5px
}

.contact-expert-links a {
    color: #df4141;
    font-size: 13px;
    line-height: 1.5
}

.contact-copy .contact-expert-links i {
    margin-right: 5px;
    color: #df4141
}

.contact-form {
    padding: 30px;
    background: #fff;
    box-shadow: var(--shadow)
}

.contact-form b {
    color: #d40610
}

.form-control {
    min-height: 44px;
    border-color: #cfddeb
}

.site-footer {
    padding: 56px 0 0;
    background: #06255d;
    color: #d6e3f8;
    line-height: 1.4;
    font-size: 12px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.15fr;
    gap: 28px
}
.site-footer h2 {font-size: 1.4rem;}
.site-footer h2,
.site-footer h3 {
    color: #fff;
    line-height:1.4;
}

.site-footer h3 {
    font-size: 17px
}

.site-footer p {
    color: #b7cbe8;
    
}

.footer-links ul {
    padding: 0;
    list-style: none
}

.footer-links li {
    margin: 7px 0;
}

.site-footer a {
    color: #c9ddfa
}

.footer-contact-link {
    display: block;
    margin: 8px 0
}

.footer-contact-link i,
.footer-address i {
    width: 22px;
    color: #7facf3
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 34px;
    padding-top: 17px;
    padding-bottom: 17px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    font-size: 13px
}

.footer-bottom button {
    border: 0;
    background: none;
    color: #fff
}

.back-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    box-shadow: var(--shadow)
}

.quick-consult {
    position: fixed;
    right: 24px;
    bottom: 82px;
    z-index: 1000;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #0646a9;
    color: #fff;
    font-size: 19px;
    box-shadow: var(--shadow);
    transition: transform .2s, background-color .2s
}

.quick-consult:hover,
.quick-consult:focus {
    background: #0b5ed7;
    color: #fff;
    transform: translateY(-2px)
}

#gkConsultModal .modal-content {
    border: 0;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(6, 37, 93, .2)
}

#gkConsultModal .modal-header {
    padding: 12px 18px 0
}

#gkConsultModal .modal-body {
    padding: 0 30px 30px
}

.gk-consult-modal-copy {
    margin-bottom: 18px
}

.gk-consult-modal-copy h2 {
    margin: 8px 0;
    color: var(--ink);
    font-size: 26px
}

.gk-consult-modal-copy p {
    margin: 0;
    color: var(--muted)
}

.gk-consult-form {
    padding: 0;
    box-shadow: none
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s, transform .55s
}

.reveal.visible {
    opacity: 1;
    transform: none
}




/* ===== Article Content Styles ===== */
.article-layout {display: grid;grid-template-columns: 1fr 320px;gap: 30px;align-items: start;}
.article-user { display: flex; margin-top: var(--spacing-5); margin-bottom: var(--spacing-4); border-bottom: 1px dotted #ebebeb; padding-bottom:var(--spacing-6); }
.article-user .article-avatar {width: 24px; height:24px; margin-right: 8px;}
.article-user .article-avatar img {width: 100%; height: 100%; object-fit: cover; border-radius: 50%; margin: 0; padding: 0;}
.article-user .article-user-info p {margin: 0; font-size:12px; font-weight: 500; line-height: 1;}
.article-user .article-user-info p span {font-size:11px; font-weight: normal; color: var(--color-text-muted); margin-right: 10px;}
.article-user .article-user-info p em {font-style: normal;font-size:11px; font-weight: normal; }
.related-articles {background-color: var(--color-bg-light);padding: var(--spacing-4);}

.article-body h1 {margin-bottom: 1rem;
  font-size: var(--font-size-4xl);
  line-height: 1.2;
  position: relative;}
.article-body h1::after {
  display: none;
}
.article-share {display: flex;}
.article-share a {width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; margin-right: 8px; border-radius: 4px;
background-color: var(--color-primary);}
.article-share .fa {font-size: 16px; color: #fff;}
.article-content {margin: 0 0 var(--spacing-5) 0; padding: var(--spacing-5) 0; }

.article-body .article-image {margin-bottom: 36px; display: flex; align-items: center; justify-content: center;}
.article-body .article-image img {max-height: 100vh; border-radius: var(--radius-sm);box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;}

.article-content {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.625;
}

.article-content > :first-child {
  margin-top: 0;
}

.article-content > :last-child {
  margin-bottom: 0;
}

.article-content :where(h1, h2, h3, h4, h5, h6) {
  color: #111827;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.article-content h1 {
  margin-bottom: 1rem;
  font-size: var(--font-size-3xl);
  line-height: 1.2;
  position: relative;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  border-left: 4px solid var(--color-primary);
  font-size: 1.6rem;
  line-height: calc(1.75 / 1.25);
}
.product-show-page .ps-content-card article:first-child h2:first-child {margin-top: 0;}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #1f2937;
  font-size: 1.125rem;
  line-height: calc(1.75 / 1.125);
}

.article-content h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #374151;
  font-size: 1rem;
  line-height: 1.5;
}

.article-content p {
  margin-block: 1rem;
  color: #4b5563;
}


.article-content strong {
  color: #111827;
  font-weight: 600;
}

.article-content a {
  color: var(--color-primary);
  font-weight: 500;
  transition-property: color, text-decoration-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
  text-decoration: none;
  position: relative;
}

.article-content a::before {
  content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ffc8e3;
}
.article-content a:hover {
  color: #b91c1c;
  text-decoration: none;
}
.article-content a:hover::before {
  border-bottom: 3px solid #f89191;
}

.article-content figure {
  margin-block: 1rem;
}

.article-content img {
  max-width: 100%;
  height: auto !important;
  margin-block: 1rem;
  border-radius: 0.25rem;
  margin-inline: auto;
  display: block;
}

.article-content figcaption {
  margin-top: 0.75rem;
  color: #6b7280;
  font-size: 0.75rem;
  line-height: calc(1 / 0.75);
  text-align: center;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.article-content blockquote {
  margin-block: 1.5rem;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--color-primary);
  border-radius: 0.25rem;
  background-color: #fef2f2;
  color: #374151;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  font-style: normal;
}

.article-content blockquote > :first-child,
.article-content li > :first-child {
  margin-top: 0;
}

.article-content blockquote > :last-child,
.article-content li > :last-child {
  margin-bottom: 0;
}

.article-content ul,
.article-content ol {
  margin-block: 1.25rem;
}

.article-content ul {
  padding-left: 0;
  list-style: none;
}

.article-content ol {
  counter-reset: article-content-ordered-list;
  padding-left: 0;
  list-style: none;
}

.article-content li {
  margin-block: 0.5rem;
  color: #4b5563;
  line-height: 1.625;
}

.article-content ul > li {
  padding-left: 1.5rem;
  position: relative;
}

.article-content ol > li {
  padding-left: 1.75rem;
  counter-increment: article-content-ordered-list;
  position: relative;
}

.article-content ul > li:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-primary);
  position: absolute;
  top: 0.6em;
  left: 0;
}

.article-content ol > li:before {
  content: counter(article-content-ordered-list) ".";
  color: var(--color-primary);
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
}

.article-content ul ul,
.article-content ul ol,
.article-content ol ul,
.article-content ol ol {
  margin-block: 0.75rem;
  padding-left: 1rem;
}

.article-content ul ul > li:before {
  box-sizing: border-box;
  border: 2px solid var(--color-primary);
  background-color: transparent;
}

.article-content table {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-spacing: 0;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.625;
}
.article-content table * { color: #000;}

.article-content thead {
  background-color: #f3f4f6;
}

.article-content th {
  padding: 0.75rem 1rem;
  border: 0;
  border-left: 1px solid #ececec;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  color: #111827;
  font-size: 0.75rem;
  line-height: calc(1 / 0.75);
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.05em;background-color: #f6f6f6;
}

.article-content table p {margin: 0;}

.article-content .overflow-x-auto {margin: 24px auto;}


.article-content .overflow-x-auto .overflow-text {font-size: 11px; color: #bdbdbd; text-align: right; display: none;}


.article-content td {
  padding: 0.4rem;
  border: 1px solid #f3f4f6;
  color: #4b5563;
  vertical-align: middle;
}

.article-content tbody tr:nth-child(2n) {
  background-color: #f9fafb;
}

.article-content tbody tr:last-child td {
  border-bottom: 0;
}

.article-content table td:first-child {
  color: #111827;
  font-weight: 600;
}

.article-content code {
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  background-color: #fef2f2;
  color: #b91c1c;
  font-size: 0.875rem;
  line-height: calc(1.25 / 0.875);
  font-weight: 600;
}

.article-content pre {
  margin-block: 1.5rem;
  border: 1px solid #1f2937;
  border-radius: 0.25rem;
  background-color: #111827;
  padding: 1rem;
  color: #f3f4f6;
  overflow-x: auto;
}

.article-content pre code {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  background-color: transparent;
  padding: 0;
}

.article-content hr {
  margin-block: 2.5rem;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.article-show .right {height: 100%;}

.previous-next { margin: 24px 0; border-top: 1px solid var(--color-border); padding: 16px 0;font-size:var(--font-size-sm)}
.previous-next strong,.previous-next a {font-size:var(--font-size-sm)}

@media(max-width:1200px) {
    .navbar-brand {
        width: 155px;
        margin-right: 16px
    }

    .navbar-brand .brand-mark {
        width: 120px;
        max-height: 33px
    }

    .brand-slogan {
        max-width: 148px;
        font-size: 9px
    }

    .navbar-light .navbar-nav .nav-link {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 14px
    }

    .header-tools {
        gap: 7px;
        margin-left: 18px;
        padding-left: 14px
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .selection-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .step-card::after {
        display: none
    }
}

@media(max-width:990px) {
    .navbar {
        min-height: 72px
    }

    .navbar-brand {
        width: 150px;
        margin-right: 14px
    }

    .navbar-brand .brand-mark {
        width: 112px;
        max-height: 31px
    }

    .brand-slogan {
        max-width: 144px;
        font-size: 9px
    }

    .navbar-collapse {
        max-height: calc(100dvh - 72px);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        padding: 10px 0 18px;
        border-top: 1px solid var(--line)
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 10px 0
    }

    .navbar-light .navbar-nav > .nav-item > .nav-link {
        padding: 13px 0 12px;
        border-bottom: 1px solid #e4ebf4;
        color: #133b70;
        font-size: 15px;
        font-weight: 800;
        line-height: 1.4
    }

    .navbar-light .navbar-nav .nav-link:after {
        display: none
    }

    .navbar-light .navbar-nav .nav-item.has-dropdown .simple-dropdown {
        position: static;
        display: block;
        min-width: 0;
        margin: 0 0 7px 14px;
        padding: 6px 0 8px;
        border: 0;
        border-left: 2px solid #c9ddf5;
        border-radius: 0;
        background: #f8fbff;
        box-shadow: none
    }

    .navbar-light .navbar-nav .simple-dropdown a {
        padding: 8px 14px;
        color: #49627f;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.5;
        white-space: normal
    }

    .header-tools {
        width: 100%;
        align-items: flex-start;
        flex-wrap: wrap;
        margin: 12px 0 0;
        padding: 10px 0 0;
        border-top: 1px solid var(--line);
        border-left: 0
    }

    .language-switcher {
        min-width: 0;
        flex: 1 1 150px
    }

    .language-menu {
        right: auto;
        left: 0
    }

    .language-switcher[open] .language-menu {
        position: static;
        width: 100%;
        margin-top: 8px
    }

    .header-search-panel {
        position: fixed;
        top: 80px;
        right: 18px;
        left: 18px;
        width: auto
    }

    .hero-copy h1 {
        font-size: 38px
    }

    .hero-visual {
        min-height: 320px
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .metric-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .site-container {
        padding-right: 18px;
        padding-left: 18px
    }

    .navbar-brand {
        width: 150px;
        min-width: 0;
        flex: 0 1 150px;
        margin-right: 10px
    }

    .navbar-brand .brand-mark {
        width: 108px;
        max-height: 30px
    }

    .brand-slogan {
        max-width: 142px;
        font-size: 8px;
        letter-spacing: .04em
    }

    .hero-section {
        padding-top: 48px
    }

    .hero-copy h1 {
        font-size: 31px
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start
    }

    .hero-visual {
        min-height: 265px;
        margin-top: 28px
    }

    .hero-specs {
        gap: 5px
    }

    .hero-specs div {
        min-width: 0;
        padding: 8px;
        font-size: 12px
    }

    .hero-specs small {
        font-size: 10px
    }

    .feature-strip {
        margin-top: 24px;
        padding: 6px;
        border-radius: 12px
    }

    .feature-strip,
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .feature-strip div {
        grid-template-columns: 40px minmax(0, 1fr);
        column-gap: 10px;
        min-height: 84px;
        padding: 12px
    }

    .feature-strip div::after {
        display: none
    }

    .feature-strip div:nth-child(odd)::after {
        display: block;
        height: 42px
    }

    .feature-strip i {
        width: 40px;
        height: 40px;
        font-size: 34px
    }

    .feature-strip b {
        font-size: 14px
    }

    .feature-strip small {
        font-size: 12px
    }

    .section-pad,
    .contact-section {
        padding: 58px 0
    }

    .section-head h2,
    .about-shell h2,
    .contact-copy h2,
    .cta-section h2 {
        font-size: 28px
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 11px
    }

    .product-card img {
        height: 125px
    }

    .product-card h3,
    .product-card p,
    .product-card a {
        margin-right: 12px;
        margin-left: 12px
    }

    .product-card h3 {
        font-size: 16px
    }

    .product-card p {
        min-height: 95px;
        font-size: 12px
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }

    .industry-card {
        height: 148px
    }

    .selection-grid,
    .trust-panels,
    .contact-shell,
    .about-shell {
        grid-template-columns: 1fr
    }

    .support-card {
        min-height: 205px;
        background-size: 48% auto
    }

    .about-shell>img {
        min-height: 250px
    }

    .about-shell>div {
        padding: 28px 22px
    }

    .about-shell h2 {
        font-size: 32px
    }

    .metric-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 22px
    }

    .metric-card:nth-child(odd) {
        padding-left: 0;
        border-left: 0
    }

    .cert-list {
        grid-template-columns: repeat(3, 1fr)
    }

    .client-logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(145px, 1fr))
    }

    .certificate-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))
    }

    .certificate-grid img {
        height: 260px
    }

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

    .footer-bottom {
        display: block
    }

    .footer-bottom button {
        margin-top: 8px
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

@media(max-width:576px) {
    .quick-consult {
        right: 16px;
        bottom: 74px
    }

    .back-top {
        right: 16px;
        bottom: 16px
    }

    #gkConsultModal .modal-body {
        padding: 0 20px 22px
    }

    .gk-consult-modal-copy h2 {
        font-size: 22px
    }

    .advantage-grid {
        grid-template-columns: 1fr
    }

    .advantage-grid article {
        grid-template-columns: 72px minmax(0, 1fr);
        min-height: 144px;
        padding: 20px 16px 16px
    }

    .advantage-visual {
        min-height: 96px
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        scroll-behavior: auto !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

/* Homepage-only category cards: sourced from direct child categories of product channel #3. */
.product-category-card{display:flex;min-height:370px;flex-direction:column;border:1px solid #e1e8f2!important;border-radius:10px;color:var(--ink);background:#fff;box-shadow:0 3px 12px rgba(8,45,108,.03);text-decoration:none}
.product-category-card:hover,.product-category-card:focus,.product-category-card:active{border-color:#b7d1ff!important;color:var(--ink);box-shadow:0 12px 28px rgba(7,84,215,.12);text-decoration:none!important}
.product-category-card .product-card-image{display:block;width:100%;height:190px;padding:14px 12px 4px;object-fit:contain;background:#fff}
.product-category-card .product-card-body{display:flex;flex:1;flex-direction:column;padding:11px 18px 18px}
.product-category-card strong,.product-category-card small,.product-category-card em{display:block}
.product-category-card strong{color:#102445;font-size:20px;line-height:1.45;font-weight:700}
.product-category-card small{min-height:68px;margin:10px 0 16px;color:#637188;font-size:14px;line-height:1.4}
.product-category-card em{display:flex;min-height:40px;align-items:center;justify-content:center;gap:11px;margin-top:auto;border:1px solid #2a70ff;border-radius:10px;color:#1262ef;font-size:15px;font-style:normal;font-weight:700;transition:background-color .2s,color .2s}
.product-category-card em .fa{font-size:18px;line-height:1}.product-category-card:hover em{background:#1262ef;color:#fff}
@media(max-width:1199.98px){.product-category-card{min-height:355px}.product-category-card .product-card-image{height:175px}}
@media(max-width:767.98px){.product-category-card{min-height:315px}.product-category-card .product-card-image{height:145px;padding:10px 8px 2px}.product-category-card .product-card-body{padding:10px 12px 14px}.product-category-card strong{font-size:17px}.product-category-card small{min-height:62px;margin:7px 0 12px;font-size:12px;line-height:1.7}.product-category-card em{min-height:36px;border-radius:8px;font-size:13px}}
