/* ===( FONTS )=== */
@font-face {
    font-family: rejo;
    src: url(./Fonts/Rejouice-Headline.ttf);
}
@font-face {
    font-family: nb;
    src: url(./Fonts/NBInternationalProBoo.ttf);
}

/* ===( RESET & BASE )=== */
::selection { color: #0f0e0d; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: nb;
}

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

/* ===( LOADER )=== */
.loader {
    background-color: #000;
    position: absolute;
    height: 100vh;
    width: 100vw;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
}

.loader h2 span {
    display: inline-block;
    color: #fff;
    font-weight: lighter;
}

/* ===( CURSOR )=== */
.cursor {
    width: 7vw;
    height: 7vw;
    background-color: #FF5F38;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    z-index: 4;
    pointer-events: none;
}

.cursor h4 {
    font-size: 1.2vw;
    font-weight: lighter;
    color: #1a1919;
}

/* ===( MOVER )=== */
.mover {
    height: 8vw;
    width: 8vw;
    background-color: orangered;
    border-radius: 50%;
    position: fixed;
    top: -8%;
    left: -4%;
    transform: translate(-50%, -50%);
    opacity: 0;
    scale: 0;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* ===( MENU )=== */
.menu {
    height: 0;
    position: absolute;
    overflow: hidden;
}

.menu.active {
    position: absolute;
    z-index: 6;
    height: 67vh;
    width: 100vw;
    background-color: #514d4d;
    overflow: visible;
}

.menu-header {
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3vw;
    margin-top: 2vw;
}

.menu-header a {
    color: #e6d8d8;
    text-decoration: none;
    font-weight: lighter;
    font-size: 1.5vw;
    letter-spacing: -1px;
    cursor: pointer;
    position: relative;
}

.menu-header #close::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform .35s ease-out;
}

.menu-header #close:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.menu-sec {
    height: 250px;
    width: 100%;
    padding: 0 3vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.menu-sec .vid {
    height: 250px;
    width: 300px;
    border-radius: 8px;
    position: relative;
}

.menu-sec .vid video {
    width: 300px;
    height: 220px;
    border-radius: 8px;
}

.menu-sec .vid .play {
    display: flex;
    position: absolute;
    left: 0;
    bottom: 5px;
    gap: 5px;
    font-weight: lighter;
}

.menu-sec .vid .play #play {
    position: relative;
}

.menu-sec .vid .play #play::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform .35s ease-out;
}

.menu-sec .vid .play #play:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.menu-sec .vid .play i { color: #fff; }

.menu-sec .vid .play h4 {
    font-weight: lighter;
    font-size: 1.1vw;
    margin-left: 170px;
}

.menu-sec .links h3 {
    font-size: 2.4vw;
    font-weight: lighter;
    margin-right: 15vw;
    cursor: pointer;
    line-height: 1;
    position: relative;
    padding-bottom: 3px;
}

.menu-sec .links h3::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 50%;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    background-color: #000;
    transform-origin: bottom right;
    transition: transform .35s ease-out;
}

.menu-sec .links h3:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.menu-sec .links button {
    background-color: transparent;
    border: 1px solid #000;
    padding: 1vw 1.8vw;
    border-radius: 5px;
    font-size: 1.2vw;
    margin: 1.5vw 0 0 1.5vw;
    cursor: pointer;
    color: #e6d8d8;
    transition: background-color .3s ease;
}

.menu-sec .links button:hover {
    background-color: #000;
    color: #FF5F38;
}

.menu .menu-border {
    height: 1px;
    width: 0;
    margin: 4vw 3vw 0;
    background-color: #2D2B2B;
}

.menu .small-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #e6d8d8;
}

.menu .small-links h4 {
    font-weight: lighter;
    padding: 1vw 3vw;
}

.menu .small-links h3 {
    font-weight: lighter;
    padding: 1vw 3vw;
    font-size: 1.2vw;
    cursor: pointer;
    position: relative;
    color: #161616;
}

.menu .small-links h3::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 80%;
    bottom: 25%;
    left: 10%;
    transform: scaleX(0);
    background-color: #000;
    transform-origin: bottom right;
    transition: transform .35s ease-out;
}

.menu .small-links h3:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* ===( PAGE 1 )=== */
.page1 {
    height: 100vh;
    width: 100%;
    position: relative;
}

.page1 video {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    position: absolute;
    z-index: 1;
}

.inner-content {
    height: 100%;
    width: 100%;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    z-index: 5;
}

.inner-content nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3vw;
    font-size: .91vw;
}

.inner-content nav a {
    color: #fff;
    text-decoration: none;
    font-weight: lighter;
    cursor: pointer;
    position: relative;
}

.inner-content nav #menu::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform .35s ease-out;
}

.inner-content nav #menu:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.page1 .inner-content h1 {
    text-align: center;
    letter-spacing: -1.5vw;
    font-size: 22vw;
    font-family: rejo;
}

.page1 .inner-content h1 span { display: inline-block; }

/* ===( PAGE 2 )=== */
.page2 {
    height: 100vh;
    width: 100%;
    background-color: #fff;
}

.page2 .page2-top {
    height: 100px;
    width: 100%;
    padding: .6vw 3vw;
    margin-top: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.page2 .page2-top h3 {
    font-size: 1.7vw;
    font-weight: lighter;
    letter-spacing: -.5px;
    color: #141414;
}

.page2 .page2-top .first-text { overflow: hidden; }

.page2 .page2-top-border {
    height: 1px;
    width: 0;
    margin: .6vw 3vw;
    background-color: rgb(71, 71, 71);
}

.page2 .page2-bottom {
    height: 415px;
    width: 100%;
    overflow: hidden;
}

.page2 .page2-bottom .btm-text {
    padding: 2vw 3vw;
    overflow: hidden;
}

.page2 .page2-bottom .btm-text h2 .up { overflow: hidden; }

.page2 .page2-bottom .btm-text h2 span {
    font-size: 4.45vw;
    font-weight: lighter;
    line-height: 1;
    letter-spacing: -1px;
    display: inline-block;
    overflow: hidden;
}

/* ===( PAGE 3 )=== */
.page3 {
    height: auto;
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    margin-top: 0;
    margin-bottom: 0;
}

.page3 .page3-text {
    overflow: hidden;
    height: auto;
}

.page3 .page3-text h4 {
    color: #161616;
    font-weight: lighter;
    display: flex;
    align-items: self-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.page3 .page3-text h4 span {
    font-size: .7vw;
    background-color: #000;
    color: #fff;
    border-radius: 100px;
    padding: 4px 6px;
}

.page3 .page3-text h4 i {
    color: #161616;
    margin-top: 2px;
}

.page3 .page3-text h1,
.page9 .page9-text h1 {
    cursor: pointer;
    font-size: 4vw;
    font-weight: lighter;
    line-height: 1;
    position: relative;
}

.page3 .page3-text h1::after,
.page9 .page9-text h1::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    background-color: #000;
    transition: transform .4s ease-out;
}

.page3 .page3-text h1:hover::after,
.page9 .page9-text h1:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* ===( PAGE 4 )=== */
.page4 {
    width: 100%;
    background: #f5f5f5;
}

.page4-text {
    padding: 80px 8%;
    background: #f5f5f5;
}

.main-heading {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.2;
}

.see-work {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    text-decoration: none;
    color: #000;
    transition: 0.3s ease;
}

.see-work i { font-size: 22px; }

.see-work:hover { opacity: 0.6; }

.page4-video {
    width: 100%;
}

.page4-video .item {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

@supports (height: 100dvh) {
    .page4-video .item { height: 100dvh; }
}

.page4-video img,
.page4-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page4-video .item a {
    display: block;
    position: relative;
}

/* ===( PAGE 5 )=== */
.page5 {
    height: 100vh;
    width: 100%;
    background-color: #fff;
}

.page5 .page5-top {
    height: 100px;
    width: 100%;
    padding: .6vw 3vw;
    margin-top: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.page5 .page5-top h3 {
    font-size: 1.7vw;
    font-weight: lighter;
    letter-spacing: -.5px;
    color: #141414;
}

.page5 .page5-top .top-text { overflow: hidden; }

.page5 .page5-top-border {
    height: 1px;
    width: 0;
    margin: .6vw 3vw;
    background-color: rgb(71, 71, 71);
}

.page5 .page5-bottom {
    height: 415px;
    width: 100%;
    overflow: hidden;
}

.page5 .page5-bottom .btm-text {
    padding: 7vw 3vw;
    overflow: hidden;
    text-align: center;
}

.page5 .page5-bottom .btm-text h2 .up { overflow: hidden; }

.page5 .page5-bottom .btm-text h2 span {
    font-size: 4vw;
    font-weight: lighter;
    line-height: 1;
    letter-spacing: -1px;
    display: inline-block;
    overflow: hidden;
}

/* ===( PAGE 7 )=== */
.page7 {
    height: 100vh;
    width: 100%;
    background-color: #fff;
}

.page7 .page7-top {
    height: 100px;
    width: 100%;
    padding: .6vw 3vw;
    margin-top: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.page7 .page7-top h3 {
    font-size: 1.7vw;
    font-weight: lighter;
    letter-spacing: -.5px;
    color: #141414;
}

.page7 .page7-top .top-text { overflow: hidden; }

.page7 .page7-top-border {
    height: 1px;
    width: 0;
    margin: .6vw 3vw;
    background-color: rgb(71, 71, 71);
}

.page7 .page7-bottom {
    height: 415px;
    width: 100%;
    overflow: hidden;
}

.page7 .page7-bottom .btm-text {
    padding: 2.1vw 3vw;
    overflow: hidden;
    text-align: center;
}

.page7 .page7-bottom .btm-text h2 .up { overflow: hidden; }

.page7 .page7-bottom .btm-text h2 span {
    font-size: 4vw;
    font-weight: lighter;
    line-height: 1;
    letter-spacing: -1px;
    display: inline-block;
    overflow: hidden;
}
/* ===( PAGE 8 )=== */
.page8 {
    height: auto;
    width: 100%;
    background-color: #fff;
    padding-bottom: 60px;
}

.page8 .text {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 40px 3vw 0;
}

.page8 .text h1 {
    font-size: 6vw;
    font-family: rejo;
    font-weight: 500;
    color: rgb(14, 14, 14);
    line-height: 1;
}

.page8 .text h3 {
    font-size: 1.8vw;
    font-weight: lighter;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.page8 .text h3 i {
    font-size: 1.9vw;
    margin-right: 10px;
}

.page8 .page8-top-border {
    height: 1px;
    width: 94vw;
    margin: 1vw 3vw;
    background-color: rgb(71, 71, 71);
}

/* ===( SWIPER )=== */
.swiper {
    width: 100%;
    height: 55vh;
    margin: 0 auto;
    position: relative;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    text-align: center;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    bottom: auto;
    border-radius: 10px;
}

/* ===( PAGE 8 MOBILE )=== */
@media (max-width: 768px) {
    .page8 {
        padding-bottom: 40px;
    }

    .page8 .text {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 30px 5vw 0;
    }

    .page8 .text h1 {
        font-size: 12vw;
        line-height: 1;
    }

    .page8 .text h3 {
        font-size: 4.5vw;
    }

    .page8 .text h3 i {
        font-size: 5vw;
        margin-right: 8px;
    }

    .page8 .page8-top-border {
        width: 90vw;
        margin: 3vw 5vw;
    }

    .swiper {
        height: 40vw;        /* square-ish cards on mobile */
        margin: 0;
        padding: 0 5vw;
    }

    .swiper-slide {
        border-radius: 8px;
    }

    .swiper-slide img {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .page8 .text h1 { font-size: 14vw; }
    .page8 .text h3 { font-size: 5.5vw; }

    .swiper {
        height: 50vw;
        padding: 0 4vw;
    }
}

/* ===( PAGE 9 )=== */
.page9 {
    height: auto;
    padding: 60px 20px;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    text-align: center;
}

.page9 .page9-text {
    overflow: hidden;
    height: auto;
}

.page9 .page9-text h4 {
    color: #161616;
    font-weight: lighter;
    display: flex;
    align-items: self-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.page9 .page9-text h4 i {
    color: #161616;
    margin-top: 2px;
}

/* ===( PAGE 12 )=== */
.page12 {
    min-height: 100vh;
    width: 100%;
    background-color: #f7f7f7;
    padding: 5vw 2.2vw;
}

.page12 .all {
    height: 40px;
    width: 160px;
    border-radius: 50px;
    border: 1px solid rgb(161, 155, 155);
    position: relative;
    padding: .7vw 2vw;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.page12 .all a {
    text-decoration: none;
    color: #000;
    text-align: center;
}

.page12 .all::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    background-color: #000;
    height: 100%;
    width: 100%;
    border-radius: 90%;
    transition: all ease-in-out .3s;
    z-index: -1;
}

.page12 .all:hover::before {
    bottom: 0;
    border-radius: 0;
}

.page12 .all:hover a { color: #fff; }

.page12 .bottom-text {
    padding: 3vw 4.2vw;
    margin-bottom: 3vw;
}

.page12 .bottom-text span {
    display: inline-block;
    height: .6vw;
    width: .6vw;
    border-radius: 50%;
    background-color: rgb(255, 60, 0);
}

.page12 .bottom-text p {
    display: inline-block;
    font-size: 1vw;
    margin-left: .3vw;
}

/* ===( PAGE 17 )=== */
#page17 {
    min-height: 100vh;
    background: linear-gradient(to bottom, #f8f8f8, #ffffff);
    padding: 8vh 8vw;
    display: flex;
    gap: 6vw;
    align-items: flex-start;
}

.left-cta { width: 20%; }

.cta-btn {
    background: transparent;
    color: #181818;
    padding: 12px 28px;
    border-radius: 40px;
    border: 1px solid rgba(190, 175, 175, 0.4);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    top: 65px;
    transition: all .3s ease;
    font-size: 14px;
    letter-spacing: 1px;
}

.cta-btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-3px);
}

#page17-right { width: 80%; }

.intro-text {
    font-size: 1.8rem;
    line-height: 1.6;
    max-width: 900px;
    margin-bottom: 4vh;
}

.services-header h1 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 2vh;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 6vh;
}

.tags span {
    border: 1px solid #000;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: .8rem;
    transition: .3s ease;
    cursor: pointer;
}

.tags span:hover {
    background: #000;
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .4s cubic-bezier(.19, 1, .22, 1);
    position: relative;
    overflow: hidden;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.service-card .arrow {
    position: absolute;
    bottom: 28px;
    right: 28px;
    font-size: 1.2rem;
    transition: .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.service-card:hover .arrow { transform: translate(5px, -5px); }

/* ===( VISION SECTION )=== */
.vision-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    min-height: 100vh;
    background-color: #f7f7f7;
}

.elem {
    position: relative;
    width: 33.33%;
    height: 100vh;
    overflow: hidden;
}

.elem.man {
    width: 34%;
    background-color: #fff;
    color: #000;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.elem.man p {
    font-size: 18px;
    line-height: 1.8;
}

.elem img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
}

.elem:hover img { transform: scale(1.08); }

.box {
    width: 70%;
    height: 50px;
    background-color: #c1aaa3;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    border-radius: 50px;
    transition: height .5s;
    cursor: pointer;
}

/* ===( VIDEO SECTION )=== */
.video-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.video-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .55);
    z-index: -1;
}

.video-content {
    max-width: 800px;
    padding: 20px;
    animation: fadeUp 1.2s ease forwards;
}

.video-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.video-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.video-content button {
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    background: white;
    color: black;
    cursor: pointer;
    border-radius: 30px;
    transition: .3s ease;
}

.video-content button:hover { background: #ffcc00; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===( PAGE 6 )=== */
#page6 {
    min-height: 100vh;
    width: 100%;
    background-color: #fff;
    padding: 10vh 8vw;
}

#page6 > h1 {
    font-size: 5.5vw;
    color: #000;
    padding-left: 23vw;
    padding-right: 5vw;
    line-height: 5.8vw;
    padding-bottom: 8vh;
    border-bottom: 1px solid #dadada;
}

#page6-content {
    color: #000;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 8vh 0;
    gap: 4vw;
}

#page6-content #right-6 { width: 70%; }

#page6-content #right-6 p {
    font-size: 1.5vw;
    color: #000;
    margin-bottom: 5vh;
    width: 80%;
}

#blue-btn {
    background-color: #4f5bff;
    width: 15vw;
    height: 3.5vw;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#blue-btn h4 {
    position: absolute;
    text-transform: uppercase;
    font-weight: 600;
    font-size: .85vw;
}

#blue-btn h4 i {
    font-size: 1.1vw;
    font-weight: 100;
    margin-left: .5vw;
}

#page6-bottom {
    height: 44vh;
    width: 100%;
    border-top: 1px solid #dadada;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

#btm6-part1 { border-right: 1px solid #dadada; width: 30%; height: 100%; }
#btm6-part2 { border-right: 1px solid #dadada; width: 28%; height: 100%; }
#btm6-part3 { border-right: 1px solid #dadada; width: 15%; height: 100%; }
#btm6-part4 { border-right: 1px solid #dadada; width: 15%; height: 100%; }
#btm6-part5 { width: 15%; height: 100%; }

.btm6-parts { padding: 3vh .6vw; }

.btm6-parts h5 {
    color: #000;
    font-weight: 500;
    font-size: .9vw;
    margin-bottom: 4vh;
}

.btm6-parts h4 {
    background-color: #111;
    width: 75%;
    padding: 5px 10px;
    margin-bottom: .3vh;
    border-radius: 50px;
    font-size: .85vw;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #fff;
}

.btm6-parts h4 span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5vw;
    height: 1.5vw;
    background-color: #333;
    padding: .5vw;
    border-radius: 50%;
    margin-right: 1vw;
}

#btm6-part2 h4:nth-child(3) { transform: translateX(10%); }
#btm6-part2 h4:nth-child(4) { transform: translateX(20%); }
#btm6-part2 h4:nth-child(5) { transform: translateX(30%); }
#btm6-part2 h4:nth-child(6) { transform: translateX(40%); }
#btm6-part2 h4:nth-child(7) { transform: translateX(50%); }

/* ===( ABOUT SECTION )=== */
.about-section {
    width: 100%;
    background: #f5f5f5;
    padding: 100px 8%;
}

.about-container { max-width: 1600px; margin: auto; }

.about-heading h1 {
    font-size: 5.5vw;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -1px;
}

.about-heading .bold { color: black; font-weight: 600; }
.about-heading .light { color: #8a8a8a; font-weight: 400; }

.about-divider {
    width: 100%;
    height: 1px;
    background: #dcdcdc;
    margin: 60px 0;
}

.about-bottom {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.about-left { width: 50%; }
.about-left p { font-size: 1.4vw; color: #6a6a6a; line-height: 1.5; }

.about-right { width: 40%; }

.service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #e1e1e1;
}

.service-item p { font-size: 1.2vw; color: #111; }

.triangle {
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 12px solid #ff4d00;
    flex-shrink: 0;
}

/* ===( BENEFITS SECTION )=== */
.benefits-section {
    width: 100%;
    padding: 100px 8%;
    background: #ffffff;
}

.benefits-container { max-width: 1600px; margin: auto; }

.benefits-label { font-size: 14px; color: #6b7a00; margin-bottom: 40px; }

.benefits-heading { font-size: 5vw; font-weight: 500; margin-bottom: 20px; }

.benefits-subtext { font-size: 20px; color: #555; margin-bottom: 80px; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.benefit-item { display: flex; flex-direction: column; gap: 16px; }

.benefit-line { width: 100%; height: 1px; background: #ddd; }

.benefit-icon { font-size: 24px; }

.benefit-item h3 { font-size: 20px; font-weight: 500; }

.benefit-item p { font-size: 16px; color: #555; line-height: 1.6; }

/* ===( EDITORIAL GRID )=== */
.editorial-grid {
    padding: 100px 0;
    background: #f4f4f4;
}

.grid-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #ddd;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
    filter: grayscale(100%);
}

.grid-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.grid-item.tall { grid-row: span 2; }
.grid-item.wide { grid-column: span 2; }

.view-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
}

.grid-item:hover .view-btn { background: rgba(0, 0, 0, .6); }

/* ===( TESTIMONIALS )=== */
.testimonial-section {
    padding: 100px 8%;
    background-color: #0E0E0E;
}

.testimonial-hero {
    position: relative;
    margin-bottom: 80px;
}

.testimonial-hero h1 {
    font-size: 160px;
    font-weight: 600;
    letter-spacing: -4px;
    color: #fff;
    opacity: .08;
    white-space: nowrap;
}

.cta-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 36px;
    backdrop-filter: blur(10px);
    transition: .4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, .2);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 36px;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 { font-size: 15px; font-weight: 600; color: #fff; }
.author-info p  { font-size: 13px; color: rgba(255, 255, 255, .6); }

.verified {
    width: 16px;
    height: 16px;
    background: #4C82FF;
    border-radius: 50%;
    display: inline-block;
    margin-left: 6px;
}

/* ===( SELECTED WORKS HEADER )=== */
.selected-works-header {
    padding: 100px 8% 60px;
    background: #000;
    color: #fff;
}

.works-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.works-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: .8;
    color: #fff;
}

.works-label .triangle {
    border-left: 8px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.works-count {
    font-size: 14px;
    letter-spacing: 2px;
    opacity: .6;
    color: #fff;
}

.works-heading {
    font-size: clamp(50px, 8vw, 120px);
    font-weight: 700;
    line-height: 1;
}

/* ===( HIGHLIGHTS )=== */
.page-highlights {
    width: 100%;
    padding: 60px 8%;
    background: black;
    color: white;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.card.top {
    grid-column: 1 / -1;
    grid-row: span 2;
    height: 85vh;
}

.card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.card-image { width: 100%; height: 100%; }

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(14px);
    transform: scale(1.08);
    transition: all .9s cubic-bezier(.19, 1, .22, 1);
}

.card:not(.top) { height: 450px; }

.card:hover img {
    filter: blur(0);
    transform: scale(1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .7), rgba(0, 0, 0, .3), rgba(0, 0, 0, 0));
}

.card.top h2      { font-size: 3vw; color: white; }
.card:not(.top) h2 { font-size: 1.6vw; color: white; }

.divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .3);
    margin: 20px 0;
}

.tag { color: #ccc; margin-bottom: auto; }

/* ===( FOUNDER SECTION )=== */
.founder-page {
    padding: 100px 8%;
    background: #0f0f0f;
    color: #fff;
}

.founder-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
}

.founder-image { flex: 1; }

.founder-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    object-fit: cover;
    filter: grayscale(100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
    transition: 0.4s ease;
}

.founder-image img:hover { filter: grayscale(0%); }

.founder-content { flex: 1; }

.founder-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
}

.founder-intro {
    font-size: 18px;
    margin-bottom: 20px;
    color: #d0d0d0;
    line-height: 1.6;
}

.founder-content p {
    font-size: 16px;
    color: #b5b5b5;
    line-height: 1.6;
    margin-bottom: 24px;
}

.founder-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.highlight {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.highlight span {
    color: #00ffae;
    font-weight: bold;
}

.founder-btn {
    display: inline-block;
    padding: 14px 26px;
    background: #00ffae;
    color: #000;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.founder-btn:hover {
    background: #00d695;
    transform: translateY(-3px);
}
/* ===( FOOTER )=== */
footer {
    width: 100%;
    background-color: #0E0E0E;
    height: auto;
}

/* ── TOP SECTION ── */
footer .footer-top {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 4vw 3vw 2vw;
}

/* LEFT COL — tagline + company info */
.footer-top .first {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0;
    color: #fff;
    flex: 1;
}

.footer-top .first .first-top h2 {
    font-weight: lighter;
    letter-spacing: -.5px;
    font-size: 1.4vw;
    line-height: 1.4;
}

.footer-top .first .first-top button {
    padding: 12px 20px;
    margin-top: 16px;
    border-radius: 10px;
    border: 1px solid #fff;
    font-size: 1vw;
    font-weight: lighter;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: background-color .3s ease;
}

.footer-top .first .first-top button:hover {
    background-color: #fff;
    color: #000;
}

/* Remove the negative margin hack */
.first-btm {
    margin-top: 0;
}

.company-title {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
}

.company-info p {
    font-size: 13px;
    font-weight: 300;
    margin: 8px 0;
    color: #bdbdbd;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 340px;
}

.company-info p span {
    color: #fff;
    font-weight: 400;
    text-align: right;
}

/* RIGHT COL — nav + social links */
.footer-top .second {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 60px;
    padding: 0;
    color: #fff;
}

.second .second-one,
.second .second-two {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.second .second-one .span span,
.second .second-one .span1,
.second .second-two .span span,
.second .second-two .span1 {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    font-weight: 300;
    color: #ccc;
    transition: color .25s ease;
}

.second .second-one .span span { display: flex; flex-direction: column; }
.second .second-two .span span { display: flex; }

.second .second-one .span > span::after,
.second .second-one .span1 > span::after,
.second .second-two .span > span::after,
.second .second-two .span1 > span::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: -2px;
    left: 0;
    transform: scaleX(0);
    background-color: #fff;
    transform-origin: bottom right;
    transition: transform .35s ease-out;
}

.second .second-one .span > span:hover::after,
.second .second-one .span1 > span:hover::after,
.second .second-two .span > span:hover::after,
.second .second-two .span1 > span:hover::after {
    transform-origin: bottom left;
    transform: scaleX(1);
}

/* ── BOTTOM — big logo ── */
footer .footer-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding-top: 20px;
}

footer .footer-bottom h1 span {
    display: inline-block;
    font-size: 19vw;
    line-height: 0.85;
    color: #fff;
    margin-top: 0;
}

/* ══════════════════════════════
   TABLET  ≤ 1024px
══════════════════════════════ */
@media (max-width: 1024px) {
    .footer-top .first .first-top h2 { font-size: 2vw; }
    .footer-top .first .first-top button { font-size: 1.5vw; }
    .footer-top .second { gap: 40px; }
}

/* ══════════════════════════════
   MOBILE  ≤ 768px
══════════════════════════════ */
@media (max-width: 768px) {
    footer .footer-top {
        flex-direction: column;
        gap: 40px;
        padding: 40px 6vw 20px;
    }

    /* LEFT */
    .footer-top .first {
        width: 100%;
        gap: 32px;
    }

    .footer-top .first .first-top h2 {
        font-size: 5vw;
    }

    .footer-top .first .first-top button {
        font-size: 4vw;
        padding: 12px 18px;
    }

    .company-info p {
        max-width: 100%;
        font-size: 13px;
    }

    /* RIGHT — side by side nav + social */
    .footer-top .second {
        width: 100%;
        justify-content: flex-start;
        gap: 48px;
        flex-direction: row;
    }

    .second .second-one,
    .second .second-two {
        gap: 12px;
    }

    .second .second-one .span span,
    .second .second-one .span1,
    .second .second-two .span span,
    .second .second-two .span1 {
        font-size: 15px;
    }

    footer .footer-bottom h1 span {
        font-size: 22vw;
    }
}

/* ══════════════════════════════
   SMALL  ≤ 480px
══════════════════════════════ */
@media (max-width: 480px) {
    footer .footer-top {
        padding: 36px 5vw 16px;
        gap: 32px;
    }

    .footer-top .first .first-top h2 { font-size: 6vw; }
    .footer-top .first .first-top button { font-size: 4.5vw; width: 100%; text-align: center; }

    .footer-top .second {
        flex-direction: row;
        gap: 36px;
    }

    .second .second-one .span span,
    .second .second-one .span1,
    .second .second-two .span span,
    .second .second-two .span1 {
        font-size: 14px;
        color: #bdbdbd;
    }

    .company-info p { font-size: 12px; gap: 12px; }

    footer .footer-bottom h1 span { font-size: 24vw; }
}

/* ===================================================== */
/* MOBILE RESPONSIVE BREAKPOINTS                         */
/* ===================================================== */

@media (max-width: 1024px) {
    .benefits-grid       { grid-template-columns: repeat(2, 1fr); }
    .grid-container      { grid-template-columns: repeat(2, 1fr); }
    .grid-item.wide      { grid-column: span 1; }
    .testimonial-hero h1 { font-size: 110px; }
    .card.top h2         { font-size: 4vw; }
    .card:not(.top) h2   { font-size: 2.5vw; }
}

@media (max-width: 768px) {
    /* Hide custom cursor on touch devices */
    .cursor, .mover { display: none; }

    /* NAV */
    .inner-content nav { padding: 5vw; font-size: 3.5vw; }

    /* PAGE 1 */
    .page1 .inner-content h1 { font-size: 28vw; letter-spacing: -2vw; }

    /* MENU */
    .menu.active     { height: auto; padding-bottom: 20px; }
    .menu-header a   { font-size: 4vw; }
    .menu-sec        { flex-direction: column; height: auto; gap: 20px; padding: 3vw; }
    .menu-sec .vid   { width: 100%; }
    .menu-sec .vid video { width: 100%; height: 200px; }
    .menu-sec .links h3  { font-size: 6vw; margin-right: 0; }
    .menu-sec .links button { font-size: 4vw; padding: 2vw 3vw; }
    .menu-sec .vid .play h4 { margin-left: 0; font-size: 3vw; }
    .menu .small-links h3   { font-size: 3.5vw; }

    /* PAGE 2, 5, 7 */
    .page2 .page2-top h3,
    .page5 .page5-top h3,
    .page7 .page7-top h3      { font-size: 4vw; }
    .page2 .page2-bottom .btm-text h2 span { font-size: 7vw; }
    .page5 .page5-bottom .btm-text h2 span,
    .page7 .page7-bottom .btm-text h2 span { font-size: 6.5vw; }
    .page2, .page5, .page7    { height: auto; min-height: 100vh; }

    /* PAGE 3, 9 */
    .page3                    { padding: 40px 20px; }
    .page9                    { padding: 40px 20px; }
    .page3 .page3-text h1,
    .page9 .page9-text h1     { font-size: 7vw; }
    .page3 .page3-text h4 span { font-size: 2vw; }

    /* PAGE 4 */
    .page4-text               { padding: 50px 6%; }
    .main-heading             { font-size: 32px; }
    .page4-video .item        { height: 80vh; min-height: 500px; }

    /* PAGE 8 */
    .page8                    { height: auto; padding-bottom: 40px; }
    .page8 .text              { flex-direction: column; align-items: flex-start; gap: 10px; }
    .page8 .text h1           { font-size: 12vw; }
    .page8 .text h3           { font-size: 4.5vw; }
    .page8 .text h3 i         { font-size: 5vw; }
    .page8 .page8-top-border  { width: 90vw; }

    /* SWIPER */
    .swiper                   { height: auto; min-height: 40vh; margin-top: 0; }
    .swiper-slide             { flex-direction: column; border-left: none; border-top: 1px solid rgb(197, 187, 187); padding: 4vw 2vw; }
    .swiper-slide h3          { font-size: 4vw; }
    .swiper-slide img         { height: 40vw; width: 40vw; }
    .swiper-slide p           { font-size: 3.5vw; width: 90%; }

    /* PAGE 12 */
    .page12 .bottom-text span { height: 2vw; width: 2vw; }
    .page12 .bottom-text p    { font-size: 3.5vw; }

    /* PAGE 17 */
    #page17                   { flex-direction: column; padding: 8vh 6vw; gap: 30px; }
    .left-cta                 { width: 100%; }
    #page17-right             { width: 100%; }
    .intro-text               { font-size: 1.2rem; }
    .services-header h1       { font-size: 2rem; }
    .services-grid            { grid-template-columns: 1fr; }
    .cta-btn                  { top: 0; margin-bottom: 20px; }

    /* VISION SECTION */
    .vision-section  { flex-wrap: wrap; }
    .elem            { width: 100%; height: 60vh; }
    .elem.man        { width: 100%; padding: 40px 30px; }

    /* VIDEO SECTION */
    .video-content h1 { font-size: 2rem; }
    .video-content p  { font-size: 1rem; }

    /* PAGE 6 */
    #page6            { padding: 6vh 5vw; }
    #page6 > h1       { font-size: 8vw; padding-left: 0; line-height: 1.2; padding-bottom: 5vh; }
    #page6-content    { flex-direction: column; gap: 30px; }
    #page6-content #right-6 { width: 100%; }
    #page6-content #right-6 p { font-size: 4vw; width: 100%; }
    #blue-btn         { width: 50vw; height: 10vw; }
    #blue-btn h4      { font-size: 3vw; }
    #page6-bottom     { flex-direction: column; height: auto; }
    #btm6-part1, #btm6-part2, #btm6-part3, #btm6-part4, #btm6-part5 {
        width: 100%; border-right: none; border-bottom: 1px solid #dadada; height: auto;
    }
    .btm6-parts h5    { font-size: 3.5vw; }
    .btm6-parts h4    { font-size: 3vw; width: 100%; }
    .btm6-parts h4 span { width: 5vw; height: 5vw; }
    #btm6-part2 h4:nth-child(3),
    #btm6-part2 h4:nth-child(4),
    #btm6-part2 h4:nth-child(5),
    #btm6-part2 h4:nth-child(6),
    #btm6-part2 h4:nth-child(7) { transform: translateX(0); }

    /* ABOUT */
    .about-section     { padding: 60px 6%; }
    .about-heading h1  { font-size: 9vw; }
    .about-bottom      { flex-direction: column; gap: 30px; }
    .about-left, .about-right { width: 100%; }
    .about-left p, .service-item p { font-size: 16px; }

    /* BENEFITS */
    .benefits-section  { padding: 60px 6%; }
    .benefits-heading  { font-size: 9vw; }
    .benefits-grid     { grid-template-columns: 1fr; gap: 30px; }

    /* EDITORIAL */
    .grid-container    { grid-template-columns: 1fr; }
    .grid-item.tall, .grid-item.wide { grid-row: span 1; grid-column: span 1; }

    /* TESTIMONIALS */
    .testimonial-section  { padding: 60px 5%; }
    .testimonial-hero h1  { font-size: 50px; letter-spacing: -2px; }
    .testimonial-grid     { grid-template-columns: 1fr; gap: 24px; }

    /* SELECTED WORKS */
    .selected-works-header { padding: 60px 5% 40px; }

    /* HIGHLIGHTS */
    .page-highlights     { padding: 30px 5%; }
    .highlights-grid     { grid-template-columns: 1fr; }
    .card.top            { height: 60vh; grid-row: span 1; }
    .card.top h2,
    .card:not(.top) h2   { font-size: 5vw; }
    .card-overlay        { padding: 24px; }

    /* FOUNDER */
    .founder-page        { padding: 60px 6%; }
    .founder-container   { flex-direction: column; text-align: center; gap: 40px; }
    .founder-image img   { max-width: 320px; }
    .founder-content h2  { font-size: 32px; }
    .founder-intro       { font-size: 16px; }
    .founder-content p   { font-size: 15px; }
    .founder-highlights  { align-items: center; }
    .highlight           { justify-content: center; }

    /* FOOTER */
    footer                { height: auto; padding-bottom: 40px; }
    footer .footer-top    { flex-direction: column; height: auto; padding: 30px 0; }
    .footer-top .first    { gap: 40px; width: 100%; }
    .footer-top .first .first-top button { font-size: 4vw; }
    .footer-top .second   { flex-direction: row; gap: 40px; margin-top: 0; padding: 3vw; width: 100%; }
    .second .second-one, .second .second-two { gap: 30px; }
    footer .footer-bottom h1 span { font-size: 22vw; margin-top: 0; }
}

@media (max-width: 480px) {
    .page1 .inner-content h1    { font-size: 32vw; }
    .page3 .page3-text h1,
    .page9 .page9-text h1       { font-size: 9vw; }
    .testimonial-hero h1        { font-size: 36px; }
    .works-heading              { font-size: clamp(36px, 10vw, 80px); }
    .intro-text                 { font-size: 1rem; }
    .service-card               { padding: 22px; }
    .testimonial-card           { padding: 22px; }
    .footer-top .second         { flex-direction: column; }
    .founder-btn                { width: 100%; text-align: center; }
    .page4-video .item          { height: 70vh; min-height: 420px; }
}


/* ===( VISION SECTION )=== */
.vision-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    min-height: 100vh;
    background-color: #f7f7f7;
}

.elem {
    position: relative;
    width: 33.33%;
    height: 100vh;
    overflow: hidden;
}

.elem.man {
    width: 34%;
    background-color: #fff;
    color: #000;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.elem.man p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.elem img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
}

.elem:hover img { transform: scale(1.06); }

/* ===( VISION HEADING )=== */
.vision-heading {
    margin-bottom: 12px;
}

.vision-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ff4d00;
    margin-bottom: 10px;
}

.vision-heading h2 {
    font-size: 2.2vw;
    font-weight: 600;
    line-height: 1.15;
    color: #0f0f0f;
    letter-spacing: -0.5px;
}

.vision-heading h2 em {
    font-style: italic;
    font-weight: 400;
    color: #888;
}

/* ===( CTA LINK )=== */
.hero.lero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    border-bottom: 1.5px solid #000;
    padding-bottom: 3px;
    width: fit-content;
    transition: opacity .3s ease;
}

.hero.lero:hover { opacity: 0.5; }

/* ══════════════════════════════
   TABLET  ≤ 1024px
══════════════════════════════ */
@media (max-width: 1024px) {
    .vision-section {
        flex-wrap: wrap;
    }

    .elem.man {
        width: 100%;
        height: auto;
        padding: 60px 6%;
        order: -1; /* heading first */
    }

    .vision-heading h2 {
        font-size: 4vw;
    }

    .elem {
        width: 50%;
        height: 50vw;
    }
}

/* ══════════════════════════════
   MOBILE  ≤ 768px
══════════════════════════════ */
@media (max-width: 768px) {
    .vision-section {
        flex-direction: column;
    }

    .elem.man {
        width: 100%;
        height: auto;
        padding: 50px 6%;
        gap: 14px;
        order: -1;
    }

    .vision-heading h2 {
        font-size: 7.5vw;
    }

    .elem.man p {
        font-size: 15px;
    }

    .elem {
        width: 100%;
        height: 70vw;
        min-height: 280px;
    }
}

/* ══════════════════════════════
   SMALL  ≤ 480px
══════════════════════════════ */
@media (max-width: 480px) {
    .elem.man {
        padding: 40px 5%;
        gap: 12px;
    }

    .vision-heading h2 {
        font-size: 9vw;
    }

    .vision-label {
        font-size: 10px;
    }

    .elem.man p {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero.lero {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .elem {
        height: 65vw;
        min-height: 240px;
    }
}