:root {
    --blue: #0068b7;
    --blue-dark: #004b93;
    --blue-soft: #eaf5ff;
    --blue-pale: #f4faff;
    --navy: #10233f;
    --text: #2b3445;
    --muted: #66758a;
    --border: #e4ebf3;
    --light: #f6f9fc;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(16, 35, 63, 0.11);
    --shadow-soft: 0 10px 28px rgba(16, 35, 63, 0.07);
}

* {
    box-sizing: border-box;
}

html {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Inter, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

button,
input {
    font: inherit;
}

.wrap {
    width: calc(100% - 48px);
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.site-header {
    background: var(--white);
}

.topbar {
    background: linear-gradient(90deg, #f5f9fd, #eef6ff);
    color: #5d6b7d;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
}

.topbar-inner,
.brand-row,
.nav-inner,
.search-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-inner {
    min-height: 42px;
    gap: 20px;
}

.topbar p {
    margin: 0;
    font-weight: 600;
    letter-spacing: .01em;
}

.topbar nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

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

.brand-row {
    min-height: 112px;
    gap: 34px;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 310px;
}

.brand img {
    width: 260px;
    max-height: 86px;
    object-fit: contain;
}

.brand strong {
    display: block;
    color: var(--navy);
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.15;
    letter-spacing: -.01em;
}

.brand em {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: .04em;
}

.platform-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(118px, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 600px;
}

.platform-links a {
    min-height: 50px;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--blue-dark);
    background: linear-gradient(180deg, var(--white), var(--blue-soft));
    border: 1px solid #cfe6fb;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 750;
    box-shadow: var(--shadow-soft);
}

.platform-links a:hover {
    color: var(--white);
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-2px);
}

.main-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--blue);
    box-shadow: 0 10px 26px rgba(0, 73, 143, .18);
}

.nav-inner {
    justify-content: center;
}

.nav-inner a {
    color: var(--white);
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 750;
    letter-spacing: .01em;
    white-space: nowrap;
}

.nav-inner a:hover {
    background: var(--blue-dark);
}

.image-hero {
    position: relative;
    overflow: hidden;
    background: #07192e;
}

.image-hero img {
    width: 100%;
    height: auto;
}

.hero-actions {
    position: absolute;
    left: 50%;
    bottom: 38px;
    z-index: 3;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    transform: translateX(-50%);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .03em;
}

.btn.primary {
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 12px 25px rgba(0, 104, 183, .25);
}

.btn.primary:hover {
    background: var(--blue-dark);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.btn.ghost {
    color: var(--white);
    background: rgba(16, 35, 63, .72);
    border: 1px solid rgba(255,255,255,.55);
}

.btn.ghost:hover {
    background: var(--navy);
}

.search-band {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 25px rgba(31, 54, 79, .06);
}

.search-box {
    min-height: 78px;
    gap: 26px;
}

.search-box span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.search-box form {
    display: flex;
    width: 100%;
    max-width: 470px;
    background: var(--white);
    border: 2px solid var(--blue);
    border-radius: 999px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 18px;
    border: 0;
    outline: none;
}

.search-box button {
    width: 112px;
    border: 0;
    color: var(--white);
    background: var(--blue);
    font-weight: 750;
    cursor: pointer;
}

.section {
    position: relative;
    padding: 86px 0;
}

.section:nth-of-type(even) {
    background: linear-gradient(180deg, var(--light), #ffffff);
}

.section-heading {
    max-width: 820px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading.centered p {
    margin-left: auto;
    margin-right: auto;
}

/* —— Company profile —— */
.company-profile {
    background:
        radial-gradient(ellipse 80% 50% at 10% 0%, rgba(0, 104, 183, 0.06), transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 20%, rgba(0, 75, 147, 0.05), transparent 50%),
        linear-gradient(180deg, #f8fbfe 0%, #ffffff 48%, #f6f9fc 100%);
}

.company-profile .section-heading {
    max-width: 900px;
}

.profile-lead {
    margin: 16px auto 0;
    max-width: 640px;
    color: var(--muted);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .01em;
}

.profile-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.profile-highlight {
    position: relative;
    padding: 26px 20px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.profile-highlight::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #3aa0e8);
}

.profile-highlight:hover {
    transform: translateY(-3px);
    border-color: #cfe6fb;
    box-shadow: 0 16px 36px rgba(16, 35, 63, 0.1);
}

.profile-highlight strong {
    display: block;
    color: var(--navy);
    font-size: clamp(26px, 2.4vw, 34px);
    line-height: 1.1;
    letter-spacing: -.02em;
}

.profile-highlight span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
    letter-spacing: .03em;
}

.profile-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 28px;
    margin-top: 28px;
    align-items: stretch;
}

.profile-intro {
    position: relative;
    padding: 36px 36px 32px;
    background: linear-gradient(145deg, #0b2a4a 0%, #004b93 48%, #0068b7 100%);
    border-radius: 22px;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 48px rgba(0, 75, 147, 0.22);
    overflow: hidden;
}

.profile-intro::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -60px;
    bottom: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.14), transparent 70%);
    pointer-events: none;
}

.profile-eyebrow {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.profile-intro > p:not(.profile-eyebrow) {
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.78;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.profile-tags span {
    padding: 8px 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.profile-pillars {
    display: grid;
    gap: 14px;
}

.profile-pillar {
    position: relative;
    padding: 22px 22px 20px 72px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.profile-pillar:hover {
    transform: translateY(-2px);
    border-color: #cfe6fb;
    box-shadow: 0 14px 32px rgba(16, 35, 63, 0.09);
}

.profile-pillar__num {
    position: absolute;
    left: 18px;
    top: 20px;
    color: var(--blue);
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -.03em;
    line-height: 1;
    opacity: .85;
}

.profile-pillar h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.015em;
}

.profile-pillar p {
    max-width: none;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.profile-content {
    max-width: 1180px;
    margin-top: 28px;
    padding: 36px 40px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.profile-content__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
}

.profile-content__block {
    position: relative;
    padding-top: 4px;
}

.profile-content__block--full {
    grid-column: 1 / -1;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.profile-content__block h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.015em;
}

.profile-content__block h3::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    margin-bottom: 2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #3aa0e8);
    vertical-align: middle;
}

.profile-content__block p {
    max-width: none;
    margin: 0;
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.82;
    text-align: justify;
}

.profile-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    padding: 22px 26px;
    background: linear-gradient(90deg, var(--blue-soft), #f0f7ff 55%, var(--blue-pale));
    border: 1px solid #d6e9fb;
    border-radius: 16px;
}

.profile-cta p {
    max-width: none;
    margin: 0;
    color: var(--navy);
    font-size: 16px;
    font-weight: 700;
}

.section-kicker {
    margin: 0 0 14px;
    color: var(--blue);
    font-weight: 850;
    letter-spacing: .12em;
    font-size: 13px;
}

.section h1,
.section h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(32px, 3vw, 46px);
    line-height: 1.18;
    letter-spacing: -.025em;
}

.section h3 {
    letter-spacing: -.015em;
}

.section p {
    max-width: 720px;
    color: var(--muted);
    line-height: 1.78;
}

.wide-image,
.image-card,
.process-image {
    overflow: hidden;
    margin-top: 34px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.wide-image img,
.image-card img,
.process-image img {
    width: 100%;
    height: auto;
}

.wide-image.wrap,
.process-image.wrap {
    max-width: 1120px;
}

.image-card {
    margin-top: 0;
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 56px;
    align-items: center;
}

.strength-layout {
    padding: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.section-copy {
    max-width: 520px;
}

.section-copy p {
    font-size: 16px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    color: var(--blue);
    font-weight: 850;
}

.text-link:hover {
    color: var(--blue-dark);
    transform: translateX(3px);
}

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

.stats-grid div {
    padding: 28px 22px;
    text-align: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0, 104, 183, .18);
}

.stats-grid strong {
    display: block;
    margin-bottom: 10px;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1;
    letter-spacing: -.03em;
}

.stats-grid span {
    color: rgba(255,255,255,.86);
    font-size: 13px;
    font-weight: 650;
    letter-spacing: .03em;
}

.category-tabs {
    display: grid;
    grid-template-columns: repeat(6, minmax(120px, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.category-tabs a {
    min-height: 54px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--blue-dark);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    font-weight: 750;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.category-tabs a:hover {
    color: var(--white);
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-2px);
}

/* —— Product showcase —— */
.products .product-banner {
    max-height: 280px;
    overflow: hidden;
}

.products .product-banner img {
    width: 100%;
    height: 100%;
    max-height: 280px;
    object-fit: cover;
    object-position: center;
}

.product-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.product-filter button {
    min-height: 48px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--blue-dark);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    font: inherit;
    font-weight: 750;
    font-size: 14px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.product-filter button em {
    font-style: normal;
    min-width: 22px;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 700;
}

.product-filter button:hover {
    color: var(--white);
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-2px);
}

.product-filter button:hover em {
    background: rgba(255, 255, 255, .22);
    color: var(--white);
}

.product-filter button.is-active {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(0, 104, 183, .28);
}

.product-filter button.is-active em {
    background: rgba(255, 255, 255, .22);
    color: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.product-card {
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card[hidden] {
    display: none !important;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 104, 183, .22);
    box-shadow: var(--shadow);
}

.product-card__trigger {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card__media {
    display: block;
    aspect-ratio: 1 / 1;
    background: linear-gradient(160deg, var(--blue-pale), var(--blue-soft));
    overflow: hidden;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

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

.product-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px 18px;
}

.product-card__tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--blue-dark);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.product-card__title {
    color: var(--navy);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.3;
}

.product-card__meta {
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
}

.product-empty {
    margin-top: 36px;
    padding: 40px 28px;
    text-align: center;
    border-radius: 20px;
    background: var(--blue-pale);
    border: 1px solid var(--border);
}

.product-empty p {
    margin: 0 0 18px;
    color: var(--muted);
}

/* Lightbox */
body.lightbox-open {
    overflow: hidden;
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.product-lightbox[hidden] {
    display: none !important;
}

.product-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 25, 46, .72);
    backdrop-filter: blur(4px);
}

.product-lightbox__panel {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: min(92vh, 900px);
    overflow: auto;
    padding: 28px 28px 24px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 30px 80px rgba(7, 25, 46, .35);
}

.product-lightbox__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--light);
    color: var(--navy);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.product-lightbox__close:hover {
    background: var(--blue);
    color: var(--white);
}

.product-lightbox__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-right: 48px;
    margin-bottom: 18px;
}

.product-lightbox__header h3 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 800;
    letter-spacing: -.02em;
}

.product-lightbox__counter {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.product-lightbox__stage {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 10px;
    align-items: center;
}

.product-lightbox__main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    max-height: 52vh;
    border-radius: 16px;
    background: linear-gradient(160deg, #f2f7fc, #eaf3fb);
    border: 1px solid var(--border);
    overflow: hidden;
}

.product-lightbox__main img {
    max-width: 100%;
    max-height: 52vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-lightbox__nav {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.product-lightbox__nav:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.product-lightbox__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    justify-content: center;
}

.product-lightbox__thumb {
    width: 64px;
    height: 64px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    background: var(--light);
    cursor: pointer;
    opacity: .72;
    transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}

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

.product-lightbox__thumb:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.product-lightbox__thumb.is-active {
    opacity: 1;
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(0, 104, 183, .18);
}

.product-lightbox__actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.process {
    background: var(--blue-pale);
}

.process-image {
    overflow-x: auto;
}

.certifications {
    background: linear-gradient(180deg, var(--blue-soft), #ffffff);
}

.clients {
    background: var(--white);
}

.faq-cta {
    position: relative;
    background: #f8fbff;
}

.faq-cta .wide-image {
    max-width: 1040px;
}

.cta-panel {
    max-width: 920px;
    margin-top: -42px;
    padding: 38px 46px;
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--border);
    border-top: 5px solid var(--blue);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.cta-panel h2 {
    margin-bottom: 12px;
}

.cta-panel p {
    margin-left: auto;
    margin-right: auto;
}

.news-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 26px;
    margin-top: 36px;
}

.news-feature,
.news-list a {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.news-feature {
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-feature span {
    color: var(--blue);
    font-weight: 850;
    letter-spacing: .08em;
    font-size: 12px;
}

.news-feature h3 {
    margin: 16px 0 12px;
    color: var(--navy);
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1.28;
}

.news-list {
    display: grid;
    gap: 14px;
}

.news-list a {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 20px;
    align-items: center;
    min-height: 82px;
    padding: 20px 24px;
}

.news-list a:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
}

.news-list time {
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
}

.news-list strong {
    color: var(--navy);
    line-height: 1.45;
    font-weight: 750;
}

.site-footer {
    color: rgba(255,255,255,.78);
    background: #07192e;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .85fr 1.25fr .65fr;
    gap: 38px;
    padding: 66px 0 44px;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 18px;
    color: var(--white);
    line-height: 1.2;
}

.site-footer p {
    margin: 0 0 10px;
    line-height: 1.7;
}

.site-footer a {
    display: block;
    margin-bottom: 10px;
}

.site-footer a:hover {
    color: #9bd4ff;
}

.qr-card {
    min-height: 136px;
    padding: 18px;
    text-align: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 16px;
}

.qr-card span {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    margin: 0 auto 12px;
    color: var(--navy);
    background: var(--white);
    font-weight: 900;
    border-radius: 10px;
}

.copyright {
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    text-align: center;
}

.copyright p {
    margin: 0;
    font-size: 14px;
}

.side-tools {
    position: fixed;
    right: 18px;
    top: 50%;
    z-index: 30;
    display: grid;
    gap: 8px;
    transform: translateY(-50%);
}

.side-tools a,
.side-tools button {
    width: 76px;
    min-height: 48px;
    display: grid;
    place-items: center;
    padding: 8px;
    color: var(--white);
    background: var(--blue);
    border: 0;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 73, 143, .2);
}

.side-tools a:hover,
.side-tools button:hover {
    background: var(--blue-dark);
    transform: translateX(-2px);
}

@media (max-width: 1100px) {
    .brand-row,
    .topbar-inner,
    .search-box {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .brand-row {
        padding: 22px 0;
    }

    .platform-links {
        width: 100%;
        min-width: 0;
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-inner {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .nav-inner a {
        flex: 0 0 auto;
        padding: 16px 18px;
    }

    .two-col,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .section-copy {
        max-width: none;
        text-align: center;
    }

    .section-copy p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .profile-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .profile-content__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .profile-content__block--full {
        padding-top: 0;
        border-top: 0;
    }

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

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

    .product-lightbox__panel {
        padding: 22px 18px 18px;
    }

    .product-lightbox__stage {
        grid-template-columns: 36px 1fr 36px;
        gap: 6px;
    }

    .product-lightbox__nav {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .wrap {
        width: calc(100% - 28px);
        max-width: 1180px;
    }

    .topbar nav {
        justify-content: center;
        gap: 12px;
        padding-bottom: 10px;
    }

    .brand {
        align-items: center;
        flex-direction: column;
        text-align: center;
        min-width: 0;
    }

    .brand img {
        width: 220px;
        max-width: 100%;
    }

    .platform-links,
    .stats-grid,
    .footer-grid,
    .category-tabs {
        grid-template-columns: 1fr;
    }

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

    .product-filter {
        gap: 8px;
    }

    .product-filter button {
        min-height: 42px;
        padding: 10px 14px;
        font-size: 13px;
    }

    .products .product-banner {
        max-height: 180px;
    }

    .products .product-banner img {
        max-height: 180px;
    }

    .product-lightbox {
        padding: 12px;
        align-items: flex-end;
    }

    .product-lightbox__panel {
        max-height: 94vh;
        border-radius: 18px 18px 12px 12px;
    }

    .product-lightbox__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding-right: 40px;
    }

    .product-lightbox__stage {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-lightbox__nav {
        display: none;
    }

    .product-lightbox__main {
        min-height: 220px;
        max-height: 42vh;
    }

    .product-lightbox__main img {
        max-height: 42vh;
    }

    .product-lightbox__thumb {
        width: 56px;
        height: 56px;
    }

    .hero-actions {
        position: static;
        justify-content: center;
        flex-wrap: wrap;
        padding: 18px 14px 22px;
        background: #07192e;
        transform: none;
    }

    .search-box {
        padding: 18px 0;
    }

    .search-box form {
        width: 100%;
    }

    .section {
        padding: 58px 0;
    }

    .section h1,
    .section h2 {
        font-size: clamp(27px, 8vw, 34px);
    }

    .wide-image,
    .image-card,
    .process-image {
        margin-top: 24px;
        border-radius: 12px;
    }

    .strength-layout,
    .profile-content {
        padding: 24px;
        border-radius: 18px;
    }

    .profile-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 28px;
    }

    .profile-highlight {
        padding: 20px 14px;
    }

    .profile-highlight strong {
        font-size: 24px;
    }

    .profile-intro {
        padding: 28px 24px 24px;
        border-radius: 18px;
    }

    .profile-intro > p:not(.profile-eyebrow) {
        font-size: 15px;
    }

    .profile-pillar {
        padding: 18px 18px 16px 62px;
    }

    .profile-pillar__num {
        left: 14px;
        top: 16px;
        font-size: 18px;
    }

    .profile-content__block p {
        font-size: 15px;
        text-align: left;
    }

    .profile-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 18px;
    }

    .profile-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .news-list a {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .cta-panel {
        margin-top: 22px;
        padding: 28px 24px;
    }

    .side-tools {
        display: none;
    }
}
