.banner {
    position: relative;
    height: calc(100vh - 90px);
    min-height: 520px;
    overflow: hidden;
    color: #fff;
    background: var(--dark);
}

.banner-slides,
.banner-slide {
    position: absolute;
    inset: 0;
}

.banner-slide {
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.banner-slide:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 22, 40, 0.72) 0%, rgba(8, 42, 74, 0.5) 36%, rgba(8, 42, 74, 0.14) 68%, rgba(4, 22, 40, 0.12) 100%);
}

.banner-slide:after {
    content: "";
    position: absolute;
    inset: auto 7vw 8% auto;
    width: min(58vw, 820px);
    height: min(58vw, 820px);
    border: 1px solid rgba(126, 217, 239, 0.16);
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 45%),
        radial-gradient(circle, rgba(24, 168, 200, 0.14), transparent 62%);
    transform: translateY(18%);
    pointer-events: none;
    display: none;
}

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

.banner-content {
    position: relative;
    z-index: 2;
    padding-top: 0;
}

.banner-content .eyebrow {
    color: #86dcf0;
}

.banner-content h1 {
    max-width: 860px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.7rem, 5.4vw, 6.4rem);
    line-height: 1.04;
}

.banner-content p:not(.eyebrow) {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 2vw, 1.3rem);
}

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

.banner-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    color: #fff;
    background: rgba(11, 47, 80, 0.36);
    transform: translateY(-50%);
    cursor: pointer;
}

.banner-arrow:hover {
    background: rgba(23, 105, 180, 0.78);
}

.banner-arrow.prev {
    left: 28px;
}

.banner-arrow.next {
    right: 28px;
}

.banner-controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 34px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.banner-dot {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    cursor: pointer;
}

.banner-dot.active {
    background: var(--warm-accent);
}

.section-reveal {
    opacity: 0;
    transform: translateY(64px);
    transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.section-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

main > section.section-reveal:nth-of-type(2) { transition-delay: 0.04s; }
main > section.section-reveal:nth-of-type(3) { transition-delay: 0.08s; }
main > section.section-reveal:nth-of-type(4) { transition-delay: 0.12s; }
main > section.section-reveal:nth-of-type(5) { transition-delay: 0.16s; }
main > section.section-reveal:nth-of-type(6) { transition-delay: 0.2s; }
main > section.section-reveal:nth-of-type(7) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    .section-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.industry-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #ffffff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.industry-strip a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 86px;
    padding: 16px;
    color: var(--primary-dark);
    border-right: 1px solid var(--line);
    font-weight: 800;
    text-align: center;
}

.industry-strip i {
    color: var(--accent-color);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.focus-grid article,
.product-card,
.news-card,
.about-panel {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(8, 39, 68, 0.12);
}

.focus-grid article {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    padding: 0;
    background: #ffffff;
    border: 1px solid rgba(8, 39, 68, 0.08);
    box-shadow: 0 18px 44px rgba(8, 39, 68, 0.18);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.focus-grid article:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(8, 39, 68, 0.24);
}

.focus-grid article a {
    display: flex;
    min-height: 420px;
    color: #fff;
}

.focus-image {
    position: absolute;
    inset: 0;
    background: #ffffff;
}

.focus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.35s ease;
}

.focus-grid article:hover .focus-image img {
    transform: scale(1.08);
}

.focus-image:after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 31, 54, 0.02), rgba(7, 31, 54, 0.58)),
        linear-gradient(90deg, rgba(7, 31, 54, 0.12), transparent);
}

.focus-content {
    position: relative;
    z-index: 2;
    align-self: flex-end;
    width: 100%;
    padding: 28px;
}

.focus-content span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #8fe4f5;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.focus-content h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.28rem;
    line-height: 1.25;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
}

.focus-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34);
}

.featured-products {
    background: #ffffff;
}

.portfolio-showcase {
    overflow: hidden;
    background:
        linear-gradient(90deg, #fff 0 34%, #f1f1f1 34% 100%);
}

.portfolio-heading {
    margin-bottom: 34px;
}

.portfolio-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
    min-height: 610px;
    align-items: stretch;
}

.portfolio-nav {
    padding: 20px 44px 20px 0;
}

.portfolio-nav h2 {
    position: relative;
    margin: 0 0 32px;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: 0;
    text-transform: uppercase;
}

.portfolio-nav h2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -16px;
    width: 124px;
    height: 1px;
    background: linear-gradient(90deg, #d22d2d 0 42px, #dedede 42px 100%);
}

.portfolio-nav p:not(.eyebrow) {
    max-width: 330px;
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.portfolio-buttons {
    display: grid;
    gap: 10px;
}

.portfolio-nav-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 0 999px 999px 0;
    color: var(--ink);
    background: #e9e9e9;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
    overflow:hidden;
}

.portfolio-nav-btn span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio-nav-btn i {
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.portfolio-nav-btn.active,
.portfolio-nav-btn:hover {
    color: #fff;
    background: #1f5eb5;
}

.portfolio-nav-btn.active i,
.portfolio-nav-btn:hover i {
    opacity: 1;
    transform: translateX(0);
}

.portfolio-stage {
    position: relative;
    min-height: 610px;
    padding: 0 0 8px 28px;
}

.portfolio-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: minmax(420px, 1fr) auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(18px);
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}

.portfolio-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.portfolio-hero {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.9)),
        radial-gradient(circle at 78% 34%, rgba(20, 84, 173, 0.14), transparent 34%);
    border: 1px solid rgba(17, 55, 92, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 18px 44px rgba(10, 31, 52, 0.08);
}

.portfolio-hero:before {
    content: "";
    position: absolute;
    inset: 96px 42px 62px;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(20, 84, 173, 0.08), transparent 38%, rgba(20, 84, 173, 0.06)),
        repeating-linear-gradient(90deg, rgba(16, 48, 80, 0.045) 0 1px, transparent 1px 42px);
    transform: skewX(-8deg);
}

.portfolio-hero:after {
    content: "";
    position: absolute;
    right: 34px;
    bottom: 28px;
    width: 48%;
    height: 18px;
    border-radius: 50%;
    background: rgba(12, 28, 46, 0.14);
    filter: blur(14px);
}

.portfolio-title {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 92px;
    padding: 18px 28px 0;
}

.portfolio-title strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 56px;
    color: #fff;
    background: linear-gradient(135deg, #1454ad, #2a72d4);
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(20, 84, 173, 0.22);
}

.portfolio-title h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.18rem, 2.2vw, 1.9rem);
    line-height: 1.25;
}

.portfolio-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    padding: 18px 38px 42px;
}

.portfolio-image:before {
    content: "";
    position: absolute;
    left: 15%;
    right: 12%;
    bottom: 44px;
    height: 34%;
    border-radius: 50% 50% 8px 8px;
    background: linear-gradient(180deg, rgba(226, 231, 237, 0.55), rgba(210, 217, 226, 0.74));
}

.portfolio-glow {
    position: absolute;
    inset: 12% 16% 12% 16%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 84, 173, 0.16), transparent 64%);
    filter: blur(2px);
}

.portfolio-image img {
    position: relative;
    z-index: 2;
    width: min(78%, 600px);
    max-height: 390px;
    object-fit: contain;
    filter: drop-shadow(0 26px 26px rgba(13, 28, 43, 0.2));
    transition: transform 0.32s ease, filter 0.32s ease;
}

.portfolio-slide.active .portfolio-image img {
    transform: translateY(-4px);
}

.portfolio-copy {
    position: relative;
    z-index: 3;
    width: min(88%, 780px);
    margin: -46px auto 24px;
    padding: 24px 28px 24px 32px;
    border: 1px solid rgba(17, 55, 92, 0.08);
    border-left: 4px solid #1454ad;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 38px rgba(12, 34, 54, 0.14);
    backdrop-filter: blur(8px);
}

.portfolio-copy:before {
    content: "";
    position: absolute;
    left: 28px;
    top: -18px;
    width: 36px;
    height: 3px;
    border-radius: 999px;
    background: #1454ad;
}

.portfolio-copy p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.8;
}

.home-about-showcase {
    position: relative;
    overflow: hidden;
    min-height: 820px;
    padding: 92px 0 64px;
    background: linear-gradient(rgba(3, 17, 31, 0.68), rgba(3, 17, 31, 0.68)), var(--home-about-background-image) center/cover no-repeat;
    background-attachment: local;
}

.home-about-showcase:after {
    content: "";
    position: absolute;
    inset: 36% 0 0;
    background: rgba(255, 255, 255, 0.95);
}

.home-about-showcase .container {
    position: relative;
    z-index: 1;
}

.about-showcase-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: end;
    color: #fff;
}

.about-showcase-head h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    text-transform: uppercase;
}

.about-showcase-head p:not(.eyebrow) {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    line-height: 1.7;
}

.about-tabs {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    min-height: 116px;
}

.about-tab {
    position: relative;
    display: grid;
    place-items: center;
    gap: 10px;
    width: 122px;
    height: 104px;
    min-height: 104px;
    border: 0;
    border-radius: 8px 8px 0 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.28);
    font-weight: 800;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}

.about-tab-icon {
    position: relative;
    display: block;
    width: 48px;
    height: 42px;
    overflow: hidden;
}

.about-tab-icon i {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    transition: transform 0.26s ease, opacity 0.26s ease;
}

.about-tab-icon i + i {
    transform: translateY(120%);
}

.about-tab.active .about-tab-icon i:first-child {
    opacity: 0;
    transform: translateY(-120%);
}

.about-tab.active .about-tab-icon i + i {
    opacity: 1;
    transform: translateY(0);
}

.about-tab span {
    font-size: 0.88rem;
}

.about-tab.active {
    background: #1454ad;
}

.about-tab.active:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -13px;
    border: 7px solid transparent;
    border-top-color: #1454ad;
    transform: translateX(-50%);
}

.about-showcase-card {
    margin-top: 20px;
    min-height: 500px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(10, 28, 46, 0.16);
    overflow: hidden;
}

.about-pane {
    display: none;
    min-height: 500px;
    opacity: 0;
    transform: translateX(46px);
}

.about-pane.active {
    opacity: 1;
    transform: translateX(0);
    animation: aboutPaneFromRight 1s cubic-bezier(0.22,1, 0.18, 1) both;
}

.about-pane.active.from-left {
    animation-name: aboutPaneFromLeft;
}

.about-pane.active.from-right {
    animation-name: aboutPaneFromRight;
}

.profile-pane.active {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    min-height: 500px;
}

.gallery-pane.active {
    display: block;
    min-height: 500px;
}

@keyframes aboutPaneFromRight {
    from {
        opacity: 0;
        transform: translateX(110%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes aboutPaneFromLeft {
    from {
        opacity: 0;
        transform: translateX(-110%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-pane-image {
    min-height: 500px;
    background: #edf1f4;
}

.about-pane-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-pane-copy {
    display: flex;
    flex-direction: column;
    padding: 46px 48px;
}

.about-pane-copy h3 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: clamp(1.55rem, 2.6vw, 2.2rem);
    line-height: 1.25;
}

.about-pane-text {
    color: var(--muted);
    line-height: 1.85;
}

.about-pane-text p {
    margin: 0 0 14px;
}

.about-pane-copy .btn {
    align-self: flex-start;
    margin-top: 24px;
    min-width: 120px;
    padding-inline: 18px;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px 34px;
    min-height: 500px;
    padding: 46px;
    background: #fff;
    align-content: start;
}

.about-gallery-grid figure {
    margin: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #edf1f4;
}

.about-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.about-gallery-grid figure:hover img {
    transform: scale(1.06);
}

.about-gallery-empty {
    grid-column: 1 / -1;
    align-self: center;
    justify-self: center;
    max-width: 520px;
    padding: 28px;
    border: 1px dashed #d8dee6;
    border-radius: 8px;
    color: var(--muted);
    background: #fafafa;
    text-align: center;
    line-height: 1.7;
}

.about-stats {
    align-self: flex-end;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: min(100%, 460px);
    margin-top: auto;
    padding-top: 24px;
}

.about-showcase-card.gallery-active .about-stats {
    display: none;
}

.about-stats div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 14px;
    align-items: center;
    padding: 16px;
    border: 1px solid #ececec;
    background: #fafafa;
}

.about-stats i {
    grid-row: span 2;
    color: #555;
    font-size: 2rem;
}

.about-stats strong {
    color: #555;
    font-size: 1.34rem;
    line-height: 1;
}

.about-stats span {
    color: #aaa;
    font-size: 0.82rem;
}

.global-sales {
    padding: 86px 0;
    color: #fff;
    background: radial-gradient(circle at 82% 20%, rgba(80, 196, 255, 0.36), transparent 30%), radial-gradient(circle at 18% 82%, rgba(75, 138, 255, 0.28), transparent 34%), linear-gradient(110deg, rgba(7, 54, 102, 0.9), rgba(20, 126, 186, 0.74)), var(--global-sales-background-image) center/cover no-repeat;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.global-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 56px;
    align-items: center;
}

.global-copy h2 {
    max-width: 760px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.08;
}

.global-copy p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.global-stats div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.global-stats strong,
.global-stats span {
    display: block;
}

.global-stats strong {
    color: #8fe4f5;
    font-size: 1.25rem;
}

.global-stats span {
    color: rgba(255, 255, 255, 0.72);
}

.global-map {
    position: relative;
    min-height: 440px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.6);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 22px 48px rgba(2, 20, 38, 0.18);
}

.global-map img {
    position: absolute;
    inset: 26px;
    width: calc(100% - 52px);
    height: calc(100% - 52px);
    object-fit: contain;
    opacity: 0.95;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.18));
}

.map-point {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--warm-accent);
    box-shadow: 0 0 0 8px rgba(242, 173, 56, 0.16), 0 0 24px rgba(242, 173, 56, 0.72);
}

.point-na { left: 75%; top: 25%; }
.point-eu { left: 22%; top: 30%; }
.point-me { left: 44%; top: 75%; }
.point-asia { left: 36%; top: 40%; }
.point-sa { left: 85%; top: 70%; }
.point-af {
    left: 18%;
    top: 60%;
}

.map-label {
    position: absolute;
    right: 24px;
    bottom: 22px;
    padding: 10px 14px;
    border-radius: 6px;
    color: #fff;
    background: rgba(32, 36, 40, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 800;
}

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

.product-card {
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 38px rgba(8, 24, 39, 0.14);
}

.product-img {
    aspect-ratio: 1 / 1;
    background: #ffffff;
}

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

.product-info {
    padding: 20px;
}

.product-info h3,
.product-info h4 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 1.06rem;
    line-height: 1.35;
}

.product-info p {
    margin: 0;
    color: var(--muted);
}

.about-band {
    color: var(--ink);
    background: #ffffff;
    border-top: 1px solid #eef3f7;
    border-bottom: 1px solid #eef3f7;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 34px;
    align-items: center;
}

.about-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.1;
}

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

.about-panel {
    padding: 34px;
    color: var(--ink);
}

.about-panel h3 {
    margin-top: 0;
}

.about-panel ul {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.about-panel li {
    margin-bottom: 10px;
}

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

@media (min-width: 1440px) {
    .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .focus-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.news-card {
    overflow: hidden;
}

.news-img {
    aspect-ratio: 16 / 10;
    background: #ffffff;
}

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

.news-content {
    padding: 22px;
}

.news-content time {
    color: var(--primary-color);
    font-size: 0.84rem;
    font-weight: 800;
}

.news-content h3 {
    margin: 8px 0 10px;
    font-size: 1.2rem;
}

.news-content p {
    margin: 0;
    color: var(--muted);
}

.advantages-faq-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 24%, rgba(20, 84, 173, 0.05) 0 1px, transparent 2px) 0 0 / 10px 10px,
        linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
}

.advantages-faq-section:before {
    content: "";
    position: absolute;
    inset: 76px 0 auto;
    height: 520px;
    opacity: 0.3;
    background:
        radial-gradient(ellipse at 14% 42%, rgba(120, 130, 142, 0.12) 0 8%, transparent 9%),
        radial-gradient(ellipse at 30% 34%, rgba(120, 130, 142, 0.09) 0 10%, transparent 11%),
        radial-gradient(ellipse at 73% 35%, rgba(120, 130, 142, 0.1) 0 13%, transparent 14%),
        radial-gradient(ellipse at 88% 50%, rgba(120, 130, 142, 0.08) 0 9%, transparent 10%);
    pointer-events: none;
}

.advantages-faq-section .container {
    position: relative;
    z-index: 1;
}

.advantages-custom {
    margin: -38px 0 54px;
}

.advantages-showcase {
    display: grid;
    grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
    gap: 72px;
    align-items: center;
    margin-bottom: 72px;
}

.advantages-visual {
    position: relative;
    min-height: 558px;
}

.advantages-main-img,
.advantages-sub-img {
    position: absolute;
    object-fit: cover;
    background: #eef1f4;
    box-shadow: 0 20px 42px rgba(12, 36, 58, 0.16);
}

.advantages-main-img {
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.advantages-sub-img {
    left: 0;
    bottom: 72px;
    width: 46%;
    height: 42%;
    border: 8px solid #fff;
}

.advantages-badge {
    position: absolute;
    left: 31%;
    top: 34%;
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border: 8px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: #fff;
    background: #1454ad;
    box-shadow: 0 16px 30px rgba(20, 84, 173, 0.26);
    font-size: 2rem;
}

.advantages-list {
    display: grid;
    gap: 24px;
}

.advantage-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 16px 26px 16px 16px;
    border: 1px solid #dfe5eb;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 26px rgba(8, 39, 68, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.advantage-card:hover {
    transform: translateX(-6px);
    border-color: rgba(20, 84, 173, 0.22);
    box-shadow: 0 16px 34px rgba(8, 39, 68, 0.11);
}

.advantage-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 88px;
    color: #1454ad;
    background: #f1f1f1;
    font-size: 2.3rem;
}

.advantage-card h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 1.22rem;
}

.advantage-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.home-faq-block {
    padding-top: 20px;
}

.home-faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
}

.home-faq-item {
    border: 1px solid #e1e7ef;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.home-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 18px 20px;
    border: 0;
    color: var(--ink);
    background: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.home-faq-question i {
    color: #1454ad;
    transition: transform 0.2s ease;
}

.home-faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: var(--muted);
    line-height: 1.75;
}

.home-faq-answer p {
    margin: 0;
}

.home-faq-item.active .home-faq-answer {
    display: block;
}

.home-faq-item.active .home-faq-question i {
    transform: rotate(180deg);
}

.cta-band {
    padding: 54px 0;
    color: #fff;
    background:
        radial-gradient(circle at 88% 20%, rgba(123, 214, 255, 0.3), transparent 28%),
        linear-gradient(100deg, #075aa6, #128bc5);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-inner h2 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    line-height: 1.2;
}

@media (max-width: 980px) {
    .banner {
        height: calc(100vh - 90px);
        min-height: 560px;
    }

    .banner-slide {
        background-size: min(86vw, 640px) auto;
        background-position: right -18vw bottom 6%;
    }

    .industry-strip,
    .focus-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .global-layout {
        grid-template-columns: 1fr;
    }

    .portfolio-showcase {
        background: #fff;
    }

    .portfolio-layout,
    .about-showcase-head,
    .profile-pane.active {
        grid-template-columns: 1fr;
    }

    .portfolio-nav {
        padding-right: 0;
    }

    .portfolio-stage {
        min-height: 560px;
        padding-left: 0;
    }

    .about-tabs {
        overflow-x: auto;
        padding-bottom: 14px;
    }

    .about-tab {
        flex: 0 0 118px;
    }

    .home-about-showcase,
    .about-showcase-card,
    .about-pane,
    .profile-pane.active,
    .gallery-pane.active {
        min-height: 0;
    }

    .about-stats,
    .home-faq-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .advantages-showcase {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .advantages-visual {
        min-height: 430px;
    }

    .advantages-main-img {
        width: 76%;
    }

    .advantages-sub-img {
        width: 42%;
        bottom: 38px;
    }

    .about-stats {
        margin-left: 0;
    }

    .about-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        min-height: 0;
        padding: 28px;
    }
}

@media (max-width: 640px) {
    .banner {
        height: calc(100vh - 88px);
        min-height: 540px;
    }

    .banner-slide {
        background-size: cover;
        background-position: center;
    }

    .banner-slide:before {
        background:
            linear-gradient(180deg, rgba(5, 20, 35, 0.72), rgba(8, 39, 68, 0.44), rgba(5, 20, 35, 0.28));
    }

    .banner-content {
        padding-top: 0;
        padding-bottom: 130px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .industry-strip,
    .focus-grid,
    .product-grid,
    .news-grid,
    .global-stats {
        grid-template-columns: 1fr;
    }

    .global-sales {
        padding: 60px 0;
    }

    .global-map {
        min-height: 300px;
    }

    .portfolio-layout {
        min-height: 0;
    }

    .portfolio-stage {
        min-height: 660px;
    }

    .portfolio-title {
        align-items: flex-start;
        padding: 16px 18px 0;
    }

    .portfolio-title strong {
        width: 58px;
        height: 48px;
        font-size: 1.55rem;
    }

    .portfolio-image img {
        width: 92%;
        max-height: 300px;
    }

    .portfolio-copy {
        width: 100%;
        margin-top: -28px;
        padding: 22px;
    }

    .about-pane-image {
        min-height: 260px;
    }

    .about-pane-copy {
        padding: 30px 22px;
    }

    .about-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        padding: 18px;
    }

    .about-stats,
    .home-faq-list {
        grid-template-columns: 1fr;
    }

    .advantages-showcase {
        margin-bottom: 48px;
    }

    .advantages-visual {
        min-height: 360px;
    }

    .advantages-main-img {
        width: 82%;
        height: 78%;
    }

    .advantages-sub-img {
        width: 54%;
        height: 42%;
        bottom: 30px;
        border-width: 6px;
    }

    .advantages-badge {
        left: 34%;
        top: 32%;
        width: 64px;
        height: 64px;
        border-width: 6px;
        font-size: 1.5rem;
    }

    .advantage-card {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 16px;
        padding: 14px;
    }

    .advantage-card i {
        width: 72px;
        height: 68px;
        font-size: 1.8rem;
    }

    .about-stats div {
        padding: 20px 22px;
    }

    .banner-arrow {
        display: none;
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}
