/* =========================================================
   ABOUT — ORGANIZATION MAP

   1. About hero
   2. Journey, mission and vision
   3. What we deliver
   4. CTA and supporting sections
   5. Tablet and mobile overrides

   IMPORTANT: Source order is intentionally preserved because
   later responsive/final rules are part of the active cascade.
========================================================= */

/* ==================================
   ABOUT PAGE
================================== */

.about-page {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #06080a;
}

/* ==================================
   ABOUT HERO SECTION
================================== */

.about-hero-section {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #06080a;
}

/* Background image */

.about-hero-background {
    position: absolute;
    inset: 0;
    z-index: -4;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Background overlay */

.about-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -3;

    background: linear-gradient(
        90deg,
        rgba(3, 5, 7, 0.99) 0%,
        rgba(3, 5, 7, 0.93) 38%,
        rgba(3, 5, 7, 0.62) 66%,
        rgba(3, 5, 7, 0.25) 100%
    );
}

.about-hero-overlay::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.07) 0%,
        transparent 55%,
        rgba(0, 0, 0, 0.55) 100%
    );
}

/* ==================================
   HERO CONTAINER
================================== */

.about-hero-container {
    position: relative;
    z-index: 2;
    width: min(1250px, calc(100% - 60px));
    min-height: 560px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 47% 53%;
    align-items: center;
}

/* ==================================
   LEFT CONTENT
================================== */

.about-hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 610px;
    padding: 8px 0 8px 24px;
    color: #ffffff;
    opacity: 0;
    transform: translateX(-32px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.about-hero-section.about-hero-loaded .about-hero-content {
    opacity: 1;
    transform: translateX(0);
}

/* Red vertical line */

.about-hero-content::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 0;
    width: 3px;
    border-radius: 20px;

    background: linear-gradient(
        180deg,
        #ed1c24 0%,
        #ed1c24 55%,
        rgba(237, 28, 36, 0.08) 100%
    );

    box-shadow: 0 0 18px rgba(237, 28, 36, 0.35);
}

/* ==================================
   ABOUT AEI TITLE
================================== */

.about-hero-title {
    margin: 0 0 17px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.about-hero-title span {
    color: #ed1c24;
    text-shadow: 0 0 26px rgba(237, 28, 36, 0.18);
}

/* ==================================
   POWERING GROWTH TITLE
================================== */

.about-hero-subtitle {
    width: max-content;
    max-width: none;
    margin: 0;
    color: #ffffff;
    font-size: clamp(25px, 2.1vw, 33px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1px;
    text-transform: uppercase;

    /* Keeps each sentence on one line.
       The <br> in HTML creates exactly two lines. */
    white-space: nowrap;
}

/* ==================================
   RED HORIZONTAL LINE
================================== */

.about-title-line {
    position: relative;
    display: block;
    width: 76px;
    height: 3px;
    margin: 23px 0 20px;
    border-radius: 20px;

    background: linear-gradient(
        90deg,
        #ed1c24 0%,
        #ed1c24 70%,
        rgba(237, 28, 36, 0.12) 100%
    );

    box-shadow: 0 0 13px rgba(237, 28, 36, 0.3);
}

.about-title-line::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transform: translateY(-50%);
    background-color: #ed1c24;
}

/* ==================================
   DESCRIPTION
================================== */

.about-hero-description {
    max-width: 570px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.05px;
}

/* ==================================
   PRODUCT AREA
================================== */

.about-product-area {
    position: relative;
    z-index: 3;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transform: translateX(38px);

    transition:
        opacity 0.9s ease 0.12s,
        transform 0.9s ease 0.12s;
}

.about-hero-section.about-hero-loaded .about-product-area {
    opacity: 1;
    transform: translateX(0);
}

/* Product image — unchanged */

.about-product-image {
    position: relative;
    z-index: 3;
    display: block;
    width: 90%;
    max-width: 610px;
    height: 400px;
    object-fit: fill;
    object-position: center bottom;
    transform: translateY(-90px);
    filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.68));
}

/* Product red glow */

.about-product-red-glow {
    position: absolute;
    z-index: 1;
    right: 5%;
    bottom: 12%;
    width: 360px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(227, 30, 36, 0.25);
    filter: blur(90px);
}

/* Product floor shadow */

.about-product-area::after {
    content: "";
    position: absolute;
    z-index: 2;
    right: 12%;
    bottom: 16%;
    width: 70%;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    filter: blur(16px);
}

/* ==================================
   TABLET
================================== */

@media screen and (max-width: 991px) {

    .about-hero-section,
    .about-hero-container {
        min-height: 480px;
    }

    .about-hero-container {
        width: calc(100% - 50px);
        grid-template-columns: 52% 48%;
    }

    .about-hero-content {
        max-width: 500px;
        padding-left: 20px;
    }

    .about-hero-title {
        margin-bottom: 13px;
        font-size: 36px;
        letter-spacing: -0.8px;
    }

    .about-hero-subtitle {
        font-size: clamp(25px, 3.4vw, 33px);
        line-height: 1.08;
        letter-spacing: -0.8px;
    }

    .about-title-line {
        width: 60px;
        margin: 19px 0 17px;
    }

    .about-hero-description {
        max-width: 470px;
        font-size: 13px;
    }

    /* Product values unchanged */

    .about-product-image {
        width: 95%;
        max-width: 520px;
        height: 450px;
        transform: translateY(-65px);
    }

    .about-product-red-glow {
        width: 290px;
        height: 260px;
    }
}

/* ==================================
   MOBILE
================================== */

@media screen and (max-width: 767px) {

    .about-hero-section,
    .about-hero-container {
        height: 275px;
        min-height: 275px;
    }

    .about-hero-container {
        width: calc(100% - 30px);
        grid-template-columns: 57% 43%;
    }

    .about-hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(3, 5, 7, 0.98) 0%,
            rgba(3, 5, 7, 0.86) 58%,
            rgba(3, 5, 7, 0.38) 100%
        );
    }

    .about-hero-content {
        max-width: 100%;
        padding: 5px 0 5px 13px;
    }

    .about-hero-content::before {
        top: 6px;
        bottom: 6px;
        width: 2px;
    }

    .about-hero-title {
        margin-bottom: 9px;
        font-size: 17px;
        line-height: 1.05;
        letter-spacing: -0.4px;
    }

    .about-hero-subtitle {
        width: max-content;
        max-width: none;
        font-size: 17px;
        line-height: 1.08;
        letter-spacing: -0.4px;
        white-space: nowrap;
    }

    .about-title-line {
        width: 43px;
        height: 2px;
        margin: 13px 0 12px;
    }

    .about-title-line::after {
        right: -7px;
        width: 4px;
        height: 4px;
    }

    .about-hero-description {
        max-width: 190px;
        font-size: 6px;
        line-height: 1.45;
    }

    .about-product-image {
        width: 108%;
        max-width: none;
        height: 200px;
        object-fit: contain;
        transform: translate(-7%, -70px);
    }

    .about-product-red-glow {
        right: -30%;
        bottom: 15%;
        width: 210px;
        height: 200px;
        filter: blur(62px);
    }

    .about-product-area::after {
        right: 0;
        bottom: 15%;
        width: 105%;
        height: 22px;
    }
}

/* ==================================
   SMALL MOBILE
================================== */

@media screen and (max-width: 390px) {

    .about-hero-title {
        font-size: 16px;
    }

    .about-hero-subtitle {
        font-size: 14px;
    }

    .about-hero-description {
        font-size: 6px;
    }

}

/* ==================================
   REDUCED MOTION
================================== */

@media (prefers-reduced-motion: reduce) {

    .about-hero-content,
    .about-product-area {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* About Page journey section — same white background as Home Page */
.about-page .journey-section {
    background-color: #ffffff !important;
    padding-right: 0;
    padding-left: 0;
}

/* Match the Hero section's screen width */

.about-page .journey-section > .container,
.about-purpose-container,
.about-deliver-container {
    width: min(1250px, calc(100% - 60px));
    max-width: none;
    margin-right: auto;
    margin-left: auto;
}

.about-page .journey-section > .container {
    padding-right: 0;
    padding-left: 0;
}

@media screen and (max-width: 991px) {
    .about-page .journey-section > .container,
    .about-purpose-container,
    .about-deliver-container {
        width: calc(100% - 50px);
    }
}

@media screen and (max-width: 767px) {
    .about-page .journey-section > .container,
    .about-purpose-container,
    .about-deliver-container {
        width: calc(100% - 30px);
    }
}

/* ==================================
   MISSION AND VISION SECTION
================================== */

.about-purpose-section {
    width: 100%;
    padding: 75px 0;
    overflow: hidden;
    background-color: #ffffff;
}

.about-purpose-container {
    min-height: 410px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border-radius: 20px;
    background-color: #080b0e;
    box-shadow: 0 22px 55px rgba(9, 13, 17, 0.18);
}

/* ==================================
   INDIVIDUAL PANEL
================================== */

.about-purpose-panel {
    position: relative;
    isolation: isolate;
    min-width: 0;
    min-height: 410px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-purpose-panel:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.42);
}

/* Background image */

.about-purpose-image {
    position: absolute;
    inset: 0;
    z-index: -3;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.about-mission-panel .about-purpose-image {
    object-position: center;
}

.about-vision-panel .about-purpose-image {
    object-position: center;
}

/* Dark overlay */

.about-purpose-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(
        90deg,
        rgba(4, 7, 9, 0.96) 0%,
        rgba(4, 7, 9, 0.82) 48%,
        rgba(4, 7, 9, 0.35) 100%
    );
}

.about-purpose-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.08) 45%,
        rgba(0, 0, 0, 0.62) 100%
    );
}

/* Subtle red glow */

.about-purpose-panel::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 55px;
    bottom: 45px;
    width: 190px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(237, 28, 36, 0.13);
    filter: blur(65px);
}

/* ==================================
   PANEL CONTENT
================================== */

.about-purpose-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 340px;
    margin-left: 65px;
    padding: 45px 0;
    color: #ffffff;
    opacity: 0;
    transform: translateY(28px);

    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.about-purpose-panel.is-visible .about-purpose-content {
    opacity: 1;
    transform: translateY(0);
}

/* Icon */

.about-purpose-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    color: #ed1c24;
    border: 2px solid #ed1c24;
    border-radius: 50%;
    font-size: 25px;
    background-color: rgba(8, 11, 14, 0.48);
    box-shadow:
        0 0 0 7px rgba(237, 28, 36, 0.08),
        0 0 24px rgba(237, 28, 36, 0.2);
}

/* Heading */

.about-purpose-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.4px;
}

/* Red line */

.about-purpose-line {
    display: block;
    width: 48px;
    height: 3px;
    margin: 14px 0 18px;
    border-radius: 20px;
    background-color: #ed1c24;
    box-shadow: 0 0 12px rgba(237, 28, 36, 0.4);
}

/* Description */

.about-purpose-content p {
    max-width: 310px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
}

/* Hover effect */

.about-purpose-panel:hover .about-purpose-image {
    transform: scale(1.045);
    filter: brightness(1.08);
}

/* ==================================
   TABLET
================================== */

@media screen and (max-width: 991px) {

    .about-purpose-section {
        padding: 60px 0;
    }

    .about-purpose-container,
    .about-purpose-panel {
        min-height: 360px;
    }

    .about-purpose-content {
        max-width: 285px;
        margin-left: 38px;
        padding-right: 20px;
    }

    .about-purpose-icon {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .about-purpose-content h2 {
        font-size: 22px;
    }

    .about-purpose-content p {
        font-size: 12px;
        line-height: 1.65;
    }
}

/* ==================================
   MOBILE
================================== */

@media screen and (max-width: 767px) {

    .about-purpose-section {
        padding: 40px 0;
    }

    .about-purpose-container {
        min-height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 13px;
    }

    .about-purpose-panel {
        min-height: 255px;
    }

    .about-purpose-content {
        max-width: 100%;
        margin-left: 18px;
        padding: 28px 12px 28px 0;
    }

    .about-purpose-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 12px;
        border-width: 1.5px;
        font-size: 15px;
        box-shadow:
            0 0 0 4px rgba(237, 28, 36, 0.07),
            0 0 15px rgba(237, 28, 36, 0.18);
    }

    .about-purpose-content h2 {
        font-size: 15px;
        letter-spacing: -0.2px;
    }

    .about-purpose-line {
        width: 30px;
        height: 2px;
        margin: 9px 0 10px;
    }

    .about-purpose-content p {
        font-size: 8px;
        line-height: 1.55;
    }

    .about-purpose-overlay {
        background: linear-gradient(
            90deg,
            rgba(4, 7, 9, 0.94) 0%,
            rgba(4, 7, 9, 0.72) 100%
        );
    }
}

/* ==================================
   SMALL MOBILE
================================== */

@media screen and (max-width: 390px) {

    .about-purpose-panel {
        min-height: 235px;
    }

    .about-purpose-content {
        margin-left: 13px;
        padding-right: 8px;
    }

    .about-purpose-content h2 {
        font-size: 13px;
    }

    .about-purpose-content p {
        font-size: 7px;
    }
}

/* ==================================
   REDUCED MOTION
================================== */

@media (prefers-reduced-motion: reduce) {

    .about-purpose-content {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-purpose-image {
        transition: none;
    }
}

/* ==================================
   MISSION & VISION ICON ANIMATION
================================== */

.about-purpose-icon {
    position: relative;
    animation: purposeIconFloat 2.8s ease-in-out infinite;
}

/* Mission icon animation */

.about-mission-panel .about-purpose-icon i {
    animation: missionTargetPulse 2s ease-in-out infinite;
}

/* Vision icon animation */

.about-vision-panel .about-purpose-icon i {
    animation: visionEyePulse 2.4s ease-in-out infinite;
}

/* Animated outer ring */

.about-purpose-icon::before {
    content: "";
    position: absolute;
    inset: -2px;
    border: 2px solid rgba(237, 28, 36, 0.75);
    border-radius: 50%;
    opacity: 0;
    animation: purposeRingPulse 2.2s ease-out infinite;
}

/* Second delayed ring */

.about-purpose-icon::after {
    content: "";
    position: absolute;
    inset: -2px;
    border: 1px solid rgba(237, 28, 36, 0.5);
    border-radius: 50%;
    opacity: 0;
    animation: purposeRingPulse 2.2s ease-out 1.1s infinite;
}

/* Whole icon floating */

@keyframes purposeIconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Target icon pulse */

@keyframes missionTargetPulse {

    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(237, 28, 36, 0.35);
    }

    50% {
        transform: scale(1.16);
        text-shadow:
            0 0 8px rgba(237, 28, 36, 0.75),
            0 0 16px rgba(237, 28, 36, 0.42);
    }
}

/* Eye icon animation */

@keyframes visionEyePulse {

    0%,
    100% {
        transform: scaleX(1) scaleY(1);
        text-shadow: 0 0 5px rgba(237, 28, 36, 0.35);
    }

    45% {
        transform: scaleX(1.12) scaleY(1.04);
        text-shadow:
            0 0 9px rgba(237, 28, 36, 0.8),
            0 0 17px rgba(237, 28, 36, 0.45);
    }

    50% {
        transform: scaleX(1.12) scaleY(0.18);
    }

    58% {
        transform: scaleX(1.12) scaleY(1.04);
    }
}

/* Expanding outer rings */

@keyframes purposeRingPulse {

    0% {
        transform: scale(0.92);
        opacity: 0;
    }

    25% {
        opacity: 0.65;
    }

    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

/* Pause pulse and highlight on hover */

.about-purpose-icon:hover {
    animation-play-state: paused;
    background-color: rgba(237, 28, 36, 0.14);
    box-shadow:
        0 0 0 8px rgba(237, 28, 36, 0.08),
        0 0 30px rgba(237, 28, 36, 0.42);
}

.about-purpose-icon:hover i {
    animation-play-state: paused;
    transform: scale(1.13);
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {

    .about-purpose-icon,
    .about-purpose-icon i,
    .about-purpose-icon::before,
    .about-purpose-icon::after {
        animation: none !important;
    }
}

/* ==================================
   WHAT WE DELIVER SECTION
================================== */

.about-deliver-section {
    width: 100%;
    padding: 30px 0 36px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(237, 28, 36, 0.045),
            transparent 34%
        ),
        #ffffff;
}

.about-deliver-heading {
    max-width: 720px;
    margin: 0 auto 20px;
    text-align: center;
}

.about-deliver-heading h2 {
    margin: 0;
    color: #10151a;
    font-size: 31px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.about-deliver-heading h2 span {
    color: #ed1c24;
}

.about-deliver-heading h2::after {
    display: none;
}

.about-deliver-heading p {
    margin: 7px auto 0;
    color: #626970;
    font-size: 11px;
    line-height: 1.65;
}

.about-deliver-list {
    display: grid;
    gap: 12px;
}

.about-deliver-card {
    display: grid;
    grid-template-columns: 48% 52%;
    min-height: 112px;
    overflow: hidden;
    border: 1px solid #eceff1;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(16, 20, 24, 0.085);
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

.about-deliver-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-deliver-card:hover {
    box-shadow: 0 13px 32px rgba(16, 20, 24, 0.13);
}

.about-deliver-card:nth-child(even) .about-deliver-content,
.about-deliver-card:nth-child(odd) .about-deliver-content {
    background: #ffffff;
}

.about-deliver-image {
    min-width: 0;
    overflow: hidden;
}

.about-deliver-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 112px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.55s ease;
}

.about-deliver-card:hover .about-deliver-image img {
    transform: scale(1.035);
}

.about-deliver-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 0;
    padding: 12px 34px 12px 48px;
    transition: background-color 0.35s ease;
}

.about-deliver-icon {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: #ed1c24;
    border: 1px solid rgba(237, 28, 36, 0.28);
    border-radius: 50%;
    background: #ffffff;
    box-shadow:
        0 8px 22px rgba(16, 20, 24, 0.12),
        0 0 0 7px rgba(255, 255, 255, 0.82);
    transform: translate(-50%, -50%);
}

.about-deliver-icon i {
    font-size: 21px;
    line-height: 1;
}

.about-deliver-copy {
    position: relative;
    padding-left: 20px;
}

.about-deliver-copy::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 0;
    width: 3px;
    border-radius: 10px;
    background: #ed1c24;
}

.about-deliver-copy h3 {
    margin: 0 0 6px;
    color: #14191e;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.35px;
    text-transform: uppercase;
}

.about-deliver-copy p {
    max-width: 430px;
    margin: 0;
    color: #535b62;
    font-size: 10px;
    line-height: 1.55;
}

.about-deliver-card-reverse .about-deliver-image {
    grid-column: 2;
    grid-row: 1;
}

.about-deliver-card-reverse .about-deliver-content {
    grid-column: 1;
    grid-row: 1;
    padding: 12px 48px 12px 34px;
}

.about-deliver-card-reverse .about-deliver-icon {
    right: 0;
    left: auto;
    transform: translate(50%, -50%);
}

@media screen and (max-width: 991px) {

    .about-deliver-section {
        padding: 25px 0 31px;
    }

    .about-deliver-card {
        grid-template-columns: 46% 54%;
    }

    .about-deliver-content {
        padding-right: 27px;
        padding-left: 48px;
    }

    .about-deliver-card-reverse .about-deliver-content {
        padding-right: 48px;
        padding-left: 27px;
    }

    .about-deliver-icon {
        width: 48px;
        height: 48px;
    }
}

@media screen and (max-width: 767px) {

    .about-deliver-section {
        padding: 28px 0 32px;
    }

    .about-deliver-heading {
        width: 100%;
        margin-bottom: 17px;
    }

    .about-deliver-heading h2 {
        font-size: 22px;
        letter-spacing: -0.55px;
    }

    .about-deliver-heading p {
        max-width: 420px;
        font-size: 9px;
        line-height: 1.55;
    }

    .about-deliver-list {
        gap: 8px;
    }

    .about-deliver-card,
    .about-deliver-card-reverse {
        display: grid;
        grid-template-columns: 44% 56%;
        min-height: 105px;
        border-radius: 10px;
    }

    .about-deliver-card-reverse .about-deliver-image,
    .about-deliver-card-reverse .about-deliver-content {
        grid-row: 1;
    }

    .about-deliver-card-reverse .about-deliver-image {
        grid-column: 2;
    }

    .about-deliver-card-reverse .about-deliver-content {
        grid-column: 1;
    }

    .about-deliver-image img {
        height: 100%;
        min-height: 105px;
    }

    .about-deliver-content,
    .about-deliver-card-reverse .about-deliver-content {
        min-height: 105px;
        padding: 9px 12px 9px 30px;
    }

    .about-deliver-card-reverse .about-deliver-content {
        padding-right: 30px;
        padding-left: 12px;
    }

    .about-deliver-icon,
    .about-deliver-card-reverse .about-deliver-icon {
        top: 50%;
        right: auto;
        left: 0;
        width: 36px;
        height: 36px;
        box-shadow:
            0 6px 16px rgba(16, 20, 24, 0.1),
            0 0 0 4px rgba(237, 28, 36, 0.04);
        transform: translate(-50%, -50%);
    }

    .about-deliver-card-reverse .about-deliver-icon {
        right: 0;
        left: auto;
        transform: translate(50%, -50%);
    }

    .about-deliver-icon i {
        font-size: 15px;
    }

    .about-deliver-copy {
        padding-left: 12px;
    }

    .about-deliver-copy h3 {
        margin-bottom: 4px;
        font-size: 10px;
    }

    .about-deliver-copy p {
        font-size: 7.5px;
        line-height: 1.45;
    }
}

@media screen and (max-width: 390px) {

    .about-deliver-heading h2 {
        font-size: 22px;
    }

    .about-deliver-content,
    .about-deliver-card-reverse .about-deliver-content {
        padding-right: 9px;
        padding-left: 27px;
    }

    .about-deliver-card-reverse .about-deliver-content {
        padding-right: 27px;
        padding-left: 9px;
    }

    .about-deliver-icon,
    .about-deliver-card-reverse .about-deliver-icon {
        width: 34px;
        height: 34px;
    }

    .about-deliver-card-reverse .about-deliver-icon {
        right: 0;
        left: auto;
    }
}

@media (prefers-reduced-motion: reduce) {

    .about-deliver-card {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-deliver-image img {
        transition: none;
    }
}

/* =========================================
   PREMIUM ENHANCED DELIVER CARDS
========================================= */

.about-deliver-card,
.about-deliver-image,
.about-deliver-image img,
.about-deliver-content,
.about-deliver-card-reverse .about-deliver-content {
    height: 230px;
    min-height: 0;
}

.about-deliver-card {
    border-color: rgba(20, 25, 30, 0.1);
    border-radius: 16px;
    box-shadow:
        0 13px 35px rgba(14, 19, 24, 0.1),
        0 2px 7px rgba(14, 19, 24, 0.04);
    transition:
        opacity 0.65s ease,
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.about-deliver-card.is-visible:hover {
    border-color: rgba(237, 28, 36, 0.2);
    transform: translateY(-4px);
    box-shadow:
        0 20px 45px rgba(14, 19, 24, 0.14),
        0 3px 10px rgba(237, 28, 36, 0.06);
}

.about-deliver-content,
.about-deliver-card:nth-child(even) .about-deliver-content,
.about-deliver-card:nth-child(odd) .about-deliver-content {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(237, 28, 36, 0.05),
            transparent 38%
        ),
        linear-gradient(135deg, #ffffff 0%, #fbfbfb 100%);
}

.about-deliver-card-reverse .about-deliver-content {
    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(237, 28, 36, 0.05),
            transparent 38%
        ),
        linear-gradient(225deg, #ffffff 0%, #fbfbfb 100%);
}

.about-deliver-content {
    padding: 34px 54px 34px 72px;
}

.about-deliver-card-reverse .about-deliver-content {
    padding: 34px 72px 34px 54px;
}

.about-deliver-image {
    position: relative;
}

.about-deliver-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent 72%,
        rgba(0, 0, 0, 0.12) 100%
    );
}

.about-deliver-card-reverse .about-deliver-image::after {
    background: linear-gradient(
        270deg,
        transparent 72%,
        rgba(0, 0, 0, 0.12) 100%
    );
}

.about-deliver-icon {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(237, 28, 36, 0.25);
    box-shadow:
        0 11px 27px rgba(16, 20, 24, 0.14),
        0 0 0 8px rgba(255, 255, 255, 0.88);
    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        transform 0.35s ease;
}

.about-deliver-icon i {
    font-size: 31px;
}

.about-deliver-card:hover .about-deliver-icon {
    color: #ffffff;
    background: #ed1c24;
}

.about-deliver-copy {
    padding-left: 23px;
}

.about-deliver-copy::before {
    width: 3px;
    box-shadow: 0 0 11px rgba(237, 28, 36, 0.2);
}

.about-deliver-copy h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

.about-deliver-copy p {
    max-width: 470px;
    font-size: 13px;
    line-height: 1.65;
}

@media screen and (max-width: 767px) {

    .about-deliver-list {
        gap: 9px;
    }

    .about-deliver-card,
    .about-deliver-card-reverse,
    .about-deliver-image,
    .about-deliver-image img,
    .about-deliver-content,
    .about-deliver-card-reverse .about-deliver-content {
        height: 175px;
        min-height: 0;
    }

    .about-deliver-card {
        border-radius: 12px;
    }

    .about-deliver-content {
        padding: 19px 20px 19px 46px;
    }

    .about-deliver-card-reverse .about-deliver-content {
        padding: 19px 46px 19px 20px;
    }

    .about-deliver-icon,
    .about-deliver-card-reverse .about-deliver-icon {
        width: 56px;
        height: 56px;
        box-shadow:
            0 7px 18px rgba(16, 20, 24, 0.12),
            0 0 0 5px rgba(255, 255, 255, 0.86);
    }

    .about-deliver-icon i {
        font-size: 22px;
    }

    .about-deliver-copy {
        padding-left: 13px;
    }

    .about-deliver-copy h3 {
        margin-bottom: 7px;
        font-size: 14px;
    }

    .about-deliver-copy p {
        font-size: 9px;
        line-height: 1.5;
    }
}

/* ==================================
   PERFORMANCE CTA SECTION
================================== */

.about-performance-section {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: 440px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #080d12;
}

/* Full background image */

.about-performance-background {
    position: absolute;
    inset: 0;
    z-index: -4;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transition: transform 7s ease;
}

.about-performance-section.is-visible
.about-performance-background {
    transform: scale(1.025);
}

/* Dark overlay */

.about-performance-overlay {
    position: absolute;
    inset: 0;
    z-index: -3;

    background: linear-gradient(
        90deg,
        rgba(5, 10, 15, 0.97) 0%,
        rgba(5, 10, 15, 0.91) 38%,
        rgba(5, 10, 15, 0.48) 61%,
        rgba(5, 10, 15, 0.08) 100%
    );
}

/* Bottom darkness */

.about-performance-overlay::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.06) 0%,
        transparent 55%,
        rgba(0, 0, 0, 0.38) 100%
    );
}

/* Red glow behind content */

.about-performance-overlay::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 6%;
    width: 430px;
    height: 320px;
    border-radius: 50%;
    background-color: rgba(237, 28, 36, 0.08);
    filter: blur(100px);
    transform: translateY(-50%);
}

/* ==================================
   INNER CONTAINER
================================== */

.about-performance-container {
    position: relative;
    z-index: 3;
    width: min(1250px, calc(100% - 60px));
    margin: 0 auto;
}

/* ==================================
   LEFT CONTENT
================================== */

.about-performance-content {
    max-width: 440px;
    margin-left: 35px;
    color: #ffffff;
    opacity: 0;
    transform: translateX(-38px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.about-performance-section.is-visible
.about-performance-content {
    opacity: 1;
    transform: translateX(0);
}

/* ==================================
   HEADING
================================== */

.about-performance-title {
    max-width: 380px;
    margin: 0;
    color: #ffffff;
    font-size: 29px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.3px;
    text-transform: uppercase;
    text-shadow: 0 7px 24px rgba(0, 0, 0, 0.45);
}

.about-performance-title span {
    display: block;
    white-space: nowrap;
}

.about-performance-title strong {
    color: #ed1c24;
    font-weight: 900;
    text-shadow: 0 0 22px rgba(237, 28, 36, 0.18);
}

/* ==================================
   DESCRIPTION
================================== */

.about-performance-description {
    position: relative;
    max-width: 235px;
    margin: 18px 0 0;
    padding-left: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
}

.about-performance-description::before {
    display: none;
}

/* ==================================
   BUTTON AND PHONE
================================== */

.about-performance-actions {
    max-width: 400px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
}

/* Red button */

.about-performance-button {
    position: relative;
    min-width: 145px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 6px 8px 16px;
    overflow: hidden;
    border: 1px solid #ed1c24;
    border-radius: 2px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        #ed1c24,
        #d81018
    );
    box-shadow: 0 9px 22px rgba(237, 28, 36, 0.22);
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Button shine */

.about-performance-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 45%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.32),
        transparent
    );

    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.about-performance-button:hover::before {
    left: 140%;
}

.about-performance-button:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 13px 28px rgba(237, 28, 36, 0.32);
}

/* Arrow area */

.about-performance-button i {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.26);
    font-size: 11px;
}

/* Phone link */

.about-performance-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.about-phone-icon {
    position: relative;
    width: auto;
    height: auto;
    display: grid;
    place-items: center;
    color: #ed1c24;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 16px;
}

.about-phone-icon::before {
    display: none;
}

.about-performance-phone:hover {
    color: #ed1c24;
    transform: translateX(3px);
}

/* Bottom red line */

.about-performance-bottom-line {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    height: 3px;
    background: linear-gradient(
        90deg,
        #85080d,
        #ed1c24,
        #85080d
    );
}

/* ==================================
   PHONE ANIMATION
================================== */

@keyframes aboutPhonePulse {

    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    30% {
        opacity: 0.65;
    }

    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

/* ==================================
   TABLET
================================== */

@media screen and (max-width: 991px) {

    .about-performance-section {
        min-height: 390px;
    }

    .about-performance-container {
        width: calc(100% - 50px);
    }

    .about-performance-content {
        max-width: 450px;
        margin-left: 20px;
    }

    .about-performance-title {
        max-width: 390px;
        font-size: 30px;
    }

    .about-performance-description {
        max-width: 245px;
        font-size: 11px;
    }
}

/* ==================================
   MOBILE
================================== */

@media screen and (max-width: 767px) {

    .about-performance-section {
        height: 260px;
        min-height: 260px;
    }

    .about-performance-background {
        object-position: 62% center;
    }

    .about-performance-overlay {
        background: linear-gradient(
            90deg,
            rgba(5, 10, 15, 0.96) 0%,
            rgba(5, 10, 15, 0.82) 56%,
            rgba(5, 10, 15, 0.18) 100%
        );
    }

    .about-performance-container {
        width: calc(100% - 30px);
    }

    .about-performance-content {
        max-width: 58%;
        margin-left: 10px;
    }

    .about-performance-title {
        max-width: 225px;
        font-size: 14px;
        line-height: 1.1;
        letter-spacing: -0.25px;
    }

    .about-performance-description {
        max-width: 160px;
        margin-top: 10px;
        font-size: 6px;
        line-height: 1.5;
    }

    .about-performance-actions {
        flex-wrap: nowrap;
        gap: 8px;
        margin-top: 14px;
    }

    .about-performance-button {
        min-width: 88px;
        min-height: 27px;
        gap: 6px;
        padding: 5px 3px 5px 8px;
        font-size: 5px;
    }

    .about-performance-button i {
        width: 17px;
        height: 17px;
        font-size: 7px;
    }

    .about-performance-phone {
        gap: 4px;
        font-size: 5px;
    }

    .about-phone-icon {
        font-size: 9px;
    }
}

/* ==================================
   SMALL MOBILE
================================== */

@media screen and (max-width: 390px) {

    .about-performance-title {
        font-size: 13px;
    }

    .about-performance-actions {
        gap: 7px;
    }

    .about-performance-button {
        min-width: 84px;
    }
}

/* ==================================
   REDUCED MOTION
================================== */

@media (prefers-reduced-motion: reduce) {

    .about-performance-content {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-performance-background {
        transform: none;
        transition: none;
    }

    .about-phone-icon::before {
        animation: none;
    }
}

/* ==================================
   ABOUT PRODUCT IMAGE FLOAT ANIMATION
================================== */

.about-hero-section.about-hero-loaded .about-product-image {
    animation: aboutProductFloat 4s ease-in-out infinite;
}

/* Desktop: existing -90px position preserved */

@keyframes aboutProductFloat {

    0%,
    100% {
        transform: translateY(-90px);
    }

    50% {
        transform: translateY(-103px);
    }
}

/* ==================================
   TABLET
================================== */

@media screen and (max-width: 991px) {

    .about-hero-section.about-hero-loaded .about-product-image {
        animation-name: aboutProductFloatTablet;
    }

    @keyframes aboutProductFloatTablet {

        0%,
        100% {
            transform: translateY(-65px);
        }

        50% {
            transform: translateY(-76px);
        }
    }
}

/* ==================================
   MOBILE
================================== */

@media screen and (max-width: 767px) {

    .about-hero-section.about-hero-loaded .about-product-image {
        animation-name: aboutProductFloatMobile;
        animation-duration: 3.5s;
    }

    @keyframes aboutProductFloatMobile {

        0%,
        100% {
            transform: translate(-7%, -70px);
        }

        50% {
            transform: translate(-7%, -78px);
        }
    }
}

/* ==================================
   SMALL MOBILE
================================== */

@media screen and (max-width: 390px) {

    .about-hero-section.about-hero-loaded .about-product-image {
        animation-name: aboutProductFloatMobile;
    }
}

/* Stop animation when reduced motion is enabled */

@media (prefers-reduced-motion: reduce) {

    .about-hero-section.about-hero-loaded .about-product-image {
        animation: none;
    }
}
@media screen and (min-width: 992px) {
    .about-page .journey-section > .container {
        width: min(1200px, calc(100% - 70px));
    }
}
/* Mission/Vision width same as About Us section */

@media screen and (min-width: 992px) {
    .about-purpose-container {
        width: min(1200px, calc(100% - 70px));
    }
}
/* What We Deliver width same as About Us section */

@media screen and (min-width: 992px) {
    .about-deliver-container {
        width: min(1200px, calc(100% - 70px));
    }
}
@media screen and (min-width: 992px) {
  .about-deliver-container.about-deliver-container {
    width: calc(100% - 60px) !important;
    max-width: 1280px !important;
    margin-inline: auto !important;
  }
}
@media screen and (min-width: 992px) {
  .about-purpose-container.about-purpose-container {
    width: calc(100% - 80px) !important;
    max-width: 1240px !important;
    margin-inline: auto !important;
  }
}

@media screen and (min-width: 992px) {
  .about-performance-container.about-performance-container {
    width: calc(100% - 60px) !important;
    max-width: 1360px !important;
    margin-inline: auto !important;
  }
}
/* =========================================
   PAGE CONTAINER WIDTH SYSTEM
========================================= */

:is(main .container,.about-hero-container,.about-deliver-container,.about-purpose-container,.about-performance-container) {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
}

@media (min-width: 576px) {
    :is(main .container,.about-hero-container,.about-deliver-container,.about-purpose-container,.about-performance-container) { max-width: 540px !important; }
}

@media (min-width: 768px) {
    :is(main .container,.about-hero-container,.about-deliver-container,.about-purpose-container,.about-performance-container) { max-width: 720px !important; }
}

@media (min-width: 992px) {
    :is(main .container,.about-hero-container,.about-deliver-container,.about-purpose-container,.about-performance-container) { max-width: 960px !important; }
}

@media (min-width: 1200px) {
    :is(main .container,.about-hero-container,.about-deliver-container,.about-purpose-container,.about-performance-container) { max-width: 1140px !important; }
}

@media (min-width: 1400px) {
    :is(main .container,.about-hero-container,.about-deliver-container,.about-purpose-container,.about-performance-container) { max-width: 1320px !important; }
}
/* About page Journey section same as Home — mobile only */
@media screen and (max-width: 480px) {
    .about-page .journey-section {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }

    .about-page .journey-heading {
        margin-bottom: 18px !important;
    }

    .about-page .journey-timeline {
        padding-top: 4px !important;
        padding-bottom: 6px !important;
    }
}
/* About Hero same height as Home Hero — iPhone/mobile only */
@media screen and (max-width: 480px) {
    .about-hero-section,
    .about-hero-container {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
    }

    .about-product-red-glow {
        height: 155px !important;
    }
}
/* About Hero content extra small — iPhone/mobile only */
@media screen and (max-width: 480px) {
    .about-hero-title {
        margin-bottom: 4px !important;
        font-size: 11px !important;
    }

    .about-hero-subtitle {
        font-size: 11px !important;
        line-height: 1.02 !important;
        letter-spacing: -0.2px !important;
    }

    .about-title-line {
        width: 28px !important;
        margin-top: 6px !important;
        margin-bottom: 6px !important;
    }

    .about-hero-description {
        max-width: 155px !important;
        font-size: 4px !important;
        line-height: 1.35 !important;
    }

    .about-hero-content::before {
        top: 3px !important;
        bottom: 3px !important;
    }
}
/* About Hero content downward shift — mobile only */
@media screen and (max-width: 480px) {
    .about-hero-content {
        position: relative !important;
        top: 10px !important;
    }
}
/* About product image floating animation — mobile only */
@media screen and (max-width: 480px) {
    .about-hero-section.about-hero-loaded .about-product-image {
        animation: aboutProductFloatCompact 3.5s ease-in-out infinite !important;
    }

    @keyframes aboutProductFloatCompact {
        0%,
        100% {
            transform: translate(-7%, -50px);
        }

        50% {
            transform: translate(-7%, -58px);
        }
    }
}
/* Mission & Vision size — iPhone/mobile only */
@media screen and (max-width: 480px) {
    .about-purpose-section {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .about-purpose-container.about-purpose-container {
        width: calc(100% - 30px) !important;
        max-width: none !important;
        margin-right: auto !important;
        margin-left: auto !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .about-purpose-container,
    .about-purpose-panel {
        height: 200px !important;
        min-height: 200px !important;
    }

    .about-purpose-content {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }
}
/* What We Deliver compact — iPhone/mobile only */
@media screen and (max-width: 480px) {
    .about-deliver-section {
        padding-top: 16px !important;
        padding-bottom: 18px !important;
    }

    .about-deliver-heading {
        margin-bottom: 12px !important;
    }

    .about-deliver-list {
        gap: 6px !important;
    }

    .about-deliver-card,
    .about-deliver-card-reverse,
    .about-deliver-image,
    .about-deliver-image img,
    .about-deliver-content,
    .about-deliver-card-reverse .about-deliver-content {
        height: 145px !important;
        min-height: 145px !important;
    }

    .about-deliver-content {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .about-deliver-card-reverse .about-deliver-content {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .about-deliver-icon,
    .about-deliver-card-reverse .about-deliver-icon {
        width: 44px !important;
        height: 44px !important;
    }
}
/* Deliver reverse cards equal image/content width — mobile only */
@media screen and (max-width: 480px) {
    .about-deliver-card {
        grid-template-columns: 44% 56% !important;
    }

    .about-deliver-card-reverse {
        grid-template-columns: 56% 44% !important;
    }
}
/* Performance CTA height — iPhone/mobile only */
@media screen and (max-width: 480px) {
    .about-performance-section {
        height: 170px !important;
        min-height: 170px !important;
        max-height: 170px !important;
    }

    .about-performance-description {
        margin-top: 7px !important;
    }

    .about-performance-actions {
        margin-top: 10px !important;
    }
}
