﻿/* ===================================
   HERO SLIDER
=================================== */

:root {
    --shadow-sm: 0 6px 15px rgba(0,0,0,.08);
    --shadow-lg: 0 18px 45px rgba(0,0,0,.12);
    --section-padding: 96px 48px;
}


    .hero {
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: 650px;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    .hero-slider {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .hero-slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 1.2s ease, visibility 1.2s ease;
    }

        .hero-slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 2;
            animation: zoomEffect 12s ease forwards;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            animation: none;
        }

    @keyframes zoomEffect {
        from {
            transform: scale(1);
        }

        to {
            transform: scale(1.05);
        }
    }


    .hero-content {
        position: absolute;
        left: 8%;
        bottom: 14%;
        z-index: 5;
        max-width: 700px;
    }


    .hero-title em {
        color: #d8c3a5;
        font-style: italic;
    }

    .hero-actions {
        display: flex;
        align-items: center;
    }

    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 58px;
        height: 58px;
        border: none;
        outline: none;
        cursor: pointer;
        background: rgba(255,255,255,.12);
        border-radius: 50%;
        color: #fff;
        font-size: 24px;
        z-index: 20;
        transition: .3s;
    }

        .slider-arrow:hover {
            background: rgba(255,255,255,.25);
        }

    .prev {
        left: 25px;
    }

    .next {
        right: 25px;
    }
    /* ===================================
   TABLET
=================================== */

    @media (max-width:991px) {

        .hero {
            height: 80vh;
            min-height: 600px;
        }

        .hero-content {
            left: 30px;
            right: 30px;
            max-width: 100%;
        }

        .hero-title {
            font-size: 60px;
        }
    }
    /* ===================================
   SMALL MOBILE
=================================== */

    @media (max-width:480px) {

        .hero {
            height: 70vh;
            min-height: 450px;
        }

        .hero-title {
            font-size: 32px;
        }

        .hero-sub {
            font-size: 13px;
        }

        .hero-badge {
            padding: 6px 14px;
            font-size: 8px;
        }

        .slider-arrow {
            width: 36px;
            height: 36px;
            font-size: 15px;
        }

        .prev {
            left: 10px;
        }

        .next {
            right: 10px;
        }
    }
    /* EST BLOCK */
    .est-section {
        padding: 80px 48px;
        background: var(--white);
    }

    .section-description {
        font-size: 19px;
        color: var(--muted);
        line-height: 1.85;
        margin-bottom: 10px;
    }

    .est-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .est-image {
        aspect-ratio: 4/5;
        background: linear-gradient(135deg, #c8bfaf 0%, #9a8f7e 50%, #6a5f4e 100%);
        position: relative;
        overflow: hidden;
    }

    .est-image-inner {
        position: absolute;
        inset: 0;
        background-image: url('../images/who-we-are.jpg');
        background-size: cover;
        background-position: center;
    }

    .est-image-label {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 24px;
        background: linear-gradient(to top, rgba(14,14,14,0.7), transparent);
    }

        .est-image-label span {
            font-size: 11px;
            letter-spacing: 0.1em;
            color: var(--stone-light);
        }

    .est-brand {
        font-family: var(--ff-display);
        font-size: 45px;
        font-weight: 300;
        color: var(--text);
        line-height: 1;
    }

    .est-year {
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.12em;
        color: var(--muted);
        margin-top: 6px;
        margin-bottom: 25px;
    }

    .est-tagline {
        font-family: var(--ff-display);
        font-size: 25px;
        font-style: italic;
        font-weight: 300;
        color: var(--stone-dark);
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        border-top: 1px solid var(--border);
        border-left: 1px solid var(--border);
        margin-bottom: 36px;
    }

    .stat-item {
        padding: 24px 20px;
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        background: linear-gradient(135deg, #c8bfaf 0%, #9a8f7e 50%, #6a5f4e 100%);
    }

    .stat-num {
        font-family: var(--ff-display);
        font-size: 40px;
        font-weight: 300;
        color: var(--text);
        line-height: 1;
    }

    .stat-label {
        font-size: 15px;
        font-weight: 400;
        color: var(--muted);
        letter-spacing: 0.04em;
        margin-top: 6px;
        line-height: 1.4;
    }
    /*Products section*/

    .products-section {
        background: var(--stone-light);
        padding: var(--section-padding);
    }

    .products-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 24px;
        margin-bottom: 56px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .product-card {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        background: #000;
        border-radius: 8px;
        aspect-ratio: 3/4;
        box-shadow: 0 6px 15px rgba(0,0,0,.08);
    }

    .product-card-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-card:hover .product-card-img {
        transform: scale(1.05);
    }

    .product-card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.18) 55%, rgba(0,0,0,0.05) 100% );
        z-index: 1;
    }

    .product-card-content {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 28px 24px;
        z-index: 2;
    }

    .product-card-name {
        font-family: var(--ff-display);
        font-size: 26px;
        font-weight: 300;
        color: var(--white);
        line-height: 1.1;
        margin-bottom: 6px;
    }

    .product-card-sub {
        font-size: 14px;
        letter-spacing: 0.08em;
        color: rgba(248,246,242,0.72);
        line-height: 1.7;
    }

    .product-card-arrow {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255,255,255,0.25);
        background: rgb(75 67 54);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 16px;
        z-index: 3;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .product-card:hover .product-card-arrow {
        opacity: 1;
        transform: translateY(-2px);
    }
    /* =========================================================
   PROJECTS SECTION
========================================================= */

    .projects-section {
        padding: var(--section-padding);
        background: var(--accent);
        overflow: hidden;
    }

    .projects-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 56px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

        .projects-header .section-title {
            color: var(--white);
        }

        .projects-header .section-eyebrow {
            color: var(--stone);
        }

    .projects-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .project-card {
        position: relative;
        aspect-ratio: 4/3;
        overflow: hidden;
        cursor: pointer;
        background: #1a1510;
    }

    .project-card-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transition: transform 0.6s ease;
    }

    .project-card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.08) 100% );
        z-index: 1;
    }

    .project-card-content {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 24px;
        z-index: 2;
    }

    .project-name {
        font-family: var(--ff-display);
        font-size: 22px;
        font-weight: 400;
        color: var(--white);
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .project-meta {
        font-size: 12px;
        letter-spacing: 0.08em;
        color: rgba(248, 246, 242, 0.75);
        line-height: 1.5;
    }
    /* =========================================================
   RESPONSIVE
========================================================= */
    /* LARGE TABLET */
    @media (max-width: 992px) {

        .projects-section {
            padding: 80px 32px;
        }

        .projects-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .project-name {
            font-size: 20px;
        }
    }
    /* MOBILE */
    @media (max-width: 480px) {

        .projects-section {
            padding: 60px 16px;
        }

        .project-card {
            border-radius: 5px;
            aspect-ratio: 16/11;
        }

        .project-card-content {
            padding: 16px;
        }

        .project-name {
            font-size: 17px;
        }

        .project-meta {
            font-size: 10px;
            letter-spacing: 0.06em;
        }
    }
    /* =========================================
   PROCESS OVERVIEW CAROUSEL
========================================= */

    .process-overview {
        padding: var(--section-padding);
        background: var(--stone-light);
        border-top: 1px solid var(--border);
    }

    .process-overview-inner {
        max-width: 1280px;
        margin: 0 auto;
    }

    .process-overview-header {
        margin-bottom: 48px;
    }

    .process-slider-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }

    .process-slider-viewport {
        overflow: hidden;
        width: 100%;
    }

    .process-slider-track {
        display: flex;
        gap: 20px;
        transition: transform .6s ease;
        will-change: transform;
    }

    .process-overview-card {
        flex: 0 0 calc((100% - 60px) / 4);
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 20px;
        cursor: pointer;
        box-shadow: var(--shadow-sm);
        transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
        text-decoration: none;
    }

        .process-overview-card:hover {
            transform: translateY(-6px);
            border-color: rgba(0,0,0,.10);
            box-shadow: var(--shadow-sm);
        }

    .process-overview-visual {
        aspect-ratio: 16/10;
        margin-bottom: 16px;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid var(--border);
    }

        .process-overview-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .4s ease;
        }

    .process-overview-card:hover .process-overview-visual img {
        transform: scale(1.06);
    }


    .process-overview-step {
        font-size: 10px;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 10px;
    }

    .process-overview-title {
        font-family: var(--ff-display);
        font-size: 22px;
        font-weight: 400;
        color: var(--text);
        margin-bottom: 10px;
    }

    .process-overview-text {
        font-size: 15px;
        line-height: 1.75;
        color: var(--muted);
    }

    .process-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 46px;
        height: 46px;
        border: none;
        border-radius: 50%;
        background: #fff;
        color: var(--text);
        cursor: pointer;
        z-index: 10;
        box-shadow: var(--shadow-sm);
        transition: all .3s ease;
    }

        .process-arrow:hover {
            transform: translateY(-50%) scale(1.08);
            background: #503419;
            color: #fff;
        }

    .process-prev {
        left: -23px;
    }

    .process-next {
        right: -23px;
    }

    @media(max-width:1024px) {

        .process-overview {
            padding: 80px 32px;
        }

        .process-overview-card {
            flex: 0 0 calc((100% - 20px)/2);
        }
    }
    /* SMALL MOBILE */

    @media(max-width:480px) {

        .process-overview {
            padding: 56px 16px;
        }

        .process-arrow {
            width: 36px;
            height: 36px;
            font-size: 14px;
        }
    }
    /* =========================================
   INFRASTRUCTURE SECTION
========================================= */

    .infra-editorial {
        padding: 100px 48px;
        background: var(--white);
        border-top: 1px solid var(--border);
    }

    .infra-editorial-inner {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 70px;
        align-items: start;
    }
    /* =========================================
   LEFT CONTENT
========================================= */

    .infra-editorial-text {
        position: sticky;
        top: 80px;
    }

    .infra-editorial-desc {
        margin-top: 18px;
        font-size: 17px;
        line-height: 1.9;
        color: var(--muted);
        max-width: 520px;
    }
    /* =========================================
   PREMIUM FEATURES
========================================= */

    .infra-features {
        margin-top: 38px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .infra-feature {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 18px;
        background: linear-gradient(135deg, #dbd4c8 50%, #6c6a64 100%, #6a5f4e 100%);
        border: 1px solid rgba(0,0,0,0.06);
        box-shadow: var(--shadow-sm);
        transition: all .35s ease;
    }

        .infra-feature:hover {
            transform: translateY(-5px);
            border-color: rgba(80,52,25,.18);
            box-shadow: var(--shadow-sm);
        }

    .infra-feature-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg,#6c4a25,#503419);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 600;
        box-shadow: var(--shadow-sm);
    }

    .infra-feature-text {
        font-size: 15px;
        font-weight: 600;
        letter-spacing: .04em;
        color: var(--text);
        line-height: 1.5;
    }
    /* =========================================
   RIGHT SIDE IMAGE
========================================= */

    .infra-editorial-image {
        position: sticky;
        top: 80px;
        overflow: hidden;
        border-radius: 2px;
        box-shadow: var(--shadow-lg);
    }

    .infra-main-img {
        width: 100%;
        height: 100%;
        min-height: 700px;
        display: block;
        object-fit: cover;
        transition: transform .7s ease;
    }

    .infra-editorial-image:hover .infra-main-img {
        transform: scale(1.06);
    }
    /* =========================================
   TABLET
========================================= */

    @media (max-width:1024px) {

        .infra-editorial {
            padding: 80px 32px;
        }

        .infra-editorial-inner {
            gap: 45px;
        }

        .infra-features {
            gap: 14px;
            padding: 16px;
        }

        .infra-main-img {
            min-height: 600px;
        }
    }
    /* =========================================
   MOBILE
========================================= */

    @media (max-width:768px) {

        .infra-editorial {
            padding: 64px 20px;
        }

        .infra-editorial-inner {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .infra-editorial-text {
            position: relative;
            top: auto;
        }

        .infra-features {
            grid-template-columns: 1fr;
            gap: 14px;
            padding: 15px;
        }

        .infra-feature-icon {
            width: 42px;
            height: 42px;
            min-width: 42px;
            font-size: 14px;
        }

        .infra-feature-text {
            font-size: 12px;
        }

        .infra-editorial-image {
            position: relative;
            top: auto;
            border-radius: 16px;
        }

        .infra-main-img {
            min-height: auto;
            aspect-ratio: 16/11;
        }
    }
    /* =========================================
   SMALL MOBILE
========================================= */

    @media (max-width:480px) {

        .infra-editorial {
            padding: 56px 16px;
        }

        .infra-feature {
            padding: 14px;
            border-radius: 12px;
        }

        .infra-feature-icon {
            width: 38px;
            height: 38px;
            min-width: 38px;
            font-size: 13px;
        }

        .infra-feature-text {
            font-size: 11.5px;
        }

        .infra-editorial-image {
            border-radius: 12px;
        }
    }

    .testimonial-name {
        font-size: 13px;
        font-weight: 500;
        color: var(--text);
    }

    .testimonial-company {
        font-size: 11px;
        color: var(--muted);
        letter-spacing: 0.04em;
        margin-top: 2px;
    }
    /* BLOG */
    .blog-section {
        padding: var(--section-padding);
        background: var(--white);
        border-top: 1px solid var(--border);
    }

    .blog-inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .blog-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 48px;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .blog-card {
        cursor: pointer;
        text-decoration: none;
    }

    .blog-card-img {
        aspect-ratio: 16/9;
        margin-bottom: 20px;
        overflow: hidden;
        border-radius: 8px;
    }

    .blog-img-inner {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

    .blog-card:hover .blog-img-inner {
        transform: scale(1.04);
    }

    .blog-tag {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 8px;
    }

    .blog-title {
        font-family: var(--ff-display);
        font-size: 20px;
        font-weight: 400;
        color: var(--text);
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .blog-read {
        font-size: 11px;
        color: var(--muted);
    }
    /* ===========================
   MOBILE RESPONSIVE
=========================== */

    @media (max-width: 991px) {

        .blog-section {
            padding: 80px 32px;
        }

        .blog-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
    }

    @media (max-width: 767px) {

        .blog-section {
            padding: 64px 20px;
        }

        .blog-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        .blog-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .blog-title {
            font-size: 18px;
        }

        .blog-card-img {
            aspect-ratio: 16/9;
        }
    }

/*=========================================
HOME VIDEO SECTION
=========================================*/

.home-video-section {
    padding: 90px 48px;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.home-video-container {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 560px;
    gap: 70px;
    align-items: center;
}

.home-video-content {
    max-width: 560px;
}

.home-video-text {
    margin: 22px 0 35px;
    font-size: 17px;
    line-height: 1.9;
    color: var(--muted);
}

.home-video-box {
    overflow: hidden;
    /*border-radius: 18px;*/
    box-shadow: 0 18px 40px rgba(0,0,0,.12), 0 35px 80px rgba(0,0,0,.20), 0 0 45px rgba(173,140,91,.18);
    background: #000;
}

.home-video {
    width: 100%;
    height: 320px;
    display: block;
    object-fit: cover;
}


/*======================
TABLET
=======================*/

@media(max-width:1024px) {

    .home-video-section {
        padding: 80px 32px;
    }

    .home-video-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .home-video-content {
        max-width: 100%;
    }

    .home-video {
        height: 350px;
    }
}

/*======================
MOBILE
=======================*/

@media(max-width:768px) {

    .home-video-section {
        padding: 60px 20px;
    }

    .home-video-container {
        gap: 30px;
    }

    .home-video {
        height: 240px;
    }
}

/*======================
SMALL MOBILE
=======================*/

@media(max-width:480px) {

    .home-video-section {
        padding: 56px 16px;
    }

    .home-video {
        height: 200px;
    }
}


    /* ── COMMON ── */
    section {
        padding: var(--section-padding);
    }

    .section-eyebrow {
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 16px;
    }

    .section-title {
        font-family: var(--ff-display);
        font-size: clamp(32px, 4vw, 52px);
        font-weight: 300;
        line-height: 1.1;
        color: var(--text);
    }

        .section-title em {
            font-style: italic;
        }

    .divider {
        width: 48px;
        height: 1px;
        background: var(--stone);
        margin: 24px 0;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .btn-primary {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.08em;
        padding: 14px 32px;
        background: var(--text);
        color: var(--white);
        text-decoration: none;
        transition: background 0.2s;
        cursor: pointer;
        display: inline-block;
        border: none;
    }

        .btn-primary:hover {
            background: var(--stone-dark);
        }

    .btn-outline {
        display: inline-block;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.08em;
        padding: 13px 32px;
        border: 1px solid var(--text);
        color: var(--text);
        text-decoration: none;
        transition: background 0.5s, color 0.2s;
        cursor: pointer;
    }

        .btn-outline:hover {
            background: var(--text);
            color: var(--white);
        }

    .btn-outline-light {
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 0.08em;
        padding: 12px 28px;
        border: 1px solid rgba(248,246,242,0.3);
        color: var(--white);
        text-decoration: none;
        transition: border-color 0.2s;
        white-space: nowrap;
        cursor: pointer;
    }

        .btn-outline-light:hover {
            border-color: rgba(248,246,242,0.7);
        }
    /* ════════════════════════════════════════
   HOME PAGE RESPONSIVE
════════════════════════════════════════ */
    /* TABLET */
    @media (max-width: 1024px) {

        .hero-content {
            padding: 0 24px 60px;
        }

        .est-inner {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .products-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .projects-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    /* SMALL MOBILE */
    @media (max-width: 480px) {

        .hero-title {
            font-size: 34px;
        }

        .section-title {
            font-size: 28px;
        }

        .btn-primary,
        .btn-outline {
            width: 100%;
            text-align: center;
        }

        .products-section {
            padding: 56px 16px;
        }

        .product-card {
            aspect-ratio: 16/12;
        }

        .product-card-name {
            font-size: 22px;
        }

        .product-card-content {
            padding: 18px 16px;
        }
    }

    @media(min-width:769px) {
        .product-card:hover .product-card-img {
            transform: scale(1.05);
        }

        .infra-shot:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-sm);
        }
    }

    /* MOBILE */
    @media (max-width: 768px) {
        /* HERO */
        .hero {
            height: 75vh;
            min-height: 520px;
        }

        .hero-content {
            left: 20px;
            right: 20px;
            bottom: 50px;
            padding: 0 20px 50px;
        }

        .hero-title {
            font-size: 42px;
        }

        .hero-sub {
            font-size: 13px;
            max-width: 100%;
        }

        .hero-eyebrow {
            font-size: 10px;
            letter-spacing: 1px;
        }

        .hero-badge {
            font-size: 9px;
        }

        .slider-arrow {
            width: 42px;
            height: 42px;
            font-size: 18px;
            display: none;
        }
        /* EST */
        .est-section {
            padding: 64px 20px;
        }

        .est-inner {
            gap: 32px;
        }

        .stats-row {
            grid-template-columns: 1fr;
        }
        /* PRODUCTS */
        .products-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 36px;
        }

        .products-grid {
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .product-card {
            aspect-ratio: 16/11;
            border-radius: 6px;
        }

        .product-card-content {
            padding: 22px 18px;
        }

        .product-card-name {
            font-size: 24px;
        }

        .product-card-sub {
            font-size: 10px;
        }

        .product-card-arrow {
            opacity: 1;
            width: 38px;
            height: 38px;
            font-size: 14px;
            top: 16px;
            right: 16px;
        }
        /* INFRA */
        .infra-editorial {
            padding: 64px 20px;
        }

        .infra-editorial-inner {
            gap: 40px;
        }
        /* PROCESS */

        .process-overview {
            padding: 64px 20px;
        }

        .process-overview-header {
            margin-bottom: 36px;
        }

        .process-overview-card {
            flex: 0 0 100%;
        }

        .process-arrow {
            width: 40px;
            height: 40px;
        }

        .process-prev {
            left: -10px;
        }

        .process-next {
            right: -10px;
        }
        /* PROJECTS */

        .projects-section {
            padding: 64px 20px;
        }

        .projects-header {
            flex-direction: column;
            align-items: flex-start;
            margin-bottom: 36px;
            gap: 20px;
        }

        .projects-grid {
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .project-card {
            aspect-ratio: 16/10;
        }

        .project-card-content {
            padding: 20px;
        }

        .project-name {
            font-size: 19px;
        }

        .project-meta {
            font-size: 11px;
        }
    }
