:root {
    --white: #ffffff;
    --brand-purple: hsl(248, 94%, 75%);
    --brand-purple-transparent: hsla(248, 94%, 75%, 0.72);
    --brand-green: rgb(191, 225, 147);
}

* {
    box-sizing: border-box;
}


/* Base */
body {
    margin: 0;
    padding-top: 70px;
    background: #000;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}


:root {
    --space-xl: 140px;
    --space-lg: 100px;
    --space-md: 60px;
}


section {
    padding: var(--space-xl) 20px var(--space-md);
}


/* Hero layout */
.hero {
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


/* Typography */
h1 {
    font-weight: 500;
    letter-spacing: 0em;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.2;
    margin: 12px 0 24px;
}


p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Tagline */
.tagline {
    display: block;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--brand-purple);
    opacity: 0;
    transform: translateY(10px);
    transition: all 1.2s ease;
}

/* Subtitle fade */
.fade {
    opacity: 0;
    transform: translateY(10px);
    transition: all 1.2s ease;
}

/* Show state */
.show {
    opacity: 0.85;
    transform: translateY(0);
}


/* Cursor */
.cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--brand-purple);
    margin-left: 6px;
    animation: blink 1s infinite;
    vertical-align: bottom;
}

.cursor-white {
    background: var(--white);
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }


    25%,
    75% {
        opacity: 0;
    }
}


/* Section spacing */
.what-we-build {
    display: flex;
    justify-content: center;
}


/* Purple panel */
.purple-panel {
    width: 40%;
    max-width: 1100px;
    height: auto;
    /* background: var(--brand-purple); */
    background: var(--brand-purple-transparent);
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* padding-top: 80px; */
    padding: 25px 40px 60px;
    transform: scale(0.96);
    transition: transform 0.3s ease;
}

/* Panel title */
.panel-title {
    color: rgb(255, 255, 255);
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 60px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    /* transition: opacity 1s ease, transform 1s ease; */
    transition:
        opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.panel-title.show {
    opacity: 1;
    transform: translateY(0);
}

/* Services grid */
.panel-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 0; */
    gap: 24px;
    width: 100%;
    max-width: 900px;
}


/* Individual service */
.panel-service {
    padding: 30px 24px;
    border-radius: 16px;

    /* Glass effect */
    /* background: rgba(255, 255, 255, 0.08); */
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    /* Center content vertically & horizontally */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    /* Animation */
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.panel-service.show {
    opacity: 1;
    transform: translateY(0);
}

.panel-service h3 {
    color: white;
    margin-bottom: 12px;
    font-weight: 500;
    text-align: center;
}


.panel-service p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.service-icon {
    font-size: 45px;
    margin-bottom: 14px;
    /* margin: 0 auto 18px; */
    /* line-height: 1;
    display: block; */
    /* text-align: center; */
    color: white;
    opacity: 0.9;
}


.structure-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.structure-left h2 {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    line-height: 1.3;
    font-weight: 500;
}

.structure-right p {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 420px;
    /* opacity: 0.85; */
}

/* Fade-in for RHS */
.fade-structure {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-structure.show {
    opacity: 0.85;
    transform: translateY(0);
}


/* .approach-section {
    padding: 160px 20px;
    display: flex;
    justify-content: center;
} */


.approach-panel {
    width: 40%;
    max-width: 1100px;
    height: 65vh;
    background: transparent;
    border: 4px solid var(--brand-purple);
    border-radius: 20px;
    padding: 50px 60px;
    transform: scale(0.96);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

/* Two-column layout */
/* .approach-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    height: 100%;
    align-items: start;
} */
.approach-container {
    display: flex;
    /* 🔥 switch to flex */
    gap: 80px;
    height: 100%;
    width: 100%;
    justify-content: space-between;
}


.approach-left {
    display: flex;
    align-items: center;
    width: 40%;
    /* height: 100%; */
    /* centers title relative to RHS height */
}


/* LHS typing title */
.approach-left h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 500;
}


/* RHS steps */
.approach-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    /* 🔑 center steps vertically */
    width: 55%;
    /* spacing handled inside steps */
    height: 100%;
    max-width: 520px;
}

.approach-step h3 {
    font-size: 1.5rem;
    /* subtitle larger */
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.35;
}

.approach-step p {
    font-size: 1.1rem;
    /* smaller body */
    opacity: 0.85;
    line-height: 1.55;
}

.approach-step {
    padding: 10px 10px;
    /* equal space above & below text */
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}


.approach-step.show {
    opacity: 1;
    transform: translateY(0);
}


.approach-step:not(:last-child) {
    border-bottom: 1px solid rgba(145, 129, 251, 0.4);
}

.approach-heading {
    display: inline;
    background: var(--brand-purple);
    padding: 0 6px;
    border-radius: 4px;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}




.fade-up.show {
    opacity: 1;
    transform: translateY(0);
    transition-duration: 0.6s;
}




/* .products-section {
    padding: 140px 20px 60px;
} */




.products-container {
    max-width: 1100px;
    margin: 0 auto;
}




.products-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 10px;
    font-weight: 500;
}




.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
    margin-top: 5px;
}




/* .products-header {
    position: sticky;
    top: 50px;
    z-index: 50;
    padding-bottom: 15px;
    background: black;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
} */
/*
.products-header {


    position: sticky;


    top: 70px;


    z-index: 999;


    background: rgba(0, 0, 0, 0.96);


    padding-bottom: 15px;


    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);
} */


.products-header {
    position: sticky;
    top: 70px;
    z-index: 999;
    background: rgba(0, 0, 0, 0.96);
    padding: 0px 20px 15px 60px;
    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);
}


/* .products-header {


    background: rgba(0, 0, 0, 0.96);


    padding:
        0 20px 15px;


    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);
} */


.products-filters {
    display: flex;
    gap: 12px;
    margin-top: 0px;
    position: relative;
    z-index: 60;
}




.filter-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}




.filter-btn.active {
    background: white;
    color: black;
}




.filter-btn:hover {
    border-color: rgba(145, 129, 251, 0.4);
    transform: translateY(-1px);
}




.product-card {
    position: relative;
    padding: 28px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: all 0.25s ease;
}




.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(145, 129, 251, 0.4);
    box-shadow:
        0 10px 30px rgba(145, 129, 251, 0.08),
        0 0 0 1px rgba(145, 129, 251, 0.15);
}




.product-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 10px;
}




.product-card p {
    font-size: 0.9rem;
    opacity: 0.75;
    line-height: 1.6;
    margin-top: 8px;
    font-weight: 300;
    letter-spacing: 0.05em;
}




.product-graphic {
    width: 100%;
    height: 50px;
    margin-top: 20px;
    opacity: 0.06;
    border: 0px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}




.product-graphic svg {
    width: 100%;
    height: 100%;
}


.product-graphic path,
.product-graphic line,


.product-graphic circle {
    stroke: white;
    stroke-width: 1.2;
    fill: none;
}




.see-more-btn {
    margin-top: 15px;
    display: block;
    margin-left: auto;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.679);
    font-size: 0.9rem;
    cursor: pointer;
    opacity: 0.8;
    padding: 0;
    text-decoration-line: underline;
}


.see-more-btn:hover {
    opacity: 1;
}




.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.28);
}




.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.navbar::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}


/* .navbar::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 20px;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.22),
            transparent);


    pointer-events: none;
} */


.nav-left {
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.9;
}


.nav-right {
    display: flex;
    gap: 28px;
}


.nav-link {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}


.nav-link:hover {
    opacity: 1;
    color: var(--brand-purple);
}


.nav-link.active {
    color: var(--brand-purple);
    opacity: 1;
}


#contact {
    scroll-margin-top: 0px;
}


#products {
    scroll-margin-top: 0px;
}


.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}



.contact-icon {
    font-size: 22px;
    color: rgba(0, 0, 0, 0.55);
    flex-shrink: 0;
    margin-top: 2px;
}


.contact-item p {
    margin: 0;
    line-height: 1.7;
}


.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 0px;
}


.contact-right {
    padding-right: 24px;
}


.contact-right iframe {
    width: 100%;
    height: 320px;
    border: none;
    border-radius: 12px;
    display: block;
}




/* White container */
.contact-box {
    max-width: 1100px;
    margin: 0 auto;
    padding: 38px 55px;
    border-radius: 20px;
    position: relative;
    /* display: flex;
    align-items: center; */
    background: #ffffff;
    color: #111;
    /* background: rgba(255, 255, 255, 0.397);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white; */
}


.contact-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;




    background: linear-gradient(135deg,
            rgba(145, 129, 251, 0.2),
            rgba(191, 225, 147, 0.15));




    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


.contact-item .label {
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}


.contact-item p {
    color: rgba(0, 0, 0, 0.941);
    margin-bottom: 10px;
    font-size: 0.95rem;
}


.contact-left h2 {
    color: #000000;
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 500;
}




.product-chip {
    display: inline-block;
    margin-top: 8px;
    margin-bottom: 10px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.679);
    background: rgba(255, 255, 255, 0.08);
    /* 👈 subtle dark chip */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}








/* VIDEO CSS */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2000;
}




.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}




.video-modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    transform: scale(0.96);
    transition: transform 0.3s ease;
}




.video-modal.active .video-modal-content {
    transform: scale(1);
}




.video-modal video {
    width: 100%;
    border-radius: 18px;
    display: block;
}




/* .close-video {
    position: absolute;
    top: 0px;
    right: 0 px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
} */


.close-video {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
}


.close-video:hover {
    background: rgba(2, 1, 5, 0.8);
    transform: scale(1.05);
}




/* CONTACT */


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.03);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #111;
    outline: none;
    transition: all 0.25s ease;
}


.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(145, 129, 251, 0.5);
    background: rgba(145, 129, 251, 0.03);
}


.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}


.contact-form button {
    align-self: flex-start;
    padding: 14px 22px;
    border: none;
    border-radius: 999px;
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}


.contact-form button:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}




.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}


.success-modal.active {
    opacity: 1;
    visibility: visible;
}


.success-box {
    width: 320px;
    padding: 32px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    color: white;
}


.success-box p {
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.6;
}


.success-box button {
    padding: 12px 24px;
    border: none;
    border-radius: 999px;
    background: white;
    color: black;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
}


.success-box button:hover {
    transform: translateY(-2px);
}


.hidden-field {
    display: none;
}




.showcase-video-section {
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}




.showcase-video {
    /* height: 75vh; */
    /* width: auto; */
    /* max-width: 92%; */


    width: 92%;
    height: auto;
    max-height: 75vh;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    display: block;
}




.showcase-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 850px;
}




.showcase-overlay h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 500;
    margin-bottom: 22px;
    line-height: 1.2;
}




.showcase-overlay p {
    font-size: 1.1rem;
    opacity: 0.82;
    line-height: 1.7;
}


.sound-toggle {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 5;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 999px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}


.sound-toggle:hover {
    transform: translateY(-2px);
}


/* Hidden on desktop */
.mobile-contact-heading {
    display: none;
}


.contact-section {
    padding-bottom: 120px;
}

.website-design-section {

    padding: 120px 20px;

    overflow: hidden;
}

.website-design-container {

    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.7fr 1.3fr;

    gap: 80px;

    align-items: center;

    opacity: 0;

    transform: translateY(50px);

    transition:
        opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.website-design-container.show {

    opacity: 1;

    transform: translateY(0);
}

.website-design-left h2 {

    font-size: clamp(2rem, 3vw, 2.6rem);

    font-weight: 500;

    line-height: 1.2;
}

.website-design-right p {

    font-size: 1.1rem;

    line-height: 1.8;

    opacity: 0.82;

    max-width: 100%;
}


/* =========================
   MOBILE RESPONSIVE
========================= */


@media (max-width: 768px) {


    /* GLOBAL */
    body {
        padding-top: 72px;
    }


    section {
        padding: 90px 18px 50px;
    }


    p {
        font-size: 1rem;
        line-height: 1.7;
    }


    /* NAVBAR */


    .navbar {
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(14px);
        /* border-bottom: 1px solid rgba(255, 255, 255, 0.12); */
        -webkit-backdrop-filter: blur(14px);
        /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6); */
    }


    .navbar::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.7);
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    }


    .nav-container {
        padding: 14px 18px;
    }


    .nav-right {
        gap: 16px;
    }


    .nav-link {
        font-size: 1rem;
    }


    /* HERO */


    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 10px;
    }


    h1 {
        font-size: 2.3rem;
        line-height: 1.25;
    }


    .tagline {
        font-size: 0.78rem;
        letter-spacing: 0.18em;
    }


    #subtitle {
        margin-left: 20px;
        margin-right: 20px;
    }


    /* WHAT WE BUILD */
    .what-we-build {
        padding: 0px;
    }


    .purple-panel {
        width: 100%;
        height: auto;
        padding: 45px 22px 45px;
        border-radius: 5px;
    }


    .panel-title {
        margin-bottom: 20px;
        margin-bottom: 30px;
        font-size: 1.5rem;
    }


    /* Glass tile */
    .panel-services {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .panel-service {
        /* padding: 5; */
        padding: 22px 14px;
        opacity: 0;
        transform: translateY(30px);
        transition:
            opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
            transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    }


    .panel-service:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }


    .service-icon {
        font-size: 36px;
    }


    .structure-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    /* PRODUCTS */


    .filter-btn {
        flex-shrink: 0;
    }


    .products-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
        scrollbar-width: none;
    }


    .products-filters::-webkit-scrollbar {
        display: none;
    }




    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .products-section {
        position: relative;
        padding-top: 0 !important;
    }


    .product-card {
        min-height: auto;
        padding: 22px;
    }


    .product-card h3 {
        font-size: 1.2rem;
    }




    .products-filters {
        width: 100%;
    }


    .product-card,
    .panel-service,
    .contact-form input,
    .contact-form textarea {
        max-width: 100%;
    }


    .products-header {
        position: sticky;
        top: 70px;
        z-index: 999;
        background: rgba(0, 0, 0, 0.96);
        padding: 12px 15px 14px 20px;
        border-bottom:
            1px solid rgba(255, 255, 255, 0.05);
    }


    .products-header.fixed {
        position: fixed;
        top: 68px;
        left: 0;
        padding: 12px 15px 14px 20px;
        width: 100%;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.96);
        /* padding: 12px 18px 14px; */
    }




    /* SUCCESS POPUP */
    .success-box {
        width: calc(100% - 40px);
        padding: 26px;
    }


    /* VIDEO POPUP */
    .video-modal-content {
        width: 94%;
    }




    /* CONTACT */
    .contact-section {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 80px;
    }


    .contact-box {
        width: 100%;
        padding: 26px 18px;
        border-radius: 18px;
        /* overflow: hidden; */
    }


    .contact-container {
        grid-template-columns: 1fr;
        gap: 34px;
    }


    .contact-right {
        padding-right: 0;
    }


    .contact-left,
    .contact-right {
        width: 100%;
        min-width: 0;
    }


    .contact-form {
        width: 100%;
    }


    .contact-form input,
    .contact-form textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 15px 16px;
        font-size: 16px;
    }


    .contact-form button {
        width: 100%;
        padding: 15px;
        justify-content: center;
    }


    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }


    .showcase-video {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 0;
        display: block;
    }




    .showcase-video-section {
        /* height: 65vh; */
        min-height: auto;
        padding: 30px 0;
    }


    .showcase-overlay h2 {
        font-size: 2rem;
    }


    .showcase-overlay p {
        font-size: 0.95rem;
    }


    .mobile-contact-heading {
        display: block;
        margin-bottom: 18px;
        font-size: 2rem;
        font-weight: 500;
    }

    .website-design-section {

        padding: 80px 20px;
    }

    .website-design-container {

        grid-template-columns: 1fr;

        gap: 0px;
    }

    .website-design-right p {

        max-width: 100%;
    }
}