.news-block {
    width: 100%;
    padding: clamp(30px, 6vw, 60px) clamp(20px, 5vw, 80px);
    background: #fff;
}

.news-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: clamp(20px, 4vw, 32px);
    margin-bottom: clamp(30px, 6vw, 60px);
}

.news-tab-group {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f71c2;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    font-family: Arial, sans-serif;
}

.content-title.active {
    color: #0d1220;
    font-size: 1.6rem;
    transform: translateY(-2px);
}

.news-wrapper {
    display: flex;
    gap: clamp(12px, 4vw, 24px);
}

.tab-content {
    display: flex;
    gap: clamp(12px, 4vw, 24px);
    width: 100%;
}

.tab-content:not(.is-active) {
    display: none;
}

.news-item {
    flex: 1;
    border-radius: 0;
    background: #f6f8ff;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-item img {
    width: 100%;
    height: auto;
    display: block;
}

.news-item:hover,
.news-item:focus-within {
    transform: scale(1.02);
    box-shadow: 0 18px 35px rgba(15, 41, 92, 0.15);
}

.news-content-body {
    padding: 18px;
}

.news-date {
    font-size: 0.85rem;
    color: #65738c;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-title {
    margin-top: 10px;
    color: #0d1f3a;
    line-height: 1.4;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-family: Arial, sans-serif;
}

.news-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1f71c2;
    border: none;
    color: #fff;
    box-shadow: 0 10px 25px rgba(31, 113, 194, 0.3);
}

.news-btn-mobile {
    display: none;
    margin-top: 16px;
}

.btn--more.news-btn-mobile {
    display: none;
}

.news {
    background: #fff;
    width: 100%;
    padding: 0;
}

.news__tabs {
    width: 100%;
    padding-top: clamp(20px, 5vw, 80px);
    padding-left: clamp(20px, 5vw, 80px);
    display: flex;
    gap: clamp(18px, 5vw, 32px);
    background: #fff;
}

.news__tab {
    padding: 8px 0;
    padding-right: 40px;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 1.6rem;
    color: #7c8ba1;
    position: relative;
}

.news__tab.is-active {
    color: #1f71c2;
}

.news__tab.is-active::after {
    content: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --nav-bg: #003c8f;
    --brand-blue: #0b65c6;
    --brand-cyan: #3cc5ff;
    --map-blue-violet: #5c63dc;
    --map-blue-violet-dark: #3f369f;
    --gradient-start: #04194e;
    --gradient-end: #582c98;
    --text-dark: #0e2040;
    --text-muted: #5b6c8c;
    --card-bg: #ffffff;
    --section-bg: #f5f8ff;
    --shadow-soft: 0 25px 60px rgba(12, 29, 74, 0.18);
    --container-width: min(1200px, 100vw);
    --hero-overlap: clamp(70px, 10vw, 140px);
    --map-width: min(1200px, 96vw);
    --map-height: calc(var(--map-width) * 0.6);
}

html,
body {
    width: 100%;
    min-width: 0;
}

body {
    margin: 0;
    font-family: 'Montserrat', 'Space Grotesk', sans-serif;
    color: var(--text-dark);
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

main {
    margin-top: 0;
    width: 100%;
}

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

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

button {
    font: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

.section {
    width: 100%;
}

.container {
    width: var(--container-width);
    margin: 0 auto;
}


.btn {
    border-radius: 999px;
    padding: 10px 26px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    align-items: center;
    justify-content: center;
}

.btn--more {
    min-width: 180px;
    padding: 6px 36px;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    gap: 0;
}

.btn--more:hover,
.btn--more:focus-visible {
    transform: scale(1.04);
    box-shadow: 0 15px 35px rgba(12, 45, 120, 0.25);
}

.btn__label {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.btn__arrow {
    position: absolute;
    right: 40px;
    display: inline-flex;
    align-items: center;
    opacity: 0;
    transform: translateX(-2px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn--more:hover .btn__arrow,
.btn--more:focus-visible .btn__arrow {
    opacity: 1;
    transform: translateX(0);
}

.btn--more:hover .btn__label,
.btn--more:focus-visible .btn__label {
    transform: translateX(-4px);
}

.btn--ghost {
    border: 1px solid rgba(13, 32, 70, 0.25);
    color: #0f1f3f;
}

.btn--outline {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    background: transparent;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    margin-top: 60px;
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.btn--hero {
    border-radius: 4px;
    padding: 12px 34px;
    font-weight: 600;
    color: #0c1b3f;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.btn--hero:hover {
    transform: translateY(-1px);
}



.hero {
    position: relative;
    overflow: hidden;
    z-index: 2;
    width: 100%;
}

.hero__slides {
    display: flex;
    width: 100%;
    align-items: center;
    position: relative;
    transition: transform 0.6s ease;
    touch-action: pan-y;
    cursor: grab;
}

.hero__slide {
    flex: 0 0 100%;
    min-width: 100%;
    position: relative;
    aspect-ratio: 3999 / 2170;
    height: 54.2636vw;
    color: #fff;
}

.hero__media {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: 100% 100%;
}

.hero__content {
    position: relative;
    z-index: 1;
    width: var(--container-width);
    margin-left: clamp(36px, 10vw, 0px);
    padding-top: clamp(200px, 34vh, 320px);
    text-align: left;
    font-family: 'Arial Black', Arial, sans-serif;
}

.hero__content > * + * {
    margin-top: 20px;
}

.hero__content .btn--outline {
    margin-top: 352px;
}

.hero__kicker {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-cyan);
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    margin: 0 0 18px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    letter-spacing: 0.02em;
}

.hero__text {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    margin-top: 40px;
}

.hero__dots {
    position: absolute;
    left: 50%;
    bottom: clamp(12px, 3vw, 40px);
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    padding: 0;
    z-index: 3;
}

.hero__dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero__dots button.is-active {
    background: #fff;
}


.section__header {
    width: var(--container-width);
    margin: 0 auto 40px;
    text-align: center;
    color: var(--text-muted);
    font-family: Arial, sans-serif;
}

.section__title-image {
    margin: 0 auto 18px;
    max-width: 360px;
}

.map .section__title-image {
    width: min(100%, 524px);
    max-width: none;
}

.scope-btn {
    position: static;
    z-index: 3;
    display: inline-flex;
    margin-top: clamp(24px, 2.8vw, 42px);
    transform: none;
    background: #1f71c2;
    border: none;
    color: #fff;
    box-shadow: 0 10px 25px rgba(31, 113, 194, 0.3);
}

.scope-btn:hover,
.scope-btn:focus-visible {
    background: #1764ad;
    color: #fff;
    transform: translateY(-1px);
}

.business-scope .section__header {
    width: min(1280px, 92vw);
    margin: 0 auto clamp(28px, 3.4vw, 54px);
    text-align: center;
    color: #0b1f45;
    padding: 0;
    line-height: 1.8;
}

.business-scope .section__title-image {
    width: auto;
    height: clamp(64px, 4vw, 76px);
    max-width: none;
    object-fit: contain;
    margin-bottom: clamp(26px, 3.2vw, 46px);
}

.business-scope .section__header p {
    max-width: 1040px;
    margin: 0 auto;
    color: var(--map-blue-violet-dark);
    font-size: clamp(0.88rem, 0.86vw, 1.05rem);
    line-height: 1.85;
}

.business-scope {
    position: relative;
    background-color: #fff;
    padding-top: calc(var(--hero-overlap) + clamp(12px, 3vw, 42px));
    padding-bottom: clamp(32px, 5vw, 78px);
    overflow: hidden;
}

.map {
    position: relative;
    --map-marker-size: clamp(7px, 0.62vw, 12px);
    --map-label-offset: clamp(5px, 0.48vw, 9px);
    width: 100%;
    aspect-ratio: 1919 / 963;
    margin: 0 auto;
    background-color: #fff;
    background-image: url('/images/map.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    padding: 0;
    color: var(--map-blue-violet-dark);
}

.map__image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    user-select: none;
}

.map .section__header {
    color: var(--map-blue-violet-dark);
}

.map .section__header p {
    color: var(--map-blue-violet-dark);
}

.map img {
    width: 100%;
    height: auto;
    display: block;
}

.map__labels {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.map__label {
    position: absolute;
    display: block;
    transform: translate(-50%, -50%);
    color: #29a7e1;
    font-family: Arial, "Microsoft YaHei", sans-serif;
    font-size: clamp(7px, 0.62vw, 12px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.92);
}

.map__label--left {
    transform: translate(calc(-100% - var(--map-label-offset)), -50%);
    text-align: right;
}

.map__label--right {
    transform: translate(var(--map-label-offset), -50%);
    text-align: left;
}

.map__label--above {
    transform: translate(-50%, calc(-100% - var(--map-label-offset)));
    text-align: center;
}

.map__label--below {
    transform: translate(-50%, var(--map-label-offset));
    text-align: center;
}

.map__marker {
    position: absolute;
    z-index: 4;
    width: var(--map-marker-size);
    height: var(--map-marker-size);
    border: none;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, #ffffff 0 20%, #6570e8 22% 58%, rgba(101, 112, 232, 0.22) 60% 100%);
    box-shadow: 0 0 0 1px rgba(92, 99, 220, 0.2), 0 0 10px rgba(92, 99, 220, 0.3);
    pointer-events: auto;
    overflow: visible;
    transform: translate(-50%, -50%);
    transform-origin: center;
    isolation: isolate;
}

.map__marker::before,
.map__marker::after {
    content: "";
    position: absolute;
    inset: clamp(-3px, -0.24vw, -2px);
    z-index: 0;
    border-radius: 50%;
    border: 1px solid rgba(92, 99, 220, 0.34);
    animation: map-marker-ripple 2.5s ease-out infinite;
    pointer-events: none;
}

.map__marker::after {
    animation-delay: 1.25s;
    opacity: 0.7;
}

.map__marker[data-tooltip="DALIAN"]::before {
    border-color: rgba(92, 99, 220, 0.55);
    animation-duration: 2s;
}

.map__marker:nth-of-type(3n + 1)::before {
    animation-delay: 0.25s;
}

.map__marker:nth-of-type(3n + 2)::before {
    animation-delay: 0.55s;
}

.map__marker:nth-of-type(3n)::before {
    animation-delay: 0.85s;
}

@media (max-width: 768px) {
    .map {
        --map-marker-size: 8px;
        width: 100%;
        height: auto;
        aspect-ratio: 1919 / 963;
        min-width: 0;
        overflow: visible;
        background-image: url('/images/map.jpg');
    }

    .map__mobile-zoom {
        display: contents;
    }

    .map__label {
        display: none;
    }

    .map__marker {
        display: block;
        min-width: 20px;
        min-height: 20px;
        width: 20px;
        height: 20px;
        background: transparent;
        box-shadow: none;
    }

    .section__header {
        width: 100%;
        padding: 0 clamp(18px, 7vw, 26px);
    }
}

.map__mobile-office-list {
    display: none;
}

@media (max-width: 768px) {
    .map__office-panel {
        display: none !important;
    }

    .map__mobile-office-list {
        display: block;
        width: 100%;
        margin: 18px auto 0;
        padding: 0 clamp(18px, 7vw, 26px);
    }

    .map__mobile-office-hint {
        margin: 0 0 10px;
        color: #53607a;
        font-size: 12px;
        line-height: 1.45;
        text-align: left;
    }

    .map__mobile-office-scroller {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 2px 0 10px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    .map__mobile-office-scroller::-webkit-scrollbar {
        display: none;
    }

    .map__mobile-office-chip {
        flex: 0 0 auto;
        scroll-snap-align: start;
        min-height: 34px;
        padding: 7px 12px;
        border: 1px solid #cfd8ec;
        border-radius: 999px;
        background: #fff;
        color: #54627d;
        font: 600 12px/1.2 Arial, sans-serif;
    }

    .map__mobile-office-chip.is-active {
        border-color: #29a7e1;
        background: linear-gradient(90deg, #29a7e1, #5667d8);
        color: #fff;
    }

    .map__mobile-office-detail {
        min-height: 90px;
        padding: 14px 16px;
        border: 1px solid #dce4f2;
        border-radius: 10px;
        background: #f8fbff;
        color: #42506c;
        text-align: left;
        box-shadow: 0 6px 16px rgba(31, 76, 146, 0.07);
    }

    .map__mobile-office-detail h3 {
        margin: 0 0 7px;
        color: #1f87c6;
        font-size: 15px;
        line-height: 1.25;
    }

    .map__mobile-office-detail p {
        margin: 0;
        font-size: 12px;
        line-height: 1.55;
        overflow-wrap: anywhere;
    }

    .map__mobile-office-detail p + p {
        margin-top: 6px;
        color: #5c6c88;
        font-weight: 600;
    }
}

.map__marker.is-active {
    transform: translate(-50%, -50%) scale(1.18);
}

.map__office-panel {
    position: absolute;
    z-index: 20;
    --map-office-blue: #29a7e1;
    min-width: min(280px, 86vw);
    max-width: min(320px, 92vw);
    padding: 14px 16px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(12, 29, 74, 0.22);
    border: 1px solid rgba(92, 99, 220, 0.28);
    pointer-events: auto;
    text-align: left;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--map-office-blue);
}

.map__office-panel[hidden] {
    display: none !important;
}

.map__office-title {
    margin: 0 0 8px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--map-office-blue);
    text-transform: capitalize;
}

.map__office-address,
.map__office-contact {
    margin: 0;
}

.map__office-address + .map__office-contact {
    margin-top: 8px;
}

.map__office-contact {
    font-weight: 600;
    color: var(--map-office-blue);
}

@keyframes map-marker-ripple {
    0% {
        transform: scale(0.6);
        opacity: 0.54;
    }
    70% {
        transform: scale(1.45);
        opacity: 0.13;
    }
    100% {
        transform: scale(1.68);
        opacity: 0;
    }
}

.section__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.8rem;
    color: #8dd0ff;
}

.advantages {
    padding: 0;
}

.advantages__image {
    width: 100%;
    display: block;
}

.company {
    position: relative;
    min-height: clamp(520px, 68vh, 760px);
    background-image: url('');
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: minmax(360px, 650px) minmax(460px, 700px);
    align-items: center;
    justify-content: center;
    gap: clamp(48px, 7vw, 120px);
    padding-top: clamp(48px, 7vw, 82px);
    padding-right: clamp(24px, 6vw, 80px);
    padding-bottom: clamp(48px, 7vw, 82px);
    padding-left: clamp(24px, 6vw, 80px);
    color: #fff;
}

.company__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.company::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(7, 22, 44, 0.22) 0%, rgba(7, 22, 44, 0.08) 42%, rgba(7, 22, 44, 0.34) 100%),
        linear-gradient(180deg, rgba(7, 22, 44, 0.08) 0%, rgba(7, 22, 44, 0.24) 100%);
}

.company__panel-text,
.company__panel-stats {
    position: relative;
    z-index: 2;
}

.company__panel-text {
    max-width: 650px;
}

.company__panel-text p {
    font-family: Arial, sans-serif;
}

.company__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.company__panel-text h2 {
    font-size: clamp(2.25rem, 3.6vw, 3.9rem);
    line-height: 1.06;
    margin: 0 0 clamp(20px, 2.4vw, 34px);
    font-family: 'Arial Black', Arial, sans-serif;
    letter-spacing: 0;
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
}

.company__cta {
    padding-inline: 32px;
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
}

.company__lead,
.company__body {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.86rem, 0.9vw, 1rem);
    line-height: 1.42;
    font-family: Arial, sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.32);
}

.company__lead + .company__body {
    margin-top: clamp(18px, 2vw, 28px);
}

.company__panel-stats {
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 4vw, 52px);
    justify-content: center;
    font-family: Arial, sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.36);
}

.company__stat {
    display: grid;
    grid-template-columns: minmax(120px, 0.55fr) minmax(220px, 1fr);
    align-items: flex-start;
    gap: clamp(30px, 4.4vw, 72px);
    min-height: auto;
    padding: 0;
    border-bottom: 0;
}

.company__stat:first-child {
    border-top: 0;
}

.company__stat-metric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.company__stat p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    max-width: 380px;
    padding: 0;
    font-size: clamp(0.86rem, 0.88vw, 1rem);
    font-weight: 600;
    line-height: 1.35;
}

.stat__value {
    display: block;
    font-size: clamp(2rem, 2.45vw, 3rem);
    font-weight: 800;
    line-height: 0.96;
    min-width: 0;
    text-align: left;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.5);
}

.stat__label {
    display: block;
    max-width: 160px;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.84rem, 0.86vw, 0.98rem);
    font-weight: 800;
    line-height: 1.08;
}

.segments {
    background: #f6f8fa;
    padding: 40px 0 40px 0 !important;
}

.segments-field {
    width: 100%;
    padding: clamp(16px, 4vw, 32px) clamp(20px, 4vw, 60px);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.segments-field__title-image {
    display: block;
    margin: 0 auto;
    width: min(100%, 800px);
}

.segments-field__subtitle {
    text-align: center;
    color: var(--text-muted);
    margin: 0 auto clamp(12px, 4vw, 24px);
    max-width: 600px;
}

.segments-field__slider {
    display: flex;
    transition: transform 0.6s ease;
    gap: 0;
    width: 100%;
    touch-action: pan-y;
    cursor: grab;
}

.segments-field__viewport {
    overflow: hidden;
}

.segments-field__slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: minmax(320px, 1.02fr) minmax(0, 1fr);
    gap: clamp(28px, 3vw, 52px);
    align-items: center;
    padding: clamp(24px, 4vw, 48px) clamp(28px, 5vw, 82px);
}

.segments-field__image {
    width: 100%;
    height: clamp(260px, 30vw, 390px);
    object-fit: cover;
    border-radius: 0;
}

.segments-field__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(20px, 2vw, 30px);
}

.segments-field__heading {
    display: grid;
    grid-template-columns: clamp(76px, 6vw, 104px) minmax(0, 1fr);
    gap: clamp(20px, 2.4vw, 36px);
    align-items: center;
    width: 100%;
}

.segments-field__icon-slot {
    width: clamp(76px, 6vw, 104px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.segments-field__icon-slot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.segments-field__heading h3 {
    font-size: clamp(1.8rem, 2.4vw, 3rem);
    font-weight: 700;
    margin: 0;
    color: #20242b;
    font-family: Arial, sans-serif;
    line-height: 1.15;
}

.segments-field__description {
    max-width: 720px;
    color: #3f4650;
    line-height: 1.18;
    font-size: clamp(1.15rem, 1.55vw, 1.9rem);
    font-weight: 500;
    margin: 0;
}

.segments-field__link,
.segments-field__link:link,
.segments-field__link:visited {
    color: #111;
    font-size: clamp(1rem, 1.1vw, 1.35rem);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}

.segments-field__link:hover {
    color: #29a7e1;
}


.segments-field__dots {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: clamp(18px, 3vw, 30px);
}

.segments-field__dots button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1.5px solid #111;
    background: transparent;
    transition: background-color 0.2s ease;
}

.segments-field__dots button.is-active {
    background: #111;
}

.news__header {
    width: var(--container-width);
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.tabs {
    display: inline-flex;
    gap: 18px;
    flex-wrap: wrap;
}
.btn--news {
    padding: 8px 22px;
    border-color: rgba(255, 255, 255, 0.3);
    color: #274a8f;
    background: #fff;
    box-shadow: 0 10px 30px rgba(32, 72, 168, 0.15);
}

.tabs button {
    padding: 8px 24px;
    border-radius: 999px;
    border: 1px solid #c7d4ef;
    color: #4a5f85;
    background: #f6f8ff;
}

.tabs button[aria-selected="true"] {
    background: #fff;
    border-color: #5fa8ff;
    color: #2c5fd6;
    box-shadow: 0 10px 25px rgba(78, 135, 255, 0.2);
}


.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(8, 20, 60, 0.12);
    display: flex;
    flex-direction: column;
}

.card img {
    height: 180px;
    object-fit: cover;
}

.card__body {
    padding: 18px;
}

.card__meta {
    font-size: 0.85rem;
    color: var(--brand-blue);
    margin-bottom: 8px;
}


@media (max-width: 1200px) {
    .hero__content {
        margin-left: clamp(40px, 6vw, 80px);
        padding-top: clamp(140px, 24vh, 240px);
    }
}

@media (max-width: 1024px) {
    .hero__slide {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .hero__content {
        margin-left: 0;
        padding-top: clamp(120px, 22vh, 200px);
        align-items: center;
    }

    .hero__content > * {
        width: 100%;
    }

    .hero__content > .btn {
        width: auto;
        align-self: center;
    }

    .hero__content .btn--outline {
        align-self: center;
        justify-content: center;
    }

    .hero__dots {
        bottom: clamp(12px, 4vw, 32px);
    }

    .company {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: clamp(36px, 8vw, 80px);
        padding-right: clamp(20px, 6vw, 60px);
        padding-bottom: clamp(36px, 8vw, 60px);
        padding-left: clamp(20px, 6vw, 60px);
        align-items: flex-start;
        gap: clamp(34px, 7vw, 60px);
    }

    .company__panel-stats {
        width: 100%;
        max-width: 720px;
    }

    .segments-field__slide {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .segments-field__slider {
        gap: 0;
    }

    .segments-field__info {
        align-items: center;
    }

    .segments-field__info .btn--more {
        align-self: center;
    }

    .segments-field__image {
        height: clamp(260px, 45vw, 360px);
    }

    .news-wrapper,
    .tab-content {
        flex-direction: column;
        gap: clamp(16px, 5vw, 30px);
    }

    .news-item {
        width: 100%;
    }

    .news-item img {
        height: auto;
    }

}

@media (max-width: 768px) {
    .hero__content {
        padding-top: clamp(110px, 26vh, 180px);
        width: min(640px, 92vw);
        margin: 0 auto;
        padding-inline: clamp(20px, 7vw, 40px);
        text-align: left;
        align-items: flex-start;
    }

    .company {
        padding-bottom: clamp(40px, 8vw, 60px);
    }

    .company__bg {
        height: 100%;
    }

    .map {
        width: 100%;
        min-height: 0;
    }

    .segments-field__image {
        height: clamp(240px, 60vw, 360px);
    }

    .segments-field__title-image {
        width: min(100%, 520px);
    }

    .map .section__title-image {
        width: min(100%, 340px);
    }

    .news-tab-group {
        flex-direction: row;
        flex-wrap: wrap;
        gap: clamp(10px, 4vw, 18px);
        align-items: center;
        justify-content: center;
    }

    .news-tab-group .content-title {
        font-size: clamp(1rem, 4vw, 1.2rem);
        letter-spacing: 0.08em;
        white-space: nowrap;
    }

}

@media (max-width: 600px) {

    .btn {
        padding: 8px 20px;
    }

    .hero__content {
        padding-top: clamp(90px, 28vh, 150px);
    }

    .company {
        padding-bottom: clamp(40px, 10vw, 60px);
    }

    .company__panel-text,
    .company__panel-stats {
        width: 100%;
    }

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

    .stat__label {
        max-width: none;
    }

    .hero__content .btn--outline:not(.btn--more) {
        width: 100%;
    }

    .segments-field__slider {
        gap: 0;
    }

    .segments-field__title-image {
        width: min(100%, 420px);
    }

    .map .section__title-image {
        width: min(100%, 275px);
    }

    .news-btn {
        display: none;
    }

    .news-btn-mobile,
    .btn--more.news-btn-mobile {
        display: inline-flex;
    }

    .news-tab-group {
        justify-content: center;
        gap: clamp(10px, 5vw, 18px);
    }

    .news-tab-group .content-title {
        font-size: clamp(0.9rem, 3.8vw, 1.1rem);
    }

    .news-item img {
        height: auto;
    }

}

/* 2K分辨率适配 (1920px及以上) */
@media (min-width: 1920px) {
    :root {
        --container-width: min(1600px, 100vw);
        --hero-overlap: clamp(80px, 8vw, 160px);
    }


    .hero__content {
        margin-left: clamp(120px, 10vw, 180px);
        padding-top: clamp(220px, 36vh, 360px);
    }

    .hero h1 {
        font-size: clamp(3.5rem, 4.5vw, 5rem);
        margin-bottom: 24px;
    }

    .hero__text {
        max-width: 640px;
        font-size: 1.15rem;
        margin-bottom: 40px;
        margin-top: 48px;
    }

    .hero__kicker {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .section__header {
        margin-bottom: 60px;
    }

    .section__title-image {
        max-width: 420px;
    }

    .map .section__title-image {
        width: min(100%, 654px);
    }

    .business-scope .section__header {
        max-width: 900px;
        padding: 0 clamp(20px, 4vw, 60px);
    }

    .business-scope .section__title-image {
        width: auto;
        height: 76px;
        margin-bottom: 34px;
    }

    .company {
        padding-right: clamp(40px, 8vw, 0);
        padding-bottom: clamp(58px, 5vw, 92px);
        padding-left: clamp(40px, 8vw, 0);
        grid-template-columns: minmax(520px, 720px) minmax(620px, 780px);
        gap: clamp(80px, 8vw, 150px);
    }

    .company__panel-text h2 {
        font-size: clamp(3rem, 4vw, 4.6rem);
        margin: 0 0 clamp(28px, 2.2vw, 42px);
    }

    .company__lead,
    .company__body {
        max-width: 720px;
        font-size: 1.05rem;
        line-height: 1.46;
    }

    .company__panel-stats {
        gap: clamp(40px, 4vw, 70px);
    }

    .company__stat {
        min-height: auto;
        padding: 0;
        gap: clamp(50px, 5vw, 100px);
    }

    .stat__value {
        min-width: 0;
    }

    .company__stat:first-child {
        padding-top: 0;
    }

    .stat__value {
        font-size: clamp(2.4rem, 2.7vw, 3.4rem);
    }

    .company__stat p {
        font-size: 1.05rem;
        max-width: 420px;
        padding: 0;
    }

    .segments-field {
        padding: clamp(24px, 5vw, 48px) clamp(40px, 6vw, 100px);
        gap: 24px;
    }

    .segments-field__title-image {
        width: min(100%, 1000px);
    }

    .segments-field__slide {
        gap: clamp(48px, 6vw, 80px);
        padding: clamp(24px, 5vw, 60px);
    }

    .segments-field__image {
        height: clamp(400px, 40vw, 520px);
    }

    .segments-field__label {
        font-size: 1.4rem;
    }

    .segments-field__info h3 {
        font-size: 1.1rem;
        margin-bottom: 36px;
    }

    .news-block {
        padding: clamp(50px, 8vw, 100px) clamp(40px, 6vw, 120px);
    }

    .news-app-header {
        margin-top: clamp(30px, 5vw, 50px);
        margin-bottom: clamp(40px, 6vw, 80px);
    }

    .news-tab-group {
        gap: 80px;
    }

    .content-title {
        font-size: 1.6rem;
    }

    .content-title.active {
        font-size: 1.8rem;
    }

    .news-wrapper,
    .tab-content {
        gap: clamp(20px, 4vw, 36px);
    }

    .news-item img {
        height: auto;
    }

    .news-content-body {
        padding: 24px;
    }

    .news-date {
        font-size: 0.9rem;
    }

    .news-title {
        font-size: 1.2rem;
        margin-top: 12px;
    }

    .btn--more {
        min-width: 200px;
        padding: 8px 40px;
        font-size: 1rem;
        height: 48px;
    }

    .btn--outline:not(.btn--more) {
        padding: 12px 32px;
        font-size: 1rem;
    }

}

/* 超宽屏适配 (2560px及以上) */
@media (min-width: 2560px) {
    :root {
        --container-width: min(1800px, 100vw);
    }

    .hero__content {
        margin-left: clamp(180px, 12vw, 240px);
        padding-top: clamp(240px, 38vh, 400px);
    }

    .hero h1 {
        font-size: clamp(4rem, 5vw, 5.5rem);
    }

    .hero__text {
        max-width: 720px;
        font-size: 1.2rem;
    }

    .company__panel-text h2 {
        font-size: clamp(3.4rem, 4vw, 4.8rem);
    }

    .segments-field__title-image {
        width: min(100%, 1200px);
    }

    .segments-field__slide {
        gap: clamp(60px, 7vw, 100px);
    }

    .segments-field__image {
        height: clamp(480px, 42vw, 600px);
    }

    .news-item img {
        height: auto;
    }
}

/* Main business segments redesign */
.segments .segments-field__slider {
    gap: 0;
}

.segments .segments-field__image {
    height: clamp(300px, 24vw, 420px);
    border-radius: 0;
}

.segments .segments-field__info {
    min-height: clamp(300px, 24vw, 420px);
    justify-content: center;
    gap: clamp(26px, 2.4vw, 42px);
    max-width: 700px;
}

.segments .segments-field__label,
.segments .segments-field__info .btn--more {
    display: none;
}

.segments .segments-field__info h3 {
    margin: 0;
}

.segments .segments-field__description {
    line-height: 1.5;
}

.segments .segments-field__link {
    display: none;
    margin-top: 0;
}

.segments .segments-field__heading {
    grid-template-columns: clamp(64px, 4vw, 72px) minmax(0, 1fr);
    gap: clamp(16px, 1.6vw, 28px);
}

.segments .segments-field__icon-slot {
    width: clamp(64px, 4vw, 72px);
}

@media (min-width: 1920px) {
    .segments .segments-field__slide {
        grid-template-columns: minmax(600px, 0.88fr) minmax(0, 1fr);
        gap: clamp(48px, 3.2vw, 72px);
        padding: clamp(24px, 2vw, 38px) clamp(72px, 5vw, 128px);
    }

    .segments .segments-field__image {
        height: clamp(360px, 20vw, 420px);
    }

    .segments .segments-field__info {
        min-height: clamp(360px, 20vw, 420px);
    }

    .segments .segments-field__heading h3 {
        font-size: clamp(2.2rem, 1.8vw, 2.8rem);
        margin: 0;
    }
}

@media (max-width: 1024px) {
    .segments .segments-field__slide {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: clamp(18px, 5vw, 36px);
    }

    .segments .segments-field__info {
        align-items: center;
        min-height: 0;
        justify-content: center;
        text-align: center;
    }

    .segments .segments-field__heading {
        width: auto;
        justify-content: center;
        grid-template-columns: clamp(60px, 9vw, 78px) minmax(0, auto);
        gap: clamp(12px, 2.5vw, 18px);
    }

    .segments .segments-field__icon-slot {
        width: clamp(60px, 9vw, 78px);
    }

    .segments .segments-field__description {
        max-width: 720px;
    }
}

@media (max-width: 600px) {
    .company__panel-text h2 {
        width: auto;
        white-space: normal;
    }

    .segments .segments-field {
        padding: 26px 18px;
    }

    .segments .segments-field__image {
        height: clamp(210px, 56vw, 300px);
        border-radius: 0;
    }

    .segments .segments-field__heading {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 10px;
        text-align: left;
    }

    .segments .segments-field__icon-slot {
        width: 50px;
    }

    .segments .segments-field__heading h3 {
        font-size: 1.55rem;
    }

    .segments .segments-field__description {
        font-size: 1rem;
        line-height: 1.35;
    }
}

/* Match the hero View More button position in the 3999x2170 banner artwork. */
.hero__content {
    position: absolute;
    inset: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

.hero__content h1,
.hero__content .hero__text {
    display: none;
}

.hero__content .btn--outline {
    position: absolute;
    z-index: 2;
    left: 11.3653%;
    top: 75.6912%;
    width: 9.6024%;
    height: 4.3318%;
    min-width: 0;
    margin: 0;
    padding: 0 clamp(12px, 1vw, 22px);
    border: 1.5px solid rgba(255, 255, 255, 0.86);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 10px 26px rgba(0, 0, 0, 0.16);
    color: #fff;
    overflow: hidden;
    pointer-events: auto;
    transform: translate(-50%, -50%);
    font-family: Arial, sans-serif;
    font-size: clamp(12px, 0.9vw, 18px);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
}

.hero__content .btn--outline::after {
    content: ">";
    position: absolute;
    right: clamp(10px, 0.9vw, 18px);
    top: 50%;
    opacity: 0;
    transform: translate(-8px, -50%);
    transition: opacity 0.25s ease, transform 0.25s ease;
    font-size: 0.9em;
    line-height: 1;
}

.hero__content .btn--outline:hover,
.hero__content .btn--outline:focus-visible {
    color: #102748;
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
    text-shadow: none;
    transform: translate(-50%, -50%) scale(1.045);
}

.hero__content .btn--outline:hover::after,
.hero__content .btn--outline:focus-visible::after {
    opacity: 1;
    transform: translate(0, -50%);
}

.hero__content .btn--outline:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 4px;
}

/* Mobile hero: preserve enough physical width for the View More label. */
@media (max-width: 1200px) {
    .section__title-image,
    .map .section__title-image,
    .business-scope .section__title-image,
    .segments-field__title-image {
        width: auto;
        max-width: 100%;
        height: 28px;
        object-fit: contain;
    }

    .company__panel-text h2 {
        width: auto;
        font-size: 28px;
        line-height: 1.12;
        margin-bottom: 18px;
    }

    .news-block {
        padding: 42px 24px 50px;
    }

    .news-app-header {
        margin: 0 0 24px;
    }

    .content-title.active {
        color: #2f3d52;
        font-size: 25px;
        font-weight: 600;
        transform: none;
    }

    .news-item {
        overflow: hidden;
        border-radius: 14px;
        box-shadow: 0 10px 28px rgba(15, 41, 92, 0.1);
    }

    .news-item img {
        aspect-ratio: 16 / 10;
        height: auto;
        object-fit: cover;
    }

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

    .news-date {
        font-size: 13px;
        color: #71809a;
        letter-spacing: 0.06em;
    }

    .news-title {
        margin-top: 8px;
        color: #3f4d62;
        font-size: 20px;
        font-weight: 500;
        line-height: 1.42;
        letter-spacing: 0;
    }
}

@media (max-width: 600px) {
    .hero__content .btn--outline {
        left: 13.5%;
        width: clamp(82px, 22vw, 106px);
        height: clamp(26px, 7vw, 34px);
        padding: 0 9px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(10px, 2.8vw, 12px);
        line-height: 1;
        white-space: nowrap;
    }

    /* Keep the Business Scope CTA compact on narrow screens. */
    .business-scope .scope-btn,
    .business-scope .btn--more.scope-btn {
        min-width: 128px;
        width: auto;
        height: 36px;
        margin-top: 20px;
        padding: 0 20px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.04em;
        line-height: 1;
    }

    /* Keep the wide Business Scope title balanced on narrow screens. */
    .business-scope .section__title-image {
        height: 28px;
        margin-bottom: 22px;
    }

    .company__stat {
        grid-template-columns: max-content minmax(0, 1fr);
        column-gap: 12px;
        row-gap: 10px;
        align-items: center;
    }

    .company__stat-metric {
        display: contents;
    }

    .company__stat .stat__label {
        max-width: none;
        margin-top: 0;
        line-height: 1.15;
    }

    .company__stat p {
        grid-column: 1 / -1;
    }

    .company__panel-text .company__body {
        display: none;
    }

    .segments .segments-field__heading h3 {
        font-size: clamp(1.1rem, 6vw, 1.45rem);
        letter-spacing: -0.02em;
        white-space: nowrap;
    }

    .segments .segments-field__heading {
        width: 100%;
        justify-content: start;
    }

    .segments .segments-field__description {
        width: 100%;
        text-align: left;
    }
}
