:root {
    --design-width: 1366;
    --vw: calc(100vw / var(--design-width));
}

/* common css */
.no-scroll {
    overflow: hidden !important;
}

.wd-section-headline {
    font-weight: 400;
    font-size: 5rem;
    line-height: 1.3;
}

.wd-section-description {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.3;
}

@media (max-width: 1350px) {
    .wd-section-headline {
        font-size: 45px;
        line-height: 1.2;
    }

    .wd-section-description {
        font-size: 16px;
        line-height: 24px;
    }

}

@media (max-width: 1023px) {
    .wd-section-headline {
        font-size: 35px;
        line-height: 1.2;
    }

}





/* main css marketing page */



/* growth campaigns */
.growth-campaigns {
    padding: 9.375rem 0;
}

.growth-campaigns-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
    align-items: center;
}

.growth-campaigns-left {
    max-width: 58%;
    flex: 0 0 58%;
}

.growth-campaigns-right {
    max-width: 39%;
    flex: 0 0 39%;
}

.growth-campaigns-left-inner {
    display: flex;
    align-items: end;
    gap: 76px;
    margin-top: 100px;
}

.growth-campaigns-left-inner .wd-section-description {
    max-width: 590px;
    margin-bottom: 0 !important;
}

.growth-description {
    display: flex;
    flex-direction: column;
    gap: 3.3rem;
}



@media (min-width: 1024px) {
    .growth-campaigns-right img {
        transform: translateX(75px);
    }
}

@media (min-width: 2100px) {
    .growth-campaigns-left-inner .wd-section-description {
        max-width: 680px;
    }
}



@media (max-width: 1023px) {
    .growth-campaigns-wrapper {
        gap: 50px;
    }

    .growth-campaigns-left-inner,
    .growth-description {
        gap: 20px;
    }

    .growth-campaigns-left,
    .growth-campaigns-right {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .growth-arrow-down {
        height: 45px;
        width: auto;
    }

    .growth-campaigns-left-inner {
        margin-top: 50px;
    }

    .growth-campaigns {
        padding: 4rem 0;
    }

    .growth-campaigns-right {
        display: none !important;
    }
}



/*  pricing box */
.pricing-hover-section {
    height: 100vh;

}

.pricing-box-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pricing-box-bg-img .single-pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    overflow: hidden;
    /* Added for parallax clipping */
    transform: scale(1.2);
    will-change: transform, opacity;
    transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
}

.single-pricing-bg img {
    width: 100%;
    height: 120%;
    /* Extra height for parallax */
    object-fit: cover;
    position: absolute;
    top: -10%;
    /* Center the extra height */
    left: 0;
}

.pricing-box-bg-img .single-pricing-bg:first-child,
.single-pricing-bg.active {
    opacity: 1;
}

.single-pricing-bg.active {
    transform: scale(1);
}


.pricing-box-contents {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
    width: 100%;
}


.price-hover-box {
    position: relative;
    max-width: 310px;
    flex: 0 0 310px;
    height: 310px;
    border-radius: 50px;
    padding: 30px;
    overflow: hidden;

    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(80px);
    will-change: transform, opacity, max-width, flex, height;
    transition: max-width 1.5s cubic-bezier(0.22, 1, 0.36, 1),
        flex 1.5s cubic-bezier(0.22, 1, 0.36, 1),
        height 1.5s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.4s ease,
        backdrop-filter 0.4s ease;

    transition-property: max-width, flex, height, background-color, backdrop-filter;
    will-change: transform;
    transform: translateZ(0);
    contain: layout paint;
}

.price-hover-box.active {
    max-width: 466px;
    flex: 0 0 466px;
    height: 466px;
    background-color: #ffffff;
    backdrop-filter: blur(0px);
}


.pricing-middle-title {
    font-weight: 400;
    font-size: 28px;
    line-height: 100%;
    text-align: center;
    color: #ffffff;
}

.pricing-hover-title {
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 30px;
}

.price-hover-box ul {
    margin-left: 20px;
    margin-top: 30px;
}

.price-hover-box ul li {
    position: relative;
    font-size: 18px;
}

.price-hover-box ul li:before {
    content: '';
    position: absolute;
    width: .25rem;
    height: .25rem;
    border-radius: 999999px;
    top: .5rem;
    left: -0.8rem;
    background-color: #d04240;
}

.price-hover-box .pricing-middle-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.price-hover-box.active .pricing-middle-title {
    transform: translate(-50%, -150%);
    opacity: 0;
    visibility: hidden;
}

.pricing-box-inner {
    opacity: 0;
    visibility: hidden;
    /* transform: translateY(100px); */
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.price-hover-box.active .pricing-box-inner {
    opacity: 1;
    visibility: visible;
    /* transform: translateY(0); */
}

/* Line Clip Animation */
.line-clip {
    display: block;
    position: relative;
    overflow: hidden;
}

.line-inner {
    display: block;
    transform: translateY(102%);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease;
    will-change: transform, opacity;
}

.price-hover-box.active .line-inner {
    transform: translateY(0);
    opacity: 1;
}

/* Synchronized Entrance */
.price-hover-box.active .pricing-hover-title .line-inner,
.price-hover-box.active .wd-section-description .line-inner,
.price-hover-box.active ul li .line-inner {
    transition-delay: 0.15s;
}





@media (min-width: 2000px) {
    .price-hover-box {
        max-width: 400px;
        flex: 0 0 400px;
        height: 400px;
    }

    .price-hover-box.active {
        max-width: 600px;
        flex: 0 0 600px;
        height: 600px;
    }

    .pricing-box-contents {
        gap: 40px;
    }

    .pricing-hover-title {
        font-size: 50px;
    }
}

@media (max-width: 1350px) {
    .pricing-box-inner .wd-section-description {
        font-size: 18px;
        margin-bottom: 10px !important;
    }
}

@media (max-width: 1280px) {
    .price-hover-box {
        max-width: 250px;
        flex: 0 0 250px;
        height: 250px;
    }

    .price-hover-box.active {
        max-width: 400px;
        flex: 0 0 400px;
        height: 400px;
    }
}

@media (max-width: 1023px) {
    .pricing-hover-section {
        height: auto !important;
        padding: 80px 0;
    }

    .pricing-box-bg-img {
        position: absolute;
        height: 100%;
        width: 100%;
    }

    .pricing-box-contents {
        position: relative;
        flex-direction: column;
        height: auto;
        padding: 0 15px;
        gap: 40px;
        top: 0;
        left: 0;
        transform: none;
    }

    .price-hover-box {
        max-width: 100%;
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        min-height: 120px;
        border-radius: 30px;
        padding: 40px 25px;
        backdrop-filter: blur(8px);
        transition: background-color 0.4s ease, opacity 0.4s ease;
    }

    .price-hover-box.active {
        max-width: 100%;
        flex: 0 0 auto;
        height: auto;
        background-color: #ffffff;
    }

    .price-hover-box .pricing-middle-title {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        text-align: left;
        margin-bottom: 20px;
        font-size: 24px;
        display: block;
        /* Show title on mobile initially */
    }

    .price-hover-box.active .pricing-middle-title {
        display: none;
    }

    .pricing-hover-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .pricing-box-inner {
        transform: none;
    }

    /* Faster, snappier reveal on mobile during scroll */
    .price-hover-box.active .line-inner {
        transform: translateY(0);
        opacity: 1;
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
        transition-delay: 0.05s !important;
    }

    .pricing-box-bg-img .single-pricing-bg {
        transform: scale(1);
    }

    .price-hover-box ul li {
        font-size: 16px;
    }
}




/* results process */
.results-process {
    padding: 9.375rem 0;
}

.result-subtitle {
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 1.3;
    margin-top: 10px;
}

.results-process-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    will-change: transform;
}

.results-process-left {
    padding-top: 15vw;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.results-process-right {
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.result-process-vdo {
    border-radius: calc(30 * var(--vw));
    overflow: hidden;
    width: calc(383 * var(--vw));
    height: calc(256 * var(--vw));
}

.cost-percent {
    border-radius: calc(50 * var(--vw));
    background-color: #B6FAB5;
    padding: calc(30 * var(--vw));
    width: calc(470 * var(--vw));
    height: calc(378 * var(--vw));
}

.revenue-target {
    border-radius: calc(50 * var(--vw));
    background-color: #FAE6B5;
    padding: calc(30 * var(--vw));
    width: calc(470 * var(--vw));
    height: calc(378 * var(--vw));
}

.result-mini-img {
    border-radius: calc(30 * var(--vw));
    overflow: hidden;
    width: calc(238 * var(--vw));
    height: calc(182 * var(--vw));
}


.result-count {
    font-weight: 300;
    font-size: 128px;
    line-height: 1.3;
}

.reveal-box {
    display: block;
    overflow: hidden;
}

.reveal-item {
    display: block;
    transform: translateY(110%);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
}

.reveal-box.active .reveal-item {
    transform: translateY(0);
}

.revenue-target,
.cost-percent {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.result-bottom-content {
    text-align: center;
}

.result-bottom-content * {
    text-align: center;
}

.result-process-vdo {
    transform: translatex(-100px) scale(.7);
    opacity: 0;
}

.cost-percent {
    transform: translatex(-100px) scale(.7);
    opacity: 0;
}

.revenue-target {
    transform: translatex(100px) scale(.7);
    opacity: 0;
}

.result-mini-img {
    transform: translatex(100px) scale(.7);
    opacity: 0;
}

.results-process-wrapper.active .result-process-vdo,
.results-process-wrapper.active .cost-percent,
.results-process-wrapper.active .revenue-target,
.results-process-wrapper.active .result-mini-img {
    transform: none;
    opacity: 1;
    transition: transform 2.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1);
}



@media (min-width: 1700px) {

    .results-process-wrapper,
    .results-process-left,
    .results-process-right {
        gap: 40px;
    }
}

@media (max-width: 1280px) {
    .result-count {
        font-size: 80px;
    }
}

@media (max-width: 1023px) {
    .results-process-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .reuslts-top-content {
        margin-bottom: 50px;
    }

    .results-process-left,
    .results-process-right {
        padding-top: 0;
        align-items: start;
        width: 100%;
    }

    .results-process {
        padding: 4rem 0;
    }

    .result-subtitle {
        font-size: 20px;
    }

    .result-count {
        font-size: 50px;
    }

    .result-process-vdo,
    .cost-percent,
    .revenue-target,
    .result-mini-img {
        width: 100% !important;
        height: 100% !important;
        border-radius: 20px !important;
    }

    .result-process-vdo * {
        border-radius: 20px;
    }
}


/* marketing process */
.marketing-process {
    /* padding-bottom: 9.375rem; */
    position: relative;
    z-index: 1;
    background-color: #ffffff;
}

.process-animation-outer {
    position: relative;
    margin-top: 130px;
}

.process-dots-wrapper {
    position: fixed;
    top: 50%;
    right: 1.5vw;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.process-dots-wrapper.visible {
    opacity: 1;
    visibility: visible;
}

.process-dots {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: fit-content;
}

.process-dot {
    width: 4px;
    height: 4px;
    border: 1px solid #d04240;
    border-radius: 50%;
    transition: all 0.4s ease;
    background-color: transparent;
}

.process-dot.active {
    background-color: #d04240;
    width: 6px;
    height: 6px;
}


@media (min-width: 1700px) {
    .process-dot {
        width: 6px;
        height: 6px;
    }

    .process-dot.active {
        width: 8px;
        height: 8px;
    }
}

.process-animation-inner {
    /* padding-bottom: 130px; */
}

.process-item {
    position: relative;
    width: 100%;
    height: 80vh;
    margin-bottom: 20vh;
}

.process-item-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 20;
}

.process-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.process-item-top-content {
    position: absolute;
    top: 1%;
    left: 0;
    width: 100%;
    z-index: 20;
    transform: translateY(-50%);
    pointer-events: none;
}

.process-large-text {
    /* font-size: 10.84rem; */
    font-size: 12.7vw;
    line-height: .8;
    color: #fff;
    margin: 0;
    font-weight: 400;
    text-align: center;
    width: 100%;
    display: block;
    will-change: transform;
    text-rendering: optimizeSpeed;
}

.process-item-top-content.mix-black-text {
    z-index: 10;
}

.process-item-top-content.mix-black-text .process-large-text {
    color: #000;
}

.process-item-top-content.mix-white-text {
    z-index: 30;
}


.process-item-bottom-content {
    position: absolute;
    bottom: 5vw;
    left: 5vw;
    width: 100%;
    z-index: 20;
}

.process-item .wd-section-description {
    color: #fff;
    max-width: 600px;
    text-rendering: optimizeSpeed;
}




.process-item-img img {
    will-change: transform, opacity;
    transform: translateZ(0);
}

.process-item-top-content,
.process-item-bottom-content {
    will-change: transform, opacity;
}


@media (max-width: 1023px) {
    .process-item {
        height: 60vh;
        border-radius: 30px;
    }

    .process-item-content {
        padding: 30px;
    }

    .process-item .wd-section-headline {
        font-size: 20vw;
        top: 0;
    }

    .process-item .wd-section-description {
        font-size: 16px;
        max-width: 90%;
    }

    .process-item::after {
        width: 35px;
        height: 35px;
        font-size: 14px;
        top: 35%;
        right: 10%;
    }
}





/* marketing campaign */
.marketing-campaign {
    height: 100vh;
    will-change: clip-path, transform;
}

.marketing-campaign-animation {
    padding: 1.25rem;
    box-sizing: border-box;
    will-change: clip-path, transform;
}

.marketing-campaign-wrapper {
    border-radius: 50px;
    overflow: hidden;
    /* background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%); */
    clip-path: inset(15% 40% 15% 40% round 20px);
}

.campaign-headline {
    position: absolute;
    top: 8%;
    z-index: 20;
    color: #fff;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.campaign-headline .wd-section-headline {
    transform: translateY(100px);
    will-change: transform;
    text-align: center;
    padding: 0 !important;
}

.campaign-form {
    position: absolute;
    bottom: 8%;
    z-index: 20;
    width: 100%;
    display: flex;
    justify-content: center;
}

.campaign-form form {
    display: flex;
    justify-content: center;
    width: 100%;
}

.campaign-form-inner {
    backdrop-filter: blur(80px);
    background: #FFFFFF40;
    border-radius: 30px;
    opacity: 0;
    visibility: hidden;
    padding: 1.875rem 3.125rem;
    max-width: 46.33%;
    width: 100%;

    transition-property: max-width, flex, height, background-color, backdrop-filter;
    will-change: transform;
    transform: translateZ(0);
    contain: layout paint;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);

    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-groups-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.form-group label {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    border: none;
    padding: 0 15px;
    font-size: 16px;
    background-color: #fff;
    outline: none;
    color: #000;
}

.campaign-submit-btn {
    width: 100%;
    height: 60px;
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.campaign-submit-btn:hover {
    background-color: #222;
}



@media (min-width: 1700px) {
    .campaign-headline {
        top: 10%;
    }

    .campaign-form {
        bottom: 10%;
    }

    .form-groups-grid {
        gap: 35px 20px;
    }
}


@media (max-width: 1023px) {
    .campaign-form-inner {
        max-width: 90%;
        padding: 2rem;
    }

    .form-groups-grid {
        grid-template-columns: 1fr;
    }


}


@media (max-width: 768px) {
    .campaign-headline {
        top: 25px;
        max-width: 80%;
        margin: 0 auto;
    }

    .campaign-form {
        bottom: 25px;
    }

    .campaign-form-inner {
        padding: 1.5rem;
        max-width: 94%;
    }

    .form-groups-grid {
        gap: 15px 10px;
    }

    .form-group input {
        height: 40px;
    }

    #recaptcha_error_message {
        position: absolute;
        top: 22%;
    }

    .campaign-form-outer {
        display: flex;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        flex-direction: column;
        justify-content: space-around;
    }

    .campaign-headline,
    .campaign-form {
        position: unset;
    }
}