/* AWWWARDS GRADE PREMIUM LAYOUT — extracted from about.html inline <style> */
:root {
    --text-muted: rgba(15, 23, 42, 0.6);
}

.about-hero-aw {
    height: 65vh;
    background: var(--bg-darker);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (min-width: 1400px) {
    .about-hero-aw {
        height: 65vh;
    }
}

@media (max-width: 768px) {
    .about-hero-aw {
        height: initial !important;
        min-height: 45vh !important;
        padding-top: 120px !important;
        padding-bottom: 40px !important;
    }

    .ah-monumental {
        font-size: 3rem;
    }
}

.ah-visual {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    filter: grayscale(0.2) contrast(1.1) brightness(0.9);
    transform: scale(1.1);
    z-index: 1;
}

.ah-ui-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 20, 69, 0.7) 0%, rgba(27, 20, 69, 0.2) 60%, transparent 100%);
    z-index: 2;
}

.ah-title-wrap {
    position: relative;
    z-index: 10;
    text-align: center;
}

.ah-label {
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    opacity: 1;
}

.ah-monumental {
    font-size: clamp(2.2rem, 5vw, 4rem);
    letter-spacing: 0.02em;
    color: white;
    line-height: 1.1;
    margin: 0;
}

.ah-monumental .thin {
    font-weight: 200 !important;
    opacity: 0.7;
}

/* Identity Section: Architectural Monolith */
.identity-stage {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.id-monolith-grid {
    max-width: var(--container-width);
    margin: 0 auto;
}

.id-side-label {
    display: none;
    /* Removed for header alignment */
}

.id-side-num {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-1);
    letter-spacing: 2px;
}

.id-side-line {
    width: 1px;
    height: 150px;
    background: linear-gradient(to bottom, var(--primary-1), transparent);
}

.id-main-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.id-monolith-title {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    color: #0f172a;
    letter-spacing: -2px;
}

.id-text-p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 25px;
    opacity: 0.9;
}

.id-visual-monolith {
    position: relative;
}

.id-frame-outer {
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    background: white;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
}

.id-frame-inner {
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.id-frame-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.id-visual-monolith:hover .id-frame-inner img {
    transform: scale(1.05);
}

/* Identity CTA Module: Premium Architectural Design */
.id-cta-module {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: nowrap;
}

.id-contact-btn {
    background: var(--primary-1);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px rgba(115, 75, 223, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.id-contact-btn i {
    font-size: 1rem;
    transition: transform 0.4s ease;
}

.id-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(115, 75, 223, 0.2);
    color: white;
}

.id-contact-btn:hover i {
    transform: translateX(3px);
}

.id-call-now {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.4s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.id-call-now:hover {
    transform: translateX(5px);
}

.id-call-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    color: var(--primary-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.id-call-now:hover .id-call-icon {
    background: var(--primary-1);
    color: white;
    box-shadow: 0 10px 20px rgba(115, 75, 223, 0.15);
}

.id-call-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.id-call-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.id-call-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    white-space: nowrap;
}

/* Mission, Vision & Values: Mosaic Prism Stage */
.mv-prism-stage {
    padding: 80px 0;
    background: var(--bg-darker);
    background-image: radial-gradient(circle at top center, #3A2F85 0%, transparent 70%);
    position: relative;
    overflow: hidden;
    color: white;
}

.mv-prism-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.mv-prism-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 40px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: rgba(255, 255, 255, 0.4);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.mv-prism-btn.active {
    background: rgba(115, 75, 223, 0.15);
    border-color: var(--primary-1);
    color: white;
    box-shadow: 0 20px 40px rgba(58, 47, 133, 0.3);
}

.mv-prism-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-1);
    transition: all 0.5s ease;
    transform: translateX(-50%);
}

.mv-prism-btn.active::after {
    width: 40px;
}

.mv-prism-content {
    position: relative;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0;
}

.mv-prism-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    animation: mvPrismIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.mv-prism-panel.active {
    display: grid;
}

@keyframes mvPrismIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.mv-prism-text {
    position: relative;
    z-index: 2;
}

.mv-prism-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-1);
    letter-spacing: 4px;
    margin-bottom: 25px;
    display: block;
}

.mv-prism-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.mv-prism-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.mv-prism-quote {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    border-left: 1px solid var(--primary-1);
    padding-left: 25px;
    font-style: italic;
}

.mv-prism-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-prism-icon-bg {
    font-size: 20rem;
    color: var(--primary-1);
    opacity: 0.05;
    position: absolute;
    pointer-events: none;
}

.mv-prism-icon-main {
    font-size: 8rem;
    color: var(--primary-1);
    filter: drop-shadow(0 0 30px rgba(115, 75, 223, 0.3));
    animation: mvIconFloat 6s ease-in-out infinite;
}

@keyframes mvIconFloat {

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

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

@media (max-width: 991px) {
    .mv-prism-panel {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mv-prism-quote {
        border-left: none;
        border-top: 3px solid var(--primary-1);
        padding-left: 0;
        padding-top: 20px;
    }

    .mv-prism-tabs {
        flex-wrap: wrap;
    }
}

/* Process Section: Strategic Roadmap Layout */
.process-roadmap-stage {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    margin-top: 80px;
    align-items: start;
}

.roadmap-nav {
    display: flex;
    flex-direction: column;
}

.roadmap-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.4s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.roadmap-nav-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 991px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .roadmap-nav {
        order: 2;
    }

    .roadmap-panel-container {
        order: 1;
    }

    .roadmap-nav-item {
        padding: 20px 0;
    }
}

@media (max-width: 991px) {
    .id-monolith-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .id-side-label {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .id-side-line {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, var(--primary-1), transparent);
    }

    .id-main-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .id-visual-monolith {
        max-width: 500px;
        margin: 0 auto;
        order: -1;
        /* Image first on mobile */
    }

    .id-cta-module {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .id-contact-btn,
    .id-call-now {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .roadmap-details {
        display: none !important;
    }

    .roadmap-nav-item {
        flex-direction: column;
        align-items: stretch !important;
        padding: 20px 0 !important;
    }

    .roadmap-item-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        cursor: pointer;
    }

    .roadmap-accordion-content {
        display: none;
        margin-top: 20px;
        padding: 25px;
        background: linear-gradient(135deg, #121026 0%, #1e1b4b 100%);
        border-radius: 20px;
        border: 1px solid rgba(115, 75, 223, 0.2);
        animation: accordionFadeIn 0.4s ease forwards;
    }

    .roadmap-nav-item.active .roadmap-accordion-content {
        display: block;
    }

    @keyframes accordionFadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .roadmap-panel-title {
        font-size: 2rem;
    }

    .ah-monumental {
        font-size: 3rem;
    }

    .mv-prism-btn {
        padding: 15px 25px;
        font-size: 0.75rem;
        flex: 1;
        text-align: center;
    }

    .mv-prism-visual {
        display: none;
    }

    .identity-stage,
    .mv-prism-stage,
    .process-roadmap-stage,
    .tech-stage-aw,
    .wcu-stage-aw,
    .customers-stage-aw {
        padding: 40px 0 !important;
    }

    .customers-marquee-mask {
        margin-top: 40px !important;
    }
}

.roadmap-accordion-content {
    display: none;
    /* Hidden on desktop */
}

@media (max-width: 480px) {
    .ah-monumental {
        font-size: 2.2rem;
    }

    .id-monolith-title {
        font-size: 2rem;
    }

    .roadmap-panel-title {
        font-size: 1.8rem;
    }
}

.roadmap-item-num {
    font-size: 0.9rem;
    font-weight: 800;
    color: #94a3b8;
    margin-right: 30px;
    transition: all 0.4s ease;
}

.roadmap-item-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #94a3b8;
    flex-grow: 1;
    transition: all 0.4s ease;
}

.roadmap-nav-item i {
    color: #94a3b8;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    transform: rotate(-45deg);
}

.roadmap-nav-item.active .roadmap-item-num {
    color: #0f172a;
}

.roadmap-nav-item.active .roadmap-item-title {
    color: #0f172a;
}

.roadmap-nav-item.active i {
    color: var(--primary-1);
    transform: rotate(0deg);
}

.roadmap-nav-item:hover .roadmap-item-title {
    padding-left: 10px;
    color: #0f172a;
}

.roadmap-details {
    position: relative;
    min-height: 450px;
    padding: 60px;
    background: linear-gradient(135deg, #121026 0%, #1e1b4b 100%);
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2),
        inset 0 0 40px rgba(115, 75, 223, 0.05);
    border: 1px solid rgba(115, 75, 223, 0.2);
    color: white;
    overflow: hidden;
}

.roadmap-panel {
    display: none;
    animation: roadmapIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.roadmap-panel.active {
    display: block;
}

@keyframes roadmapIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.roadmap-panel-tag {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-1);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}

.roadmap-panel-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.roadmap-panel-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.roadmap-panel-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.roadmap-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
}

.roadmap-bullet i {
    color: var(--primary-1);
}

@media (max-width: 1024px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .roadmap-details {
        padding: 40px;
        min-height: auto;
    }
}

/* Technologies Section: Obsidian Technical Strip */
.tech-stage-aw {
    padding: 40px 0;
    background: #fff;
    position: relative;
}

.tech-strip-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.tech-strip-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 4px;
    overflow: hidden;
    background: #fcfdfe;
}

.strip-cell {
    position: relative;
    height: 90px;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: #fff;
}

.strip-cell:nth-child(8n) {
    border-right: none;
}

.strip-cell:nth-child(n+9) {
    border-bottom: none;
}

.sc-icon {
    font-size: 1.1rem;
    color: #475569;
    transition: all 0.3s ease;
}

.sc-name {
    font-size: 0.65rem;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: center;
    transition: all 0.3s ease;
}

.strip-cell:hover {
    background: #f8fafc;
    z-index: 5;
}

.strip-cell:hover .sc-icon {
    color: var(--primary-1);
    transform: scale(1.1);
}

.strip-cell:hover .sc-name {
    color: var(--primary-1);
}

@media (max-width: 1100px) {
    .tech-strip-grid {
        grid-template-columns: repeat(4, 1fr);
        border-right: 1px solid rgba(15, 23, 42, 0.08);
    }

    .strip-cell {
        border-right: 1px solid rgba(15, 23, 42, 0.08) !important;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
    }

    .strip-cell:nth-child(4n) {
        border-right: none !important;
    }

    .strip-cell:nth-child(n+13) {
        border-bottom: none !important;
    }
}

@media (max-width: 640px) {
    .tech-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strip-cell {
        border-right: 1px solid rgba(15, 23, 42, 0.08) !important;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
    }

    .strip-cell:nth-child(n+13) {
        border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
    }

    .strip-cell:nth-child(2n) {
        border-right: none !important;
    }

    .strip-cell:nth-child(n+15) {
        border-bottom: none !important;
    }
}

/* Why Choose Us: Feature Stage */
.wcu-stage-aw {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

@media (max-width: 1024px) {
    .tech-logo-grid-aw {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-logo-grid-aw {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .tech-logo-grid-aw {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

/* Why Choose Us: Index-Matched Dark Stage */
.wcu-stage-aw {
    padding: 100px 0;
    background-color: #1B1445;
    background-image: radial-gradient(circle at top center, #3A2F85 0%, transparent 70%);
    position: relative;
    overflow: hidden;
    color: white;
}

.wcu-stage-aw .section-title {
    color: white;
}

.wcu-stage-aw .section-label {
    color: white !important;
    opacity: 0.8;
}

.wcu-stage-aw .id-text-p {
    color: rgba(255, 255, 255, 0.8);
}

.wcu-grid-aw {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.wcu-card-aw {
    padding: 50px 40px;
    background: #252044;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.wcu-card-aw::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-1);
    z-index: -1;
    transition: height 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.wcu-card-aw:hover::after {
    height: 100%;
}

.wcu-card-aw:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.wcu-icon-wrap {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary-1);
    font-size: 2rem;
    transition: all 0.4s ease;
}

.wcu-card-aw:hover .wcu-icon-wrap {
    background: #ffffff;
    color: var(--primary-1);
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wcu-title-aw {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.wcu-desc-aw {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    transition: all 0.4s ease;
}

.wcu-card-aw:hover .wcu-desc-aw {
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 991px) {
    .wcu-grid-aw {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .tech-grid-aw {
        grid-template-columns: repeat(2, 1fr);
    }

    .wcu-grid-aw {
        grid-template-columns: 1fr;
    }
}

.process-header-aw {
    margin-bottom: 80px;
}

.process-grid-aw {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-card-aw {
    padding: 40px;
    background: #f8f9fa;
    border-radius: 30px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.process-card-aw:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-1);
}

.pc-num-aw {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-1);
    margin-bottom: 20px;
    display: block;
}

.pc-title-aw {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.pc-desc-aw {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.7;
    margin: 0;
}

@media (max-width: 991px) {
    .id-monolith-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .id-side-label {
        display: none;
    }

    .id-main-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .id-frame-inner {
        aspect-ratio: 16/10;
    }

    .mv-block {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mv-text,
    .mv-visual {
        grid-column: span 12 !important;
        order: initial !important;
        padding: 0 !important;
    }

    .process-grid-aw {
        grid-template-columns: 1fr;
    }

    .ah-monumental {
        font-size: 15vw;
    }
}

@media (max-width: 640px) {

    .identity-stage,
    .mv-stage {
        padding: 80px 0;
    }

    .mv-card-glass {
        padding: 40px 30px;
    }
}

/* Our Customers: Obsidian Brand Matrix */
.customers-stage-aw {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

/* Our Customers: Obsidian Kinetic Ribbon Restored */
.customers-marquee-mask {
    position: relative;
    width: 100%;
    max-width: var(--container-width);
    margin: 80px auto 0;
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: obsidianScroll 40s linear infinite;
}

@keyframes obsidianScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

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

.customer-matrix-cell {
    position: relative;
    width: 200px;
    height: 120px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    flex-shrink: 0;
}

.customer-matrix-cell img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.customer-matrix-cell::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--primary-1);
    border-left: 1px solid var(--primary-1);
    opacity: 0;
    transition: all 0.3s ease;
}

.customer-matrix-cell::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 5px;
    height: 5px;
    border-bottom: 1px solid var(--primary-1);
    border-right: 1px solid var(--primary-1);
    opacity: 0;
    transition: all 0.3s ease;
}

.customer-matrix-cell:hover {
    transform: translateY(-5px);
    border-color: var(--primary-1);
    box-shadow: 0 15px 35px rgba(115, 75, 223, 0.1);
}

.customer-matrix-cell:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.customer-matrix-cell:hover::before,
.customer-matrix-cell:hover::after {
    opacity: 1;
}

@media (max-width: 991px) {
    .customers-matrix-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .customer-matrix-cell {
        height: 100px;
        padding: 20px;
    }
}

</content></invoke>