* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark: #111111;
    --pink: #ff3d7f;
    --white: #ffffff;
    --text: #111111;
    --gray: #666666;
    --surface: #f8f8f8;
    --border: rgba(17, 17, 17, 0.08);
    --shadow-soft: 0 18px 45px rgba(17, 17, 17, 0.08);
    --transition: 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    background: #dcdcdc;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

h1,
h2,
h3 {
    font-family: 'Inter', sans-serif;
}

.bg-blur-text {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 220px;
    font-weight: 900;
    color: #000;
    opacity: 0.12;
    filter: blur(8px);
    letter-spacing: 0;
    z-index: 0;
    user-select: none;
}

.hero-wrapper {
    width: 92%;
    min-height: 88vh;
    background: rgba(255, 255, 255, 0.88);
    margin: 45px auto;
    border-radius: 34px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.navbar {
    width: 100%;
    padding: 28px 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.logo img {
    width: 130px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 45px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--pink);
}

.nav-links a[aria-current="page"] {
    color: var(--pink);
}

.contact-btn {
    text-decoration: none;
    color: #fff;
    background: var(--dark);
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    transition: 0.35s;
}

.contact-btn:hover {
    background: var(--pink);
    transform: translateY(-3px);
}

.contact-btn[aria-current="page"] {
    background: var(--pink);
}



.hero-content {
    width: 100%;
    padding: 40px 70px 0;
    position: relative;
}

.hero-top-text {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 420px;
    margin-left: auto;
    margin-right: 120px;
}

.line {
    width: 18px;
    height: 18px;
    border-left: 4px solid var(--dark);
    border-right: 4px solid var(--dark);
    margin-top: 5px;
}

.hero-top-text p {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
}

.main-heading {
    margin-top: 41px;
    position: relative;
    z-index: 2;
}

.main-heading h1 {
    font-size: 8vw;
    line-height: 1.1;
    color: #111;
    font-weight: 900;
    letter-spacing: 0;
}

.main-heading h2 {
    font-size: 7vw;
    line-height: 0.95;
    font-weight: 900;
    color: #dcdcdc;
    letter-spacing: 0;
}

.location-text {
    margin-top: 25px;
    font-size: 24px;
    color: #555;
}

.cta-buttons {
    margin-top: 45px;
    display: flex;
    gap: 20px;
}

.primary-btn,
.secondary-btn {
    text-decoration: none;
    padding: 18px 34px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.35s;
}

.primary-btn {
    background: var(--dark);
    color: white;
}

.primary-btn:hover {
    background: var(--pink);
    transform: translateY(-4px);
}

.secondary-btn {
    border: 1px solid #b9b9b9;
    color: #111;
    background: white;
}

.secondary-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
    transform: translateY(-4px);
}

.hero-image {
    position: absolute;
    right: 23px;
    bottom: 0;
    width: 430px;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    object-fit: contain;
    filter: grayscale(100%);

    -webkit-mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 52%,
            rgba(0, 0, 0, 0.98) 68%,
            rgba(0, 0, 0, 0.75) 82%,
            rgba(0, 0, 0, 0.25) 94%,
            transparent 100%);

    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 52%,
            rgba(0, 0, 0, 0.98) 68%,
            rgba(0, 0, 0, 0.75) 82%,
            rgba(0, 0, 0, 0.25) 94%,
            transparent 106%);
}

.brands {
    width: 100%;
    display: flex;
    gap: 40px;
    margin-top: 70px;
    padding-bottom: 40px;
    flex-wrap: wrap;
}

.brands span {
    font-size: 15px;
    color: #6d6d6d;
    position: relative;
}

.brands span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #c7c7c7;
    left: 0;
    bottom: -8px;
}


.hero-wrapper::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 380px;
    height: 380px;
    background: rgba(227, 59, 116, 0.08);
    border-radius: 50%;
    filter: blur(50px);
}

.hero-wrapper::after {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(15, 49, 59, 0.08);
    border-radius: 50%;
    filter: blur(70px);
}


/* ============================= */
/* PREMIUM MOBILE VERSION */
/* ============================= */

@media(max-width:991px) {

    body {
        overflow-x: hidden;
        background: #d9d9d9;
    }

    .hero-wrapper {
        width: 94%;
        min-height: auto;
        margin: 18px auto;
        border-radius: 28px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.82);
        backdrop-filter: blur(20px);

        box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.7);

        position: relative;
    }


    /* NAVBAR */

    .navbar {
        padding: 24px 24px;
        position: relative;
        z-index: 20;
    }

    .logo img {
        width: 110px;
    }

    .nav-links,
    .contact-btn {
        display: none;
    }




    /* HERO CONTENT */

    .hero-content {
        width: 100%;
        padding: 0 24px 35px;
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 5;
    }



    /* TOP TEXT */

    .hero-top-text {
        margin: 0;
        max-width: 100%;
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }

    .line {
        width: 16px;
        height: 16px;
        border-left: 3px solid var(--dark);
        border-right: 3px solid var(--dark);
        margin-top: 4px;
    }

    .hero-top-text p {
        font-size: 14px;
        line-height: 1.6;
        color: #5e5e5e;
    }



    /* MAIN HEADING */

    .main-heading {
        margin-top: 28px;
        position: relative;
        z-index: 5;
    }

    .main-heading h1 {
        font-size: 15vw;
        line-height: 16vw;
        letter-spacing: 0;
        font-weight: 900;
        color: #0f0f0f;
    }

    .main-heading h2 {
        padding-top: 11px;
        font-size: 13vw;
        line-height: 1;
        letter-spacing: 0;
        font-weight: 900;
        color: #b3b3b3;
    }



    /* LOCATION */

    .location-text {
        margin-top: 20px;
        font-size: 16px;
        color: #575757;
    }



    /* PREMIUM IMAGE SECTION */

    .hero-image {
        position: relative;
        width: 114%;
        display: flex;
        justify-content: center;
        align-items: flex-end;

        margin-top: 8px;
        margin-bottom: -57px;

        order: 4;
        z-index: 2;

        overflow: hidden;
    }



    /* IMAGE */

    .hero-image img {
        margin-left: auto;
        margin-right: auto;
        width: 108%;
        max-width: 416px;

        object-fit: contain;



        position: relative;
        z-index: 2;


        /* PREMIUM MASK FADE */

        -webkit-mask-image: linear-gradient(to bottom,
                rgba(0, 0, 0, 1) 52%,
                rgba(0, 0, 0, 0.98) 68%,
                rgba(0, 0, 0, 0.75) 82%,
                rgba(0, 0, 0, 0.25) 94%,
                transparent 100%);

        mask-image: linear-gradient(to bottom,
                rgba(0, 0, 0, 1) 52%,
                rgba(0, 0, 0, 0.98) 68%,
                rgba(0, 0, 0, 0.75) 82%,
                rgba(0, 0, 0, 0.25) 94%,
                transparent 106%);
    }



    /* PREMIUM GLOW */

    .hero-image::before {
        content: '';

        position: absolute;

        width: 340px;
        height: 340px;

        background:
            radial-gradient(circle,
                rgba(15, 49, 59, 0.12) 0%,
                rgba(227, 59, 116, 0.06) 45%,
                transparent 75%);

        border-radius: 50%;

        bottom: 10px;

        filter: blur(70px);

        z-index: 1;
    }



    /* SOFT LIGHT FADE */

    .hero-image::after {
        content: '';

        position: absolute;

        left: 0;
        bottom: 0;

        width: 100%;
        height: 160px;

        background: linear-gradient(to top,
                rgba(255, 255, 255, 0.95),
                rgba(255, 255, 255, 0));

        z-index: 3;

        pointer-events: none;
    }



    /* BUTTONS */

    .cta-buttons {

        order: 5;

        display: flex;
        flex-direction: column;

        gap: 16px;

        width: 100%;

        margin-top: 0;

        position: relative;
        z-index: 10;
    }

    .primary-btn,
    .secondary-btn {

        width: 100%;

        text-align: center;

        padding: 18px 20px;

        border-radius: 18px;

        font-size: 17px;

        font-weight: 700;

        transition: 0.35s;
    }

    .primary-btn {
        background: var(--dark);
        color: white;
    }

    .primary-btn:hover {
        background: var(--pink);
        transform: translateY(-4px);
    }

    .secondary-btn {
        background: transparent;
        border: 1px solid #bbbbbb;
        color: #111;
    }



    /* BRANDS */

    .brands {
        order: 6;

        display: flex;
        flex-wrap: wrap;

        gap: 18px;

        margin-top: 32px;

        padding-bottom: 10px;
    }

    .brands span {
        font-size: 14px;
        color: #707070;
    }

    .brands span::after {
        bottom: -6px;
    }



    /* BACKGROUND BLUR TEXT */

    .bg-blur-text {

        font-size: 78px;

        top: 120px;

        left: 50%;

        transform: translateX(-50%);

        opacity: 0.10;

        filter: blur(6px);

        letter-spacing: 0;

        white-space: nowrap;
    }



    /* FLOATING LIGHTS */

    .hero-wrapper::before {
        content: '';

        position: absolute;

        width: 260px;
        height: 260px;

        background:
            radial-gradient(circle,
                rgba(227, 59, 116, 0.10),
                transparent 70%);

        top: -100px;
        right: -100px;

        filter: blur(60px);
    }

    .hero-wrapper::after {
        content: '';

        position: absolute;

        width: 300px;
        height: 300px;

        background:
            radial-gradient(circle,
                rgba(15, 49, 59, 0.10),
                transparent 70%);

        left: -140px;
        bottom: -140px;

        filter: blur(70px);
    }

}


/* ========================= */
/* MOBILE MENU */
/* ========================= */

.menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.7);

    backdrop-filter: blur(10px);

    justify-content: center;
    align-items: center;

    flex-direction: column;

    gap: 18px;

    cursor: pointer;

    z-index: 9999;

    transition: 0.3s;
}

.menu-btn span {
    width: 18px;
    height: 2px;
    background: #111;
    border-radius: 20px;

    transition: 0.35s;
}


/* ACTIVE ANIMATION */

.menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar {
    width: 100%;
    padding: 24px 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 99999;
    border: 1px solid transparent;
    box-shadow: none;

    transition:
        background-color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        border-radius 0.35s ease,
        padding 0.35s ease,
        top 0.35s ease,
        width 0.35s ease,
        transform 0.35s ease;
}


/* LOGO */

.logo img {
    width: 120px;
    display: block;
}


/* DESKTOP NAV */

.nav-links {
    display: flex;
    align-items: center;
    gap: 42px;

    list-style: none;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    text-decoration: none;

    color: #111;

    font-size: 15px;
    font-weight: 500;

    position: relative;
    padding: 8px 0;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    border-radius: 50px;
    background: var(--pink);
    transform: scaleX(0);
    transform-origin: right;
    transition:
        transform 0.3s ease,
        transform-origin 0s linear 0.3s;
}

.nav-links a:hover {
    color: var(--pink);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
    transition:
        transform 0.3s ease,
        transform-origin 0s;
}

.nav-links a[aria-current="page"] {
    color: var(--pink);
}


/* CONTACT BUTTON */

.contact-btn {
    text-decoration: none;

    background: var(--dark);
    color: #fff;

    padding: 14px 24px;

    border-radius: 14px;

    font-size: 14px;
    font-weight: 600;

    box-shadow: 0 12px 24px rgba(15, 49, 59, 0.18);

    transition:
        background-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.contact-btn:hover {
    background: var(--pink);
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(227, 59, 116, 0.24);
}



/* ========================= */
/* HAMBURGER */
/* ========================= */

.menu-btn {

    display: none;

    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.55);

    backdrop-filter: blur(14px);

    justify-content: center;
    align-items: center;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;
    font: inherit;

    position: relative;

    z-index: 999999;

    transition: 0.3s;
}

.menu-btn span {

    width: 20px;
    height: 2px;

    background: #111;

    border-radius: 50px;

    transition: 0.35s ease;
}



/* ACTIVE ICON */

.menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}



/* ========================= */
/* FIX CLICK ISSUE */
/* ========================= */

.bg-blur-text,
.hero-wrapper::before,
.hero-wrapper::after {
    pointer-events: none;
}

.navbar {
    will-change: transform;
}

.navbar-sticky-placeholder {
    display: none;
    width: 100%;
}

.navbar-sticky-placeholder.is-active {
    display: block;
}

.navbar.is-sticky {
    position: fixed;
    top: 16px;
    left: 50%;
    width: min(92%, calc(100% - 32px));
    transform: translate3d(-50%, 0, 0);
    padding: 16px 32px;
    border-radius: 22px;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.86);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    backdrop-filter: blur(20px);
    box-shadow:
        0 18px 45px rgba(15, 49, 59, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
    animation: navStickyIn 0.42s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes navStickyIn {
    from {
        opacity: 0.92;
        transform: translate3d(-50%, -12px, 0) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translate3d(-50%, 0, 0) scale(1);
    }
}



/* ========================= */
/* MOBILE VERSION */
/* ========================= */

@media(max-width:991px) {

    .menu-btn {
        display: flex;
    }

    .contact-btn {
        display: none;
    }

    .nav-links {

        position: absolute;

        top: 86px;
        left: 18px;

        width: calc(100% - 36px);

        padding: 30px;

        border-radius: 28px;

        background: rgba(255, 255, 255, 0.78);

        backdrop-filter: blur(20px);

        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.08);

        display: flex;
        flex-direction: column;

        align-items: flex-start;

        gap: 24px;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-20px);

        transition: 0.4s ease;

        z-index: 9999;
    }

    .nav-links.active {

        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .nav-links a {

        font-size: 18px;
        font-weight: 600;

        color: #111;
    }

    .nav-links a:hover {
        color: var(--pink);
    }

    .navbar.is-sticky {
        top: 10px;
        width: calc(100% - 24px);
        padding: 14px 18px;
        border-radius: 22px;
    }

    .navbar.is-sticky .nav-links {
        top: 72px;
    }
}

/* GLOBAL SECTION SYSTEM */


/* SECTION TAG */

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.section-tag::before {
    content: '';
    width: 32px;
    height: 11px;
    background: var(--pink);
}

/* ABOUT SECTION */

.about-section {
    width: 100%;
    padding: 140px 7%;
    position: relative;
    overflow: hidden;
}

.about-container {
    padding-top: 72px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 102px;
    position: relative;
    z-index: 2;
}

/* LEFT */

.about-left h2 {
    font-size: 5vw;
    line-height: 0.95;
    letter-spacing: 0;
    font-weight: 900;
    color: #111;
    max-width: 650px;
}

/* RIGHT */

.about-right {
    padding-top: -1px;
}

.about-description {
    font-size: 20px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 28px;
}

.second-text {
    color: #777;
}

/* STATS */

.about-stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 60px;
}

.stat-box {
    flex: 1;
}

.stat-box h3 {
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
    color: var(--dark);
    margin-bottom: 10px;
}

.stat-box span {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}


/* MOBILE */

@media(max-width:991px) {


    .section-tag {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .about-section {
        padding: 90px 24px;
    }

    .about-container {
        padding-top: 60px;
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-left h2 {
        font-size: 15vw;
        line-height: 0.9;
        letter-spacing: 0;
    }

    .about-right {
        padding-top: 0;
    }

    .about-description {
        font-size: 17px;
        line-height: 1.9;
    }

    .about-stats {
        gap: 18px;
        margin-top: 50px;
    }

    .stat-box h3 {
        font-size: 11vw;
    }

    .stat-box span {
        font-size: 13px;
        line-height: 1.5;
    }

}


/* ========================= */
/* TRUST STRIP */
/* ========================= */

.trust-strip {

    width: 100%;

    padding: 35px 0;

    position: relative;

    overflow: hidden;
}



/* TOP BORDER */

.trust-strip::before {

    content: '';

    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 86%;
    height: 1px;

    background:
        linear-gradient(to right,
            transparent,
            rgba(0, 0, 0, 0.08),
            transparent);
}



/* CONTAINER */

.trust-container {

    width: 100%;

    display: flex;

    align-items: center;

    gap: 50px;
}



/* LABEL */

.trust-label {

    min-width: max-content;

    padding-left: 7%;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    color: #666;

    position: relative;
}

.trust-label::before {

    content: '';

    position: absolute;

    left: 5.2%;
    top: 50%;

    transform: translateY(-50%);

    width: 8px;
    height: 8px;

    background: var(--pink);

    border-radius: 50%;
}



/* MARQUEE */

.trust-marquee {

    width: 100%;

    overflow: hidden;

    position: relative;
}



/* TRACK */

.marquee-track {

    display: flex;

    align-items: center;

    gap: 90px;

    width: max-content;

    animation: scrollLeft 20s linear infinite;
}



/* ITEMS */

.marquee-track span {

    font-size: 20px;

    font-weight: 700;

    letter-spacing: 0;

    color: #1a1a1a;

    opacity: 0.75;

    transition: 0.3s;

    white-space: nowrap;
}

.marquee-track span:hover {

    color: var(--pink);

    opacity: 1;
}



/* ANIMATION */

@keyframes scrollLeft {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:991px) {

    .trust-strip {

        padding: 26px 0;
        padding-left: 10px;
        padding-right: 10px;
    }

    .trust-container {

        flex-direction: column;

        align-items: flex-start;

        gap: 26px;
    }

    .trust-label {

        padding-left: 25px;

        font-size: 13px;
    }

    .trust-label::before {

        left: 0;
    }

    .marquee-track {

        gap: 50px;
    }

    .marquee-track span {

        font-size: 16px;
    }
}

/* SERVICES SECTION */

.services-section {
    width: 100%;
    padding: 140px 7%;
    position: relative;
    overflow: hidden;
}

.services-container {
    width: 100%;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    position: relative;
    z-index: 2;
}

/* LEFT */

.services-left {
    position: sticky;
    top: 120px;
    height: max-content;
}

.services-left h2 {
    font-size: 5vw;
    line-height: 0.95;
    letter-spacing: 0;
    font-weight: 900;
    color: #111;
    margin-bottom: 28px;
}

.services-left p {
    font-size: 19px;
    line-height: 1.9;
    color: #666;
    max-width: 520px;
}

/* RIGHT */

.services-right {
    padding-top: 33px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* CARD */

.service-card {
    position: relative;
    display: flex;
    gap: 30px;
    padding: 40px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    transition: 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(227, 59, 116, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* NUMBER */

.service-number {
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
    color: #d8d8d8;
    min-width: 90px;
    transition: 0.4s;
}

.service-card:hover .service-number {
    color: var(--pink);
}

/* CONTENT */

.service-content h3 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0;
    color: #111;
    margin-bottom: 14px;
}

.service-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    max-width: 520px;
}

/* MOBILE */

@media(max-width:991px) {

    .services-section {
        padding: 90px 24px;
    }

    .services-container {
        padding-top: 60px;
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-left {
        position: relative;
        top: auto;
    }

    .services-left h2 {
        font-size: 14vw;
        line-height: 0.9;
        letter-spacing: 0;
    }

    .services-left p {
        font-size: 17px;
    }

    .service-card {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    .service-number {
        font-size: 46px;
        min-width: auto;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-content p {
        font-size: 16px;
    }

}

/* DESIGN SERVICES EXPERIENCE */

.design-experience {
    width: 100%;
    padding: 130px 7%;
    background: #f8f6ef;
    color: #111;
    overflow: hidden;
    position: relative;
}

.design-hero-panel {
    max-width: 1280px;
    margin: 0 auto;
}

.design-hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 70px;
    align-items: center;
    margin-top: 34px;
}

.design-hero-copy h2 {
    max-width: 780px;
    font-size: 76px;
    line-height: .95;
    letter-spacing: 0;
    font-weight: 900;
    color: #111;
}

.design-hero-copy p {
    max-width: 610px;
    margin-top: 28px;
    font-size: 19px;
    line-height: 1.8;
    color: #5e5b55;
}

.design-hero-visual {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.browser-frame {
    width: min(100%, 520px);
    border: 1px solid rgba(17, 17, 17, .12);
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 30px 70px rgba(17, 17, 17, .16);
    transform: rotate(-2deg);
}

.browser-top {
    height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    background: #222;
}

.browser-top span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e4e0d6;
}

.browser-top span:nth-child(2) {
    background: #f0a33d;
}

.browser-top span:nth-child(3) {
    background: #ff3d7f;
}

.browser-screen {
    min-height: 320px;
    padding: 30px;
    background:
        linear-gradient(135deg, #fff 0%, #f2efe7 100%);
}

.screen-nav {
    width: 100%;
    height: 12px;
    border-radius: 8px;
    background: #111;
    opacity: .12;
    margin-bottom: 54px;
}

.screen-title {
    width: 78%;
    height: 30px;
    border-radius: 8px;
    background: #111;
    margin-bottom: 12px;
}

.screen-title.short {
    width: 52%;
    background: #ff3d7f;
}

.screen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 60px;
}

.screen-grid span {
    min-height: 72px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, .08);
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 138px;
    height: 62px;
    border-radius: 8px;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 20px 46px rgba(17, 17, 17, .14);
}

.brand-card {
    left: 0;
    top: 56px;
    transform: rotate(5deg);
}

.ux-card {
    right: 0;
    bottom: 66px;
    color: #fff;
    background: var(--dark);
    transform: rotate(-5deg);
}

.service-marquee {
    width: 100vw;
    margin: 120px 0 100px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    transform: rotate(-2deg);
}

.service-marquee-track {
    display: flex;
    width: max-content;
    animation: serviceMarquee 24s linear infinite;
}

.service-marquee span {
    flex: 0 0 auto;
    margin-right: 28px;
    font-size: 64px;
    line-height: 1;
    font-weight: 900;
    color: #111;
    white-space: nowrap;
}

.service-marquee span:nth-child(odd) {
    -webkit-text-stroke: 1px rgba(17, 17, 17, .7);
    color: transparent;
}

@keyframes serviceMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.design-service-row {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 0;
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) minmax(300px, 440px);
    gap: 54px;
    align-items: center;
    border-top: 1px solid rgba(17, 17, 17, .12);
}

.design-service-number {
    align-self: start;
    font-size: 18px;
    font-weight: 900;
    color: #ff3d7f;
}

.service-eyebrow {
    display: block;
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #f0a33d;
}

.design-service-content h3 {
    max-width: 720px;
    font-size: 52px;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 900;
    color: #111;
}

.design-service-content p {
    max-width: 590px;
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.85;
    color: #5f5b54;
}

.website-checklist {
    display: grid;
    gap: 12px;
}

.website-checklist span {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 22px;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.website-checklist span:nth-child(even) {
    background: var(--dark);
}

.brand-system-board,
.webdesign-wireframes,
.visual-stack {
    min-height: 340px;
    position: relative;
}

.brand-system-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 92px 1fr;
    gap: 12px;
}

.brand-chip {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-chip {
    color: #fff;
    background: #111;
    font-size: 34px;
    font-weight: 900;
}

.pink-chip {
    background: var(--pink);
}

.teal-chip {
    background: var(--dark);
}

.brand-poster {
    grid-column: 1 / -1;
    border-radius: 8px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, .1);
    box-shadow: 0 26px 60px rgba(17, 17, 17, .1);
}

.brand-poster strong {
    display: block;
    font-size: 32px;
    line-height: 1;
    color: #111;
}

.brand-poster small {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.6;
    color: #6b665d;
}

.webdesign-wireframes {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wireframe {
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, .12);
    box-shadow: 0 26px 60px rgba(17, 17, 17, .1);
    padding: 20px;
}

.desktop-wire {
    width: 330px;
    height: 230px;
}

.mobile-wire {
    width: 116px;
    height: 214px;
    margin-left: -54px;
    margin-top: 80px;
    background: #111;
    transform: rotate(5deg);
}

.wireframe span {
    display: block;
    height: 20px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: #111;
    opacity: .12;
}

.wireframe span:nth-child(2) {
    width: 70%;
    opacity: .22;
}

.wireframe span:nth-child(3) {
    height: 86px;
    width: 100%;
    opacity: .08;
}

.mobile-wire span {
    background: #fff;
}

.visual-stack {
    display: flex;
    align-items: center;
    justify-content: center;
}

.poster-card {
    position: absolute;
    width: 210px;
    height: 292px;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 22px;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    box-shadow: 0 24px 54px rgba(17, 17, 17, .14);
}

.poster-one {
    background: #111;
    color: #fff;
    transform: translateX(-70px) rotate(-8deg);
}

.poster-two {
    background: #fff;
    color: #111;
    border: 1px solid rgba(17, 17, 17, .1);
    transform: translateX(12px) rotate(2deg);
}

.poster-three {
    background: var(--pink);
    color: #fff;
    transform: translateX(88px) rotate(8deg);
}





/* Faq section */



.dm-faq-section {
    align-content: center;
    width: 100%;
    padding: 130px 7%;
    background: #101114;
    color: #fff;
}

.dm-faq-head {
    align-content: center;
    max-width: 920px;
    margin-bottom: 70px;
}

.dm-faq-head h2 {
    margin-top: 28px;
    font-size: 72px;
    line-height: .95;
    letter-spacing: 0;
    font-weight: 900;
}

.dm-faq-head p {
    max-width: 620px;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .68);
}

.dm-faq-list {
    max-width: 1120px;
    margin-left: auto;
}

.dm-faq-list details {
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.dm-faq-list details:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.dm-faq-list summary {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    list-style: none;
    cursor: pointer;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 800;
    color: #fff;
}

.dm-faq-list summary::-webkit-details-marker {
    display: none;
}

.dm-faq-list summary::after {
    content: "+";
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #111;
    font-size: 26px;
    line-height: 1;
}

.dm-faq-list details[open] summary::after {
    content: "-";
    background: var(--pink);
    color: #fff;
}

.dm-faq-list p {
    max-width: 760px;
    padding: 0 84px 34px 0;
    font-size: 17px;
    line-height: 1.85;
    color: rgba(255, 255, 255, .68);
}

@media(max-width:991px) {

    .design-experience {
        padding: 90px 24px;
    }

    .design-hero-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .design-hero-copy h2 {
        font-size: 44px;
        line-height: 1;
    }

    .design-hero-copy p {
        font-size: 16px;
    }

    .design-hero-visual {
        min-height: 340px;
    }

    .floating-card {
        min-width: 118px;
        height: 54px;
    }

    .service-marquee {
        margin: 78px 0 58px;
    }

    .service-marquee span {
        font-size: 42px;
    }

    .design-service-row {
        padding: 58px 0;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .design-service-content h3 {
        font-size: 36px;
    }

    .design-service-content p {
        font-size: 16px;
    }

    .website-checklist {
        grid-template-columns: 1fr;
    }

    .brand-system-board,
    .webdesign-wireframes,
    .visual-stack {
        min-height: 280px;
    }

    .poster-card {
        width: 160px;
        height: 230px;
        font-size: 22px;
    }

    .poster-one {
        transform: translateX(-48px) rotate(-7deg);
    }

    .poster-three {
        transform: translateX(58px) rotate(7deg);
    }

    .dm-faq-section {
        padding: 90px 24px;
    }

    .dm-faq-head {
        margin-bottom: 42px;
    }

    .dm-faq-head h2 {
        font-size: 42px;
        line-height: 1;
    }

    .dm-faq-head p {
        font-size: 16px;
    }

    .dm-faq-list summary {
        min-height: 76px;
        font-size: 20px;
        gap: 18px;
    }

    .dm-faq-list summary::after {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 24px;
    }

    .dm-faq-list p {
        padding: 0 0 28px;
        font-size: 15px;
    }

}

@media(max-width:560px) {

    .design-hero-copy h2 {
        font-size: 38px;
    }

    .browser-screen {
        min-height: 250px;
        padding: 22px;
    }

    .screen-grid {
        margin-top: 42px;
    }

    .brand-card {
        left: 4px;
        top: 22px;
    }

    .ux-card {
        right: 2px;
        bottom: 34px;
    }

    .desktop-wire {
        width: 250px;
        height: 196px;
    }

    .mobile-wire {
        width: 92px;
        height: 178px;
        margin-left: -42px;
    }

    .poster-card {
        width: 140px;
        height: 202px;
    }

    .dm-faq-list summary {
        font-size: 18px;
    }

}



.choose-section {
    width: 100%;
    padding: 140px 7%;
    position: relative;
    overflow: hidden;
}

.choose-container {
    width: 100%;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    position: relative;
    z-index: 2;
}

/* LEFT */

.choose-left {
    position: sticky;
    top: 114px;
    height: max-content;
}

.choose-left h2 {
    font-size: 5vw;
    line-height: 0.95;
    letter-spacing: 0;
    font-weight: 900;
    color: #111;
    margin-bottom: 28px;
}

.choose-left p {
    font-size: 19px;
    line-height: 1.9;
    color: #666;
    max-width: 500px;
}

/* RIGHT */

.choose-right {
    padding-top: 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

/* FEATURE CARD */

.feature-card {
    position: relative;
    padding: 38px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: 0.4s ease;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(227, 59, 116, 0.10), transparent 70%);
    top: -120px;
    right: -120px;
    opacity: 0;
    transition: 0.5s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(227, 59, 116, 0.14);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* CARD SIZES */

.large-card {
    grid-column: span 2;
}

.medium-card {
    margin-top: -50px;
}

.offset-card {
    margin-top: 70px;
}

/* CONTENT */

.feature-card h3 {
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: 0;
    font-weight: 800;
    color: #111;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
}

/* MOBILE */

@media(max-width:991px) {

    .choose-section {
        padding: 90px 24px;
    }

    .choose-container {
        padding-top: 59px;
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .choose-left {
        position: relative;
        top: auto;
    }

    .choose-left h2 {
        font-size: 14vw;
        line-height: 0.9;
        letter-spacing: 0;
    }

    .choose-left p {
        font-size: 17px;
    }

    .choose-right {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .large-card,
    .medium-card,
    .offset-card {
        grid-column: auto;
        margin-top: 0;
    }

    .feature-card {
        padding: 30px;
        border-radius: 24px;
    }

    .feature-card h3 {
        font-size: 24px;
    }

    .feature-card p {
        font-size: 16px;
        line-height: 1.8;
    }

}

/* TESTIMONIAL SECTION */

.testimonial-section {
    width: 100%;
    padding: 140px 7%;
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    position: relative;
    z-index: 2;
}

/* WRAPPER */

.testimonial-wrapper {
    position: relative;
    margin-top: 70px;
    min-height: 320px;
    padding-left: 120px;
}

/* QUOTE */

.testimonial-quote {
    position: absolute;
    top: -30px;
    left: 0;
    font-size: 180px;
    line-height: 1;
    font-weight: 900;
    color: rgba(227, 59, 116, 0.08);
    user-select: none;
    pointer-events: none;
}

/* CONTENT */

.testimonial-content {
    position: absolute;
    top: 0;
    left: 120px;
    width: calc(100% - 120px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.5s ease;
}

.testimonial-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* TEXT */

.testimonial-content h2 {
    font-size: 2.5vw;
    line-height: 1.4;
    letter-spacing: 0;
    font-weight: 700;
    color: #111;
    max-width: 980px;
    margin-bottom: 50px;
}

/* CLIENT */

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-image {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info h3 {
    font-size: 19px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.client-info p {
    font-size: 15px;
    color: #777;
}

/* CONTROLS */

.testimonial-controls {
    margin-top: 59px;
    padding-left: 114px;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* BUTTON */

.testimonial-btn {
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 103%;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    font-size: 20px;
    color: #111;
    cursor: pointer;
    transition: 0.4s ease;
}

.testimonial-btn:hover {
    background: var(--pink);
    color: #fff;
    transform: translateY(-4px);
}

/* PROGRESS */

.testimonial-progress {
    width: 180px;
    height: 2px;
    background: rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.testimonial-progress span {
    position: absolute;
    top: 0;
    left: 0;
    width: 33.33%;
    height: 100%;
    background: var(--pink);
    transition: 0.5s ease;
}

/* MOBILE */

@media(max-width:991px) {

    .testimonial-section {
        padding: 90px 24px;
    }

    .testimonial-wrapper {
        padding-left: 0;
        margin-top: 50px;
        min-height: 360px;
    }

    .testimonial-quote {
        font-size: 100px;
        top: -10px;
    }

    .testimonial-content {
        left: 0;
        width: 100%;
    }

    .testimonial-content h2 {
        font-size: 7vw;
        line-height: 1.5;
        letter-spacing: 0;
        margin-bottom: 40px;
    }

    .client-image {
        width: 52px;
        height: 52px;
    }

    .client-info h3 {
        font-size: 17px;
    }

    .client-info p {
        font-size: 14px;
    }

    .testimonial-controls {
        padding-top: 125px;
        padding-left: 62px;
        padding-right: 62px;
        margin-top: 28px;
        gap: 19px;
    }

    .testimonial-btn {

        width: 52px;
        height: 52px;
    }

    .testimonial-progress {
        width: 120px;
    }

}



/* CTA SECTION */

.cta-section {
    width: 100%;
    padding: 160px 7%;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

/* GLOW */

.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(227, 59, 116, 0.18), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

/* CONTAINER */

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}

/* LIGHT TAG */

.light-tag {
    color: rgba(255, 255, 255, 0.7);
}

.light-tag::before {
    background: var(--pink);
}

/* HEADING */

.cta-container h2 {
    font-size: 7vw;
    line-height: 0.92;
    letter-spacing: 0;
    font-weight: 900;
    color: #fff;
    max-width: 900px;
    margin-bottom: 30px;
}

/* TEXT */

.cta-container p {
    font-size: 20px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin-bottom: 50px;
}

/* BUTTONS */

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 70px;
}

/* PRIMARY BUTTON */

.cta-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 34px;
    border-radius: 18px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.4s ease;
}

.cta-primary-btn:hover {
    transform: translateY(-4px);
    background: var(--pink);
    color: #fff;
}

/* SECONDARY BUTTON */

.cta-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 34px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s ease;
}

.cta-secondary-btn:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* BOTTOM */

.cta-bottom {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* DOT */

.cta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink);
}

/* MOBILE */

@media(max-width:991px) {

    .cta-section {
        padding: 100px 24px;
    }

    .cta-container h2 {
        font-size: 16vw;
        line-height: 0.9;
        letter-spacing: 0;
        margin-bottom: 24px;
    }

    .cta-container p {
        font-size: 17px;
        line-height: 1.9;
        margin-bottom: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-bottom: 50px;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 20px;
        border-radius: 16px;
    }

    .cta-bottom {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 12px;
    }

}

/* LINE ART */

/* LINE ART PNG */

.cta-line-art {
    position: absolute;
    right: 37px;
    top: 48%;
    transform: translateY(-46%);
    width: 634px;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.cta-line-art img {
    width: 108%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* MOBILE */

@media(max-width:991px) {

    .cta-line-art {
        right: 50%;
        top: 50%;
        transform: translate(50%, -50%);
        width: 120%;
        opacity: 0.04;
    }

}

/* FOOTER */

.footer {
    width: 100%;
    padding: 90px 7% 40px;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* TOP */

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* LOGO */

.footer-logo {
    max-width: 420px;
}

.footer-logo img {
    width: 140px;
    margin-bottom: 24px;
}

.footer-logo p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
}

/* LINKS */

.footer-links {
    display: flex;
    gap: 90px;
}

/* COLUMN */

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 22px;
}

.footer-column a {
    text-decoration: none;
    color: #666;
    font-size: 15px;
    margin-bottom: 14px;
    transition: 0.3s ease;
}

.footer-column a:hover {
    color: var(--pink);
}

/* BOTTOM */

.footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p,
.footer-bottom span {
    font-size: 14px;
    color: #777;
}

/* MOBILE */

@media(max-width:991px) {

    .footer {
        padding: 70px 24px 30px;
    }

    .footer-top {
        flex-direction: column;
        gap: 50px;
        padding-bottom: 50px;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }

    .footer-logo img {
        width: 120px;
    }

    .footer-logo p {
        font-size: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 24px;
    }

    .footer-bottom p,
    .footer-bottom span {
        font-size: 13px;
    }

}

/* PORTFOLIO HERO */

.portfolio-hero {
    width: 100%;
    min-height: 100vh;
    padding: 190px 7% 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* CONTAINER */

.portfolio-container {
    width: 100%;
    max-width: 1600px;
    position: relative;
    z-index: 2;
}

/* MINI TEXT */

.portfolio-mini-text {
    display: block;
    font-size: 13px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #d88b17;
    margin-bottom: 40px;
    font-weight: 600;
}

/* HEADING */

.portfolio-container h1 {
    font-size: 6vw;
    line-height: 0.9;
    letter-spacing: 0;
    font-weight: 900;
    color: #111;
    max-width: 1500px;
    margin: 0 auto 45px;
}

/* BUTTON */

.portfolio-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 34px;
    border: 2px solid #111;
    border-radius: 14px;
    color: #111;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: 0.4s ease;
}

.portfolio-hero-btn:hover {
    background: #111;
    color: #fff;
    transform: translateY(-4px);
}

/* MARQUEE */

.portfolio-marquee {
    width: 100%;
    overflow: hidden;
    margin-top: 110px;
    position: relative;
}

/* TRACK */

.marquee-track {
    display: flex;
    align-items: center;
    gap: 110px;
    width: max-content;
    animation: marqueeMove 24s linear infinite;
}

/* LOGOS */

.marquee-track img {
    height: 54px;
    width: auto;
    opacity: 0.35;
    transition: 0.4s ease;
    filter: grayscale(100%);
}

.marquee-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ANIMATION */

@keyframes marqueeMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

/* MOBILE */

@media(max-width:991px) {

    .portfolio-hero {
        min-height: auto;
        padding: 150px 24px 70px;
    }

    .portfolio-mini-text {
        font-size: 11px;
        letter-spacing: 4px;
        line-height: 1.8;
        margin-bottom: 28px;
    }

    .portfolio-container h1 {
        font-size: 11vw;
        line-height: 0.9;
        letter-spacing: 0;
        margin-bottom: 34px;
    }

    .portfolio-hero-btn {
        width: 100%;
        padding: 17px 20px;
        font-size: 16px;
    }

    .portfolio-marquee {
        margin-top: 70px;
    }

    .marquee-track {
        gap: 60px;
    }

    .marquee-track img {
        height: 36px;
    }

}

/* MOTION SHOWCASE */

.motion-showcase {
    width: 100%;
    padding: 230px 3%;
    overflow: hidden;
    position: relative;
}

/* WRAPPER */

.motion-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 27px;
    transition: 1.2s cubic-bezier(.22, 1, .36, 1);
}

/* CARD */

.motion-card {
    width: 243px;
    height: 376px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;

    transition:
        transform 1.2s cubic-bezier(.22, 1, .36, 1),
        opacity .7s ease;
}

/* IMAGE */

.motion-img {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    transition:
        transform .8s cubic-bezier(.22, 1, .36, 1),
        filter .8s ease;

    /* BLACK & WHITE */

    filter:
        grayscale(100%) brightness(.78);
}

/* ACTIVE */

.motion-card.active {
    z-index: 10;
}

.motion-card.active .motion-img {
    filter:
        grayscale(0%) brightness(1);

    transform: scale(1.05);
}

/* START POSITION */

.card-1 {
    transform: translateY(-180px);
}

.card-2 {
    transform: translateY(-120px);
}

.card-3 {
    transform: translateY(-60px);
}

.card-4 {
    transform: translateY(0px);
}

.card-5 {
    transform: translateY(-60px);
}

.card-6 {
    transform: translateY(-120px);
}

.card-7 {
    transform: translateY(-180px);
}

/* AFTER SCROLL */

.motion-wrapper.active .motion-card {
    transform: translateY(0px);
}

/* HOVER */

.motion-card:hover {
    transform: translateY(-10px) scale(1.05) !important;
    z-index: 15;
}

.motion-card:hover .motion-img {
    filter:
        grayscale(0%) brightness(1);

    transform: scale(1.05);
}

/* OTHER CARDS */

.motion-wrapper:hover .motion-card:not(:hover):not(.active) {
    opacity: .45;
}

/* BLUR */

.motion-wrapper:hover .motion-card:not(:hover):not(.active) .motion-img {
    filter:
        grayscale(100%) brightness(.65) blur(3px);
}

/* MOBILE */

@media(max-width:991px) {

    .motion-showcase {
        padding: 100px 24px;
    }

    .motion-wrapper {
        gap: 12px;
    }

    .motion-card {
        width: 110px;
        height: 210px;
        border-radius: 14px;
    }

    /* MOBILE START */

    .card-1 {
        transform: translateY(-70px);
    }

    .card-2 {
        transform: translateY(-45px);
    }

    .card-3 {
        transform: translateY(-20px);
    }

    .card-4 {
        transform: translateY(0px);
    }

    .card-5 {
        transform: translateY(-20px);
    }

    .card-6 {
        transform: translateY(-45px);
    }

    .card-7 {
        transform: translateY(-70px);
    }

    .motion-wrapper.active .motion-card {
        transform: translateY(0px);
    }

}

/* RECENT PROJECTS */

.recent-projects {
    padding: 140px 0 140px 7%;
    background: #0f1013;
    overflow: hidden;
    position: relative;
}

/* HEAD */

.projects-head {
    max-width: 850px;
    margin-bottom: 80px;
    padding-right: 7%;
}

/* TAG */

.section-tag {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #9b9b9b;

    margin-bottom: 24px;
}

.section-tag span {
    width: 42px;
    height: 1px;
    background: #ff5c7a;
    display: block;
}

/* TITLE */

.projects-title {
    font-size: 72px;
    line-height: .95;
    letter-spacing: 0;
    font-weight: 700;
    color: #fff;
    max-width: 900px;
}

/* GALLERY */

.projects-gallery {
    display: flex;
    align-items: flex-start;
    gap: 24px;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;
    scroll-behavior: smooth;

    padding-right: 7%;
    padding-bottom: 10px;
}

.projects-gallery::-webkit-scrollbar {
    display: none;
}

/* CARD */

.project-card {
    min-width: 340px;
    width: 340px;
    height: 620px;

    border-radius: 28px;
    overflow: hidden;
    position: relative;
    display: block;

    background: #17181d;

    flex-shrink: 0;

    transition:
        transform .35s ease,
        opacity .35s ease;
}

/* KEEP ALL CARDS SAME */

.project-card:nth-child(1),
.project-card:nth-child(2),
.project-card:nth-child(3),
.project-card:nth-child(4),
.project-card:nth-child(5),
.project-card:nth-child(6) {
    transform: none;
}

/* IMAGE */

.project-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    filter:
        grayscale(100%) brightness(.82) contrast(1.04);

    transition:
        transform .45s ease,
        filter .45s ease;
}

/* IMAGE HOVER */

.project-card:hover img {
    transform: scale(1.03);

    filter:
        grayscale(0%) brightness(1) contrast(1);
}

/* OVERLAY */

.project-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .92) 10%,
            rgba(0, 0, 0, .38) 45%,
            rgba(0, 0, 0, .12) 100%);
}

/* CONTENT */

.project-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;

    z-index: 3;
}

/* NUMBER */

/* TITLE */

.project-content h3 {
    font-size: 54px;
    line-height: .92;
    letter-spacing: 0;
    font-weight: 700;
    color: #fff;

    margin: 0;

    transform: translateY(26px);

    transition: transform .35s ease;
}

/* SMALL TEXT */

.project-content p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .72);

    margin-top: 12px;

    opacity: 0;

    transform: translateY(10px);

    transition:
        opacity .35s ease,
        transform .35s ease;
}

/* SHOW TEXT */


/* ARROW */

.project-arrow {
    position: absolute;
    top: 24px;
    right: 24px;

    width: 68px;
    height: 68px;

    border-radius: 50%;

    background: #fff;
    color: #000;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 34px;
    font-weight: 300;

    z-index: 5;

    transition:
        transform .35s ease,
        background .35s ease;
}

/* ARROW HOVER */

.project-card:hover .project-arrow {
    transform: rotate(45deg);
}

/* FADE OTHERS */

.projects-gallery:hover .project-card:not(:hover) {
    opacity: .65;
}

.project-popup {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, .92);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    z-index: 999999;
}

.project-popup.active {
    opacity: 1;
    visibility: visible;
}

.project-popup-img {
    max-width: 88%;
    max-height: 88vh;

    border-radius: 18px;
}

.project-popup-close {
    position: absolute;
    top: 20px;
    right: 30px;

    font-size: 50px;
    color: #fff;

    cursor: pointer;
}

body.project-popup-open {
    overflow: hidden;
}

.project-card {
    cursor: pointer;
}

.project-card:focus-visible {
    outline: 2px solid rgba(255, 255, 255, .9);
    outline-offset: 8px;
}

.project-popup {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(18px, 4vw, 52px);
    background:
        radial-gradient(circle at 50% 15%, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 30%),
        linear-gradient(135deg, rgba(5, 6, 8, .95), rgba(16, 18, 24, .92));
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 999999;
    transition:
        opacity .28s ease,
        visibility .28s ease;
}

.project-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.project-popup-shell {
    position: relative;
    width: min(1180px, 100%);
    max-height: calc(100vh - 36px);
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 18px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .04));
    box-shadow:
        0 36px 100px rgba(0, 0, 0, .62),
        inset 0 1px 0 rgba(255, 255, 255, .16);
    opacity: 0;
    transform: translateY(22px) scale(.96);
    transition:
        opacity .32s ease,
        transform .32s cubic-bezier(.2, .8, .2, 1);
}

.project-popup.active .project-popup-shell {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.project-popup-media {
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 22px;
    background: #08090c;
}

.project-popup-img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: min(72vh, 760px);
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

.project-popup-caption {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 0 8px 8px;
}

.project-popup-kicker {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

.project-popup-title {
    margin: 0;
    font-size: clamp(30px, 4vw, 56px);
    line-height: .95;
    letter-spacing: 0;
    font-weight: 800;
    color: #fff;
}

.project-popup-description {
    max-width: 360px;
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .68);
    text-align: right;
}

.project-popup-close {
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(10, 11, 14, .64);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 1;
    font-weight: 300;
    cursor: pointer;
    z-index: 3;
    backdrop-filter: blur(16px);
    transition:
        transform .24s ease,
        background .24s ease,
        border-color .24s ease;
}

.project-popup-close:hover,
.project-popup-close:focus-visible {
    background: #fff;
    border-color: #fff;
    color: #0b0c10;
    transform: scale(1.04);
    outline: none;
}

@media(max-width:767px) {

    .project-popup {
        padding: 16px;
        align-items: center;
    }

    .project-popup-shell {
        max-height: calc(100vh - 32px);
        gap: 14px;
        padding: 10px;
        border-radius: 22px;
    }

    .project-popup-media {
        border-radius: 17px;
    }

    .project-popup-img {
        max-height: 68vh;
    }

    .project-popup-caption {
        display: block;
        padding: 0 4px 6px;
    }

    .project-popup-title {
        font-size: 30px;
    }

    .project-popup-description {
        max-width: none;
        margin-top: 10px;
        font-size: 14px;
        text-align: left;
    }

    .project-popup-close {
        top: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
        font-size: 28px;
    }

}

@media(prefers-reduced-motion:reduce) {

    .project-popup,
    .project-popup-shell {
        transition: none;
    }

}

/* FULLSCREEN PROJECT POPUP */

.project-popup {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 24px !important;
    background: rgba(0, 0, 0, .7) !important;
    backdrop-filter: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    z-index: 999999 !important;
    box-sizing: border-box;
}

.project-popup.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
}

.project-popup-shell {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    transform: scale(.98);
    transition:
        opacity .25s ease,
        transform .25s ease;
}

.project-popup.active .project-popup-shell {
    opacity: 1;
    transform: scale(1);
}

.project-popup-media {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    border-radius: 0;
    background: transparent;
}

.project-popup-img {
    display: block;
    width: auto;
    height: auto;
    max-width: 94vw;
    max-height: 88vh;
    max-height: 88dvh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .45);
}

.project-popup-caption {
    position: absolute;
    left: 28px;
    bottom: 24px;
    max-width: min(520px, calc(100vw - 56px));
    display: block;
    padding: 0;
    pointer-events: none;
}

.project-popup-kicker {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .55);
}

.project-popup-title {
    margin-top: 6px;
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
}

.project-popup-description {
    max-width: 440px;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255, 255, 255, .72);
    text-align: left;
}

.project-popup-close {
    position: fixed !important;
    top: 24px !important;
    right: 24px !important;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(0, 0, 0, .32);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 1;
    z-index: 1000000;
    cursor: pointer;
}

.project-popup-close:hover,
.project-popup-close:focus-visible {
    background: #fff;
    border-color: #fff;
    color: #000;
    outline: none;
}

@media(max-width:767px) {

    .project-popup {
        padding: 16px !important;
    }

    .project-popup-img {
        max-width: 94vw;
        max-height: 82vh;
        max-height: 82dvh;
        border-radius: 12px;
    }

    .project-popup-caption {
        left: 16px;
        right: 16px;
        bottom: 18px;
        max-width: none;
    }

    .project-popup-title {
        font-size: 28px;
    }

    .project-popup-description {
        font-size: 13px;
    }

    .project-popup-close {
        top: 16px !important;
        right: 16px !important;
        width: 44px;
        height: 44px;
        font-size: 30px;
    }

}

/* CORRECTIONS: KEEP RECENT PROJECTS ORIGINAL, REFINE PORTFOLIO CARDS */

.recent-projects {
    padding: 140px 0 140px 7%;
    background: #0f1013;
    overflow: hidden;
    position: relative;
}

.recent-projects .section-tag {
    color: #9b9b9b;
}

.recent-projects .projects-head {
    max-width: 850px;
    margin-bottom: 80px;
    padding-right: 7%;
}

.recent-projects .projects-title {
    font-size: 72px;
    line-height: .95;
    letter-spacing: 0;
    font-weight: 700;
    color: #fff;
    max-width: 900px;
}

.recent-projects .projects-gallery {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: none;
    padding-right: 7%;
    padding-bottom: 10px;
}

.recent-projects .project-card {
    min-width: 340px;
    width: 340px;
    height: 620px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    display: block;
    background: #17181d;
    box-shadow: none;
    flex-shrink: 0;
    scroll-snap-align: none;
    transition: transform .35s ease, opacity .35s ease;
}

.recent-projects .project-card:nth-child(2),
.recent-projects .project-card:nth-child(4),
.recent-projects .project-card:nth-child(6) {
    margin-top: 0;
}

.recent-projects .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(.82) contrast(1.04);
    transition: transform .45s ease, filter .45s ease;
}

.recent-projects .project-card:hover img {
    transform: scale(1.03);
    filter: grayscale(0%) brightness(1) contrast(1);
}

.recent-projects .project-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, .92) 10%, rgba(0, 0, 0, .38) 45%, rgba(0, 0, 0, .12) 100%);
}

.recent-projects .project-content {
    left: 30px;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.recent-projects .project-content h3 {
    font-size: 54px;
    line-height: .92;
    letter-spacing: 0;
    font-weight: 700;
    transform: translateY(38px);
    transition: transform .4s ease;
}

.recent-projects .project-content p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .72);
    margin-top: 12px;
    opacity: 0;
    transform: translateY(10px);
    max-width: none;
    transition: opacity .35s ease, transform .35s ease;
}

.recent-projects .project-card:hover .project-content h3 {
    transform: translateY(0);
}

.recent-projects .project-card:hover .project-content p {
    opacity: 1;
    transform: translateY(0);
}

.recent-projects .project-arrow {
    top: 14px;
    right: 14px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    border-radius: 50%;
    background: #fff;
    color: #000;
}

.recent-projects .project-card:hover .project-arrow {
    transform: rotate(45deg);
}

.recent-projects .projects-gallery:hover .project-card:not(:hover) {
    opacity: .65;
}

.brand-logo-card {
    transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.brand-logo-card img {
    transition: transform .35s ease;
}

.brand-logo-card:hover {
    box-shadow: 0 34px 86px rgba(17, 17, 17, .22);
    filter: saturate(1.05);
}

.brand-logo-card:hover img {
    transform: scale(1.06);
}

.brand-main-card:hover {
    transform: translate(-50%, -50%) scale(1.035);
}

.brand-card-one:hover,
.brand-card-two:hover,
.brand-card-three:hover,
.brand-card-four:hover {
    transform: translateY(-10px) scale(1.03);
}

.visual-poster-board {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 24px;
    align-items: start;
}

.visual-poster-card,
.poster-tall,
.poster-small,
.poster-wide {
    height: 250px;
    grid-column: auto;
    grid-row: auto;
    margin: 0;
    align-self: auto;
}

.visual-poster-card:nth-child(even) {
    margin-top: 0;
}

.visual-poster-card {
    transition: transform .35s ease, box-shadow .35s ease;
}

.visual-poster-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 76px rgba(17, 17, 17, .18);
}

.poster-blue,
.poster-green,
.poster-white,
.poster-pink,
.poster-dark {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
    align-self: auto;
}

.visual-poster-card:nth-child(5) {
    grid-column: 1 / -1;
    height: 220px;
}

@media(max-width:991px) {

    .recent-projects {
        padding: 90px 0 90px 24px;
        overflow: hidden;
    }

    .recent-projects .projects-head {
        margin-bottom: 50px;
        padding-right: 24px;
    }

    .recent-projects .projects-title {
        font-size: 44px;
        line-height: 1;
        letter-spacing: 0;
    }

    .recent-projects .projects-gallery {
        gap: 14px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        padding-right: 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .recent-projects .project-card {
        min-width: 86vw;
        width: 86vw;
        height: 520px;
        scroll-snap-align: start;
        border-radius: 22px;
    }

    .recent-projects .project-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .recent-projects .project-content h3 {
        font-size: 42px;
        letter-spacing: 0;
        line-height: 1;
    }

    .recent-projects .project-content p {
        font-size: 14px;
        max-width: 220px;
    }

    .recent-projects .project-arrow {
        width: 54px;
        height: 54px;
        font-size: 26px;
        top: 16px;
        right: 16px;
    }

    .visual-poster-board {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .visual-poster-card,
    .poster-tall,
    .poster-small,
    .poster-wide {
        height: 220px;
    }

}

@media(max-width:560px) {

    .visual-poster-board {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding-bottom: 18px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .visual-poster-card,
    .poster-tall,
    .poster-small,
    .poster-wide,
    .visual-poster-card:nth-child(even) {
        flex: 0 0 62vw;
        height: 340px;
        margin: 0;
        scroll-snap-align: start;
    }

}

/* PORTFOLIO WHITE SECTION BASE */

.portfolio-showcase {
    background: #fff;
    padding: 128px 7%;
    color: #111;
}

.portfolio-showcase-intro {
    max-width: 1040px;
    margin-bottom: 84px;
}

.portfolio-showcase-intro h2 {
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1;
    letter-spacing: 0;
    color: #111;
}

.portfolio-showcase-intro p {
    color: #555;
}

.portfolio-showcase-row {
    max-width: 1240px;
    background: #fff;
    border-top: 1px solid rgba(17, 17, 17, .1);
    gap: 72px;
}

.portfolio-showcase-copy h3 {
    letter-spacing: 0;
}

.portfolio-showcase-copy p {
    color: #555;
}

/* PORTFOLIO WEBSITE SECTION */

.website-showcase {
    grid-template-columns: minmax(0, .85fr) minmax(430px, 1.15fr);
}

.website-showcase .portfolio-work-wall {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    grid-template-rows: 220px 220px;
    gap: 18px;
    min-height: auto;
}

.website-showcase .portfolio-work-card {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 40px 12px 12px;
    border: 1px solid rgba(17, 17, 17, .09);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 50px rgba(17, 17, 17, .1);
}

.website-showcase .portfolio-work-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: #f5f5f5;
    border-bottom: 1px solid rgba(17, 17, 17, .08);
}

.website-showcase .portfolio-work-card::after {
    display: none;
}

.website-showcase .portfolio-work-card img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    border-radius: 6px;
    filter: none;
}

.website-showcase .portfolio-work-card:hover img {
    filter: none;
    transform: scale(1.02);
}

.website-showcase .portfolio-work-card span {
    position: static;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #111;
}

/* PORTFOLIO BRANDING SECTION */

.branding-showcase {
    grid-template-columns: minmax(500px, 1.08fr) minmax(0, .82fr);
}

.branding-showcase .brand-logo-collage {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1fr;
    grid-template-rows: 180px 180px;
    gap: 16px;
    min-height: auto;
}

.branding-showcase .brand-logo-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border: 1px solid rgba(17, 17, 17, .09);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(17, 17, 17, .09);
    overflow: hidden;
    transform: none;
}

.branding-showcase .brand-logo-card::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 16px;
    width: 30px;
    height: 4px;
    border-radius: 999px;
    background: #ff3d7f;
}

.branding-showcase .brand-logo-card::after {
    content: "DMC";
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    color: #c8c8c8;
}

.branding-showcase .brand-logo-card img {
    width: 66%;
    height: 66%;
    object-fit: contain;
    filter: none;
    transition: transform .35s ease;
}

.branding-showcase .brand-logo-card span {
    left: 18px;
    right: 18px;
    bottom: 16px;
    font-size: 11px;
    letter-spacing: 0;
    color: #696969;
}

.branding-showcase .brand-main-card {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 376px;
    background: #fff;
    transform: none;
}

.branding-showcase .brand-main-card img {
    width: 72%;
    height: 72%;
    filter: none;
}

.branding-showcase .brand-card-one {
    grid-column: 1;
    grid-row: 1;
    background: #fbfbfb;
}

.branding-showcase .brand-card-two {
    grid-column: 3;
    grid-row: 1;
    background: #f7fbfa;
}

.branding-showcase .brand-card-two::before {
    background: #111111;
}

.branding-showcase .brand-card-three {
    grid-column: 1;
    grid-row: 2;
    background: #fff8fb;
}

.branding-showcase .brand-card-three::before {
    background: #f1b544;
}

.branding-showcase .brand-card-four {
    grid-column: 3;
    grid-row: 2;
    background: #111;
}

.branding-showcase .brand-card-four::before {
    background: #fff;
}

.branding-showcase .brand-card-four::after,
.branding-showcase .brand-card-four span {
    color: rgba(255, 255, 255, .56);
}

.branding-showcase .brand-card-four img {
    filter: brightness(0) invert(1);
}

.branding-showcase .brand-logo-card:hover,
.branding-showcase .brand-main-card:hover,
.branding-showcase .brand-card-one:hover,
.branding-showcase .brand-card-two:hover,
.branding-showcase .brand-card-three:hover,
.branding-showcase .brand-card-four:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 62px rgba(17, 17, 17, .13);
    filter: none;
}

.branding-showcase .brand-logo-card:hover img {
    transform: scale(1.045);
}

/* PORTFOLIO VISUAL COMMUNICATION SECTION */

.visual-showcase {
    grid-template-columns: minmax(280px, .75fr) minmax(500px, 1.25fr);
    align-items: center;
}

.visual-showcase .portfolio-showcase-copy {
    align-self: center;
}

.visual-showcase .visual-poster-board {
    width: min(100%, 500px);
    min-height: 680px;
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 190px));
    grid-template-rows: repeat(12, 42px);
    justify-content: end;
    align-items: stretch;
    gap: 16px 22px;
    padding: 8px 0;
}

.visual-showcase .visual-poster-card,
.visual-showcase .poster-tall,
.visual-showcase .poster-small,
.visual-showcase .poster-wide {
    position: relative;
    height: auto;
    min-height: 0;
    grid-column: auto;
    grid-row: auto;
    margin: 0;
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 42px rgba(17, 17, 17, .12);
    overflow: hidden;
    isolation: isolate;
}

.visual-showcase .visual-poster-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.02);
    transition: transform .45s ease, filter .45s ease;
}

.visual-showcase .visual-poster-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 6px;
    pointer-events: none;
}

.visual-showcase .visual-poster-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, .62), rgba(0, 0, 0, 0) 54%);
}

.visual-showcase .visual-poster-card span {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 15px;
    z-index: 3;
    font-size: 15px;
    line-height: 1.05;
    letter-spacing: 0;
    font-weight: 900;
    color: #fff;
}

.visual-showcase .poster-blue {
    grid-column: 1;
    grid-row: 3 / span 5;
    transform: translateX(8px) rotate(-2deg);
}

.visual-showcase .poster-green {
    grid-column: 2;
    grid-row: 1 / span 4;
    transform: translateX(-4px) rotate(2deg);
}

.visual-showcase .poster-white {
    grid-column: 2;
    grid-row: 5 / span 4;
    transform: translateX(16px) rotate(-1deg);
}

.visual-showcase .poster-pink {
    grid-column: 1;
    grid-row: 8 / span 5;
    transform: translateX(-2px) rotate(2deg);
}

.visual-showcase .poster-dark,
.visual-showcase .visual-poster-card:nth-child(5) {
    grid-column: 2;
    grid-row: 9 / span 4;
    transform: translateX(-14px) rotate(1deg);
}

.visual-showcase .poster-blue:hover {
    transform: translate(8px, -10px) rotate(-2deg);
}

.visual-showcase .poster-green:hover {
    transform: translate(-4px, -10px) rotate(2deg);
}

.visual-showcase .poster-white:hover {
    transform: translate(16px, -10px) rotate(-1deg);
}

.visual-showcase .poster-pink:hover {
    transform: translate(-2px, -10px) rotate(2deg);
}

.visual-showcase .poster-dark:hover,
.visual-showcase .visual-poster-card:nth-child(5):hover {
    transform: translate(-14px, -10px) rotate(1deg);
}

.visual-showcase .visual-poster-card:hover {
    box-shadow: 0 30px 66px rgba(17, 17, 17, .16);
}

.visual-showcase .visual-poster-card:hover img {
    transform: scale(1.04);
    filter: saturate(1.15) contrast(1.05);
}

@media(max-width:991px) {

    .portfolio-showcase {
        padding: 88px 24px;
    }

    .portfolio-showcase-intro {
        margin-bottom: 54px;
    }

    .portfolio-showcase-row,
    .website-showcase,
    .branding-showcase,
    .visual-showcase,
    .portfolio-showcase-row.reverse {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 64px 0;
    }

    .website-showcase .portfolio-work-wall {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 180px;
        gap: 14px;
    }

    .branding-showcase .portfolio-showcase-copy,
    .visual-showcase .portfolio-showcase-copy {
        order: -1;
    }

    .branding-showcase .brand-logo-collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 150px 150px;
        gap: 14px;
    }

    .branding-showcase .brand-main-card {
        grid-column: 1 / -1;
        grid-row: 1;
        min-height: auto;
    }

    .branding-showcase .brand-card-one,
    .branding-showcase .brand-card-two,
    .branding-showcase .brand-card-three,
    .branding-showcase .brand-card-four {
        grid-column: auto;
        grid-row: auto;
    }

    .visual-showcase .visual-poster-board {
        width: 100%;
        min-height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        grid-auto-rows: auto;
        justify-content: stretch;
        gap: 14px;
    }

    .visual-showcase .visual-poster-card,
    .visual-showcase .poster-tall,
    .visual-showcase .poster-small,
    .visual-showcase .poster-wide,
    .visual-showcase .visual-poster-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
        height: auto;
        aspect-ratio: 3 / 4;
        transform: none;
    }

}

@media(max-width:560px) {

    .portfolio-showcase {
        padding: 76px 20px;
    }

    .portfolio-showcase-intro h2 {
        font-size: 40px;
    }

    .portfolio-showcase-copy h3 {
        font-size: 34px;
    }

    .website-showcase .portfolio-work-wall {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 250px);
    }

    .website-showcase .portfolio-work-card.work-large {
        grid-row: auto;
    }

    .branding-showcase .brand-logo-collage {
        grid-template-rows: 210px 136px 136px;
    }

    .branding-showcase .brand-logo-card {
        padding: 18px;
    }

    .branding-showcase .brand-logo-card span {
        font-size: 10px;
        left: 14px;
        bottom: 13px;
    }

    .visual-showcase .visual-poster-board {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
        padding-bottom: 0;
    }

    .visual-showcase .visual-poster-card,
    .visual-showcase .poster-tall,
    .visual-showcase .poster-small,
    .visual-showcase .poster-wide,
    .visual-showcase .visual-poster-card:nth-child(even),
    .visual-showcase .visual-poster-card:nth-child(5) {
        flex: auto;
        height: auto;
        aspect-ratio: 3 / 4.1;
        margin: 0;
        scroll-snap-align: none;
        transform: none;
    }

    .visual-showcase .visual-poster-card span {
        font-size: 12px;
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

}

/* WEBSITE VERTICAL SCROLL SETTLE CARDS */

.website-showcase.website-scroll-section {
    display: block;
    width: 100vw;
    max-width: none;
    min-height: var(--website-scroll-height, 150vh);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    border-top: 0;
    background: #fff;
    overflow: visible;
}

.website-scroll-pin {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    padding: 64px 0;
    overflow: hidden;
    background: #fff;
}

.website-scroll-copy {
    width: min(640px, calc(100vw - 48px));
    max-width: none;
    margin-left: clamp(24px, 7vw, 96px);
}

.website-scroll-copy h3 {
    font-size: clamp(42px, 5.4vw, 72px);
    line-height: .96;
}

.website-scroll-copy p {
    max-width: 590px;
}

.website-scroll-viewport {
    width: 100%;
    overflow: hidden;
    padding: 48px 0 62px;
}

.website-scroll-track {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.3vw, 20px);
    padding: 0 clamp(24px, 3vw, 48px);
    transform: translate3d(0, 0, 0);
}

.website-showcase .website-scroll-card {
    --website-card-progress: 0;
    --website-card-wave: 0px;
    position: relative;
    flex: 0 0 clamp(112px, 10.4vw, 150px);
    flex-basis: clamp(112px, 10.4vw, 150px);
    width: clamp(112px, 10.4vw, 150px);
    height: clamp(176px, 15.4vw, 224px);
    display: block;
    padding: 0;
    border: 0 !important;
    border-radius: 8px;
    background: transparent;
    box-shadow: 0 16px 26px rgba(17, 17, 17, .16);
    overflow: hidden;
    opacity: 1;
    transform: translateY(calc(var(--website-card-wave) * (1 - var(--website-card-progress))));
    transition: box-shadow .25s ease;
}

.website-scroll-card:nth-child(1),
.website-scroll-card:nth-child(7) {
    --website-card-wave: -62px;
}

.website-scroll-card:nth-child(2),
.website-scroll-card:nth-child(6) {
    --website-card-wave: -24px;
}

.website-scroll-card:nth-child(3),
.website-scroll-card:nth-child(5) {
    --website-card-wave: 18px;
}

.website-scroll-card:nth-child(4) {
    --website-card-wave: 36px;
}

.website-scroll-card::before {
    display: none;
}

.website-scroll-card::after {
    display: block;
    background: none;
}

.website-scroll-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0;
    filter: none;
    transition: transform .35s ease;
}

.website-scroll-card span {
    display: none;
}

.website-scroll-card:hover {
    box-shadow: 0 22px 34px rgba(17, 17, 17, .2);
}

.website-scroll-card:hover img {
    transform: scale(1.025);
}

@media(max-width:1024px) {

    .website-showcase.website-scroll-section {
        min-height: auto;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        overflow: hidden;
    }

    .website-scroll-pin {
        position: relative;
        top: auto;
        min-height: auto;
        gap: 30px;
        padding: 62px 0 54px;
        overflow: hidden;
    }

    .website-scroll-copy {
        width: auto;
        margin: 0 24px;
    }

    .website-scroll-viewport {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 6px 0 30px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
    }

    .website-scroll-viewport::-webkit-scrollbar {
        display: none;
    }

    .website-scroll-track {
        gap: 16px;
        padding: 0 24px;
        justify-content: flex-start;
        width: max-content;
        align-items: stretch;
        transform: none !important;
    }

    .website-showcase .website-scroll-card,
    .website-showcase .website-scroll-card:nth-child(2n),
    .website-showcase .website-scroll-card:nth-child(3n) {
        --website-card-progress: 1 !important;
        flex-basis: 72vw;
        width: 72vw;
        max-width: 320px;
        height: 390px;
        opacity: 1;
        transform: none !important;
        scroll-snap-align: start;
    }

}

@media(max-width:560px) {

    .website-scroll-pin {
        padding: 54px 0;
    }

    .website-scroll-copy {
        margin: 0 20px;
    }

    .website-scroll-track {
        padding: 0 20px;
    }

    .website-scroll-card,
    .website-scroll-card:nth-child(2n),
    .website-scroll-card:nth-child(3n) {
        flex-basis: 78vw;
        width: 78vw;
        height: 340px;
    }

}

/* =========================
FEATURED DESIGN SECTION
========================= */

.featured-design-section {
    padding: 180px 7%;
    background: #130d0e;
    position: relative;
    overflow: hidden;
}

/* HEAD */

.featured-design-head {
    max-width: 900px;
    margin-bottom: 90px;
}

/* TITLE */

.featured-design-title {
    font-size: 72px;
    line-height: .95;
    letter-spacing: 0;
    font-weight: 700;
    color: #fff;

    margin-top: 28px;
}

/* TOP GRID */

.featured-design-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 24px;

    margin-bottom: 24px;
}

/* SIDE GRID */

.featured-side-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}

/* BOTTOM GRID */

.featured-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* CARD */

.featured-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #17181d;

    cursor: pointer;
}

/* LARGE CARD */

.featured-large {
    height: 780px;
}

/* SIDE CARD */

.featured-side-grid .featured-card {
    height: 378px;
}

/* HORIZONTAL */

.horizontal-card {
    height: 340px;
}

/* IMAGE */

.featured-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    filter:
        grayscale(100%) brightness(.82);

    transition:
        transform .45s ease,
        filter .45s ease;
}

/* HOVER */

.featured-card:hover img {
    transform: scale(1.03);

    filter:
        grayscale(0%) brightness(1);
}

/* OVERLAY */

.featured-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .92) 10%,
            rgba(0, 0, 0, .32) 45%,
            rgba(0, 0, 0, .08) 100%);
}

/* CONTENT */

.featured-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;

    z-index: 3;
}

/* CATEGORY */

.featured-category {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .55);

    margin-bottom: 14px;
}

/* TITLE */

.featured-content h3 {
    font-size: 54px;
    line-height: .92;
    letter-spacing: 0;
    font-weight: 700;
    color: #fff;

    margin-bottom: 12px;
}

/* TEXT */

.featured-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .72);

    max-width: 360px;
}

/* DIM EFFECT */

.featured-design-section:hover .featured-card:not(:hover) {
    opacity: .6;
}

/* MOBILE */

@media(max-width:991px) {

    .featured-design-section {
        padding: 100px 24px;
    }

    /* TITLE */

    .featured-design-title {
        font-size: 44px;
        line-height: 1;
        letter-spacing: 0;
    }

    /* GRID */

    .featured-design-grid {
        grid-template-columns: 1fr;
        gap: 16px;

        margin-bottom: 16px;
    }

    .featured-side-grid {
        gap: 16px;
    }

    .featured-bottom-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* HEIGHTS */

    .featured-large {
        height: 520px;
    }

    .featured-side-grid .featured-card {
        height: 260px;
    }

    .horizontal-card {
        height: 260px;
    }

    /* CONTENT */

    .featured-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .featured-content h3 {
        font-size: 38px;
        letter-spacing: 0;
        margin-bottom: 8px;
    }

    .featured-content p {
        font-size: 14px;
        line-height: 1.5;
    }

}

/* ========================= */
/* FEATURED PORTFOLIO */
/* ========================= */

.featured-portfolio-section {
    width: 100%;
    padding: 120px 7%;
    background: #130d0e;
    overflow: hidden;
}

/* HEADING */

.featured-design-head {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #8d8d8d;
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.section-tag::before {
    content: '';
    width: 42px;
    height: 10px;
    border-radius: 30px;
    background: #ff3d7f;
}

.featured-design-title {
    color: #fff;
    font-size: 92px;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: 0;
    max-width: 1000px;
    margin: auto;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* FILTER */

.portfolio-filter-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 60px;
}

.portfolio-filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #bcbcbc;
    padding: 14px 24px;
    border-radius: 100px;
    cursor: pointer;
    transition: .4s ease;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.portfolio-filter-btn span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff3d7f;
}

.portfolio-filter-btn:hover {
    border-color: #ff3d7f;
    color: #fff;
}

.portfolio-filter-btn.active {
    border-color: #ff3d7f;
    color: #fff;
    background: rgba(255, 47, 125, 0.08);
}

/* GRID */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

/* CARD */

.portfolio-card {
    transition: .5s ease;
}

.portfolio-card.hide {
    display: none;
}

.portfolio-image {
    width: 100%;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: #111;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
    opacity: 0;
    transition: .5s ease;
}

.portfolio-card:hover .portfolio-image::after {
    opacity: 1;
}

.portfolio-content {
    padding-top: 16px;
}

.portfolio-content span {
    display: block;
    color: #7f7f7f;
    font-size: 12px;
    margin-bottom: 8px;
}

.portfolio-content h3 {
    color: #fff;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 500;
}

/* RESPONSIVE */

@media(max-width:1400px) {

    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media(max-width:1100px) {

    .featured-design-title {
        font-size: 72px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .featured-portfolio-section {
        padding: 90px 5%;
    }

    .featured-design-title {
        font-size: 52px;
        line-height: 1;
        letter-spacing: 0;
        padding: 20px;
    }

    .portfolio-image {
        height: 240px;
    }

}

@media(max-width:580px) {

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .featured-design-title {
        font-size: 42px;
    }

}


/* ========================= */
/* PREMIUM EXPERIENCE */
/* ========================= */

.premium-experience-section {
    width: 100%;
    padding: 160px 7%;

    position: relative;
    overflow: hidden;
}


/* TOP */

.premium-experience-top {
    position: relative;
    z-index: 2;
    margin-bottom: 110px;
}

.premium-experience-heading {
    display: grid;
    grid-template-columns: 1.2fr .5fr;
    gap: 80px;
    align-items: end;
}

.premium-experience-heading h2 {
    font-size: 82px;
    line-height: .95;
    letter-spacing: 0;
    color: #111;
    max-width: 1100px;
    font-weight: 700;
}

.premium-experience-heading p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    max-width: 320px;
    margin-left: auto;
}

/* SHOWCASE */

.premium-showcase-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .8fr 1.2fr .7fr;
    gap: 35px;
    align-items: center;
    margin-bottom: 90px;
}

/* LEFT */

.premium-showcase-left {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

/* MINI CARD */

.experience-mini-card {
    padding: 10px 0;
}

.experience-mini-card span {
    display: block;
    color: #999;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.experience-mini-card h3 {
    font-size: 36px;
    line-height: 1;
    color: #111;
    font-weight: 600;
    letter-spacing: 0;
}

/* LINE */

.experience-line {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
}

/* CENTER */

.premium-image-wrapper {
    position: relative;
    height: 850px;
    border-radius: 36px;
    overflow: hidden;
    transform: rotate(-2deg);
    transition: .6s ease;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
}

.premium-image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.premium-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */

.premium-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .1));
}

/* CONTENT */

.premium-image-content {
    position: absolute;
    left: 50px;
    bottom: 50px;
    z-index: 2;
    max-width: 480px;
}

.premium-image-content span {
    display: block;
    color: #d4d4d4;
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.premium-image-content h3 {
    font-size: 54px;
    line-height: 1;
    color: #fff;
    letter-spacing: 0;
    font-weight: 600;
}

/* RIGHT */

.premium-showcase-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.experience-number-block {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 40px;
    transition: .4s ease;
}

.experience-number-block:hover {
    transform: translateY(-8px);
    background: #fff;
}

.experience-number-block h4 {
    font-size: 82px;
    line-height: 1;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: 0;
}

.experience-number-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* BOTTOM */

.experience-bottom-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 34px;
}

.experience-strip-item {
    font-size: 22px;
    color: #111;
    transition: .4s ease;
}

.experience-strip-item:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:1400px) {

    .premium-experience-heading h2 {
        font-size: 66px;
    }

    .experience-bg-text {
        font-size: 120px;
    }

}

@media(max-width:1200px) {

    .premium-showcase-layout {
        grid-template-columns: 1fr;
    }

    .premium-image-wrapper {
        height: 700px;
    }

}

@media(max-width:980px) {

    .premium-experience-heading {
        grid-template-columns: 1fr;
    }

    .premium-experience-heading p {
        margin-left: 0;
    }

}

@media(max-width:768px) {

    .premium-experience-section {
        padding: 110px 5%;
    }

    .experience-bg-text {
        display: none;
    }

    .premium-experience-top {
        margin-bottom: 70px;
    }

    .premium-experience-heading h2 {
        font-size: 48px;
        line-height: 1;
        letter-spacing: 0;
    }

    .premium-image-wrapper {
        height: 520px;
        border-radius: 24px;
    }

    .premium-image-content {
        left: 30px;
        bottom: 30px;
    }

    .premium-image-content h3 {
        font-size: 34px;
    }

    .experience-mini-card h3 {
        font-size: 28px;
    }

    .experience-number-block h4 {
        font-size: 58px;
    }

    .experience-bottom-strip {
        grid-template-columns: 1fr;
    }

}

@media(max-width:480px) {

    .premium-experience-heading h2 {
        font-size: 38px;
    }

    .premium-image-wrapper {
        height: 460px;
    }

    .premium-image-content h3 {
        font-size: 28px;
    }

}

/* ========================= */
/* ABOUT JOURNEY SECTION */
/* ========================= */

.about-journey-section {
    width: 100%;
    padding: 160px 7%;
    background: #050505;
    position: relative;
    overflow: hidden;
}

/* BG TEXT */

.journey-bg-text {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 180px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    letter-spacing: 0;
    pointer-events: none;
    white-space: nowrap;
}

/* WRAPPER */

.about-journey-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 90px;
    align-items: center;
}

/* LEFT */

.light-tag {
    color: #9d9d9d;
    margin-bottom: 35px;
}

.light-tag::before {
    background: #ff3d7f;
}

/* TITLE */

.about-journey-title {
    font-size: 78px;
    line-height: .95;
    letter-spacing: 0;
    color: #fff;
    margin-bottom: 34px;
    max-width: 820px;
    font-weight: 700;
}

/* TEXT */

.about-journey-text {
    font-size: 17px;
    line-height: 1.9;
    color: #9c9c9c;
    max-width: 650px;
    margin-bottom: 30px;
}


/* ITEM */


/* RIGHT IMAGE */

.about-journey-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

/* IMAGE CARD */

.journey-image-card {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 760px;
    border-radius: 34px;
    overflow: hidden;

    transition: .6s ease;

    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.journey-image-card:hover {
    transform: rotate(0deg) scale(1.02);
}

/* IMAGE */

.journey-image-card img {
    width: 100%;
    height: 109%;
    object-fit: cover;
}

/* OVERLAY */

.journey-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .45), transparent);
}

/* RESPONSIVE */

@media(max-width:1400px) {

    .about-journey-title {
        font-size: 64px;
    }

}

@media(max-width:1100px) {

    .about-journey-wrapper {
        grid-template-columns: 1fr;
    }

    .journey-image-card {
        max-width: 100%;
        height: 680px;
    }

}

@media(max-width:768px) {

    .about-journey-section {
        padding: 110px 5%;
    }

    .journey-bg-text {
        display: none;
    }

    .about-journey-title {
        font-size: 48px;
        line-height: 1;
        letter-spacing: 0;
    }

    .journey-image-card {
        height: 540px;
        border-radius: 24px;
    }

}

/* ========================= */
/* DESIGN PHILOSOPHY */
/* ========================= */

.design-philosophy-section {
    width: 100%;
    padding: 150px 7%;
    background: #f5f5f3;
    position: relative;
    overflow: hidden;
}

/* BG TEXT */

.philosophy-bg-text {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 180px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0;
}

/* TOP */

.design-philosophy-top {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 90px;
}

/* TITLE */

.design-philosophy-title {
    font-size: 76px;
    line-height: .95;
    letter-spacing: 0;
    color: #111;
    max-width: 900px;
    margin: 0 auto 24px;
    font-weight: 700;
}

/* SUBTEXT */

.design-philosophy-subtext {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

/* GRID */

.design-philosophy-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */

.philosophy-card {
    position: relative;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 32px;
    padding: 42px;
    min-height: 300px;
    overflow: hidden;
    transition: .5s ease;
}

/* HOVER */

.philosophy-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

/* ICON */

.philosophy-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #111;
    margin-bottom: 38px;
    transition: .4s ease;
}

.philosophy-card:hover .philosophy-icon {
    background: #111;
    color: #fff;
}

/* TITLE */

.philosophy-card h3 {
    font-size: 34px;
    line-height: 1.1;
    color: #111;
    margin-bottom: 22px;
    max-width: 320px;
    font-weight: 600;
    letter-spacing: 0;
}

/* TEXT */

.philosophy-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    max-width: 420px;
}

/* CORNER */

.philosophy-card::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.02);
    transition: .5s ease;
}

.philosophy-card:hover::after {
    transform: scale(1.2);
}

/* RESPONSIVE */

@media(max-width:1400px) {

    .design-philosophy-title {
        font-size: 62px;
    }

}

@media(max-width:980px) {

    .design-philosophy-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {

    .design-philosophy-section {
        padding: 110px 5%;
    }

    .philosophy-bg-text {
        display: none;
    }

    .design-philosophy-top {
        margin-bottom: 70px;
    }

    .design-philosophy-title {
        font-size: 46px;
        line-height: 1;
        letter-spacing: 0;
    }

    .philosophy-card {
        min-height: auto;
        padding: 34px;
    }

    .philosophy-card h3 {
        font-size: 28px;
    }

}

@media(max-width:480px) {

    .design-philosophy-title {
        font-size: 36px;
    }

    .philosophy-card h3 {
        font-size: 24px;
    }

    .philosophy-card p {
        font-size: 15px;
    }

}

/* ========================= */
/* EXPERTISE SECTION */
/* ========================= */

.expertise-section {
    width: 100%;
    padding: 150px 7%;
    background: #f5f5f3;
    position: relative;
    overflow: hidden;
}

/* TOP */

.expertise-top {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 90px;
}

/* TITLE */

.expertise-title {
    font-size: 74px;
    line-height: .95;
    letter-spacing: 0;
    color: #111;
    margin-bottom: 22px;
    font-weight: 700;
}

/* SUBTITLE */

.expertise-subtitle {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

/* GRID */

.expertise-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */

.expertise-card {
    position: relative;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px);
    border-radius: 34px;
    padding: 42px;
    overflow: hidden;
    transition: .5s ease;
}

/* HOVER */

.expertise-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

/* TOP */

.expertise-card-top {
    margin-bottom: 38px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* NUMBER */

.expertise-number {
    display: block;
    font-size: 12px;
    letter-spacing: 4px;
    color: #999;
    margin-bottom: 18px;
}

/* TITLE */

.expertise-card-top h3 {
    font-size: 34px;
    line-height: 1;
    color: #111;
    letter-spacing: 0;
    font-weight: 600;
}

/* LIST */

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ITEM */

.expertise-item {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    transition: .3s ease;
}

/* DOT */

.expertise-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #111;
    opacity: .2;
    transition: .3s ease;
}

.expertise-item:hover {
    color: #111;
    transform: translateX(5px);
}

.expertise-item:hover::before {
    opacity: 1;
    background: #ff3d7f;
}

/* RESPONSIVE */

@media(max-width:1200px) {

    .expertise-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {

    .expertise-section {
        padding: 110px 5%;
    }

    .expertise-bg-text {
        display: none;
    }

    .expertise-top {
        margin-bottom: 70px;
    }

    .expertise-title {
        font-size: 48px;
        line-height: 1;
        letter-spacing: 0;
    }

    .expertise-card {
        padding: 34px;
    }

    .expertise-card-top h3 {
        font-size: 28px;
    }

}

@media(max-width:480px) {

    .expertise-title {
        font-size: 38px;
    }

    .expertise-subtitle {
        font-size: 15px;
    }

    .expertise-item {
        font-size: 14px;
    }

}

/* ========================= */
/* WHY WORK SECTION */
/* ========================= */

.why-work-section {
    width: 100%;
    padding: 140px 7%;
    background: #f5f5f3;
    position: relative;
}

/* TOP */

.why-work-top {
    text-align: center;
    margin-bottom: 70px;
}

/* TITLE */

.why-work-title {
    font-size: 72px;
    line-height: .95;
    letter-spacing: 0;
    color: #111;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 700;
}

/* GRID */

.why-work-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

/* ITEM */

.why-work-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 30px 34px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: .4s ease;
}

/* HOVER */

.why-work-item:hover {
    transform: translateY(-6px);
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* ICON */

.why-work-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 18px;
    background: #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #111;
    transition: .4s ease;
}

/* HOVER ICON */

.why-work-item:hover .why-work-icon {
    background: #111;
    color: #fff;
}

/* TEXT */

.why-work-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    transition: .3s ease;
}

.why-work-item:hover p {
    color: #111;
}

/* LIGHT EFFECT */

.why-work-item::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    right: -80px;
    bottom: -80px;
    transition: .5s ease;
}

.why-work-item:hover::after {
    transform: scale(1.2);
}

/* RESPONSIVE */

@media(max-width:1100px) {

    .why-work-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {

    .why-work-section {
        padding: 100px 5%;
    }

    .why-work-title {
        font-size: 48px;
        line-height: 1;
        letter-spacing: 0;
    }

    .why-work-item {
        padding: 26px;
        gap: 18px;
    }

}

@media(max-width:480px) {

    .why-work-title {
        font-size: 38px;
    }

    .why-work-item {
        align-items: flex-start;
    }

    .why-work-item p {
        font-size: 15px;
    }

}

/* ========================= */
/* MINIMAL SERVICES */
/* ========================= */

.minimal-services-section {
    width: 100%;
    padding: 140px 7%;

}

/* TOP */

.minimal-services-top {
    text-align: center;
    margin-bottom: 80px;
}

/* TITLE */

.minimal-services-title {
    font-size: 68px;
    line-height: .95;
    letter-spacing: 0;
    color: #111;
    max-width: 900px;
    margin: 0 auto 22px;
    font-weight: 700;
}

/* SUBTITLE */

.minimal-services-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* GRID */

.minimal-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

/* CARD */

.minimal-service-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 28px;
    padding: 38px;
    transition: .35s ease;
}

/* HOVER */

.minimal-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

/* ICON */

.minimal-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #111;
    margin-bottom: 30px;
}

/* TITLE */

.minimal-service-card h3 {
    font-size: 32px;
    line-height: 1;
    color: #111;
    margin-bottom: 18px;
    letter-spacing: 0;
    font-weight: 600;
}

/* TEXT */

.minimal-service-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 26px;
    max-width: 420px;
}

/* LIST */

.minimal-service-card ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ITEM */

.minimal-service-card ul li {
    position: relative;
    list-style: none;
    padding-left: 22px;
    font-size: 14px;
    color: #666;
}

/* DOT */

.minimal-service-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #111;
    opacity: .25;
}

/* RESPONSIVE */

@media(max-width:1100px) {

    .minimal-services-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {

    .minimal-services-section {
        padding: 100px 5%;
    }

    .minimal-services-title {
        font-size: 48px;
        line-height: 1;
        letter-spacing: 0;
    }

    .minimal-service-card {
        padding: 32px;
    }

    .minimal-service-card h3 {
        font-size: 28px;
    }

}

@media(max-width:480px) {

    .minimal-services-title {
        font-size: 38px;
    }

    .minimal-service-card h3 {
        font-size: 24px;
    }

    .minimal-service-card p {
        font-size: 14px;
    }

}

/* ========================= */
/* CREATIVE CTA SECTION */
/* ========================= */

.creative-cta-section {
    width: 100%;
    padding: 140px 7%;
    position: relative;
    overflow: hidden;
}

/* BLURS */

.cta-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .12;
}

.cta-blur-1 {
    width: 300px;
    height: 300px;

    top: 40px;
    left: 15%;
}

.cta-blur-2 {
    width: 260px;
    height: 260px;
    background: #4d7cff;
    bottom: 20px;
    right: 12%;
}

/* CARD */

.creative-cta-card {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    background: #07141a;
    border-radius: 42px;
    padding: 90px 80px;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* LIGHT EFFECT */

    .creative-cta-card::before {
        content: '';
        position: absolute;
        top: -200px;
        left: -120px;
        width: 420px;
        height: 420px;
        background: radial-gradient(circle, rgba(255, 61, 127, 0.18), transparent 68%);
        pointer-events: none;
    }

/* TAG */

.light-tag {
    color: #9ca3af;
    justify-content: center;
    margin-bottom: 34px;
}

.light-tag::before {
    background: #ff3d7f;
}

/* TITLE */

.creative-cta-title {
    font-size: 72px;
    line-height: .95;
    letter-spacing: 0;
    color: #fff;
    max-width: 920px;
    margin: 0 auto 28px;
    font-weight: 700;
}

/* TEXT */

.creative-cta-text {
    max-width: 700px;
    margin: auto;
    font-size: 17px;
    line-height: 1.9;
    color: #9ca3af;
    margin-bottom: 48px;
}

/* BUTTONS */

.creative-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

/* BTN */

.creative-cta-btn {
    padding: 18px 34px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: .4s ease;
}

/* PRIMARY */

.primary-cta-btn {
    background: #fff;
    color: #111;
}

.primary-cta-btn:hover {
    transform: translateY(-5px);
    background: #f3f3f3;
}

/* SECONDARY */

.secondary-cta-btn {
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.secondary-cta-btn:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25);
}

/* STRIP */

.creative-cta-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

/* STRIP ITEM */

.creative-cta-strip span {
    padding: 14px 22px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d6d6d6;
    font-size: 12px;
    letter-spacing: 2px;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .creative-cta-section {
        padding: 100px 5%;
    }

    .creative-cta-card {
        padding: 70px 30px;
        border-radius: 28px;
    }

    .creative-cta-title {
        font-size: 46px;
        line-height: 1;
        letter-spacing: 0;
    }

    .creative-cta-text {
        font-size: 15px;
    }

}

@media(max-width:480px) {

    .creative-cta-title {
        font-size: 38px;
    }

    .creative-cta-buttons {
        flex-direction: column;
    }

}

/* ========================= */
/* MODERN CONTACT SECTION */
/* ========================= */
.modern-contact-section{
    width:100%;
    padding:140px 7%;
}

.modern-contact-top{
    text-align:center;
    margin-bottom:80px;
}

.modern-contact-title{
    font-size:72px;
    line-height:.95;
    color:#111;
    max-width:900px;
    margin:0 auto 24px;
    font-weight:700;
}

.modern-contact-subtitle{
    font-size:16px;
    color:#666;
    line-height:1.8;
}

.modern-contact-wrapper{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:32px;
    align-items:start;
}

.modern-contact-info{
    background:#fff;
    border-radius:30px;
    padding:41px;
    border:1px solid rgba(0,0,0,.06);
}

.modern-contact-info h3{
    font-size:42px;
    line-height:1;
    color:#111;
    margin-bottom:22px;
}

.modern-contact-info p{
    font-size:16px;
    line-height:1.9;
    color:#666;
}

.modern-contact-list{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-top:40px;
}

.modern-contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:20px;
    border-radius:20px;
    background:#f8f8f8;
    transition:.3s ease;
}

.modern-contact-item:hover{
    transform:translateX(6px);
}

.modern-contact-icon{
    width:54px;
    height:54px;
    min-width:54px;
    border-radius:18px;
    background:#111;
    display:flex;
    align-items:center;
    justify-content:center;
}

.modern-contact-icon i{
    color:#fff;
    font-size:20px;
}

.modern-contact-item span{
    display:block;
    font-size:12px;
    letter-spacing:3px;
    color:#999;
    margin-bottom:8px;
    text-transform:uppercase;
}

.modern-contact-item a,
.modern-contact-item p{
    color:#111;
    text-decoration:none;
    line-height:1.7;
}

.modern-contact-socials{
    display:flex;
    gap:14px;
    margin-top:40px;
}

.modern-social-link{
    width:54px;
    height:54px;
    border-radius:18px;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.35s ease;
}

.modern-social-link i{
    font-size:20px;
    color:#111;
}

.modern-social-link:hover{
    background:#111;
    transform:translateY(-5px);
}

.modern-social-link:hover i{
    color:#fff;
}

.modern-contact-form-wrap{
    background:#fff;
    border-radius:30px;
    padding:42px;
    border:1px solid rgba(0,0,0,.06);
}

.modern-input-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.modern-input-group{
    margin-bottom:27px;
}

.modern-input-group label{
    display:block;
    font-size:13px;
    color:#777;
    margin-bottom:12px;
}

.modern-input-group input,
.modern-input-group textarea{
    width:100%;
    border:none;
    background:#f5f5f3;
    border-radius:18px;
    padding:18px 20px;
    font-size:15px;
    color:#111;
    outline:none;
}

.modern-input-group input:focus,
.modern-input-group textarea:focus{
    background:#efefef;
}

.modern-file-upload input{
    display:none;
}

.modern-file-label{
    width:100%;
    min-height:140px;
    border-radius:22px;
    border:1px dashed rgba(0,0,0,.12);
    background:#f5f5f3;
    display:flex;
    flex-direction:column;
    align-items:center;
   align-content: center;
    justify-content: center;
    gap:14px;
    cursor:pointer;
    transition:.35s ease;
}

.modern-file-label i{
    font-size:46px;
    color:#111;
}

.modern-file-label span{
    font-size:15px;
    color:#666;
}

.modern-file-label:hover{
    border-color:#111;
    background:#efefef;
}

.modern-submit-btn{
    width:100%;
    height:62px;
    border:none;
    border-radius:18px;
    background:#07141a;
    color:#fff;
    font-size:15px;
    cursor:pointer;
    transition:.35s ease;
}

.modern-submit-btn:hover{
    transform:translateY(-4px);
    background:#000;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1200px){

    .modern-contact-wrapper{
        grid-template-columns:350px 1fr;
    }

    .modern-contact-title{
        font-size:60px;
    }

}

@media (max-width:991px){

    .modern-contact-section{
        padding:100px 5%;
    }

    .modern-contact-title{
        font-size:52px;
        line-height:1;
    }

    .modern-contact-wrapper{
        grid-template-columns:1fr;
        gap:30px;
    }

    .modern-input-grid{
        grid-template-columns:1fr;
    }

    .modern-contact-socials{
        justify-content:center;
        flex-wrap:wrap;
    }

}

@media (max-width:768px){

    .modern-contact-section{
        padding:80px 20px;
    }

    .modern-contact-top{
        margin-bottom:60px;
    }

    .modern-contact-title{
        font-size:42px;
    }

    .modern-contact-info,
    .modern-contact-form-wrap{
        padding:30px;
    }

    .modern-contact-info h3{
        font-size:32px;
    }

    .modern-contact-item{
        padding:16px;
        gap:15px;
    }

    .modern-contact-icon{
        width:48px;
        height:48px;
        min-width:48px;
    }

}

@media (max-width:576px){

    .modern-contact-section{
        padding:70px 15px;
    }

    .modern-contact-title{
        font-size:34px;
    }

    .modern-contact-info h3{
        font-size:28px;
    }

    .modern-contact-info,
    .modern-contact-form-wrap{
        padding:24px;
        border-radius:24px;
    }

    .modern-contact-item{
        flex-direction:column;
        gap:12px;
    }

    .modern-contact-socials{
        gap:12px;
    }

    .modern-social-link{
        width:48px;
        height:48px;
    }

    .modern-file-label{
        min-height:120px;
        padding:20px;
    }
}
/*---------- ------------ ---------- */
/*---------- workpage hero---------- */
/*---------- ------------ ---------- */



.workpage-hero-container{
    max-width:1400px;
    margin-top: -152px;;
    margin-bottom: -120px;
    padding-left: 120px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:64px;
}

.workpage-hero-content{
    flex:1;
    max-width:620px;
}

.workpage-hero-label{
    display:inline-block;
    font-size:12px;
    font-weight:600;
    letter-spacing:3px;
    color:#ff3d7f;
    margin-bottom:25px;
}

.workpage-hero-title{
    font-size:clamp(3.5rem,7vw,6rem);
    line-height:0.95;
    font-weight:800;
    margin-bottom:25px;
}

.workpage-hero-text{
    font-size:18px;
    line-height:1.7;
    max-width:520px;
    opacity:.75;
    margin-bottom:35px;
}

.workpage-hero-buttons{
    display:flex;
    gap:15px;
}

.workpage-primary-btn,
.workpage-secondary-btn{
    padding:16px 32px;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
}

.workpage-primary-btn{
    background:#111;
    color:#fff;
}

.workpage-secondary-btn{
    border:1px solid #ddd;
    color:#111;
}

.workpage-primary-btn,
.workpage-secondary-btn{
    padding:16px 32px;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
    transition:all .35s ease;
}

.workpage-primary-btn:hover{
    transform:translateY(-3px);
    background:#ff3d7f;
    box-shadow:0 12px 30px rgba(255,45,122,.25);
}

.workpage-secondary-btn:hover{
    transform:translateY(-3px);
    border-color:#111;
    background:#111;
    color:#fff;
}

.workpage-hero-visual{
    flex:1;
    min-height:820px;
    
    position:relative;
}

.workpage-showcase-card{
    position:absolute;
   
    
   
}

.workpage-showcase-card img{
    width:88%;
    height:55%;
    object-fit:cover;
    display:block;
}

.work-card-large{
    width:647px;
    height:748px;
    left:50%;
    top:70%;
    transform:translate(-50%,-50%);
}

.work-card-top{
    width:260px;
    height:180px;
    right:0;
    top:40px;
}

.work-card-bottom{
    width:260px;
    height:180px;
    left:0;
    bottom:40px;
}

@media (max-width: 991px){

    .workpage-hero{
        padding:90px 0 70px;
    }

    .workpage-hero-container{
      margin-top: -26px;
margin-bottom: 10px;
        flex-direction:column;
        text-align:center;
        gap:0;
        padding:0 29px;
    }

    .workpage-hero-content{
        max-width:100%;
    }

    .workpage-hero-text{
        max-width:100%;
        margin-left:auto;
        margin-right:auto;
    }

    .workpage-hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    /* Hide showcase cards completely */

    .workpage-hero-visual{
        display:none;
    }

}

.serviceshero-section{
    padding:160px 0 120px;
    overflow:hidden;
}

.serviceshero-container{
    max-width:1200px;
    margin:auto;
    padding:0 0px;
}

.serviceshero-tag{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:25px;
    font-size:11px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#777;
}

.serviceshero-tag span{
    width:28px;
    height:4px;
    border-radius:30px;
    background:#ff3d7f;
}

.serviceshero-title{
    max-width:900px;
    font-size:clamp(3.5rem,7vw,6rem);
    line-height:0.95;
    font-weight:800;
    color:#111;
    margin-bottom:30px;
}

.serviceshero-description{
    max-width:620px;
    font-size:20px;
    line-height:1.8;
    color:#666;
    margin-bottom:40px;
}

.serviceshero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.serviceshero-primary-btn,
.serviceshero-secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
    transition:all .35s ease;
}

.serviceshero-primary-btn{
    background:#111;
    color:#fff;
}

.serviceshero-primary-btn:hover{
    background:#ff3d7f;
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(255,61,127,.25);
}

.serviceshero-secondary-btn{
    border:1px solid #ddd;
    color:#111;
}

.serviceshero-secondary-btn:hover{
    background:#111;
    color:#fff;
    border-color:#111;
    transform:translateY(-3px);
}

@media (max-width:991px){

    .serviceshero-section{
        padding:120px 0 80px;
    }

    .serviceshero-container{
        text-align:center;
    }

    .serviceshero-tag{
        justify-content:center;
    }

    .serviceshero-title{
        font-size:clamp(2.5rem,10vw,4rem);
    }

    .serviceshero-description{
        max-width:100%;
        font-size:16px;
        margin-left:auto;
        margin-right:auto;
    }

    .serviceshero-buttons{
        justify-content:center;
    }
    
    .serviceshero-primary-btn,
.serviceshero-secondary-btn{
    margin-left: 67px;
    margin-right: 67px;
   
   
    
   
}

}

.abouthero-section{
    padding:160px 0 120px;
}

.abouthero-container{
    max-width:1100px;
    margin:auto;
    padding:0 30px;
    text-align:center;
}

.abouthero-tag{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-bottom:30px;
    font-size:11px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#777;
}

.abouthero-tag span{
    width:28px;
    height:4px;
    border-radius:20px;
    background:#ff3d7f;
}

.abouthero-title{
    font-size:clamp(3.5rem,7vw,6rem);
    line-height:.95;
    font-weight:800;
    color:#111;
    max-width:950px;
    margin:0 auto 30px;
}

.abouthero-description{
    max-width:700px;
    margin:0 auto 40px;
    font-size:20px;
    line-height:1.8;
    color:#666;
}

.abouthero-buttons{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

.abouthero-primary-btn,
.abouthero-secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
    transition:all .35s ease;
}

.abouthero-primary-btn{
    background:#111;
    color:#fff;
}

.abouthero-primary-btn:hover{
    background:#ff3d7f;
    transform:translateY(-3px);
}

.abouthero-secondary-btn{
    border:1px solid #ddd;
    color:#111;
}

.abouthero-secondary-btn:hover{
    background:#111;
    color:#fff;
    border-color:#111;
    transform:translateY(-3px);
}

@media (max-width:991px){

    .abouthero-section{
        padding:120px 0 80px;
    }

    .abouthero-title{
        font-size:clamp(2.5rem,10vw,4rem);
    }

    .abouthero-description{
        font-size:16px;
        line-height:1.7;
    }
}

/* ========================= */
/* SITE REFINEMENT SYSTEM */
/* ========================= */

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text);
}

img {
    max-width: 100%;
}

h1,
h2,
h3 {
    letter-spacing: 0 !important;
}

a,
button,
input,
textarea,
summary {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(255, 61, 127, 0.38);
    outline-offset: 4px;
}

.menu-btn {
    border: 0;
    padding: 0;
}

.section-tag,
.workpage-hero-label,
.serviceshero-tag,
.abouthero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: var(--gray);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-tag::before,
.workpage-hero-label::before,
.serviceshero-tag span,
.abouthero-tag span {
    content: '';
    width: 32px;
    height: 10px;
    border-radius: 99px;
    background: var(--pink);
    flex: 0 0 auto;
}

.light-tag {
    color: rgba(255, 255, 255, 0.68);
}

.light-tag::before {
    background: var(--pink);
}

.main-heading h1 {
    font-size: 112px;
    line-height: 0.98;
}

.main-heading h2 {
    font-size: 92px;
    line-height: 1;
}

.workpage-hero,
.serviceshero-section,
.abouthero-section {
    padding: 125px 0 105px;
}

.hero-wrapper .modern-contact-section {
    padding: 105px 7% 95px;
}

.workpage-hero-title,
.serviceshero-title,
.abouthero-title,
.modern-contact-title,
.portfolio-hero h1 {
    font-size: 82px;
    line-height: 0.98;
    font-weight: 800;
    color: var(--dark);
}

.workpage-hero-text,
.serviceshero-description,
.abouthero-description,
.modern-contact-subtitle {
    color: var(--gray);
    font-size: 19px;
    line-height: 1.75;
}

.workpage-hero-buttons,
.serviceshero-buttons,
.abouthero-buttons,
.cta-buttons,
.creative-cta-buttons {
    gap: 16px;
}

.primary-btn,
.secondary-btn,
.contact-btn,
.cta-primary-btn,
.cta-secondary-btn,
.workpage-primary-btn,
.workpage-secondary-btn,
.serviceshero-primary-btn,
.serviceshero-secondary-btn,
.abouthero-primary-btn,
.abouthero-secondary-btn,
.portfolio-hero-btn,
.creative-cta-btn,
.modern-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 16px 30px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition:
        background-color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        color var(--transition),
        transform var(--transition);
}

.primary-btn,
.contact-btn,
.cta-primary-btn,
.workpage-primary-btn,
.serviceshero-primary-btn,
.abouthero-primary-btn,
.portfolio-hero-btn,
.modern-submit-btn {
    border: 1px solid var(--dark);
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(17, 17, 17, 0.14);
}

.primary-btn:hover,
.contact-btn:hover,
.cta-primary-btn:hover,
.workpage-primary-btn:hover,
.serviceshero-primary-btn:hover,
.abouthero-primary-btn:hover,
.portfolio-hero-btn:hover,
.modern-submit-btn:hover {
    border-color: var(--pink);
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 18px 34px rgba(255, 61, 127, 0.24);
    transform: translateY(-3px);
}

.secondary-btn,
.cta-secondary-btn,
.workpage-secondary-btn,
.serviceshero-secondary-btn,
.abouthero-secondary-btn {
    border: 1px solid rgba(17, 17, 17, 0.14);
    background: var(--white);
    color: var(--dark);
    box-shadow: none;
}

.secondary-btn:hover,
.cta-secondary-btn:hover,
.workpage-secondary-btn:hover,
.serviceshero-secondary-btn:hover,
.abouthero-secondary-btn:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

.cta-section .cta-primary-btn {
    border-color: var(--white);
    background: var(--white);
    color: var(--dark);
}

.cta-section .cta-primary-btn:hover {
    border-color: var(--pink);
    background: var(--pink);
    color: var(--white);
}

.cta-section .cta-secondary-btn {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.cta-section .cta-secondary-btn:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.14);
}

.creative-cta-card .primary-cta-btn {
    border-color: var(--white);
    background: var(--white);
    color: var(--dark);
}

.creative-cta-card .primary-cta-btn:hover {
    border-color: var(--pink);
    background: var(--pink);
    color: var(--white);
}

.creative-cta-card .secondary-cta-btn {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
}

.creative-cta-card .secondary-cta-btn:hover {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.1);
}

.service-card,
.feature-card,
.minimal-service-card,
.philosophy-card,
.expertise-card,
.why-work-item,
.experience-number-block,
.modern-contact-info,
.modern-contact-form-wrap,
.modern-contact-item {
    border: 1px solid var(--border);
    box-shadow: 0 14px 36px rgba(17, 17, 17, 0.04);
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background-color var(--transition),
        transform var(--transition);
}

.service-card:hover,
.feature-card:hover,
.minimal-service-card:hover,
.philosophy-card:hover,
.expertise-card:hover,
.why-work-item:hover,
.experience-number-block:hover,
.modern-contact-item:hover {
    border-color: rgba(255, 61, 127, 0.18);
    box-shadow: var(--shadow-soft);
}

.minimal-service-card,
.philosophy-card,
.expertise-card,
.modern-contact-info,
.modern-contact-form-wrap {
    border-radius: 24px;
}

.modern-input-group input,
.modern-input-group textarea {
    border: 1px solid transparent;
}

.modern-input-group input:focus,
.modern-input-group textarea:focus {
    border-color: rgba(255, 61, 127, 0.36);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 61, 127, 0.08);
}

.portfolio-card,
.featured-card,
.project-card,
.brand-logo-card,
.visual-poster-card,
.webstack-card {
    cursor: pointer;
}

.project-popup {
    position: fixed !important;
    inset: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.78) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 999999 !important;
    transition:
        opacity 0.24s ease,
        visibility 0.24s ease;
}

.project-popup.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
}

.project-popup-img {
    display: block;
    width: auto;
    height: auto;
    max-width: 94vw;
    max-height: 88vh;
    max-height: 88dvh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.project-popup-close {
    position: fixed !important;
    top: 24px !important;
    right: 24px !important;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.34);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.project-popup-close:hover,
.project-popup-close:focus-visible {
    background: var(--white);
    color: var(--dark);
}

@media(max-width:1200px) {

    .main-heading h1 {
        font-size: 86px;
    }

    .main-heading h2 {
        font-size: 72px;
    }

    .workpage-hero-title,
    .serviceshero-title,
    .abouthero-title,
    .modern-contact-title,
    .portfolio-hero h1 {
        font-size: 64px;
    }

}

@media(max-width:991px) {

    .main-heading h1 {
        font-size: 58px;
        line-height: 1;
    }

    .main-heading h2 {
        font-size: 46px;
    }

    .workpage-hero,
    .serviceshero-section,
    .abouthero-section,
    .hero-wrapper .modern-contact-section {
        padding-top: 80px;
        padding-bottom: 70px;
    }

    .workpage-hero-title,
    .serviceshero-title,
    .abouthero-title,
    .modern-contact-title,
    .portfolio-hero h1 {
        font-size: 46px;
        line-height: 1.05;
    }

    .workpage-hero-text,
    .serviceshero-description,
    .abouthero-description,
    .modern-contact-subtitle {
        font-size: 16px;
    }

    .primary-btn,
    .secondary-btn,
    .workpage-primary-btn,
    .workpage-secondary-btn,
    .serviceshero-primary-btn,
    .serviceshero-secondary-btn,
    .abouthero-primary-btn,
    .abouthero-secondary-btn,
    .portfolio-hero-btn,
    .creative-cta-btn {
        width: 100%;
    }

}

@media(max-width:480px) {

    .main-heading h1 {
        font-size: 46px;
    }

    .main-heading h2 {
        font-size: 38px;
    }

    .workpage-hero-title,
    .serviceshero-title,
    .abouthero-title,
    .modern-contact-title,
    .portfolio-hero h1 {
        font-size: 36px;
    }

    .section-tag,
    .workpage-hero-label,
    .serviceshero-tag,
    .abouthero-tag {
        letter-spacing: 2px;
    }

}

@media(prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

}


.experience-section{
    padding:140px 7%;
}

.experience-header{
    max-width:900px;
    margin-bottom:80px;
}

.experience-tag{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:25px;
    font-size:11px;
    font-weight:600;
    letter-spacing:4px;
    color:#888;
}

.experience-tag span{
    width:28px;
    height:4px;
    border-radius:20px;
    background:#ff3d7f;
}

.experience-header h2{
    font-size:clamp(3rem,6vw,5.5rem);
    line-height:.95;
    font-weight:800;
    color:#111;
    margin-bottom:25px;
}

.experience-header p{
    max-width:600px;
    font-size:18px;
    line-height:1.8;
    color:#666;
}

.experience-content{
    display:grid;
    grid-template-columns:1fr auto;
    gap:80px;
    align-items:start;
    border-top:1px solid rgba(0,0,0,.08);
    padding-top:50px;
}

.experience-services{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.service-item{
    padding:24px 0;
    font-size:26px;
    font-weight:600;
    color:#111;
    border-bottom:1px solid rgba(0,0,0,.08);
}

.experience-stats{
    display:flex;
    gap:20px;
}

.stat-box{
    min-width:180px;
}

.stat-box h3{
    font-size:72px;
    line-height:1;
    color:#111;
    margin-bottom:10px;
}

.stat-box span{
    color:#666;
    font-size:14px;
}

@media(max-width:991px){

    .experience-content{
        grid-template-columns:1fr;
        gap:50px;
    }

    .experience-services{
        grid-template-columns:1fr;
    }

    .experience-stats{
        justify-content:flex-start;
    }

}

@media(max-width:576px){

    .experience-section{
        padding:90px 20px;
    }

    .experience-header h2{
        font-size:42px;
    }

    .service-item{
        font-size:22px;
    }

    .experience-stats{
        flex-direction:column;
        gap:30px;
    }

    .stat-box h3{
        font-size:54px;
    }

}