/* ==========================================================================
   About page — Vision, Mission & Core Values
   ========================================================================== */

:root {
    --about-red: #e10600;
    --about-red-soft: rgba(225, 6, 0, 0.1);
    --about-green: #48720c;
    --about-green-soft: rgba(72, 114, 12, 0.1);
    --about-ink: #1a1a1a;
    --about-muted: #555555;
    --about-border: rgba(225, 6, 0, 0.55);
    --about-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.about-page__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--about-ink);
}

.about-page__eyebrow::before,
.about-page__eyebrow::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--about-red);
}

.about-page__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--about-ink);
}

.about-page__title-our {
    color: var(--about-green);
}

.about-page__title-accent {
    color: var(--about-red);
}

.about-page__title--solid {
    color: var(--about-green);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.about-page__divider {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.about-page__divider span {
    position: relative;
    display: block;
    width: 120px;
    height: 1px;
    background: var(--about-red);
}

.about-page__divider span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--about-red);
    transform: translate(-50%, -50%) rotate(45deg);
}

.about-page__em {
    color: var(--about-green);
    font-weight: 700;
}

/* Intro / About Us -------------------------------------------------------- */

.about-page__bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
}

.about-page__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--about-muted);
}

.about-page__bullet-icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 4px;
    border-radius: 4px 4px 4px 0;
    background: var(--about-green);
}

.about-page__intro-media {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--about-shadow);
}

.about-page__intro-media img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 360px;
    object-fit: cover;
}

.about-page__intro-badge {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--about-red);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 0 28px 28px;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    box-shadow: 0 12px 30px rgba(225, 6, 0, 0.28);
}

/* Quote boxes ------------------------------------------------------------- */

.about-page__quote-box {
    position: relative;
    max-width: 920px;
    padding: clamp(28px, 4vw, 48px);
    border: 1.5px solid var(--about-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--about-shadow);
    text-align: center;
}

.about-page__quote-mark {
    display: block;
    margin-bottom: 8px;
    font-size: 56px;
    line-height: 0.8;
    color: var(--about-red);
    font-family: Georgia, 'Times New Roman', serif;
}

.about-page__quote-box p {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.75;
    color: var(--about-ink);
}

.about-page__quote-divider {
    display: flex;
    justify-content: center;
    margin: 28px 0 22px;
}

.about-page__quote-divider span {
    position: relative;
    display: block;
    width: 160px;
    height: 1px;
    background: rgba(0, 0, 0, 0.12);
}

.about-page__quote-divider span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    background: var(--about-red);
    transform: translate(-50%, -50%) rotate(45deg);
}

.about-page__commitment {
    font-size: clamp(1rem, 1.8vw, 1.15rem) !important;
}

/* Mission pillars --------------------------------------------------------- */

.about-page__pillar {
    padding: 28px 20px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-page__pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.about-page__pillar-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 2px solid var(--about-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--about-red);
    background: #fff;
}

.about-page__pillar-icon i {
    font-size: 28px;
    line-height: 1;
}

.about-page__pillar-icon i::before {
    font-size: 28px;
}

.about-page__pillar h5 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--about-ink);
}

.about-page__pillar p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--about-muted);
}

/* Formal vision / mission panel ------------------------------------------- */

.about-page__formal-panel {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 36px 36px 36px 56px;
    background: #fff;
    border-radius: 0 16px 16px 0;
    box-shadow: var(--about-shadow);
}

.about-page__formal-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 100%;
    border-radius: 16px 0 0 16px;
    background: var(--about-red);
}

.about-page__formal-item {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.about-page__formal-item + .about-page__formal-item {
    margin-top: 36px;
}

.about-page__formal-icon {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    margin-left: -10px;
    border-radius: 50%;
    background: var(--about-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 8px 10px 0 rgba(72, 114, 12, 0.18);
}

.about-page__formal-icon i {
    font-size: 24px;
}

.about-page__formal-item h4 {
    margin: 4px 0 10px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--about-green);
}

.about-page__formal-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--about-muted);
}

/* Core values ------------------------------------------------------------- */

.about-page__values {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 22px;
}

.about-page__values li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 22px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.about-page__value-icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 4px;
    border-radius: 4px 4px 4px 0;
    background: var(--about-red);
}

.about-page__values h5 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700;
    color: var(--about-ink);
}

.about-page__values p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--about-muted);
}

/* Quality Control --------------------------------------------------------- */

.about-page__qc-subtitle {
    margin: 0 0 28px;
    text-align: center;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--about-green);
}

.about-page__qc-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 12px 0;
}

.about-page__qc-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
    padding: 0 8px;
    text-align: center;
}

.about-page__qc-step-icon {
    width: 78px;
    height: 78px;
    border-radius: 14px;
    background: var(--about-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(225, 6, 0, 0.22);
}

.about-page__qc-step-icon i {
    font-size: 28px;
}

.about-page__qc-step-title {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--about-ink);
}

.about-page__qc-arrow {
    position: absolute;
    top: 28px;
    right: -14px;
    color: var(--about-red);
    font-size: 18px;
    line-height: 1;
}

.about-page__testing-title {
    margin: 0 0 24px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.about-page__testing-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.about-page__testing-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--about-ink);
}

.about-page__qc-gallery {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: 160px 160px;
    gap: 12px;
}

.about-page__qc-gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}

.about-page__qc-gallery-item--featured {
    grid-row: 1 / span 2;
}

.about-page__qc-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.about-page__qc-gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0.35);
}

/* Trusted brands ---------------------------------------------------------- */

.about-page--brands {
    background:
        linear-gradient(180deg, #f4f4f4 0%, #ececec 100%);
    position: relative;
}

.about-page--brands::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(0, 0, 0, 0.015) 0,
            rgba(0, 0, 0, 0.015) 1px,
            transparent 1px,
            transparent 14px
        );
    pointer-events: none;
}

.about-page__brands-tagline {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin: 22px 0 0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--about-ink);
}

.about-page__brands-tagline span {
    display: block;
    width: 48px;
    height: 1px;
    background: rgba(0, 0, 0, 0.25);
}

.about-page__brands-marquee {
    position: relative;
    z-index: 1;
    margin-top: 40px;
    display: grid;
    gap: 16px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.about-page__brands-row {
    overflow: hidden;
}

.about-page__brands-track {
    display: flex;
    width: max-content;
    animation: about-brands-slide-rtl 35s linear infinite;
}

.about-page__brands-row--2 .about-page__brands-track {
    animation-duration: 42s;
    animation-delay: -8s;
}

.about-page__brands-marquee:hover .about-page__brands-track {
    animation-play-state: paused;
}

.about-page__brands-group {
    display: flex;
    align-items: stretch;
    gap: 16px;
    padding-right: 16px;
}

.about-page__brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 180px;
    min-height: 96px;
    padding: 18px 16px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-page__brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.about-page__brand-card img {
    display: block;
    max-width: 100%;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.about-page__brands-empty {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    color: var(--about-muted);
    font-size: 15px;
}

@keyframes about-brands-slide-rtl {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-page__brands-track {
        animation: none;
        transform: none;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        gap: 16px;
    }

    .about-page__brands-group {
        flex-wrap: wrap;
        justify-content: center;
        padding-right: 0;
    }

    .about-page__brands-group[aria-hidden='true'] {
        display: none;
    }
}

/* Export countries -------------------------------------------------------- */

.about-page--export {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(0, 0, 0, 0.04) 0 1px, transparent 1.5px) 0 0 / 18px 18px,
        linear-gradient(180deg, #f7f7f7 0%, #f1f1f1 100%);
}

.about-page--export::after {
    content: '';
    position: absolute;
    left: -80px;
    bottom: -90px;
    width: 280px;
    height: 220px;
    background: radial-gradient(ellipse at center, rgba(225, 6, 0, 0.28) 0%, rgba(225, 6, 0, 0) 70%);
    transform: rotate(-18deg);
    pointer-events: none;
}

.about-page__export-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
    gap: 24px;
    align-items: center;
    margin-bottom: 48px;
}

.about-page__export-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.about-page__export-rule {
    display: block;
    width: 72px;
    height: 3px;
    margin-top: 16px;
    background: var(--about-red);
}

.about-page__export-map {
    position: relative;
    width: 100%;
}

.about-page__export-map-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    object-position: center;
}

.about-page__export-map-svg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about-page__export-route {
    animation: about-export-dash 18s linear infinite;
}

.about-page__export-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 28px;
}

.about-page__export-row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 22px;
}

.about-page__export-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 110px;
    text-align: center;
}

.about-page__export-flag {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page__export-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-page__export-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--about-ink);
}

@keyframes about-export-dash {
    to {
        stroke-dashoffset: -220;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-page__export-route {
        animation: none;
    }
}

/* Production / machinery / technology ------------------------------------- */

.about-page--production {
    background: #fafafa;
}

.about-page__production-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
    margin: 0 auto;
    border-top: 1px solid var(--about-red);
    border-left: 1px solid var(--about-red);
}

.about-page__production-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 220px;
    padding: 36px 28px;
    border-right: 1px solid var(--about-red);
    border-bottom: 1px solid var(--about-red);
    background: #fff;
}

.about-page__production-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
    border-radius: 50%;
    border: 2px solid var(--about-red);
    color: var(--about-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page__production-icon i {
    font-size: 26px;
    line-height: 1;
}

.about-page__production-icon i::before {
    font-size: 26px;
}

.about-page__production-label {
    margin: 0;
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--about-green);
}

.about-page__production-sublabel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--about-green);
}

.about-page__production-sublabel span {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--about-green);
}

.about-page__production-value {
    margin: 12px 0 0;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--about-red);
}

.about-page__production-card--value-top .about-page__production-value {
    margin: 0 0 14px;
    font-size: clamp(2.6rem, 5vw, 3.6rem);
}

.about-page__production-card--value-top .about-page__production-label {
    margin: 0;
}

/* Responsive -------------------------------------------------------------- */

@media (max-width: 991px) {
    .about-page__formal-panel {
        padding: 28px 24px 28px 40px;
    }

    .about-page__intro-badge {
        width: 96px;
        height: 96px;
        font-size: 36px;
        padding: 0 0 22px 22px;
    }

    .about-page__qc-step {
        width: 120px;
    }

    .about-page__qc-gallery {
        grid-template-columns: 1.2fr 1fr 1fr;
        grid-template-rows: 140px 140px;
    }

    .about-page__brand-card {
        width: 160px;
        min-height: 88px;
    }

    .about-page__brands-track {
        animation-duration: 30s;
    }

    .about-page__export-top {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 36px;
    }

    .about-page__export-item {
        width: 100px;
    }

    .about-page__export-grid {
        gap: 24px 16px;
    }

    .about-page__production-card {
        min-height: 200px;
        padding: 28px 20px;
    }
}

@media (max-width: 767px) {
    .about-page__eyebrow::before,
    .about-page__eyebrow::after {
        width: 22px;
    }

    .about-page__formal-panel {
        padding: 24px 18px 24px 34px;
    }

    .about-page__formal-item {
        flex-direction: column;
        gap: 14px;
    }

    .about-page__formal-icon {
        margin-left: 0;
    }

    .about-page__intro-media img {
        min-height: 260px;
    }

    .about-page__values li {
        padding: 16px;
    }

    .about-page__qc-step {
        width: calc(50% - 8px);
        margin-bottom: 12px;
    }

    .about-page__qc-arrow {
        display: none;
    }

    .about-page__qc-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 120px 120px;
    }

    .about-page__qc-gallery-item--featured {
        grid-column: 1 / span 2;
        grid-row: 1;
    }

    .about-page__brand-card {
        width: 140px;
        min-height: 80px;
        padding: 14px 12px;
    }

    .about-page__brands-track {
        animation-duration: 24s;
    }

    .about-page__brands-tagline span {
        width: 28px;
    }

    .about-page__export-grid {
        gap: 20px 12px;
    }

    .about-page__export-item {
        width: 88px;
    }

    .about-page__export-flag {
        width: 64px;
        height: 64px;
    }

    .about-page__export-name {
        font-size: 11px;
    }

    .about-page__production-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .about-page__production-card {
        min-height: 180px;
    }
}

/* --------------------------------------------------------------------------
   Homepage About — points list
   -------------------------------------------------------------------------- */

.about-home-points {
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
}

.about-home-points li {
    position: relative;
    margin-bottom: 0.85rem;
    padding-left: 1.35rem;
    color: #444;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
}

.about-home-points li:last-child {
    margin-bottom: 0;
}

.about-home-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--about-red, #e10600);
}

.about-home-points li:nth-child(even)::before {
    background: var(--about-green, #48720c);
}
