:root {
    --brand-navy: #0b1a30;
    --brand-blue: #086bb5;
    --brand-blue-hover: #075691;
    --brand-blue-light: #e8f4fc;
    --brand-blue-border: #cbe4f7;
    --brand-cyan: #38bdf8;
    --company-ink: #0f172a;
    --company-muted: #52616b;
    --card-border: #e2e8f0;
    --card-shadow-sm: 0 2px 8px rgba(11, 26, 48, 0.04);
    --card-shadow-md: 0 8px 24px -4px rgba(11, 26, 48, 0.07);
    --card-shadow-lg: 0 16px 36px -6px rgba(11, 26, 48, 0.12);
}

.about-main-1 {
    overflow: visible;
    --company-ink: #0f172a;
    --company-muted: #52616b;
    color: var(--company-ink);
    background: #fff;
}

.company-shell {
    width: min(calc(100% - 96px), 1280px);
    margin-inline: auto;
}

.company-section {
    padding-block: 88px;
    scroll-margin-top: calc(var(--header-height) + 84px);
}

.about-main-1 a:focus-visible,
.about-main-1 button:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: 4px;
}

/* 1. STICKY PAGE NAV */
.company-nav {
    position: sticky;
    top: var(--header-height);
    z-index: 25;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 2px 10px rgba(11, 26, 48, 0.03);
}

.company-nav-inner {
    display: flex;
    gap: 44px;
    overflow-x: auto;
    scrollbar-width: none;
}
.company-nav-inner::-webkit-scrollbar { display: none; }

.company-nav a {
    position: relative;
    flex-shrink: 0;
    padding: 22px 4px 20px;
    color: #64748b;
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.company-nav a::after {
    position: absolute;
    content: "";
    inset: auto 0 0;
    height: 3px;
    background: var(--brand-blue);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.company-nav a[aria-current],
.company-nav a:hover {
    color: var(--brand-blue);
    font-weight: 600;
}

.company-nav a[aria-current]::after {
    transform: scaleX(1);
}

/* 2. COMPANY OVERVIEW */
.company-overview {
    padding-top: 72px;
}

.company-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    grid-template-areas: "heading media" "copy media";
    grid-template-rows: auto 1fr;
    align-items: start;
    gap: 28px 64px;
}

.company-intro-heading {
    grid-area: heading;
}

.company-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    padding: 5px 14px;
    background: var(--brand-blue-light);
    border: 1px solid var(--brand-blue-border);
    border-radius: 999px;
    color: var(--brand-blue);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(8, 107, 181, 0.2);
}

.company-intro-heading h2 {
    margin: 0 0 10px;
    color: var(--brand-navy);
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.company-positioning {
    margin: 0;
    color: var(--brand-blue);
    font-size: 18px;
    font-weight: 600;
}

.company-intro-copy {
    grid-area: copy;
    min-width: 0;
}

.company-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.feat-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #334155;
    font-size: 13px;
    font-weight: 500;
}

.feat-icon {
    width: 15px;
    height: 15px;
    color: var(--brand-blue);
    flex-shrink: 0;
}

.company-introduction {
    color: #475569;
    font-size: 15px;
    line-height: 2.05;
    overflow-wrap: anywhere;
}

.company-introduction p {
    margin: 0 0 16px;
}

.company-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 24px;
    background: var(--brand-blue);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(8, 107, 181, 0.28);
    transition: all 0.25s ease;
}

.company-text-link span {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.company-text-link:hover {
    background: var(--brand-blue-hover);
    box-shadow: 0 8px 22px rgba(8, 107, 181, 0.38);
    transform: translateY(-2px);
}

.company-text-link:hover span {
    transform: translate(2px, -2px);
}

.company-intro-media {
    grid-area: media;
    min-width: 0;
    margin: 0;
}

.media-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow-lg);
    border: 1px solid var(--card-border);
}

.media-container > .company-intro-image {
    width: 100%;
    height: auto;
    aspect-ratio: 8 / 5;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.media-container:hover > .company-intro-image {
    transform: scale(1.03);
}

.media-overlay-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(11, 26, 48, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-cyan);
    box-shadow: 0 0 8px var(--brand-cyan);
}

/* FACTS / METRICS */
.company-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid #e2e8f0;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 26px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--card-shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-md);
    border-color: #cbd5e1;
}

.fact-icon-badge {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: var(--brand-blue-light);
    color: var(--brand-blue);
    flex-shrink: 0;
}

.fact-icon-badge svg {
    width: 26px;
    height: 26px;
}

.fact-text-group {
    min-width: 0;
}

.company-facts strong {
    display: block;
    color: var(--brand-navy);
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.company-facts small {
    margin-left: 6px;
    color: var(--brand-blue);
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.company-facts span {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* 3. SECTION HEADINGS */
.company-heading {
    margin-bottom: 40px;
}

.company-section-eyebrow {
    margin: 0 0 8px;
    color: var(--brand-blue);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.company-heading h2 {
    margin: 0;
    color: var(--brand-navy);
    font-size: clamp(28px, 2.6vw, 36px);
    font-weight: 700;
    line-height: 1.35;
}

.company-heading > p {
    margin: 10px 0 0;
    color: var(--company-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* 4. PRODUCTION & QUALITY */
.company-production {
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.company-production-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 28px;
}

.company-production-grid figure {
    margin: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-production-grid figure:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-md);
}

.prod-media-box {
    position: relative;
    overflow: hidden;
}

.company-production-primary {
    display: flex;
    flex-direction: column;
}

.company-production-primary .prod-media-box {
    flex: 1;
    min-height: 300px;
}

.company-production-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 40% center;
    display: block;
    transition: transform 0.5s ease;
}

.company-production-grid figure:hover img {
    transform: scale(1.035);
}

.prod-badge-float {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 12px;
    background: rgba(11, 26, 48, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.company-production-primary figcaption {
    padding: 24px 28px;
}

.prod-badge-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.prod-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--brand-blue-light);
    color: var(--brand-blue);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.prod-tag-accent {
    background: #ecfdf5;
    color: #059669;
}

.company-production-grid h3 {
    margin: 0 0 8px;
    color: var(--brand-navy);
    font-size: 19px;
    font-weight: 700;
}

.company-production-grid p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.company-production-secondary {
    display: grid;
    gap: 24px;
}

.company-production-secondary .prod-media-box {
    aspect-ratio: 16 / 9;
}

.company-production-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.company-production-secondary figcaption {
    padding: 20px 24px;
}

.company-production-secondary figcaption .prod-tag {
    margin-bottom: 8px;
}

.company-production-secondary h3 {
    font-size: 17px;
}

/* 5. CORPORATE CULTURE */
.company-culture {
    position: relative;
    background: radial-gradient(circle at 15% 25%, #142e58 0%, #0c1c38 55%, #071224 100%);
    background-image: radial-gradient(circle at 15% 25%, #142e58 0%, #0c1c38 55%, #071224 100%), radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 100% 100%, 28px 28px;
    color: #fff;
    overflow: hidden;
}

.company-culture-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.45fr);
    gap: 72px;
    align-items: center;
}

.company-culture-heading {
    margin-bottom: 0;
}

.culture-eyebrow {
    color: var(--brand-cyan) !important;
}

.company-culture-heading h2 {
    color: #fff;
    font-size: 32px;
}

.culture-motto-wrap {
    position: relative;
    display: inline-block;
    margin: 28px 0 18px;
}

.company-culture-motto {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 3.4vw, 44px);
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 20px rgba(56, 189, 248, 0.25);
}

.culture-seal {
    position: absolute;
    right: -24px;
    bottom: 6px;
    padding: 3px 8px;
    border: 1.5px solid rgba(56, 189, 248, 0.4);
    border-radius: 4px;
    color: var(--brand-cyan);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.15em;
    transform: rotate(-6deg);
}

.culture-intro-p {
    margin: 16px 0 0;
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.8;
}

.company-values {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.culture-card {
    display: flex;
    gap: 18px;
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.culture-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.culture-icon-wrapper {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(56, 189, 248, 0.12);
    color: var(--brand-cyan);
    border: 1px solid rgba(56, 189, 248, 0.25);
    flex-shrink: 0;
}

.culture-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.culture-content {
    min-width: 0;
}

.culture-card h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 17.5px;
    font-weight: 700;
}

.culture-card p {
    margin: 0;
    color: #cbd5e1;
    font-size: 13.5px;
    line-height: 1.8;
}
/* 6. DEVELOPMENT HISTORY */
.company-history {
    position: relative;
    min-height: 760px;
    padding-block: 84px 110px;
    background: #f8fafc;
    background-image: radial-gradient(#cbd5e1 1.2px, transparent 1.2px);
    background-size: 24px 24px;
}

.company-history > .company-shell {
    width: min(calc(100% - 120px), 1400px);
}

.company-history-heading {
    margin-bottom: 64px;
    text-align: center;
}

.company-history-heading p[lang="en"] {
    margin: 0 0 6px;
    color: var(--brand-blue);
    font-family: Arial, sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.company-history-heading h2 {
    margin: 0 0 8px;
    color: var(--brand-navy);
    font-size: clamp(32px, 3.2vw, 42px);
    font-weight: 800;
    line-height: 1.3;
}

.history-section-subtitle {
    margin: 0;
    color: var(--company-muted);
    font-size: 15px;
}

.company-history-controls {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 16px;
    align-items: center;
}

.company-history .about-history-line {
    position: relative;
    display: flex;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}
.company-history .about-history-line::-webkit-scrollbar { display: none; }

.company-history .about-history-node {
    position: relative;
    flex: 0 0 calc(100% / 7);
    min-width: 0;
    min-height: 104px;
    padding: 48px 6px 14px;
    border: 0;
    background: transparent;
    cursor: pointer;
    scroll-snap-align: start;
    text-align: center;
    transition: transform 0.2s ease;
}

.company-history .about-history-node::before {
    position: absolute;
    content: "";
    top: 14px;
    left: calc(50% - 10px);
    z-index: 2;
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #94a3b8;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
}

.company-history .about-history-node::after {
    position: absolute;
    content: "";
    top: 23px;
    left: 0;
    right: 0;
    height: 2px;
    background: #cbd5e1;
    z-index: 1;
}

.company-history .about-history-node:first-child::after { left: 50%; }
.company-history .about-history-node:last-child::after { right: 50%; }

.company-history .about-history-node strong {
    display: block;
    color: #475569;
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.company-history .about-history-node.is-active::before {
    background: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(8, 107, 181, 0.22);
    transform: scale(1.15);
}

.company-history .about-history-node.is-active strong {
    color: var(--brand-blue);
    font-weight: 800;
}

.company-history .about-history-node:not(.is-active):hover::before {
    background: #64748b;
}

.company-history-arrow {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    background: #fff;
    color: var(--brand-blue);
    cursor: pointer;
    box-shadow: var(--card-shadow-sm);
    transition: all 0.2s ease;
}

.company-history-arrow:disabled {
    opacity: 0.28;
    cursor: default;
    border-color: #e2e8f0;
}

.company-history-arrow:hover:not(:disabled) {
    background: var(--brand-blue);
    color: #fff;
    border-color: var(--brand-blue);
    box-shadow: var(--card-shadow-md);
}

.history-chevron {
    display: block;
    width: 20px;
    height: 20px;
    background: currentColor;
    mask: var(--history-chevron) center / contain no-repeat;
    -webkit-mask: var(--history-chevron) center / contain no-repeat;
}
.history-chevron-left { --history-chevron: url('../assets/icons/chevron-left.svg'); }
.history-chevron-right { --history-chevron: url('../assets/icons/chevron-right.svg'); }

.company-history .about-history-stage {
    margin-top: 48px;
    padding: 0;
    border: 0;
}

.company-history .about-history-summary {
    position: relative;
    min-height: 190px;
    padding: 38px 48px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--card-shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.history-watermark {
    position: absolute;
    right: 28px;
    bottom: -16px;
    font-family: Arial, sans-serif;
    font-size: 130px;
    font-weight: 900;
    color: rgba(8, 107, 181, 0.05);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.history-card-body {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.history-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.history-badge-year {
    display: inline-block;
    padding: 4px 12px;
    background: var(--brand-blue-light);
    border: 1px solid var(--brand-blue-border);
    border-radius: 6px;
    color: var(--brand-blue);
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.history-badge-divider {
    color: #cbd5e1;
    font-size: 18px;
}

.history-badge-title {
    margin: 0;
    color: var(--brand-navy);
    font-size: 20px;
    font-weight: 700;
}

.company-history .about-history-summary p {
    max-width: 1140px;
    min-height: 0;
    margin: 0;
    color: #334155;
    font-size: 18px;
    line-height: 1.9;
    overflow-wrap: anywhere;
}

/* 7. HONORS & PATENTS */
.company-honors {
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

.company-patents {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 12px;
}

.company-patents figure {
    margin: 0;
    padding: 20px 20px 18px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.company-patents figure:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-lg);
    border-color: #cbd5e1;
}

.company-patents figure > div {
    padding: 12px;
    background: transparent;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-patents img {
    width: 100%;
    max-width: 240px;
    height: auto;
    aspect-ratio: 800 / 1132;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.company-patents figure:hover img {
    transform: scale(1.03);
}

.company-patents figcaption {
    padding-top: 16px;
    color: var(--brand-navy);
    font-size: 14.5px;
    font-weight: 600;
    text-align: center;
}

/* 8. CONTACT CTA BANNER */
.company-contact {
    padding-block: 64px;
    background: #fff;
}

.company-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: 44px 52px;
    background: radial-gradient(circle at 10% 20%, #102a50 0%, #0a1b34 100%);
    border-radius: 18px;
    color: #fff;
    box-shadow: var(--card-shadow-lg);
}

.cta-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(56, 189, 248, 0.16);
    border-radius: 4px;
    color: var(--brand-cyan);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.company-contact h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(24px, 2.2vw, 30px);
    font-weight: 700;
    line-height: 1.35;
}

.company-contact p {
    margin: 0;
    color: #cbd5e1;
    font-size: 15px;
}

.cta-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.cta-btn-primary {
    background: var(--brand-blue);
    color: #fff;
    box-shadow: 0 4px 14px rgba(8, 107, 181, 0.35);
}

.cta-btn-primary:hover {
    background: var(--brand-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8, 107, 181, 0.45);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

/* 9. RESPONSIVE BREAKPOINTS */
@media (min-width: 1600px) {
    .company-shell {
        width: min(calc(100% - 160px), 1400px);
    }
}

@media (max-width: 1024px) {
    .company-shell {
        width: calc(100% - 56px);
    }
    .company-section {
        padding-block: 72px;
    }
    .company-intro-grid {
        gap: 28px 40px;
    }
    .company-facts {
        gap: 16px;
    }
    .fact-item {
        padding: 18px 16px;
        gap: 12px;
    }
    .fact-icon-badge {
        width: 44px;
        height: 44px;
    }
    .fact-icon-badge svg {
        width: 22px;
        height: 22px;
    }
    .company-facts strong {
        font-size: 30px;
    }
    .company-facts small {
        font-size: 13px;
        margin-left: 4px;
    }
    .company-facts span {
        font-size: 12px;
    }
    .company-culture-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .company-patents {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
    .company-patents img {
        max-height: 300px;
    }
    .company-history {
        min-height: 660px;
        padding-block: 72px 96px;
    }
    .company-history > .company-shell {
        width: calc(100% - 56px);
    }
    .company-history .about-history-node {
        flex-basis: 25%;
    }
    .company-history .about-history-summary {
        min-height: 280px;
    }
    .company-history .about-history-summary p {
        font-size: 17.5px;
    }
    .company-contact-inner {
        padding: 36px 38px;
    }
}

@media (max-width: 680px) {
    .company-shell {
        width: calc(100% - 36px);
    }
    .company-section {
        padding-block: 52px;
        scroll-margin-top: calc(var(--header-height) + 72px);
    }
    .company-nav-inner {
        gap: 28px;
    }
    .company-nav a {
        padding-block: 16px;
        font-size: 13.5px;
    }
    .company-intro-heading h2 {
        font-size: 26px;
        overflow-wrap: anywhere;
    }
    .company-positioning {
        font-size: 16px;
    }
    .company-intro-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "heading" "media" "copy";
        grid-template-rows: auto;
        gap: 24px;
    }
    .company-facts {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 36px;
        padding-top: 24px;
    }
    .fact-item {
        padding: 18px 20px;
    }
    .company-facts strong {
        font-size: 32px;
    }
    .company-production-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .company-production-primary .prod-media-box {
        flex: none;
        aspect-ratio: 16 / 10;
        min-height: 0;
    }
    .company-production-secondary {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .company-values {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .culture-card {
        padding: 20px 18px;
    }
    .company-history {
        min-height: 570px;
        padding-block: 48px 72px;
    }
    .company-history > .company-shell {
        width: calc(100% - 32px);
    }
    .company-history-controls {
        grid-template-columns: 36px minmax(0, 1fr) 36px;
        gap: 4px;
    }
    .company-history-arrow {
        width: 36px;
        height: 36px;
    }
    .company-history .about-history-node {
        flex-basis: calc(100% / 3);
        min-height: 94px;
        padding: 44px 4px 10px;
    }
    .company-history .about-history-node::before {
        width: 16px;
        height: 16px;
        top: 16px;
        left: calc(50% - 8px);
    }
    .company-history .about-history-node strong {
        font-size: 18px;
    }
    .company-history .about-history-summary {
        min-height: 360px;
        padding: 26px 22px;
    }
    .history-badge-title {
        font-size: 17px;
    }
    .company-history .about-history-summary p {
        font-size: 15px;
        line-height: 1.8;
    }
    .company-patents {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .company-contact-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
        gap: 24px;
    }
    .cta-btns {
        width: 100%;
        flex-direction: column;
    }
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .company-facts strong {
        font-size: 26px;
    }
    .company-history .about-history-summary {
        min-height: 370px;
        padding: 22px 18px;
    }
    .company-history .about-history-summary p {
        font-size: 14px;
        line-height: 1.75;
    }
}

@media (prefers-reduced-motion: reduce) {
    html:has(.about-main-1) {
        scroll-behavior: auto;
    }
    .about-main-1 *,
    .about-main-1 *::after,
    .about-main-1 *::before {
        transition: none !important;
        animation: none !important;
    }
}

/* About page redesign: HIGHS brand story system */
.about-main-1 {
    --company-navy: #071b2d;
    --company-blue: #0d78b8;
    --company-cyan: #54c3e8;
    --company-paper: #f4f7f8;
    background: var(--company-paper);
}
.about-main-1 .company-nav { top: 0; background: rgba(7,27,45,.96); border: 0; box-shadow: none; }
.about-main-1 .company-nav-inner { width: min(calc(100% - 96px), 1280px); }
.about-main-1 .company-nav a { color: rgba(255,255,255,.62); padding-block: 18px 16px; }
.about-main-1 .company-nav a[aria-current], .about-main-1 .company-nav a:hover { color: #fff; }
.about-main-1 .company-nav a::after { background: var(--company-cyan); }
.about-main-1 .company-overview { width: 100%; max-width: none; padding: 116px max(48px, calc((100% - 1280px) / 2)) 88px; background: var(--company-navy); color: #fff; }
.about-main-1 .company-intro-grid { width: min(100%, 1280px); margin: 0 auto; grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); grid-template-areas: "heading media" "copy media"; gap: 28px 78px; }
.about-main-1 .company-kicker { padding: 0; border: 0; background: none; color: var(--company-cyan); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.about-main-1 .kicker-dot { background: var(--company-cyan); box-shadow: 0 0 0 4px rgba(84,195,232,.14); }
.about-main-1 .company-intro-heading h2 { color: #fff; font-size: clamp(38px, 5vw, 72px); line-height: 1.08; letter-spacing: -.03em; }
.about-main-1 .company-positioning { color: rgba(255,255,255,.72); font-size: 20px; font-weight: 400; }
.about-main-1 .company-intro-copy { max-width: 610px; align-self: end; }
.about-main-1 .company-feature-tags { gap: 8px; margin-bottom: 25px; }
.about-main-1 .feat-tag { padding: 7px 11px; border: 1px solid rgba(255,255,255,.18); border-radius: 2px; color: rgba(255,255,255,.78); background: rgba(255,255,255,.06); font-size: 12px; }
.about-main-1 .feat-icon { color: var(--company-cyan); }
.about-main-1 .company-introduction { color: rgba(255,255,255,.68); font-size: 15px; line-height: 2; }
.about-main-1 .company-text-link { display: inline-flex; gap: 14px; margin-top: 24px; padding-bottom: 7px; border-bottom: 1px solid var(--company-cyan); color: #fff; font-size: 13px; }
.about-main-1 .company-intro-media { align-self: stretch; min-height: 520px; margin: 0; }
.about-main-1 .company-intro-media .media-container { height: 100%; min-height: 520px; position: relative; overflow: hidden; }
.about-main-1 .company-intro-image { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); }
.about-main-1 .media-overlay-badge { background: rgba(7,27,45,.82); border-left: 3px solid var(--company-cyan); border-radius: 0; }
.about-main-1 .company-facts { width: min(100%, 1280px); margin: 76px auto 0; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.18); }
.about-main-1 .fact-item { border-color: rgba(255,255,255,.18); background: transparent; }
.about-main-1 .fact-icon-badge { color: var(--company-cyan); background: rgba(84,195,232,.1); border-radius: 0; }
.about-main-1 .company-facts strong { color: #fff; }
.about-main-1 .company-facts span { color: rgba(255,255,255,.55); }
.about-main-1 .company-production { background: #fff; }
.about-main-1 .company-production .company-shell, .about-main-1 .company-culture .company-shell, .about-main-1 .company-history .company-shell, .about-main-1 .company-honors .company-shell { max-width: 1280px; }
.about-main-1 .company-heading h2, .about-main-1 .company-history-heading h2 { color: var(--company-navy); font-size: clamp(30px, 4vw, 48px); letter-spacing: -.025em; }
.about-main-1 .company-section-eyebrow { color: var(--company-blue); letter-spacing: .16em; }
.about-main-1 .company-production-grid { gap: 18px; }
.about-main-1 .prod-media-box { border-radius: 0; }
.about-main-1 .company-culture { background: var(--company-navy); color: #fff; }
.about-main-1 .company-culture-heading h2, .about-main-1 .company-culture-motto { color: #fff; }
.about-main-1 .culture-intro-p { color: rgba(255,255,255,.62); }
.about-main-1 .culture-card { border: 1px solid rgba(255,255,255,.14); border-radius: 0; background: rgba(255,255,255,.05); box-shadow: none; }
.about-main-1 .culture-card:hover { border-color: var(--company-cyan); transform: translateY(-4px); }
.about-main-1 .culture-card h3 { color: #fff; }
.about-main-1 .culture-card p { color: rgba(255,255,255,.62); }
.about-main-1 .company-history { background: #e9eff2; }
.about-main-1 .company-history-heading p[lang="en"], .about-main-1 .history-section-subtitle { color: #61717b; }
.about-main-1 .company-history .about-history-summary { border-left: 4px solid var(--company-blue); background: #fff; box-shadow: 0 20px 50px rgba(7,27,45,.08); }
.about-main-1 .history-watermark { color: rgba(13,120,184,.08); }
.about-main-1 .history-badge-year { color: var(--company-blue); }
.about-main-1 .company-honors { background: #fff; }
.about-main-1 .company-patents figure { border-radius: 0; box-shadow: none; border: 1px solid #dfe7eb; }
.about-main-1 .company-contact { background: var(--company-blue); }
.about-main-1 .company-contact-inner { color: #fff; }
.about-main-1 .cta-btn-primary { background: #fff; color: var(--company-navy); }
.about-main-1 .cta-btn-secondary { border-color: rgba(255,255,255,.5); color: #fff; }

@media (max-width: 680px) {
    .about-main-1 .company-nav-inner { width: calc(100% - 32px); gap: 24px; }
    .about-main-1 .company-nav a { padding-block: 14px 12px; font-size: 12px; }
    .about-main-1 .company-overview { padding: 88px 16px 54px; }
    .about-main-1 .company-intro-grid { grid-template-columns: 1fr; grid-template-areas: "heading" "media" "copy"; gap: 28px; }
    .about-main-1 .company-intro-heading h2 { font-size: clamp(34px, 10vw, 48px); }
    .about-main-1 .company-positioning { font-size: 17px; }
    .about-main-1 .company-intro-media, .about-main-1 .company-intro-media .media-container { min-height: 300px; }
    .about-main-1 .company-intro-copy { max-width: none; }
    .about-main-1 .company-introduction { font-size: 14px; }
    .about-main-1 .company-facts { margin-top: 42px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .about-main-1 .fact-item { padding: 16px 12px; }
    .about-main-1 .company-facts strong { font-size: 28px; }
    .about-main-1 .company-section { padding-block: 58px; }
    .about-main-1 .company-heading h2, .about-main-1 .company-history-heading h2 { font-size: 32px; }
    .about-main-1 .company-contact-inner { padding: 36px 20px; }
}
.about-main-1 .company-patents figure > div { border: 0; background: transparent; }
@media (max-width: 360px) {
    .about-main-1 .company-history .about-history-summary { height: 370px; min-height: 370px; overflow: hidden; }
    .about-main-1 .company-history .about-history-summary p { max-height: 172px; overflow: hidden; }
}
