:root {
    --blue: #06469d;
    --blue-dark: #052d64;
    --blue-deep: #031d43;
    --ink: #10284d;
    --muted: #61728a;
    --line: #dbe4f0;
    --soft: #f4f8fd;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(12, 45, 91, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Arial", "Helvetica", sans-serif;
    font-size: 18px;
    background: #fff;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(10, 48, 98, 0.08);
    box-shadow: 0 6px 24px rgba(7, 32, 72, 0.06);
}

.header-shell {
    width: min(1180px, calc(100% - 42px));
    height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand img {
    width: 156px;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    flex: 1;
}

.primary-nav > a,
.primary-nav .nav-link,
.has-dropdown > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 31px 0;
    color: #14233d;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
}

.primary-nav > a:hover,
.primary-nav > a.active,
.primary-nav .nav-link:hover,
.primary-nav .nav-link.active,
.has-dropdown > a:hover,
.has-dropdown > a.active {
    color: var(--blue);
}

.primary-nav > a::after,
.primary-nav .nav-link::after,
.has-dropdown > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 24px;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.2s ease;
}

.primary-nav > a:hover::after,
.primary-nav > a.active::after,
.primary-nav .nav-link:hover::after,
.primary-nav .nav-link.active::after,
.has-dropdown > a.active::after,
.has-dropdown:hover > a::after {
    width: 100%;
}

.nav-item {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    left: 50%;
    top: calc(100% - 8px);
    width: 360px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
}

.nav-dropdown a {
    display: block;
    padding: 11px 12px;
    color: #1d355f;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
}

.nav-dropdown a:hover {
    background: var(--soft);
    color: var(--blue);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.header-quote,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s ease;
}

.header-quote,
.btn-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 12px 24px rgba(6, 70, 157, 0.22);
}

.header-quote:hover,
.btn-primary:hover {
    background: #03367d;
    transform: translateY(-1px);
}

.btn-outline {
    color: var(--blue);
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--blue);
}

.btn-outline:hover {
    color: #fff;
    background: var(--blue);
}

.btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
    color: var(--blue);
    background: #fff;
}

.btn.compact {
    min-height: 40px;
    padding-inline: 22px;
    font-size: 13px;
}

.btn.full {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px auto;
    background: var(--blue-dark);
    transition: 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: #eaf2fb;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(244, 248, 253, 0.96) 0%, rgba(244, 248, 253, 0.86) 35%, rgba(244, 248, 253, 0.24) 62%, rgba(244, 248, 253, 0) 82%);
}

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

.hero-content {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 42px));
    margin: 0 auto;
    padding: 48px 0 78px;
}

.eyebrow,
.section-heading span,
.about-heading span,
.about-content > span,
.service-overlay > span,
.split-heading span {
    display: block;
    color: var(--blue);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 850px;
    margin: 12px 0 14px;
    color: var(--blue-dark);
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.03;
    font-weight: 950;
    text-transform: uppercase;
}

.hero-copy {
    max-width: 640px;
    margin: 0 0 26px;
    color: #233a5f;
    font-size: 17px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-arrow,
.side-arrow {
    position: absolute;
    z-index: 2;
    width: 42px;
    height: 42px;
    color: var(--blue);
    background: #fff;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(10, 48, 98, 0.14);
    cursor: pointer;
}

.hero-prev {
    left: 14px;
    top: 50%;
}

.hero-next {
    right: 14px;
    top: 50%;
}

.hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #bed0e8;
    cursor: pointer;
}

.hero-dots button.active {
    background: var(--blue);
}

.stats-band {
    position: relative;
    z-index: 5;
    width: min(1100px, calc(100% - 42px));
    margin: -48px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--blue);
    color: #fff;
    box-shadow: var(--shadow);
}

.about-page .stats-band {
    width: min(1180px, calc(100% - 42px));
    margin-top: -28px;
}

.stat-item {
    min-height: 96px;
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    padding: 20px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item i {
    grid-row: span 2;
    font-size: 34px;
}

.stat-item strong {
    font-size: 28px;
    line-height: 1;
}

.stat-item span {
    font-size: 14px;
    opacity: 0.86;
}

.section {
    width: min(1180px, calc(100% - 42px));
    margin: 0 auto;
    padding: 64px 0;
}

.products-section {
    padding-top: 82px;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading h2,
.about-heading h2,
.about-content h2,
.split-heading h2,
.service-overlay h2 {
    margin: 8px 0 8px;
    color: var(--blue-dark);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    font-weight: 950;
    text-transform: uppercase;
}

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

.site-breadcrumb {
    position: relative;
    overflow: hidden;
    padding: 88px 0 96px;
    background-color: var(--blue-deep);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.site-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 53, 110, 0.58), rgba(4, 53, 110, 0.36) 58%, rgba(4, 53, 110, 0.08));
}

.site-breadcrumb .container {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 42px));
    margin: 0 auto;
}

.breadcrumb-title {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.08;
    font-weight: 950;
    text-transform: uppercase;
}

.breadcrumb-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.breadcrumb-menu li {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb-menu li::before {
    content: "";
    width: 18px;
    height: 2px;
    background: rgba(255, 255, 255, 0.45);
}

.breadcrumb-menu li:first-child::before {
    display: none;
}

.breadcrumb-menu a {
    color: #fff;
    opacity: 0.88;
}

.breadcrumb-menu a:hover,
.breadcrumb-menu li.active {
    color: #fff;
    opacity: 1;
}

.product-wrap {
    position: relative;
}

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

.product-card {
    min-height: 352px;
    padding: 24px 24px 22px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(8, 42, 86, 0.05);
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.products-section .product-card {
    min-height: 410px;
}

.product-card:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(6, 70, 157, 0.22);
}

.product-card img {
    width: 100%;
    height: 155px;
    object-fit: contain;
    margin-bottom: 22px;
}

.product-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    width: 100%;
    margin-bottom: 24px;
    padding: 6px;
    overflow: hidden;
    background: #fff;
}

.product-card__image img {
    height: 100%;
    margin-bottom: 0;
    transform: scale(1.12);
}

.product-card h3 {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: 20px;
    transition: color 0.22s ease;
}

.product-card p {
    min-height: 56px;
    margin: 0 0 14px;
    color: #445670;
    font-size: 15px;
    line-height: 1.45;
    transition: color 0.22s ease;
}

.product-card a,
.news-card a {
    color: var(--blue);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    transition: color 0.22s ease;
}

.product-card:hover h3,
.product-card:hover p,
.product-card:hover a {
    color: #fff;
}

.side-arrow {
    top: 46%;
}

.product-prev {
    left: -62px;
}

.product-next {
    right: -62px;
}

.products-section > .btn {
    margin: 22px auto 0;
    display: flex;
    width: fit-content;
}

.about-section {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 52px;
    align-items: center;
}

.subpage-hero {
    position: relative;
    overflow: hidden;
    margin-top: 26px;
    padding: 42px;
    background: #fff;
    border: 1px solid rgba(219, 228, 240, 0.9);
    box-shadow: 0 12px 34px rgba(8, 42, 86, 0.06);
}

.subpage-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(244, 248, 253, 0.84), rgba(244, 248, 253, 0.72)),
        var(--subpage-hero-bg) center / cover no-repeat;
    opacity: 0.22;
}

.subpage-hero > * {
    position: relative;
    z-index: 1;
}

.subpage-hero__media {
    min-height: 320px;
}

.subpage-hero__media img {
    height: 100%;
}

.subpage-hero__content p {
    max-width: 560px;
}

.home-page .about-section {
    display: block;
}

.about-heading {
    max-width: 900px;
    margin: 0 auto 34px;
    text-align: center;
}

.home-page .about-main {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 52px;
    align-items: center;
}

.home-page .about-media img {
    aspect-ratio: 1.38 / 1;
}

.about-media {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.about-media img {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    object-fit: cover;
}

.play-button {
    position: absolute;
    inset: 0;
    width: 72px;
    height: 72px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background: #fff;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 18px 40px rgba(6, 36, 81, 0.18);
    cursor: pointer;
}

.play-button i {
    display: block;
    margin-left: 4px;
    line-height: 1;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    place-items: center;
    padding: 24px;
}

.video-modal.is-open {
    display: grid;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 16, 39, 0.78);
    backdrop-filter: blur(4px);
}

.video-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    background: #000;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.video-modal__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-modal__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal__close {
    position: absolute;
    right: -16px;
    top: -16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: #fff;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.video-modal__close:hover {
    color: #fff;
    background: var(--blue);
}

.about-content p {
    color: #40536f;
    line-height: 1.7;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 26px 0;
}

.about-facts div {
    min-width: 0;
    padding: 14px 8px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.about-facts div:last-child {
    border-right: 0;
}

.about-facts i {
    color: var(--blue);
    font-size: 29px;
}

.about-facts strong {
    display: block;
    margin-top: 10px;
    color: var(--blue-dark);
    font-size: 18px;
    line-height: 1.2;
}

.about-facts span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.35;
}

.history-section {
    padding-top: 40px;
}

.history-slider {
    position: relative;
}

.history-slider .side-arrow {
    top: 180px;
}

.history-prev {
    left: -62px;
}

.history-next {
    right: -62px;
}

.history-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 360px);
    gap: 22px;
    overflow-x: auto;
    padding: 10px 2px 16px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.history-track::-webkit-scrollbar {
    display: none;
}

.history-track.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.history-track.is-dragging .history-card {
    transition: none;
}

.history-track.is-dragging .history-card:hover {
    transform: translateZ(0);
    border-color: rgba(27, 68, 144, 0.12);
    box-shadow: 0 10px 30px rgba(8, 42, 86, 0.05);
}

.history-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid rgba(27, 68, 144, 0.12);
    box-shadow: 0 10px 30px rgba(8, 42, 86, 0.05);
    scroll-snap-align: start;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    transform: translateZ(0);
}

.history-card:hover {
    transform: translateY(-5px);
    border-color: rgba(27, 68, 144, 0.2);
    box-shadow: 0 18px 40px rgba(8, 42, 86, 0.11);
}

.history-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.38 / 1;
    background: var(--soft);
}

.history-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.history-body {
    padding: 24px 24px 28px;
    margin-top: -1px;
    border-top: 0;
    box-shadow: inset 0 4px 0 var(--blue);
    background: #fff;
}

.history-body span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 30px;
    font-weight: 950;
    line-height: 1;
}

.history-body p {
    margin: 0;
    color: #425572;
    font-size: 16px;
    line-height: 1.7;
}

.certification-grid .product-card {
    min-height: 420px;
    padding-top: 30px;
}

.certification-grid .product-card img {
    height: 220px;
    margin-bottom: 26px;
}

.value-section {
    padding-top: 32px;
}

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

.value-card {
    min-height: 260px;
    padding: 34px 30px 30px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 25px rgba(8, 42, 86, 0.04);
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.value-card:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(6, 70, 157, 0.22);
}

.value-card i {
    color: var(--blue);
    font-size: 48px;
    transition: color 0.22s ease;
}

.value-card h3 {
    margin: 20px 0 12px;
    color: var(--blue-dark);
    font-size: 20px;
    line-height: 1.25;
    transition: color 0.22s ease;
}

.value-card p {
    margin: 0;
    color: #51637b;
    font-size: 17px;
    line-height: 1.6;
    transition: color 0.22s ease;
}

.value-card::after {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    margin: 22px auto 0;
    background: var(--blue);
    transition: background 0.22s ease;
}

.value-card:hover i,
.value-card:hover h3,
.value-card:hover p {
    color: #fff;
}

.value-card:hover::after {
    background: #fff;
}

.service-banner {
    min-height: 440px;
    background:
        linear-gradient(90deg, rgba(4, 53, 110, 0.95) 0%, rgba(4, 53, 110, 0.82) 43%, rgba(4, 53, 110, 0.05) 72%),
        url("/skin/images/slider-3.jpg") center / cover no-repeat;
}

.service-overlay {
    width: min(1180px, calc(100% - 42px));
    margin: 0 auto;
    padding: 76px 0;
    color: #fff;
}

.service-overlay > span,
.service-overlay h2 {
    color: #fff;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 118px);
    gap: 24px;
    margin: 34px 0 32px;
}

.support-grid div {
    min-height: 104px;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.support-grid i {
    margin-bottom: 10px;
    font-size: 34px;
}

.support-grid strong,
.support-grid span {
    font-size: 14px;
}

.split-heading {
    margin-bottom: 28px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

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

.news-card {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 25px rgba(8, 42, 86, 0.05);
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.news-card:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(6, 70, 157, 0.22);
}

.news-card img {
    width: 100%;
    aspect-ratio: 750 / 500;
    height: auto;
    object-fit: cover;
}

.news-card div {
    padding: 18px 18px 16px;
}

.news-card time {
    display: block;
    color: #8a98aa;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    transition: color 0.22s ease;
}

.news-card h3 {
    min-height: 54px;
    margin: 8px 0 10px;
    color: var(--blue-dark);
    font-size: 20px;
    line-height: 1.38;
    transition: color 0.22s ease;
}

.news-card h3 a {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-transform: inherit;
}

.news-card:hover time,
.news-card:hover h3,
.news-card:hover a {
    color: #fff;
}

.news-card:hover p {
    color: #fff;
}

.news-split-heading {
    align-items: center;
}

.news-intro-strip {
    margin-bottom: 30px;
    padding: 26px 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, rgba(244, 248, 253, 0.96), rgba(232, 241, 252, 0.96));
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(8, 42, 86, 0.06);
}

.news-intro-strip p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.news-intro-strip__meta {
    display: grid;
    gap: 12px;
}

.news-intro-strip__meta span,
.news-card__meta span,
.news-article__meta span,
.sidebar-post span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding-left: 22px;
}

.news-card__meta span i,
.news-article__meta span i,
.sidebar-post span i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.news-intro-strip__meta span {
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 800;
}

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

.news-card--list {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.news-card__media {
    display: block;
    overflow: hidden;
}

.news-card__media img {
    transition: transform 0.3s ease;
}

.news-card--list:hover .news-card__media img {
    transform: scale(1.04);
}

.news-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.news-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 0;
    color: #7d8ea5;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.news-card__meta span {
    padding-left: 0;
}

.news-card__meta span + span {
    margin-left: 10px;
}

.news-card__meta span i {
    left: -18px;
}

.news-card__body p {
    min-height: 88px;
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.62;
}

.news-card__body a:last-child {
    margin-top: auto;
}

.news-card__body > a:last-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-top: 0;
}

.news-pagination {
    margin-top: 42px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.pagination a,
.pagination span {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 800;
    transition: 0.2s ease;
}

.pagination a:hover,
.pagination span:hover,
.pagination .current,
.pagination .page-num-current {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 12px 24px rgba(6, 70, 157, 0.18);
}

.pagination a > span {
    min-width: 0;
    height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    box-shadow: none;
}

.news-cta-section {
    padding-top: 0;
}

.news-cta-card {
    padding: 40px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background:
        linear-gradient(120deg, rgba(4, 53, 110, 0.96), rgba(6, 70, 157, 0.9)),
        url("/skin/images/index-form-bg.jpg") center / cover no-repeat;
    box-shadow: 0 22px 48px rgba(6, 70, 157, 0.22);
}

.news-cta-card span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-cta-card h2 {
    margin: 10px 0 12px;
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
    font-weight: 950;
    text-transform: uppercase;
}

.news-cta-card p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.news-cta-card .hero-actions {
    flex-shrink: 0;
}

.news-cta-card .btn-primary {
    color: var(--blue);
    background: #fff;
    border-color: #fff;
    box-shadow: 0 14px 30px rgba(3, 29, 67, 0.18);
}

.news-cta-card .btn-primary:hover {
    color: #fff;
    background: #063f95;
    border-color: #063f95;
}

.news-cta-card .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.48);
    background: transparent;
}

.news-cta-card .btn-outline:hover {
    color: var(--blue);
    background: #fff;
}

.news-detail-shell {
    padding-bottom: 36px;
}

.news-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.72fr);
    gap: 28px;
    align-items: start;
}

.news-article,
.sidebar-widget {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(8, 42, 86, 0.06);
}

.news-article__cover img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.news-article__body,
.news-article__footer {
    padding: 34px 36px;
}

.news-article__eyebrow,
.sidebar-widget__eyebrow {
    display: inline-block;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-article__body h1 {
    margin: 12px 0 18px;
    color: var(--blue-dark);
    font-size: clamp(30px, 3.5vw, 44px);
    line-height: 1.16;
    font-weight: 950;
    text-transform: uppercase;
}

.news-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    color: #6f839d;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.news-article__content {
    color: #34506f;
    font-size: 17px;
    line-height: 1.9;
}

.news-article__content > :first-child {
    margin-top: 0;
}

.news-article__content > :last-child {
    margin-bottom: 0;
}

.news-article__content h1,
.news-article__content h2,
.news-article__content h3,
.news-article__content h4 {
    margin: 1.7em 0 0.75em;
    color: var(--blue-dark);
    line-height: 1.24;
}

.news-article__content p,
.news-article__content ul,
.news-article__content ol,
.news-article__content blockquote {
    margin: 0 0 1.15em;
}

.news-article__content img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 24px auto;
}

.news-article__content a {
    color: var(--blue);
    text-decoration: underline;
}

.news-article__content table {
    width: 100% !important;
    border-collapse: collapse;
    margin: 24px 0;
}

.news-article__content th,
.news-article__content td {
    padding: 12px 14px;
    border: 1px solid var(--line);
}

.news-article__content blockquote {
    padding: 18px 22px;
    background: var(--soft);
    border-left: 4px solid var(--blue);
    color: var(--blue-dark);
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.news-tags strong {
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-tags__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-tags__list a {
    padding: 9px 14px;
    border: 1px solid var(--line);
    background: var(--soft);
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 800;
    transition: 0.2s ease;
}

.news-tags__list a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.news-sidebar {
    display: grid;
    gap: 20px;
}

.sidebar-widget {
    padding: 28px;
}

.sidebar-widget h3 {
    margin: 10px 0 16px;
    color: var(--blue-dark);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 900;
    text-transform: uppercase;
}

.sidebar-widget p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.sidebar-widget--accent {
    background: linear-gradient(180deg, #f8fbff, #edf4fd);
}

.sidebar-links,
.sidebar-posts {
    display: grid;
    gap: 14px;
}

.sidebar-links a,
.sidebar-post {
    display: grid;
    gap: 12px;
    align-items: center;
    transition: 0.2s ease;
}

.sidebar-links a {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--blue-dark);
    font-weight: 800;
}

.sidebar-links a:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.sidebar-links a:hover,
.sidebar-post:hover strong {
    color: var(--blue);
}

.sidebar-links strong {
    min-width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--soft);
    color: var(--blue);
    font-size: 12px;
}

.sidebar-post {
    grid-template-columns: 88px minmax(0, 1fr);
    color: inherit;
}

.sidebar-post img {
    width: 88px;
    height: 72px;
    object-fit: cover;
}

.sidebar-post strong {
    display: block;
    margin-bottom: 8px;
    color: var(--blue-dark);
    font-size: 15px;
    line-height: 1.4;
    transition: 0.2s ease;
}

.sidebar-post span {
    color: #7d8ea5;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.news-tags--cloud {
    display: block;
}

.news-related-section {
    padding-top: 10px;
}

.product-detail-page {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.product-detail-hero {
    padding-top: 34px;
    padding-bottom: 36px;
}

.product-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    color: #6f8198;
    font-size: 13px;
    font-weight: 700;
}

.product-detail-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.product-detail-breadcrumb li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 1px solid #9cb2d1;
    border-right: 1px solid #9cb2d1;
    transform: rotate(45deg) scale(0.75);
}

.product-detail-breadcrumb li:first-child::before {
    display: none;
}

.product-detail-breadcrumb a {
    color: #6f8198;
}

.product-detail-breadcrumb li.active,
.product-detail-breadcrumb a:hover {
    color: var(--blue);
}

.product-detail-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 54px;
    align-items: start;
}

.product-detail-gallery {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.product-detail-gallery__thumbs {
    display: grid;
    gap: 14px;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    padding-top: 2px;
    padding-right: 6px;
    align-content: start;
    scrollbar-width: thin;
}

.product-thumb {
    padding: 0;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(8, 42, 86, 0.05);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-thumb.active,
.product-thumb:hover {
    border-color: var(--blue);
    box-shadow: 0 12px 28px rgba(6, 70, 157, 0.16);
}

.product-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: contain;
    background: #fff;
}

.product-detail-gallery__main {
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(219, 228, 240, 0.9);
    box-shadow: var(--shadow);
}

.product-detail-gallery__main img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.product-detail-summary {
    padding-top: 18px;
}

.product-detail-summary__eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--blue-dark);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
}

.product-detail-summary h1 {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.12;
    font-weight: 950;
    text-transform: uppercase;
}

.product-detail-summary__specs {
    margin-top: 22px;
    color: var(--blue-dark);
    font-size: 15px;
    line-height: 2.05;
}

.product-detail-summary__specs p,
.product-detail-summary__specs li {
    color: #304765;
    font-size: 15px;
    line-height: inherit;
}

.product-detail-summary__specs p {
    margin: 0 0 10px;
}

.product-detail-summary__specs br {
    display: block;
    content: "";
    margin-bottom: 0;
}

.product-detail-summary__specs ul {
    margin: 0;
    padding-left: 18px;
}

.product-detail-actions {
    margin-top: 28px;
}

.product-spec-section {
    padding-top: 22px;
}

.product-spec-content {
    margin-top: 22px;
    padding: 26px;
    background: #fff;
    border: 1px solid rgba(219, 228, 240, 0.9);
    box-shadow: 0 10px 28px rgba(8, 42, 86, 0.04);
}

.product-spec-content img {
    max-width: 100%;
    height: auto;
}

.product-spec-content table {
    width: 100% !important;
    border-collapse: collapse;
    margin: 0;
}

.product-spec-content th,
.product-spec-content td {
    padding: 12px 14px;
    border: 1px solid var(--line);
    font-size: 14px;
    line-height: 1.6;
}

.product-spec-content th {
    color: var(--blue-dark);
    background: #f5f8fc;
    text-transform: uppercase;
}

.related-products-section {
    padding-top: 10px;
}

.related-products-nav {
    display: flex;
    gap: 12px;
}

.related-products-nav .side-arrow {
    position: static;
}

.related-products-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 54px) / 4);
    gap: 18px;
    overflow-x: auto;
    padding: 8px 2px 10px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.related-products-track::-webkit-scrollbar {
    display: none;
}

.related-product-card {
    scroll-snap-align: start;
}

.related-product-card h3 {
    min-height: 44px;
    margin-bottom: 6px;
    color: var(--blue-dark);
}

.related-product-card p {
    min-height: 0;
    margin: 0 0 8px;
    color: #6a7b92;
    font-size: 14px;
    line-height: 1.45;
}

.related-product-card p:empty {
    display: none;
}

.related-product-card a:last-child {
    margin-top: 4px;
}

.product-catalog-section {
    padding-top: 52px;
}

.product-catalog-heading {
    margin-bottom: 36px;
}

.product-catalog-group + .product-catalog-group {
    margin-top: 46px;
}

.product-catalog-group__head {
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.product-catalog-group__head h3 {
    margin: 0;
    color: var(--blue-dark);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
}

.product-card--catalog {
    min-height: auto;
}

.product-card--catalog h3 {
    min-height: 52px;
    color: #121826;
}

.product-card--catalog a:last-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.contact-section {
    position: relative;
    padding: 66px 0 84px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(238, 246, 255, 0.94), rgba(238, 246, 255, 0.8)),
        url("/skin/images/011.jpg") center / cover no-repeat;
}

.contact-section::after {
    content: "";
    position: absolute;
    left: -4%;
    right: -4%;
    bottom: -54px;
    height: 120px;
    background: var(--blue);
    transform: rotate(3deg);
}

.section-heading.light {
    position: relative;
    z-index: 1;
}

.contact-shell {
    position: relative;
    z-index: 1;
    width: min(1040px, calc(100% - 42px));
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: 0.76fr 1.24fr;
    gap: 58px;
    align-items: center;
}

.contact-info {
    display: grid;
    gap: 22px;
}

.contact-row {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: center;
}

.contact-row i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 50%;
    font-size: 21px;
}

.contact-row strong {
    display: block;
    color: var(--blue-dark);
    font-size: 17px;
}

.contact-row a,
.contact-row span {
    display: block;
    margin-top: 3px;
    color: #445670;
    font-size: 16px;
    line-height: 1.5;
}

.social-row {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    padding-left: 68px;
}

.social-row a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.social-row a:hover {
    color: #fff;
    background: var(--blue);
}

.contact-form {
    padding: 30px;
    background: #fff;
    border: 1px solid rgba(219, 228, 240, 0.9);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.contact-form label,
.contact-form .form-field {
    position: relative;
    display: block;
    margin-bottom: 14px;
}

.contact-form label > span,
.contact-form .form-field > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 58px;
    padding: 0 48px 0 18px;
    color: var(--ink);
    background: #fbfdff;
    border: 1px solid var(--line);
    border-radius: 3px;
    outline: 0;
    font-size: 16px;
    line-height: 58px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #64748b;
    opacity: 1;
}

.contact-form textarea {
    min-height: 142px;
    padding-top: 17px;
    padding-bottom: 17px;
    line-height: 1.45;
    resize: vertical;
}

.contact-form label > i,
.contact-form .form-field > i {
    position: absolute;
    right: 17px;
    top: 29px;
    transform: translateY(-50%);
    color: #aab5c5;
    z-index: 2;
}

.contact-form .message-label > i {
    top: 24px;
}

.contact-form .nice-select {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 58px;
    line-height: 58px;
    float: none;
    padding-left: 18px;
    padding-right: 48px;
    color: #64748b;
    background: #fbfdff;
    border: 1px solid var(--line);
    border-radius: 3px;
    font-size: 16px;
}

.contact-form .nice-select.open {
    z-index: 30;
}

.contact-form .nice-select::after {
    display: none;
}

.contact-form .nice-select .current {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-form .nice-select .list {
    width: 100%;
    max-height: 260px;
    overflow-y: auto;
    border-radius: 3px;
    z-index: 31;
}

.contact-form .nice-select .option {
    min-height: 40px;
    line-height: 40px;
    font-size: 15px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.contact-form .nice-select.open,
.contact-form .nice-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(6, 70, 157, 0.09);
}

.form-message {
    display: none;
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.45;
}

.form-message.loading,
.form-message.success,
.form-message.error {
    display: block;
}

.form-message.loading {
    color: #06469d;
    background: rgba(6, 70, 157, 0.08);
}

.form-message.success {
    color: #146c43;
    background: #e7f6ee;
}

.form-message.error {
    color: #b42318;
    background: #fff0ed;
}

.privacy-note {
    margin: 12px 0 0;
    color: #7a8899;
    font-size: 14px;
    text-align: center;
}

.agent-page {
    overflow: hidden;
}

.agent-hero {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 64px;
    align-items: start;
    padding-top: 52px;
    padding-bottom: 52px;
}

.agent-hero-copy {
    padding-top: 18px;
}

.agent-hero-copy p {
    max-width: 620px;
    color: #40536f;
    line-height: 1.75;
}

.agent-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 34px;
}

.agent-point {
    min-height: 182px;
    padding: 20px 18px 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 25px rgba(8, 42, 86, 0.05);
}

.agent-point i {
    color: var(--blue);
    font-size: 24px;
}

.agent-point strong {
    display: block;
    margin-top: 14px;
    color: var(--blue-dark);
    font-size: 17px;
    line-height: 1.2;
}

.agent-point span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.agent-media {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.agent-media img {
    width: 100%;
    aspect-ratio: 1.03 / 1;
    object-fit: cover;
}

.agent-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 29, 67, 0) 36%, rgba(3, 29, 67, 0.64) 100%);
}

.agent-badge {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.96);
    border-left: 4px solid var(--blue);
    box-shadow: 0 18px 40px rgba(6, 36, 81, 0.18);
}

.agent-badge strong {
    display: block;
    color: var(--blue-dark);
    font-size: 18px;
}

.agent-badge span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.agent-benefits .value-card {
    min-height: 230px;
}

.agent-step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.agent-step-card {
    padding: 28px 24px 26px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 25px rgba(8, 42, 86, 0.05);
}

.agent-step-card span {
    display: inline-block;
    color: var(--blue);
    font-size: 30px;
    font-weight: 950;
    line-height: 1;
}

.agent-step-card h3 {
    margin: 16px 0 10px;
    color: var(--blue-dark);
    font-size: 20px;
    line-height: 1.3;
}

.agent-step-card p {
    margin: 0;
    color: #51637b;
    font-size: 15px;
    line-height: 1.7;
}

.agent-step-card::after {
    content: "";
    display: block;
    width: 38px;
    height: 3px;
    margin-top: 20px;
    background: var(--blue);
}

.agent-summary .about-media {
    background: var(--soft);
}

.agent-summary .about-media img {
    aspect-ratio: 1.32 / 1;
}

.agent-summary .about-content ul {
    margin: 24px 0 30px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.agent-summary .about-content li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #40536f;
    font-size: 16px;
    line-height: 1.6;
}

.agent-summary .about-content li i {
    margin-top: 4px;
    color: var(--blue);
}

.agent-page .stats-band {
    width: min(1180px, calc(100% - 42px));
    margin-top: -6px;
    gap: 14px;
    background: transparent;
    box-shadow: none;
}

.agent-page .stat-item {
    min-height: 108px;
    padding: 22px 26px;
    background: var(--blue);
    border-right: 0;
    box-shadow: 0 14px 30px rgba(6, 70, 157, 0.16);
}

.agent-process-section {
    padding-top: 56px;
}

.agent-process-heading {
    margin-bottom: 28px;
}

.agent-process-heading h2 {
    white-space: nowrap;
}

.agent-process-heading h2 span {
    display: inline;
    font-size: inherit;
    font-weight: inherit;
    text-transform: inherit;
}

.agent-process-heading h2 span {
    color: var(--blue);
}

.agent-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.agent-process-card {
    position: relative;
    min-height: 252px;
    padding: 30px 24px 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 25px rgba(8, 42, 86, 0.05);
}

.agent-process-card__count {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #d8e4f3;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.agent-process-card__icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #eff5fd, #dfeafb);
    border: 1px solid #d3e1f4;
    border-radius: 18px;
}

.agent-process-card__icon i {
    color: var(--blue);
    font-size: 28px;
}

.agent-process-card h3 {
    margin: 22px 0 12px;
    color: var(--blue-dark);
    font-size: 20px;
    line-height: 1.28;
}

.agent-process-card p {
    margin: 0;
    color: #51637b;
    font-size: 15px;
    line-height: 1.7;
}

.agent-partner-section {
    padding-top: 30px;
}

.agent-partner-head {
    display: grid;
    grid-template-columns: 0.58fr 0.42fr;
    gap: 34px;
    align-items: start;
    margin-bottom: 30px;
}

.agent-partner-head span {
    display: block;
    color: var(--blue);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.agent-partner-head h2 {
    margin: 10px 0 0;
    color: var(--blue-dark);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    font-weight: 950;
    text-transform: uppercase;
}

.agent-partner-copy p {
    margin: 0 0 18px;
    color: #40536f;
    line-height: 1.75;
}

.agent-partner-copy strong {
    color: var(--blue);
}

.agent-partner-grid {
    display: grid;
    grid-template-columns: 0.98fr 1.02fr;
    gap: 34px;
    align-items: center;
}

.agent-choose-list {
    display: grid;
    gap: 16px;
}

.agent-choose-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 25px rgba(8, 42, 86, 0.05);
}

.agent-choose-item__icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #eff5fd, #dfeafb);
    border: 1px solid #d3e1f4;
    border-radius: 22px;
}

.agent-choose-item__icon i {
    color: var(--blue);
    font-size: 32px;
}

.agent-choose-item h3 {
    margin: 0 0 8px;
    color: var(--blue-dark);
    font-size: 20px;
    line-height: 1.25;
}

.agent-choose-item p {
    margin: 0;
    color: #51637b;
    font-size: 15px;
    line-height: 1.65;
}

.agent-partner-media {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.agent-partner-media img {
    width: 100%;
    aspect-ratio: 1.04 / 1;
    object-fit: cover;
}

.agent-contact-section {
    padding-top: 46px;
}

.agent-contact-shell {
    display: grid;
    grid-template-columns: 0.44fr 0.56fr;
    gap: 34px;
    align-items: stretch;
}

.agent-contact-media {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.agent-contact-media img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.agent-contact-form {
    padding: 34px 30px 30px;
}

.contact-page .section {
    padding-top: 56px;
    padding-bottom: 56px;
}

.contact-link-section {
    padding-top: 56px;
}

.contact-link-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.contact-link-card {
    min-height: 274px;
    padding: 28px 24px 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 25px rgba(8, 42, 86, 0.05);
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.contact-link-card:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(6, 70, 157, 0.22);
}

.contact-link-card > i {
    color: var(--blue);
    font-size: 30px;
    transition: color 0.22s ease;
}

.contact-link-card > span {
    display: block;
    margin-top: 18px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    transition: color 0.22s ease;
}

.contact-link-card h3 {
    margin: 12px 0 12px;
    color: var(--blue-dark);
    font-size: 22px;
    line-height: 1.3;
    word-break: break-word;
    transition: color 0.22s ease;
}

.contact-link-card p,
.contact-link-card__meta {
    margin: 0;
    color: #51637b;
    font-size: 15px;
    line-height: 1.7;
    transition: color 0.22s ease;
}

.contact-link-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    transition: color 0.22s ease;
}

.contact-link-card:hover > i,
.contact-link-card:hover > span,
.contact-link-card:hover h3,
.contact-link-card:hover p,
.contact-link-card:hover a,
.contact-link-card:hover .contact-link-card__meta {
    color: #fff;
}

.contact-page-section {
    margin-top: 6px;
}

.contact-page .contact-info {
    padding-top: 8px;
}

.contact-page .contact-form {
    padding: 34px 30px 30px;
}

.contact-form-header {
    margin-bottom: 22px;
}

.contact-form-header h3 {
    margin: 0 0 10px;
    color: var(--blue-dark);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-form-header p {
    margin: 0;
    color: #51637b;
    line-height: 1.7;
}

.policy-page {
    background: #f6f9fd;
}

.policy-section {
    padding-top: 64px;
}

.policy-card {
    max-width: 920px;
    margin: 0 auto;
    padding: 50px 54px;
    color: #32445c;
    background: #fff;
    border: 1px solid rgba(219, 228, 240, 0.92);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.policy-updated {
    margin: 0 0 26px;
    color: var(--blue);
    font-weight: 800;
}

.policy-card h2 {
    margin: 30px 0 12px;
    color: var(--blue-dark);
    font-size: 24px;
    line-height: 1.25;
}

.policy-card h2:first-of-type {
    margin-top: 0;
}

.policy-card p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.82;
}

.policy-card a {
    color: var(--blue);
    font-weight: 800;
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: #d9e7fb;
    background: radial-gradient(circle at 15% 15%, rgba(12, 88, 176, 0.35), transparent 30%), var(--blue-deep);
}

.footer-wave {
    height: 22px;
    background: #063f95;
    transform: skewY(-2deg);
    transform-origin: left top;
}

.footer-shell {
    width: min(1180px, calc(100% - 42px));
    margin: 0 auto;
    padding: 70px 0 56px;
    display: grid;
    grid-template-columns: 1.35fr 0.82fr 1.12fr 1.18fr;
    gap: 56px;
}

.footer-brand img {
    width: 172px;
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 240px;
    color: #adc2de;
    font-size: 16px;
    line-height: 1.7;
}

.footer-social,
.footer-bottom div {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.float-service {
    position: fixed;
    right: 38px;
    top: 50%;
    z-index: 990;
    display: grid;
    gap: 12px;
    transform: translateY(-50%);
}

.float-item {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), #1682ff);
    border-radius: 50%;
    box-shadow: 0 12px 26px rgba(6, 70, 157, 0.28);
    font-size: 21px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.float-item:hover {
    color: var(--blue);
    background: #fff;
    transform: scale(1.12);
    box-shadow: 0 16px 34px rgba(6, 70, 157, 0.36);
}

.float-item:active {
    transform: scale(0.94);
}

.footer-column h3 {
    margin: 0 0 24px;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
}

.footer-column h3::after {
    content: "";
    display: block;
    width: 34px;
    height: 2px;
    margin-top: 12px;
    background: #1682ff;
}

.footer-column a,
.footer-column span {
    display: block;
    margin-bottom: 14px;
    color: #adc2de;
    font-size: 15px;
    line-height: 1.55;
}

.footer-column a:hover {
    color: #fff;
}

.footer-contact i {
    flex: 0 0 19px;
    width: 19px;
    color: #2e94ff;
    line-height: 1.55;
}

.footer-contact a,
.footer-contact span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-bottom {
    width: min(1180px, calc(100% - 42px));
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    color: #adc2de;
    font-size: 14px;
}

@media (max-width: 1180px) {
    .primary-nav {
        gap: 22px;
    }

    .product-prev {
        left: -18px;
    }

    .product-next {
        right: -18px;
    }

    .history-prev {
        left: -18px;
    }

    .history-next {
        right: -18px;
    }

    .footer-shell {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 920px) {
    .header-shell {
        height: 74px;
    }

    .menu-toggle {
        display: block;
        order: 3;
    }

    .header-quote {
        margin-left: auto;
    }

    .primary-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 74px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 21px 18px;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .primary-nav.open {
        display: flex;
    }

    .primary-nav > a,
    .primary-nav .nav-link,
    .has-dropdown > a {
        padding: 15px 0;
    }

    .primary-nav > a.active,
    .primary-nav .nav-link.active,
    .has-dropdown > a.active {
        color: var(--blue);
    }

    .primary-nav > a::after,
    .primary-nav .nav-link::after,
    .has-dropdown > a::after {
        display: none;
    }

    .nav-dropdown {
        position: static;
        width: 100%;
        padding: 4px 0 8px 16px;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-dropdown a {
        white-space: normal;
    }

    .has-dropdown.open .nav-dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .hero {
        min-height: 700px;
    }

    .hero-slide {
        background-position: 60% center;
    }

    .hero-content {
        padding-top: 62px;
    }

    .hero h1,
    .hero-copy {
        max-width: 560px;
    }

    .site-breadcrumb {
        padding: 66px 0 72px;
    }

    .stats-band {
        margin-top: -48px;
        grid-template-columns: repeat(2, 1fr);
    }

    .agent-page .stats-band {
        margin-top: 6px;
        gap: 12px;
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

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

    .news-intro-strip,
    .news-cta-card,
    .news-detail-layout {
        grid-template-columns: 1fr;
    }

    .news-cta-card {
        padding: 34px 30px;
    }

    .news-cta-card .hero-actions {
        width: 100%;
    }

    .about-section,
    .contact-shell {
        grid-template-columns: 1fr;
    }

    .product-detail-shell {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .related-products-track {
        grid-auto-columns: calc((100% - 18px) / 2);
    }

    .subpage-hero {
        padding: 30px;
    }

    .subpage-hero__media {
        min-height: 0;
    }

    .home-page .about-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-link-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .agent-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .agent-partner-head,
    .agent-partner-grid,
    .agent-hero,
    .agent-step-grid {
        grid-template-columns: 1fr;
    }

    .agent-hero-copy {
        padding-top: 0;
    }

    .agent-points {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-shell {
        gap: 34px;
    }

    .service-banner {
        background:
            linear-gradient(90deg, rgba(4, 53, 110, 0.95), rgba(4, 53, 110, 0.72)),
            url("/skin/images/slider-3.jpg") center / cover no-repeat;
    }

    .support-grid {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        max-width: 520px;
    }

    .history-track {
        grid-auto-columns: minmax(300px, 72vw);
    }
}

@media (max-width: 680px) {
    .header-shell,
    .hero-content,
    .section,
    .service-overlay,
    .contact-shell,
    .footer-shell,
    .footer-bottom,
    .stats-band {
        width: min(100% - 28px, 1180px);
    }

    .brand img {
        width: 132px;
    }

    .header-quote {
        display: none;
    }

    .hero {
        min-height: 660px;
    }

    .hero-slide {
        align-items: flex-start;
        background-position: 68% center;
    }

    .hero-slide::before {
        background: linear-gradient(90deg, rgba(238, 246, 255, 0.95), rgba(238, 246, 255, 0.68) 66%, rgba(238, 246, 255, 0.15));
    }

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

    .product-detail-gallery {
        grid-template-columns: 1fr;
    }

    .product-detail-gallery__thumbs {
        grid-auto-flow: column;
        grid-auto-columns: minmax(84px, 108px);
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .product-detail-gallery__thumbs::-webkit-scrollbar {
        display: none;
    }

    .product-detail-summary {
        padding-top: 0;
    }

    .product-spec-content {
        padding: 18px;
    }

    .related-products-track {
        grid-auto-columns: 100%;
    }

    .subpage-hero {
        margin-top: 18px;
        padding: 20px;
    }

    .breadcrumb-menu {
        gap: 10px;
        font-size: 12px;
    }

    .hero-arrow {
        display: none;
    }

    .stats-band,
    .product-grid,
    .news-grid,
    .contact-link-grid,
    .agent-process-grid,
    .form-grid,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .agent-points {
        grid-template-columns: 1fr;
    }

    .agent-badge {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .agent-page .stats-band {
        margin-top: 10px;
        gap: 10px;
    }

    .agent-choose-item,
    .agent-contact-shell {
        grid-template-columns: 1fr;
    }

    .agent-page .stat-item,
    .agent-page .stat-item:nth-child(2),
    .agent-page .stat-item:last-child {
        border-bottom: 0;
    }

    .stat-item,
    .stat-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

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

    .product-card {
        min-height: auto;
    }

    .side-arrow {
        display: none;
    }

    .history-track {
        grid-auto-columns: minmax(250px, 82vw);
        gap: 16px;
        padding-bottom: 10px;
    }

    .certification-grid .product-card {
        min-height: auto;
    }

    .certification-grid .product-card img {
        height: 200px;
    }

    .history-body {
        padding: 20px 18px 22px;
    }

    .history-body span {
        font-size: 26px;
    }

    .about-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-facts div:nth-child(2) {
        border-right: 0;
    }

    .split-heading {
        display: block;
    }

    .split-heading .btn {
        margin-top: 16px;
    }

    .news-intro-strip {
        padding: 22px 20px;
    }

    .news-article__body,
    .news-article__footer,
    .sidebar-widget {
        padding: 22px 20px;
    }

    .news-tags {
        align-items: flex-start;
    }

    .sidebar-post {
        grid-template-columns: 74px minmax(0, 1fr);
    }

    .sidebar-post img {
        width: 74px;
        height: 64px;
    }

    .contact-form {
        padding: 22px 16px;
    }

    .policy-card {
        padding: 30px 20px;
    }

    .policy-card h2 {
        font-size: 21px;
    }

    .policy-card p {
        font-size: 16px;
    }

    .video-modal {
        padding: 18px;
    }

    .video-modal__close {
        right: 8px;
        top: -54px;
    }

    .social-row {
        padding-left: 0;
    }

    .float-service {
        right: 20px;
        gap: 9px;
    }

    .float-item {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
