.about-page {
    --about-blue: #3453ff;
    --about-blue-2: #6577ff;
    --about-ink: #050816;
    --about-muted: #5f6878;
    --about-line: rgba(27, 43, 94, 0.12);
    --about-soft: #f4f7ff;
    --about-container: min(1376px, calc(100vw - 112px));
    margin: 0;
    color: var(--about-ink);
    background:
        radial-gradient(circle at 86% 2%, rgba(161, 198, 255, 0.32), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #ffffff 62%, #fbfcff 100%);
    font-family: "Manrope", "Noto Sans SC", sans-serif;
    overflow-x: hidden;
}

.about-page {
    --about-container: min(1560px, calc(100vw - 132px));
}

@media (max-width: 1420px) {
    .about-page {
        --about-container: min(1240px, calc(100vw - 64px));
    }
}

@media (max-width: 1100px) {
    .about-page {
        --about-container: min(900px, calc(100vw - 40px));
    }
}

@media (max-width: 720px) {
    .about-page {
        --about-container: calc(100vw - 28px);
    }
}

.about-page *, .about-page *::before, .about-page *::after { box-sizing: border-box; }
.about-page::before, .about-page::after { display: none; }
.about-page a { color: inherit; text-decoration: none; }
.about-page img { display: block; max-width: 100%; }
.about-symbols { position: absolute; width: 0; height: 0; overflow: hidden; }
.about-page svg { width: 1em; height: 1em; fill: none; stroke: currentColor; }
.about-page svg path, .about-page svg circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.about-container { width: var(--about-container); margin-inline: auto; }

.about-page .about-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 24px 0 8px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.46));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.about-page .about-header.scrolled { padding-top: 12px; }
.about-page .about-nav {
    width: var(--about-container);
    min-height: 48px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.about-page .about-header.scrolled .about-nav {
    min-height: 58px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 16px 42px rgba(38, 51, 112, 0.12);
}
.about-page .about-brand {
    min-width: 166px;
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
}
.about-brand-text {
    color: #050816;
    font-size: 26px;
    line-height: 0.9;
    font-weight: 750;
    letter-spacing: -0.055em;
}
.about-brand-text em {
    font-style: normal;
    font-weight: 400;
}
.about-brand-sub {
    color: #101727;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.38em;
}
.about-page .about-links {
    justify-content: center;
    gap: clamp(30px, 3vw, 58px);
}
.about-page .about-links .nav-link {
    color: #0c1221;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.02em;
    padding: 8px 0 15px;
}
.about-page .about-links .nav-link::after {
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--about-blue);
}
.about-page .about-actions {
    min-width: 132px;
    justify-content: flex-end;
    gap: 12px;
}
.about-lang {
    gap: 0;
    padding: 3px;
    border: 1px solid rgba(27,43,94,0.10);
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 10px 24px rgba(45, 58, 120, 0.08);
}
.about-lang .lang-btn {
    min-width: 31px;
    padding: 6px 8px;
    color: #111827;
    font-size: 11px;
    font-weight: 900;
    border-radius: 999px;
}
.about-lang .lang-btn.active { color: #fff; background: var(--about-blue); }
.about-menu {
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 10px 24px rgba(45, 58, 120, 0.08), inset 0 0 0 1px rgba(27,43,94,0.10);
}
.about-menu::before,
.about-menu::after,
.about-menu span { left: 11px; right: 11px; height: 2px; }
.about-menu::before { top: 12px; }
.about-menu span { top: 18px; }
.about-menu::after { top: 24px; }

.about-main { margin-top: -80px; }
.about-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background:
        radial-gradient(circle at 36% 54%, rgba(255,255,255,0.68), transparent 19%),
        linear-gradient(90deg, #fff 0%, #fbfdff 44%, #e8f2ff 100%);
}
.about-hero-bg {
    position: absolute;
    inset: 0 0 0 auto;
    width: 58%;
    overflow: hidden;
}
.about-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.88) 11%, rgba(255,255,255,0.34) 42%, rgba(255,255,255,0.02) 70%),
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 76%, #fff 100%);
}
.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}
.hero-layer {
    position: relative;
    z-index: 2;
    min-height: 560px;
    display: grid;
    align-items: center;
    padding-top: 94px;
}
.about-page .hero-copy {
    position: relative;
    width: min(760px, 100%);
    overflow: visible;
    padding: 8px 0 78px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.about-page .hero-copy::before,
.about-page .hero-copy::after {
    content: none;
    display: none;
}
.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--about-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.about-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 5px rgba(52,83,255,0.10);
}
.about-page .hero-copy h1 {
    max-width: 800px;
    margin: 0;
    color: #050816;
    font-size: clamp(44px, 4.35vw, 66px);
    line-height: 1.16;
    letter-spacing: -0.055em;
    font-weight: 950;
}
.about-page .hero-copy h1 span { color: var(--about-blue); }
.about-page .hero-copy > p:not(.about-kicker) {
    max-width: 650px;
    margin: 26px 0 0;
    color: #283248;
    font-size: 17px;
    line-height: 1.86;
    font-weight: 650;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
}
.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 46px;
    padding: 0 25px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}
.about-btn:hover { transform: translateY(-2px); }
.about-btn svg { width: 16px; height: 16px; }
.about-btn-dark {
    color: #fff;
    background: #030610;
    box-shadow: 0 16px 34px rgba(5,8,22,0.18);
}
.about-page .about-btn-dark,
.about-page .about-btn-dark span,
.about-page .about-btn-dark svg {
    color: #fff !important;
    opacity: 1;
}
.about-page .about-btn-light,
.about-page .about-btn-light span,
.about-page .about-btn-light svg {
    color: var(--about-blue) !important;
    opacity: 1;
}
.about-btn-light {
    color: var(--about-blue);
    background: rgba(255,255,255,0.9);
    box-shadow: 0 14px 30px rgba(37,51,110,0.10), inset 0 0 0 1px rgba(52,83,255,0.12);
}
.about-btn-blue {
    color: #fff;
    min-width: 170px;
    padding-inline: 20px;
    background: linear-gradient(135deg, var(--about-blue), var(--about-blue-2));
    box-shadow: 0 18px 36px rgba(52,83,255,0.25);
}
.hero-service-card {
    position: absolute;
    right: 0;
    top: 188px;
    width: 210px;
    padding: 30px 28px;
    border: 1px solid rgba(255,255,255,0.72);
    border-radius: 24px;
    background: rgba(255,255,255,0.76);
    box-shadow: 0 28px 70px rgba(37, 51, 110, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.hero-service-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 25px;
}
.hero-service-card li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    align-items: center;
    color: #111827;
    font-size: 14px;
    font-weight: 900;
}
.hero-service-card svg {
    width: 20px;
    height: 20px;
    color: var(--about-blue);
}

.about-stats {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: -58px;
    margin-bottom: 72px;
    min-height: 120px;
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 18px;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 26px 78px rgba(37, 51, 110, 0.13);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.about-stats article {
    min-height: 120px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px 18px;
    border-right: 1px solid rgba(27,43,94,0.13);
}
.about-stats article:last-child { border-right: 0; }
.about-stats strong {
    display: block;
    color: var(--about-blue);
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.035em;
}
.about-stats small {
    display: block;
    margin-top: 13px;
    color: #344057;
    font-size: 14px;
    font-weight: 750;
}

.profile-section {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 78px;
    margin-bottom: 58px;
}
.profile-copy h2 {
    max-width: 520px;
    margin: 0;
    color: #050816;
    font-size: clamp(34px, 3vw, 48px);
    line-height: 1.25;
    letter-spacing: -0.045em;
    font-weight: 950;
}
.profile-copy > p:not(.about-kicker) {
    max-width: 540px;
    margin: 28px 0 0;
    color: #39445a;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 650;
}
.capability-strip {
    width: min(454px, 100%);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 32px;
    border-radius: 14px;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 18px 52px rgba(37, 51, 110, 0.08), inset 0 0 0 1px rgba(52,83,255,0.08);
}
.capability-strip article {
    min-height: 76px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 13px 10px;
    border-right: 1px solid rgba(27,43,94,0.10);
}
.capability-strip article:last-child { border-right: 0; }
.capability-strip svg {
    width: 25px;
    height: 25px;
    color: var(--about-blue);
}
.capability-strip span {
    display: block;
    margin-top: 7px;
    color: #111827;
    font-size: 12px;
    font-weight: 900;
}
.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    margin-top: 28px;
    padding: 0 24px;
    border-radius: 999px;
    color: #17213a;
    font-size: 13px;
    font-weight: 900;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 14px 32px rgba(37, 51, 110, 0.10), inset 0 0 0 1px rgba(27,43,94,0.08);
}
.learn-more svg {
    width: 15px;
    height: 15px;
    color: var(--about-blue);
}
.profile-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.factory-render {
    position: relative;
    grid-column: 1 / -1;
    height: 260px;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, #cfe2ff 0%, #f7fbff 52%, #dfe9f8 100%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.72), 0 18px 42px rgba(37, 51, 110, 0.08);
}
.factory-sky {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 73% 24%, rgba(255, 202, 116, 0.54), transparent 17%),
        radial-gradient(circle at 23% 18%, rgba(255,255,255,0.98), transparent 20%),
        linear-gradient(145deg, rgba(255,255,255,0.22), rgba(255,255,255,0));
}
.factory-building {
    position: absolute;
    left: 7%;
    right: 5%;
    bottom: 58px;
    height: 126px;
    border-radius: 6px 28px 8px 8px;
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.62) 0 42px, rgba(187,203,225,0.44) 42px 45px),
        linear-gradient(180deg, #eef4fc, #cbd8eb);
    transform: perspective(480px) rotateY(-8deg) skewY(-1deg);
    box-shadow: 0 20px 45px rgba(46,66,120,0.18);
}
.factory-building::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 36px;
    height: 1px;
    background: rgba(55,75,119,0.18);
    box-shadow: 0 36px 0 rgba(55,75,119,0.18);
}
.factory-building span {
    position: absolute;
    right: 46px;
    top: 26px;
    color: #2d55bf;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -0.04em;
}
.factory-glass {
    position: absolute;
    left: 8%;
    right: 12%;
    bottom: 56px;
    height: 74px;
    background:
        repeating-linear-gradient(90deg, rgba(53,75,115,0.18) 0 1px, transparent 1px 44px),
        repeating-linear-gradient(0deg, rgba(53,75,115,0.13) 0 1px, transparent 1px 24px);
}
.factory-road {
    position: absolute;
    left: -8%;
    right: -4%;
    bottom: 0;
    height: 72px;
    background:
        linear-gradient(8deg, rgba(255,255,255,0.95) 0 24%, rgba(198,210,227,0.70) 25% 52%, rgba(255,255,255,0.84) 53%),
        linear-gradient(90deg, rgba(80,102,146,0.12), transparent);
}
.factory-trees {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 50px;
    height: 42px;
}
.factory-trees i {
    position: absolute;
    bottom: 0;
    width: 12px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(#63ad65, #2d7e49);
}
.factory-trees i:nth-child(1) { left: 3%; height: 28px; }
.factory-trees i:nth-child(2) { left: 17%; height: 38px; }
.factory-trees i:nth-child(3) { left: 68%; height: 32px; }
.factory-trees i:nth-child(4) { left: 78%; height: 42px; }
.factory-trees i:nth-child(5) { left: 88%; height: 30px; }
.profile-gallery img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 14px;
    background: #f2f6ff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.72);
}
.profile-gallery img:nth-of-type(1),
.profile-gallery img:nth-of-type(2) {
    object-fit: contain;
    padding: 12px;
}

.values-section { margin-bottom: 56px; }
.section-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    margin-bottom: 32px;
}
.section-divider::before,
.section-divider::after {
    content: "";
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(27,43,94,0.12));
}
.section-divider::after {
    background: linear-gradient(90deg, rgba(27,43,94,0.12), transparent);
}
.section-divider span {
    color: #050816;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.04em;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}
.value-card {
    min-height: 142px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 28px;
    border-radius: 16px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 20px 58px rgba(37, 51, 110, 0.08);
}
.value-card span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-top: -48px;
    color: var(--about-blue);
    font-size: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 14px 34px rgba(52,83,255,0.13), inset 0 0 0 1px rgba(52,83,255,0.16);
}
.value-card h3 {
    margin: 8px 0 8px;
    color: #0b1224;
    font-size: 22px;
    font-weight: 950;
}
.value-card p {
    margin: 0;
    color: #626c7f;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 700;
}

.history-footprint {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    margin-bottom: 58px;
}
.history-panel,
.footprint-panel {
    min-height: 330px;
    padding: 0 36px 18px 0;
}
.footprint-panel {
    padding: 0 0 18px 44px;
    border-left: 1px solid rgba(27,43,94,0.10);
}
.history-panel h2,
.footprint-panel h2 {
    margin: 0;
    color: #050816;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.045em;
}
.timeline-curve {
    position: relative;
    height: 190px;
    margin-top: 28px;
}
.timeline-curve svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.timeline-curve path {
    fill: none;
    stroke: rgba(52,83,255,0.50);
    stroke-width: 2.5;
}
.timeline-curve i {
    position: absolute;
    width: 13px;
    height: 13px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--about-blue);
    box-shadow: 0 0 0 4px rgba(52,83,255,0.12);
}
.timeline-labels {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-top: -20px;
}
.timeline-labels strong {
    display: block;
    color: #111827;
    font-size: 18px;
    font-weight: 950;
}
.timeline-labels span {
    display: block;
    margin-top: 8px;
    color: #5f6878;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 720;
}
.world-map {
    position: relative;
    height: 288px;
    margin-top: 14px;
    overflow: hidden;
    border-radius: 18px;
    background: radial-gradient(circle at 47% 44%, #eef3ff 0 22%, #fbfdff 64%, #fff 100%);
}
.world-map > svg {
    position: absolute;
    inset: 14px 16px 12px 10px;
    width: calc(100% - 26px);
    height: calc(100% - 26px);
}
.map-land {
    fill: #dbe4f5;
    stroke: none !important;
    opacity: 0.92;
}
.map-route {
    fill: none;
    stroke: rgba(52,83,255,0.18) !important;
    stroke-width: 1.4 !important;
}
.pin {
    position: absolute;
    width: 13px;
    height: 13px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--about-blue);
    box-shadow: 0 0 0 5px rgba(52,83,255,0.10), 0 7px 16px rgba(52,83,255,0.20);
}
.p1 { left: 20%; top: 42%; }
.p2 { left: 44%; top: 33%; }
.p3 { left: 58%; top: 48%; }
.p4 { left: 71%; top: 34%; }
.p5 { left: 77%; top: 60%; }
.p6 { left: 32%; top: 68%; }
.map-link {
    position: absolute;
    left: 26px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 20px;
    border-radius: 999px;
    color: #17213a;
    font-size: 13px;
    font-weight: 900;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 14px 32px rgba(37, 51, 110, 0.10);
}
.map-link svg { width: 15px; height: 15px; color: var(--about-blue); }
.map-legend {
    position: absolute;
    right: 20px;
    top: 42px;
    width: 142px;
    display: grid;
    gap: 15px;
    padding: 22px 20px;
    border-radius: 14px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 18px 44px rgba(37, 51, 110, 0.10);
}
.map-legend article {
    display: grid;
    grid-template-columns: 16px 1fr;
    column-gap: 9px;
}
.map-legend i {
    width: 13px;
    height: 8px;
    margin-top: 3px;
    border-radius: 2px;
}
.map-legend .cold { background: #3453ff; }
.map-legend .dry { background: #16a34a; }
.map-legend .hot { background: #f97316; }
.map-legend strong {
    color: #17213a;
    font-size: 12px;
    font-weight: 900;
}
.map-legend small {
    grid-column: 2;
    display: block;
    margin-top: 3px;
    color: #737d91;
    font-size: 11px;
    line-height: 1.35;
}

.about-cta {
    position: relative;
    display: grid;
    grid-template-columns: 0.92fr 1.34fr;
    align-items: center;
    gap: 44px;
    min-height: 142px;
    margin-bottom: 54px;
    padding: 26px 30px 26px 48px;
    overflow: hidden;
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(238,244,255,0.97), rgba(255,255,255,0.72)),
        url("../assets/generated/product-greenhouse-systems-lineup.png") left center / auto 118% no-repeat;
    box-shadow: inset 0 0 0 1px rgba(52,83,255,0.08), 0 18px 52px rgba(37,51,110,0.06);
}
.about-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.62), rgba(255,255,255,0.82) 42%, transparent);
    pointer-events: none;
}
.cta-left,
.cta-contact {
    position: relative;
    z-index: 2;
}
.cta-left h2 {
    margin: 0;
    color: #050816;
    font-size: clamp(28px, 2.9vw, 40px);
    line-height: 1.24;
    letter-spacing: -0.045em;
    font-weight: 950;
}
.cta-arrow {
    position: absolute;
    left: 290px;
    top: 42px;
    width: 92px;
    height: 46px;
    border-top: 3px solid rgba(52,83,255,0.66);
    border-right: 3px solid rgba(52,83,255,0.66);
    border-radius: 0 34px 0 0;
    transform: rotate(17deg);
}
.cta-arrow::after {
    content: "";
    position: absolute;
    right: -7px;
    top: -9px;
    width: 14px;
    height: 14px;
    border-top: 3px solid rgba(52,83,255,0.72);
    border-right: 3px solid rgba(52,83,255,0.72);
    transform: rotate(44deg);
}
.cta-contact {
    display: grid;
    grid-template-columns: minmax(164px, 0.78fr) minmax(218px, 0.96fr) auto;
    align-items: center;
    gap: 20px;
    padding: 24px 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 22px 56px rgba(37,51,110,0.10);
}
.cta-contact a:not(.about-btn) {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 12px;
}
.cta-contact a:not(.about-btn) > svg {
    width: 38px;
    height: 38px;
    color: var(--about-blue);
}
.cta-contact a:first-child > svg { color: #22c55e; }
.cta-contact small {
    display: block;
    color: #778195;
    font-size: 12px;
}
.cta-contact strong {
    display: block;
    margin-top: 4px;
    color: #111827;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.about-footer {
    margin-bottom: 34px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr));
    gap: 30px;
}
.about-footer .about-brand {
    min-width: auto;
    margin-bottom: 16px;
}
.footer-brand p {
    max-width: 280px;
    margin: 0;
    color: #687181;
    font-size: 13px;
    line-height: 1.65;
}
.socials {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}
.socials i {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    color: #5f6878;
    font-size: 10px;
    font-style: normal;
    border-radius: 50%;
    background: #eef2f8;
}
.about-footer h3 {
    margin: 0 0 16px;
    color: #101827;
    font-size: 13px;
    font-weight: 900;
}
.about-footer a:not(.about-brand) {
    display: block;
    margin-bottom: 9px;
    color: #687181;
    font-size: 13px;
    line-height: 1.35;
    transition: color 0.2s ease, transform 0.2s ease;
}
.about-footer a:not(.about-brand):hover {
    color: var(--about-blue);
    transform: translateX(3px);
}
.qr-block {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
    gap: 16px;
}
.qr-art {
    width: 78px;
    height: 78px;
    border: 7px solid #111827;
    background:
        linear-gradient(90deg, #111827 12px, transparent 12px 20px, #111827 20px 30px, transparent 30px 38px, #111827 38px 48px, transparent 48px),
        linear-gradient(#111827 10px, transparent 10px 20px, #111827 20px 29px, transparent 29px 39px, #111827 39px 49px, transparent 49px);
    background-size: 52px 52px;
    background-color: #fff;
}
.qr-block p {
    margin: 0;
    color: #687181;
    font-size: 13px;
    line-height: 1.55;
}
.footer-bottom {
    display: flex;
    gap: 28px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(27,43,94,0.10);
    color: #8a92a0;
    font-size: 12px;
}
.footer-bottom span:first-child { margin-right: auto; }

.about-page .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--delay, 0) * 80ms);
}
.about-page .reveal[data-delay="1"] { --delay: 1; }
.about-page .reveal[data-delay="2"] { --delay: 2; }
.about-page .reveal[data-delay="3"] { --delay: 3; }
.about-page .reveal.in-view {
    opacity: 1;
    transform: none;
}

@media (max-width: 1280px) {
    .about-page { --about-container: min(1160px, calc(100vw - 64px)); }
    .about-page .about-links { gap: 24px; }
    .about-page .about-links .nav-link { font-size: 13px; }
    .hero-service-card { right: 0; }
    .profile-section { gap: 52px; }
    .about-cta {
        grid-template-columns: 330px 1fr;
        gap: 28px;
    }
    .cta-contact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .cta-contact .about-btn-blue {
        grid-column: 1 / -1;
        justify-self: end;
        width: min(220px, 100%);
    }
    .footer-grid { gap: 24px; }
}

@media (max-width: 920px) {
    .about-page { --about-container: min(100% - 42px, 860px); }
    .about-page .about-header { padding-top: 18px; }
    .about-page .about-nav {
        min-height: 58px;
        padding: 0 16px;
        border-radius: 999px;
        background: rgba(255,255,255,0.9);
        box-shadow: 0 16px 42px rgba(38, 51, 112, 0.12);
    }
    .about-page .about-brand { min-width: 0; }
    .about-page .about-links {
        position: absolute;
        top: calc(100% + 14px);
        right: 0;
        width: min(320px, calc(100vw - 42px));
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border-radius: 24px;
        background: rgba(255,255,255,0.96);
        box-shadow: 0 28px 70px rgba(28,42,102,0.18);
    }
    .about-page .about-header.menu-open .about-links { display: flex; }
    .about-page .about-links .nav-link { padding: 14px 16px; }
    .about-page .about-links .nav-link::after { display: none; }
    .about-main { margin-top: -84px; }
    .about-hero { min-height: auto; }
    .about-hero-bg { width: 100%; opacity: 0.34; }
    .about-hero-bg::before { background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.86) 52%, rgba(255,255,255,0.60)); }
    .hero-layer { min-height: auto; padding: 126px 0 48px; }
    .about-page .hero-copy { width: 100%; padding-bottom: 0; }
    .about-page .hero-copy > p:not(.about-kicker) { max-width: 650px; }
    .hero-service-card { position: relative; top: auto; right: auto; width: min(360px, 100%); margin: 28px 0 0 auto; }
    .about-stats {
        margin-top: 32px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-stats article { border-bottom: 1px solid rgba(27,43,94,0.13); }
    .about-stats article:nth-child(2n) { border-right: 0; }
    .about-stats article:nth-last-child(-n+1) { border-bottom: 0; }
    .profile-section,
    .history-footprint,
    .about-cta { grid-template-columns: 1fr; }
    .footprint-panel { padding: 34px 0 0; border-left: 0; border-top: 1px solid rgba(27,43,94,0.10); }
    .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 46px; }
    .cta-contact { grid-template-columns: 1fr; }
    .cta-arrow { display: none; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .qr-block { grid-column: span 2; }
}

@media (max-width: 720px) {
    .about-page { --about-container: min(100% - 28px, 560px); }
    .about-page .about-brand-text { font-size: 22px; }
    .about-page .about-brand-sub { font-size: 10px; letter-spacing: 0.28em; }
    .about-page .about-lang { display: none; }
    .about-page .about-actions { min-width: auto; }
    .about-page .hero-copy h1 {
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.18;
        letter-spacing: -0.06em;
    }
    .about-page .hero-copy > p:not(.about-kicker) { font-size: 15px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .about-btn { width: 100%; }
    .about-stats { grid-template-columns: 1fr; }
    .about-stats article { border-right: 0; border-bottom: 1px solid rgba(27,43,94,0.13); }
    .about-stats article:last-child { border-bottom: 0; }
    .profile-section { gap: 36px; }
    .capability-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .capability-strip article:nth-child(2) { border-right: 0; }
    .capability-strip article:nth-child(-n+2) { border-bottom: 1px solid rgba(27,43,94,0.10); }
    .profile-gallery { grid-template-columns: 1fr; }
    .factory-render { height: 230px; }
    .profile-gallery img { height: 150px; }
    .values-grid { grid-template-columns: 1fr; }
    .section-divider { gap: 14px; }
    .timeline-labels { grid-template-columns: 1fr; margin-top: 14px; }
    .timeline-curve { height: 130px; }
    .world-map { height: 420px; }
    .map-legend { position: absolute; top: auto; left: 20px; right: 20px; bottom: 72px; width: auto; grid-template-columns: 1fr; }
    .map-link { left: 20px; bottom: 18px; }
    .about-cta { padding: 28px; gap: 24px; }
    .cta-contact { padding: 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; }
    .qr-block { grid-column: auto; }
    .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 460px) {
    .about-page .about-nav { padding-left: 14px; }
    .about-page .about-brand-sub { display: none; }
    .about-service-card { width: 100%; }
    .factory-building span { right: 24px; font-size: 14px; }
    .about-stats strong { font-size: 34px; }
    .profile-copy h2,
    .history-panel h2,
    .footprint-panel h2 { font-size: 30px; }
}

.about-page {
    --about-container: min(1560px, calc(100vw - 132px));
}

@media (max-width: 1420px) {
    .about-page {
        --about-container: min(1240px, calc(100vw - 64px));
    }
}

@media (max-width: 1100px) {
    .about-page {
        --about-container: min(900px, calc(100vw - 40px));
    }
}

@media (max-width: 720px) {
    .about-page {
        --about-container: calc(100vw - 28px);
    }
}
