section[data-module="about-overview"] {
    position: relative;
    overflow: hidden;
    padding: 90px 0 80px;
    background: linear-gradient(
        180deg,
        #17161c 0%,
        #2a2a49 48%,
        #475c7a 100%
    );
}

section[data-module="about-overview"] * {
    box-sizing: border-box;
}

section[data-module="about-overview"] .about-overview-inner {
    position: relative;
    z-index: 2;
    width: auto;
    margin-left: 8%;
    margin-right: 8%;
    display: grid;
    grid-template-columns: 43% 57%;
    gap: 60px;
    align-items: center;
    overflow: visible;
}

/* =========================
   Image Area
========================= */

section[data-module="about-overview"] .about-overview-gallery {
    position: relative;
    width: 100%;
    min-height: 560px;
    overflow: visible;
}

section[data-module="about-overview"] .about-overview-photo {
    position: absolute;
    overflow: hidden;
    border-radius: 25px;
    opacity: 0;
    will-change: transform, opacity;
    transition:
        opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

section[data-module="about-overview"] .about-overview-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 25px;
}

/* first photo - upper */
section[data-module="about-overview"] .about-overview-photo.is-main {
    width: 78%;
    aspect-ratio: 1.05 / 1;
    top: 60px;
    left: 0;
    z-index: 1;
    height: 400px;
    transform: translate(-35px, 45px) scale(0.96);
    transition-delay: 0.12s;
}

/* first photo overlay only */
section[data-module="about-overview"] .about-overview-photo.is-main::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: rgba(12, 155, 203, 0.10);
    pointer-events: none;
    z-index: 2;
}

/* second photo - lower */
section[data-module="about-overview"] .about-overview-photo.is-sub {
    width: 68%;
    aspect-ratio: 1 / 1;
    right: 0;
    bottom: -48px;
    z-index: 2;
    transform: translate(35px, 50px) scale(0.96);
    transition-delay: 0.36s;
}

/* second photo no overlay */
section[data-module="about-overview"] .about-overview-photo.is-sub::after {
    display: none;
}

section[data-module="about-overview"].is-visible .about-overview-photo.is-main,
section[data-module="about-overview"].is-visible .about-overview-photo.is-sub {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* =========================
   Gallery Rotation Fade - Faster & No Cut
========================= */

section[data-module="about-overview"] .about-overview-gallery.is-rotation-ready .about-overview-photo img {
    transition:
        opacity 0.26s ease,
        filter 0.26s ease;
    transform: none;
}

section[data-module="about-overview"] .about-overview-gallery.is-changing .about-overview-photo img {
    opacity: 0;
    transform: none;
    filter: blur(1.5px);
}

/* optional small indicator for rotation feel */
section[data-module="about-overview"] .about-overview-gallery.has-rotation .about-overview-photo.is-main::before,
section[data-module="about-overview"] .about-overview-gallery.has-rotation .about-overview-photo.is-sub::before {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 4;
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: rgba(115, 209, 255, 0.75);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    pointer-events: none;
}

section[data-module="about-overview"].is-visible .about-overview-gallery.has-rotation .about-overview-photo.is-main::before,
section[data-module="about-overview"].is-visible .about-overview-gallery.has-rotation .about-overview-photo.is-sub::before {
    opacity: 1;
    transform: scaleX(1);
    transition:
        opacity 0.45s ease,
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 1.15s;
}

/* =========================
   Content Area
========================= */

section[data-module="about-overview"] .about-overview-content {
    color: #ffffff;
}

section[data-module="about-overview"] .about-overview-title {
    margin: 0 0 24px;
    font-family: "Orbitron", sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #ffffff;
}

/* Company appears first after photos */
section[data-module="about-overview"] .about-overview-title-main {
    color: #ffffff;
    display: inline-block;
    opacity: 0;
    transform: translateY(18px);
    will-change: transform, opacity;
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.72s;
}

section[data-module="about-overview"].is-visible .about-overview-title-main {
    opacity: 1;
    transform: translateY(0);
}

/* Overview typing text */
section[data-module="about-overview"] .about-overview-type-text {
    position: relative;
    display: inline-block;
    color: #0c9bcb;
    font-weight: 700;
    margin-left: 10px;
    overflow: hidden;
    vertical-align: center;
    opacity: 0;
    transform: translateY(18px);
    will-change: transform, opacity;
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.92s;
}

section[data-module="about-overview"].is-visible .about-overview-type-text {
    opacity: 1;
    transform: translateY(0);
}

/* typing cursor */
section[data-module="about-overview"] .about-overview-type-text::after {
    content: "";
    display: inline-block;
    width: 3px;
    height: 0.88em;
    margin-left: 7px;
    background: #73d1ff;
    vertical-align: -0.06em;
    opacity: 0;
}

section[data-module="about-overview"].is-visible .about-overview-type-text::after {
    opacity: 1;
    animation: aboutOverviewCursorBlink 0.75s steps(1) infinite;
}

section[data-module="about-overview"] .about-overview-type-text.is-done::after {
    opacity: 0;
    animation: none;
}

/* machine scan effect */
section[data-module="about-overview"] .about-overview-type-text::before {
    content: "";
    position: absolute;
    left: -30%;
    top: 0;
    width: 24%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(115, 209, 255, 0.45) 50%,
        transparent 100%
    );
    opacity: 0;
    pointer-events: none;
}

section[data-module="about-overview"] .about-overview-type-text.is-scan::before {
    opacity: 1;
    animation: aboutOverviewScan 0.9s ease forwards;
}

/* subtle machine underline */
section[data-module="about-overview"] .about-overview-type-text.is-scan {
    text-shadow: 0 0 16px rgba(115, 209, 255, 0.22);
}

/* description comes last */
section[data-module="about-overview"] .about-overview-description {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    text-align: justify;
    text-justify: inter-word;
    opacity: 0;
    transform: translateY(26px);
    will-change: transform, opacity;
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 1.25s;
}

section[data-module="about-overview"].is-visible .about-overview-description {
    opacity: 1;
    transform: translateY(0);
}

section[data-module="about-overview"] .about-overview-description p {
    margin: 0 0 20px;
    color: inherit;
    text-align: justify;
    text-justify: inter-word;
}

section[data-module="about-overview"] .about-overview-description p:last-child {
    margin-bottom: 0;
}

/* no dots / no white fade */
section[data-module="about-overview"]::before,
section[data-module="about-overview"]::after {
    display: none;
}

/* =========================
   Animations
========================= */

@keyframes aboutOverviewCursorBlink {
    0%, 49% {
        opacity: 1;
    }

    50%, 100% {
        opacity: 0;
    }
}

@keyframes aboutOverviewScan {
    0% {
        left: -30%;
    }

    100% {
        left: 115%;
    }
}

/* =========================
   Responsive
========================= */

@media (max-width: 1366px) {
    section[data-module="about-overview"] {
        padding: 80px 0 170px;
    }

    section[data-module="about-overview"] .about-overview-inner {
        margin-left: 6%;
        margin-right: 6%;
        grid-template-columns: 43% 57%;
        gap: 50px;
    }

    section[data-module="about-overview"] .about-overview-gallery {
        min-height: 510px;
    }

    section[data-module="about-overview"] .about-overview-photo.is-main {
        width: 78%;
        top: 50px;
        height: 365px;
    }

    section[data-module="about-overview"] .about-overview-photo.is-sub {
        width: 68%;
        bottom: -40px;
    }

    section[data-module="about-overview"] .about-overview-title {
        font-size: 42px;
    }

    section[data-module="about-overview"] .about-overview-description {
        font-size: 16px;
        line-height: 1.62;
    }
}

@media (max-width: 1200px) {
    section[data-module="about-overview"] {
        padding: 75px 0 155px;
    }

    section[data-module="about-overview"] .about-overview-inner {
        margin-left: 5%;
        margin-right: 5%;
        gap: 42px;
    }

    section[data-module="about-overview"] .about-overview-gallery {
        min-height: 470px;
    }

    section[data-module="about-overview"] .about-overview-photo.is-main {
        top: 45px;
        height: 330px;
    }

    section[data-module="about-overview"] .about-overview-title {
        font-size: 38px;
    }

    section[data-module="about-overview"] .about-overview-description {
        font-size: 15.5px;
    }
}

@media (max-width: 991px) {
    section[data-module="about-overview"] {
        padding: 65px 0 135px;
    }

    section[data-module="about-overview"] .about-overview-inner {
        margin-left: 24px;
        margin-right: 24px;
        grid-template-columns: 1fr;
        gap: 45px;
    }

    section[data-module="about-overview"] .about-overview-gallery {
        min-height: 500px;
        max-width: 680px;
        margin: 0 auto;
    }

    section[data-module="about-overview"] .about-overview-photo.is-main {
        width: 72%;
        top: 0;
        left: 0;
        height: auto;
    }

    section[data-module="about-overview"] .about-overview-photo.is-sub {
        width: 62%;
        right: 0;
        bottom: -32px;
    }

    section[data-module="about-overview"] .about-overview-title {
        font-size: 38px;
    }

    section[data-module="about-overview"] .about-overview-description {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    section[data-module="about-overview"] {
        padding: 55px 0 115px;
    }

    section[data-module="about-overview"] .about-overview-inner {
        margin-left: 20px;
        margin-right: 20px;
        gap: 38px;
    }

    section[data-module="about-overview"] .about-overview-gallery {
        min-height: 390px;
    }

    section[data-module="about-overview"] .about-overview-photo.is-main {
        width: 74%;
        aspect-ratio: 1.03 / 1;
        top: 0;
    }

    section[data-module="about-overview"] .about-overview-photo.is-sub {
        width: 66%;
        aspect-ratio: 1 / 1;
        bottom: -22px;
    }

    section[data-module="about-overview"] .about-overview-title {
        font-size: 32px;
        line-height: 1.12;
        margin-bottom: 20px;
    }

    section[data-module="about-overview"] .about-overview-type-text {
        display: inline-block;
        margin-left: 0;
    }

    section[data-module="about-overview"] .about-overview-description {
        font-size: 15px;
        line-height: 1.65;
        text-align: left;
    }

    section[data-module="about-overview"] .about-overview-description p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    section[data-module="about-overview"] {
        padding: 48px 0 20px;
    }

    section[data-module="about-overview"] .about-overview-inner {
        margin-left: 16px;
        margin-right: 16px;
    }

    section[data-module="about-overview"] .about-overview-gallery {
        min-height: 330px;
    }

    section[data-module="about-overview"] .about-overview-photo.is-main {
        width: 76%;
    }

    section[data-module="about-overview"] .about-overview-photo.is-sub {
        width: 68%;
        bottom: -16px;
    }

    section[data-module="about-overview"] .about-overview-title {
        font-size: 28px;
    }

    section[data-module="about-overview"] .about-overview-description {
        font-size: 14px;
    }
}