@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Roboto+Mono:wght@400&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    color: #15151f;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== GLOBAL ===== */

.container {
    max-width: 1406px;
    margin: 0 auto;
    padding: 0 15px;
}

.overflow-hidden {
    overflow: hidden;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes backgroundScroll {
    from { background-position: 0 0; }
    to { background-position: -400px 0; }
}

@keyframes swing-vertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===== HEADER ===== */

header.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 140px;
}

header.header .logo {
    background-color: rgba(223, 227, 248, 1);
    padding: 12px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    min-height: 56px;
}

header.header .logo a {
    display: flex;
}

@media (max-width: 900px) {
    header.header {
        margin-bottom: 80px;
        width: 100%;
        padding: 0 15px;
    }
}

/* ===== HERO ===== */

.hero {
    margin: 32px 0 150px;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    position: relative;
}

.hero__inner .col-left h1 {
    font-size: 72px;
    font-weight: 600;
    line-height: 86px;
    margin-bottom: 24px;
    color: #000004;
    margin-right: -169px;
    z-index: 4;
    position: relative;
}

.hero__inner .col-left h1 br {
    display: none;
}

.hero__inner .col-left h1 span {
    color: rgba(0, 25, 255, 1);
}

.hero__inner .col-left p {
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    color: rgba(64, 64, 64, 1);
}

.hero__inner .col-left p span {
    display: none;
}

.hero__inner .col-left .last-p {
    margin-bottom: 214px;
}

.hero__inner .col-left .start-now {
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    padding: 16px 64px;
    background: rgba(49, 63, 254, 1);
    border-radius: 100px;
    color: #fff;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    transition: all 0.5s;
    margin-bottom: 106px;
}

.hero__inner .col-left .start-now:hover {
    background: rgba(230, 243, 85, 1);
    color: rgba(21, 21, 31, 1);
}

.hero__inner .col-right {
    background-color: rgba(230, 243, 85, 0.9);
    border-radius: 24px;
    z-index: 2;
    position: relative;
}

.hero__inner .col-right__inner {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    height: 100%;
    backdrop-filter: blur(10px);
    z-index: 3;
    overflow: hidden;
    border-radius: 24px;
}

.hero__inner .col-right__inner::before {
    content: "";
    background-image: url(../images/Group-70-1.svg);
    animation: backgroundScroll 20s linear infinite;
    background-repeat: no-repeat;
    position: absolute;
    width: 160%;
    height: 76%;
    top: 0;
    left: -248px;
    transform: rotate(-45deg);
    opacity: 0.6;
    z-index: 4;
}

.hero__inner .col-right__inner .button-block {
    background: rgba(38, 38, 38, 1);
    box-shadow: 0 0 0 32px #fff;
    border-radius: 24px;
    position: relative;
    z-index: 4;
}

.hero__inner .col-right__inner .button-block__inner {
    display: inline-flex;
    flex-direction: column;
    min-height: 320px;
    min-width: 320px;
    justify-content: space-between;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
    padding: 40px;
    border-radius: 24px;
}

.hero__inner .col-right__inner .button-block__inner .button-bg {
    position: absolute;
    bottom: -90px;
    left: -100px;
    animation: spin 30s linear infinite;
}

.hero__inner .col-right__inner .button-block h3 {
    font-size: 40px;
    font-weight: 500;
    line-height: 53px;
    color: white;
    margin: 0 auto;
}

.hero__inner .col-right__inner .button-block::after {
    content: "";
    position: absolute;
    top: -53px;
    right: -7px;
    width: 32px;
    height: 32px;
    background-color: white;
    background-image: radial-gradient(circle at 43px 40px, rgba(230, 243, 85, 0.9) 0, rgba(230, 243, 85, 0.9) 40px, white 0);
    transform: rotate(180deg);
    border-top: 10px solid #fff;
}

.hero__inner .col-right__inner .button-block::before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: -56px;
    width: 32px;
    height: 32px;
    background-color: white;
    background-image: radial-gradient(circle at 43px 40px, rgba(230, 243, 85, 0.9) 0, rgba(230, 243, 85, 0.9) 40px, white 0);
    transform: rotate(180deg);
    border-top: 10px solid #fff;
}

.hero__inner .img-one {
    max-width: 200px;
    position: absolute;
    right: 50%;
    bottom: 30px;
    left: -88px;
    transform: translate(-50%, -50%);
    animation: swing-vertical 5s ease-in-out infinite;
}

.hero__inner .img-two {
    max-width: 300px;
    position: absolute;
    right: 50%;
    top: -5px;
    left: 35px;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: swing-vertical 3s ease-in-out infinite;
}

.hero__inner .img-three {
    max-width: 200px;
    position: absolute;
    right: 50px;
    top: 180px;
    z-index: 1;
    animation: swing-vertical 4s ease-in-out infinite;
}

@media (max-width: 900px) {
    .hero {
        background: rgba(230, 243, 85, 1);
        margin: 0 0 -24px 0;
        padding: 32px 0 0;
        border-radius: 0 0 24px 24px;
        position: relative;
        z-index: 2;
        overflow: hidden;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 80px;
        padding: 0 !important;
    }

    .hero__inner .col-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero__inner .col-left h1 {
        font-size: 32px;
        line-height: 38px;
        max-width: 365px;
        text-align: center;
        margin: 0 auto 16px;
    }

    .hero__inner .col-left h1 br {
        display: block;
    }

    .hero__inner .col-left p {
        font-size: 16px;
        line-height: 22px;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 40px;
    }

    .hero__inner .col-left p span {
        display: inline-block;
    }

    .hero__inner .col-left .last-p {
        display: none;
    }

    .hero__inner .col-left .start-now {
        margin-bottom: 0;
    }

    .hero__inner .col-right {
        min-height: 200px;
    }

    .hero__inner .col-right__inner {
        backdrop-filter: none;
    }

    .hero__inner .col-right__inner::before {
        height: 100%;
        top: 0;
        left: 0;
        transform: none;
    }

    .hero__inner .col-right__inner .button-block {
        display: none;
    }

    .hero__inner .img-one {
        z-index: 5;
        max-width: 124px;
        left: -35px;
        bottom: 130px;
    }

    .hero__inner .img-two {
        max-width: 170px;
        z-index: 5;
        left: 30%;
        transform: translate(-50%, -50%);
        top: 40px;
    }

    .hero__inner .img-three {
        max-width: 124px;
        z-index: 5;
        top: -27px;
        right: -30px;
    }
}

/* ===== WHAT PERFORMANCE ===== */

.what-performance {
    background: rgba(21, 21, 31, 1);
    max-width: 1840px;
    margin: 0 auto;
    border-radius: 48px 48px 0 0;
    padding: 150px 0 200px;
    margin-bottom: -50px;
    overflow: hidden;
}

.what-performance__inner .top {
    display: flex;
    margin-bottom: 48px;
    align-items: flex-end;
}

.what-performance__inner .top h2 {
    font-size: 64px;
    font-weight: 500;
    line-height: 77px;
    color: rgba(255, 255, 255, 1);
    max-width: 815px;
}

.what-performance__inner .top h2 span {
    color: rgba(230, 243, 85, 1);
}

.what-performance__inner .top .line {
    flex: 1;
    background: url(../images/Vector-37.svg);
    background-repeat: repeat-x;
    background-position: bottom;
    animation: backgroundScroll 20s linear infinite;
    min-height: 28px;
    margin-bottom: 15px;
}

.what-performance__inner .hover-items {
    display: flex;
    gap: 32px;
}

.what-performance__inner .hover-items .hover-items-item {
    background: rgba(242, 242, 242, 1);
    padding: 40px 40px 170px 40px;
    border-radius: 24px;
    width: 16%;
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 354px;
}

.what-performance__inner .hover-items .hover-items-item h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    margin-bottom: 24px;
    color: rgba(0, 25, 255, 1);
    transition: all 0.5s ease;
}

.what-performance__inner .hover-items .hover-items-item .number {
    font-family: 'Craftwork Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    text-align: left;
    transition: all 0.5s ease;
    color: rgba(21, 21, 31, 1);
}

.what-performance__inner .hover-items .hover-items-item img {
    position: absolute;
    bottom: -70px;
    right: -60px;
    max-width: 200px;
    transition: all 0.5s ease;
}

.what-performance__inner .hover-items .active {
    width: 36%;
    background-color: rgba(49, 63, 254, 1);
}

.what-performance__inner .hover-items .active h4 {
    color: rgba(230, 243, 85, 1);
    font-size: 36px;
    line-height: 43px;
}

.what-performance__inner .hover-items .active .number {
    color: #fff;
    font-size: 64px;
    line-height: 77px;
}

.what-performance__inner .hover-items .active img {
    max-width: 320px;
    animation: spin 30s linear infinite;
}

.what-performance__inner .hover-items-mob {
    display: none;
}

.what-performance__inner .hover-items-mob .hover-items-item {
    background-color: rgba(223, 227, 248, 1);
    border-radius: 24px;
    padding: 40px 40px 170px 40px;
    margin: 0 15px;
    position: relative;
    overflow: hidden;
}

.what-performance__inner .hover-items-mob .hover-items-item h4 {
    font-family: 'Craftwork Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    margin-bottom: 24px;
    color: rgba(49, 63, 254, 1);
}

.what-performance__inner .hover-items-mob .hover-items-item .number {
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    color: rgba(21, 21, 31, 1);
}

.what-performance__inner .hover-items-mob .hover-items-item img {
    max-width: 200px;
    animation: spin 30s linear infinite;
    position: absolute;
    bottom: -80px;
    right: -96px;
}

@media (max-width: 900px) {
    .what-performance {
        border-radius: 0;
        padding: 128px 0;
        margin-bottom: 0;
    }

    .what-performance__inner {
        padding: 0 !important;
    }

    .what-performance__inner .top {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .what-performance__inner .top h2 {
        font-size: 32px;
        line-height: 38px;
        max-width: 100%;
        text-align: center;
    }

    .what-performance__inner .top .line {
        display: none;
    }

    .what-performance__inner .hover-items {
        display: none;
    }

    .what-performance__inner .hover-items-mob {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 15px;
    }

    .what-performance__inner .hover-items-mob .hover-items-item {
        scroll-snap-align: center;
        min-width: 203px;
        flex-shrink: 0;
    }
}

/* ===== WE OFFER ===== */

.we-offer {
    max-width: 1840px;
    margin: 0 auto;
    padding: 150px 0;
    background-color: rgba(49, 63, 254, 1);
    border-radius: 48px;
}

.we-offer__inner h2 {
    font-size: 64px;
    font-weight: 500;
    line-height: 77px;
    margin-bottom: 48px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
}

.we-offer-accordion {
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.we-offer-accordion .col {
    display: grid;
    gap: 32px;
    height: fit-content;
}

.we-offer-accordion .col .item {
    box-shadow: 0px 14px 80px 0px rgba(0, 0, 0, 0.03);
    background: rgba(223, 227, 248, 1);
    border-radius: 24px;
    position: relative;
    cursor: pointer;
}

.we-offer-accordion .col .item .top {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 40px;
}

.we-offer-accordion .col .item .top .number {
    font-family: "Roboto Mono", sans-serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 96px;
    color: rgba(0, 25, 255, 1);
}

.we-offer-accordion .col .item .top h5 {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    color: rgba(0, 4, 14, 1);
}

.we-offer-accordion .col .item .top .button-open {
    margin-left: auto;
    transition: all 0.5s;
}

.we-offer-accordion .col .item .content {
    max-height: 0;
    overflow: hidden;
    z-index: 3;
    position: relative;
    top: -42px;
    transition: all 0.5s;
    background: rgba(223, 227, 248, 1);
    border-radius: 24px;
}

.we-offer-accordion .col .item .content ul {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    display: flex;
    gap: 16px;
    flex-direction: column;
    padding: 40px 40px 0px 70px;
}

.we-offer-accordion .col .item .content ul li {
    position: relative;
}

.we-offer-accordion .col .item .content ul li::before {
    content: "";
    position: absolute;
    left: -25px;
    top: 4px;
    width: 14px;
    height: 10px;
    background-image: url(../images/Vector-3.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.we-offer-accordion .col .item.active .top .button-open {
    transform: rotate(45deg);
}

.we-offer-accordion .col .item.active .content {
    max-height: 1000px;
}

.we-offer-accordion .col .last-item {
    min-height: 176px;
    background-image: url(../images/Frame108.webp);
    background-size: cover;
    background-position: center;
    background-color: rgba(21, 21, 31, 1);
}

@media (max-width: 900px) {
    .we-offer {
        margin: -24px auto 0;
        padding: 80px 0;
        border-radius: 24px;
    }

    .we-offer__inner h2 {
        font-size: 32px;
        line-height: 38px;
    }

    .we-offer-accordion {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .we-offer-accordion .col {
        gap: 16px;
    }

    .we-offer-accordion .col .item .top {
        padding: 24px;
    }

    .we-offer-accordion .col .item .top .number {
        font-size: 40px;
        line-height: 48px;
    }

    .we-offer-accordion .col .item .top h5 {
        font-size: 24px;
        line-height: 29px;
    }

    .we-offer-accordion .col .item .content {
        top: 0;
    }

    .we-offer-accordion .col .item .content ul {
        padding: 0px 40px 40px 70px;
    }

    .we-offer-accordion .col .last-item {
        min-height: 115px;
    }
}

/* ===== AND EVEN MORE ===== */

.and-even-more {
    background-color: rgba(230, 243, 85, 1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.and-even-more::before {
    content: "";
    background-image: url(../images/long-lines.svg);
    animation: backgroundScroll 20s linear infinite;
    background-repeat: no-repeat;
    position: absolute;
    width: 170%;
    height: 100%;
    top: 0;
    left: -248px;
    transform: rotate(-45deg);
    opacity: 0.6;
}

.and-even-more__inner {
    padding: 85px 85px 64px;
    position: relative;
    overflow: hidden;
}

.and-even-more__inner::after {
    content: '';
    width: 350px;
    height: 400px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url(../images/113.webp);
    background-repeat: no-repeat;
    background-position: bottom right;
    z-index: 3;
    display: none;
}

.and-even-more__inner h3 {
    font-size: 64px;
    font-weight: 600;
    line-height: 77px;
    margin-bottom: 24px;
    color: rgba(21, 21, 31, 1);
}

.and-even-more__inner p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(21, 21, 31, 1);
    max-width: 500px;
}

.and-even-more .img-bg {
    position: absolute;
    bottom: 0;
    left: 30px;
    max-width: 837px;
}

.and-even-more .button-block {
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: 6;
}

.and-even-more .button-block__inner {
    margin-left: auto;
    background: #15151f;
    padding: 40px 130px 40px 40px;
    box-shadow: 0 0 0 32px #313ffe;
    border-radius: 24px;
    position: relative;
    width: 49%;
}

.and-even-more .button-block__inner::after {
    content: "";
    position: absolute;
    top: -54px;
    right: -7px;
    width: 32px;
    height: 32px;
    background-color: #313ffe;
    background-image: radial-gradient(circle at 43px 36px, #e6f355, #e6f355 38px, #313ffe 0);
    transform: rotate(180deg);
    border-top: 10px solid #313ffe;
}

.and-even-more .button-block__inner::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: -56px;
    width: 32px;
    height: 32px;
    background-color: #ffffff00;
    background-image: radial-gradient(circle at 43px 36px, #bed5fe00, #bed5fe00 38px, #313ffe 0);
    transform: rotate(180deg);
    border-top: 10px solid #313ffe;
}

.and-even-more .button-block__inner h3 {
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 40px;
    max-width: 385px;
}

.and-even-more .button-block__inner a {
    background: rgba(230, 243, 85, 1);
    padding: 16px 32px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 40px;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    color: rgba(21, 21, 31, 1);
    transition: all 0.5s;
    margin-left: auto;
}

.and-even-more .button-block__inner a svg path {
    transition: all 0.5s;
}

.and-even-more .button-block__inner a:hover {
    background: rgba(0, 25, 255, 1);
    color: #fff;
}

.and-even-more .button-block__inner a:hover svg path {
    stroke: #fff;
}

@media (max-width: 900px) {
    .and-even-more {
        background-color: transparent;
    }

    .and-even-more::before {
        height: 100%;
        top: 200px;
        left: 33px;
        transform: rotate(324deg);
        z-index: 2;
    }

    .and-even-more__inner {
        padding: 40px 24px 354px;
        background-color: rgba(230, 243, 85, 1);
        border-radius: 24px;
        text-align: center;
    }

    .and-even-more__inner::after {
        display: block;
    }

    .and-even-more__inner h3 {
        font-size: 32px;
        line-height: 38px;
    }

    .and-even-more .img-bg {
        display: none;
    }

    .and-even-more .button-block__inner {
        padding: 40px;
        box-shadow: none;
        max-width: 100%;
        width: 100%;
        margin-top: 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .and-even-more .button-block__inner::after,
    .and-even-more .button-block__inner::before {
        display: none;
    }

    .and-even-more .button-block__inner h3 {
        font-size: 32px;
        line-height: 38px;
        text-align: center;
    }

    .and-even-more .button-block__inner a {
        margin-left: 0;
    }
}

/* ===== WHY MIGHTY ADS ===== */

.why-mighty-ads {
    margin-top: 150px;
}

.why-mighty-ads__inner h2 {
    font-size: 64px;
    font-weight: 600;
    line-height: 77px;
    color: rgba(21, 21, 31, 1);
    text-align: center;
    margin-bottom: 48px;
}

.why-mighty-ads__inner .cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.why-mighty-ads__inner .cols .col-left {
    background-color: rgba(230, 243, 85, 1);
}

.why-mighty-ads__inner .cols .col {
    border-radius: 24px;
    padding: 64px 40px;
}

.why-mighty-ads__inner .cols .col .top {
    display: flex;
    gap: 40px;
    margin-bottom: 64px;
    align-items: center;
}

.why-mighty-ads__inner .cols .col .top img {
    animation: spin 30s linear infinite;
}

.why-mighty-ads__inner .cols .col .top h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    color: rgba(21, 21, 31, 1);
    max-width: 400px;
}

.why-mighty-ads__inner .cols .col ul {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-mighty-ads__inner .cols .col ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: rgba(21, 21, 31, 1);
    padding-left: 38px;
    position: relative;
}

.why-mighty-ads__inner .cols .col ul li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background-image: url(../images/Vector-2.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.why-mighty-ads__inner .cols .col-right {
    background-color: #dfe3f8;
    border-radius: 24px;
    padding: 64px 40px;
    background-image: url(../images/Group-70-2.svg);
    background-repeat: repeat-x;
    background-position: center 127px;
    position: relative;
}

.why-mighty-ads__inner .cols .col-right h3 {
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    color: rgba(21, 21, 31, 1);
}

.why-mighty-ads__inner .cols .col-right ul {
    display: grid;
    grid-template-columns: 2fr 3fr;
}

@media (max-width: 900px) {
    .why-mighty-ads {
        margin-top: 104px;
    }

    .why-mighty-ads__inner h2 {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 40px;
    }

    .why-mighty-ads__inner .cols {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }

    .why-mighty-ads__inner .cols .col {
        padding: 40px;
    }

    .why-mighty-ads__inner .cols .col .top {
        margin-bottom: 40px;
        justify-content: center;
    }

    .why-mighty-ads__inner .cols .col .top img {
        display: none;
    }

    .why-mighty-ads__inner .cols .col .top h3 {
        font-size: 24px;
        line-height: 28px;
        text-align: center;
    }

    .why-mighty-ads__inner .cols .col ul {
        gap: 24px;
    }

    .why-mighty-ads__inner .cols .col-right {
        min-height: 256px;
        padding: 40px;
    }

    .why-mighty-ads__inner .cols .col-right h3 {
        font-size: 24px;
        line-height: 28px;
        text-align: center;
    }

    .why-mighty-ads__inner .cols .col-right ul {
        grid-template-columns: 1fr;
    }
}

/* ===== YOU ASK ===== */

.you-ask {
    background: rgba(49, 63, 254, 1);
    padding: 150px 0;
    max-width: 1840px;
    margin: 150px auto;
    border-radius: 48px;
}

.you-ask__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.you-ask__inner .col-left {
    position: relative;
}

.you-ask__inner .col-left .col-left-inner {
    position: sticky;
    top: 30px;
}

.you-ask__inner .col-left .col-left-inner h2 {
    font-size: 64px;
    font-weight: 500;
    line-height: 77px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 1);
}

.you-ask__inner .col-left .col-left-inner p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(255, 255, 255, 1);
}

.you-ask .ready-to-see-result {
    background-color: rgba(0, 4, 14, 1);
    padding: 40px;
    margin-top: 80px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.you-ask .ready-to-see-result .ready-to-see-result_block-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 1);
}

.you-ask .ready-to-see-result a {
    background: rgba(230, 243, 85, 1);
    padding: 16px 32px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 40px;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    color: rgba(21, 21, 31, 1);
    transition: all 0.5s;
    margin-left: auto;
    z-index: 2;
}

.you-ask .ready-to-see-result a svg path {
    transition: all 0.5s;
}

.you-ask .ready-to-see-result a:hover {
    background: rgba(0, 25, 255, 1);
    color: #fff;
}

.you-ask .ready-to-see-result a:hover svg path {
    stroke: #fff;
}

.you-ask .ready-to-see-result img {
    max-width: 375px;
    position: absolute;
    right: -117px;
    top: 40px;
    animation: spin 30s linear infinite;
}

.you-ask__inner .col-right .items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.you-ask__inner .col-right .items .item {
    background-color: rgba(242, 242, 242, 1);
    padding: 40px;
    border-radius: 24px;
}

.you-ask__inner .col-right .items .item .top {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    align-items: center;
}

.you-ask__inner .col-right .items .item .top .number {
    color: rgba(49, 63, 254, 1);
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
}

.you-ask__inner .col-right .items .item .top h3 {
    color: rgba(0, 4, 14, 1);
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
}

.you-ask__inner .col-right .items .item p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: rgba(64, 64, 64, 1);
}

@media (max-width: 900px) {
    .you-ask {
        padding: 104px 0;
        margin: 104px auto;
        border-radius: 24px;
    }

    .you-ask__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .you-ask__inner .col-left .col-left-inner {
        text-align: center;
    }

    .you-ask__inner .col-left .col-left-inner h2 {
        font-size: 32px;
        font-weight: 500;
        line-height: 38px;
    }

    .you-ask__inner .col-left .col-left-inner p {
        margin-bottom: 40px;
    }

    .you-ask .ready-to-see-result {
        margin-top: 8px;
        padding: 40px 15px 250px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .you-ask .ready-to-see-result .ready-to-see-result_block-title {
        font-size: 32px;
        line-height: 38px;
        text-align: center;
        max-width: 250px;
        margin: 0 auto 48px;
    }

    .you-ask .ready-to-see-result a {
        margin-left: 0;
    }

    .you-ask .ready-to-see-result img {
        max-width: 100%;
        position: relative;
        right: 0;
        top: -60px;
        margin-bottom: -510px;
        z-index: 1;
    }

    .you-ask__inner .col-right .items {
        gap: 16px;
    }

    .you-ask__inner .col-right .items .item {
        padding: 24px;
    }
}

/* ===== OUR MARKETING STACK ===== */

.our-marketing-stack {
    margin-bottom: 152px;
}

.our-marketing-stack__inner .colums {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 32px;
}

.our-marketing-stack__inner .colums .col-left {
    background: rgba(230, 243, 85, 0.9);
    padding: 85px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.our-marketing-stack__inner .colums .col-left::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 250px;
    width: 100%;
    animation: backgroundScroll 20s linear infinite;
    background-image: url(../images/long-lines.svg);
}

.our-marketing-stack__inner .colums .col-left h3 {
    font-size: 64px;
    font-weight: 500;
    line-height: 77px;
    color: rgba(0, 4, 14, 1);
    margin-bottom: 24px;
}

.our-marketing-stack__inner .colums .col-left p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(64, 64, 64, 1);
}

.our-marketing-stack__inner .colums .col-right {
    background-color: rgba(21, 21, 31, 1);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.our-marketing-stack__inner .colums .col-right .slider-track {
    display: flex;
    gap: 32px;
    animation: marquee 15s linear infinite;
    margin-top: 60px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.our-marketing-stack__inner .colums .col-right .slider-track img {
    flex-shrink: 0;
}

.our-marketing-stack__inner .colums .col-right .content {
    margin-top: auto;
    padding: 85px;
}

.our-marketing-stack__inner .colums .col-right .content h4 {
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 40px;
}

.our-marketing-stack__inner .colums .col-right .content a {
    background: rgba(230, 243, 85, 1);
    padding: 16px 32px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 40px;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    color: rgba(21, 21, 31, 1);
    transition: all 0.5s;
}

.our-marketing-stack__inner .colums .col-right .content a svg path {
    transition: all 0.5s;
}

.our-marketing-stack__inner .colums .col-right .content a:hover {
    background: rgba(0, 25, 255, 1);
    color: #fff;
}

.our-marketing-stack__inner .colums .col-right .content a:hover svg path {
    stroke: #fff;
}

@media (max-width: 900px) {
    .our-marketing-stack {
        margin-bottom: 104px;
    }

    .our-marketing-stack__inner .colums {
        grid-template-columns: 1fr;
    }

    .our-marketing-stack__inner .colums .col-left {
        padding: 80px 24px;
    }

    .our-marketing-stack__inner .colums .col-left::before {
        bottom: -130px;
        background-size: 2000px;
    }

    .our-marketing-stack__inner .colums .col-left h3 {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 24px;
        max-width: 300px;
        text-align: center;
    }

    .our-marketing-stack__inner .colums .col-left p {
        text-align: center;
    }

    .our-marketing-stack__inner .colums .col-right .content {
        padding: 70px 15px 85px;
        text-align: center;
    }
}

/* ===== FOOTER ===== */

.footer {
    background: rgba(21, 21, 31, 1);
    max-width: 1840px;
    margin: 0 auto;
    border-radius: 48px 48px 0px 0px;
    padding: 80px 0;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
}

.footer__inner .col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__inner .col .logo {
    max-width: 235px;
}

.footer__inner .col .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__inner .col .menu {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-top: auto;
    list-style: none;
}

.footer__inner .col .menu li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #fff;
}

.footer__inner .col .menu li a:hover {
    color: rgba(49, 63, 254, 1);
}

.footer__inner .col .contact-us-button {
    font-family: 'Craftwork Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 38px;
    color: rgba(230, 243, 85, 1);
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer__inner .col .contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 400px;
    margin-bottom: 16px;
}

.footer__inner .col .contact-info li {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    color: #fff;
    display: flex;
    gap: 16px;
}

.footer__inner .col .contact-info li svg {
    min-width: 24px;
}

.footer__inner .col .contact-info li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    color: #fff;
    display: flex;
    gap: 16px;
}

.footer__inner .col .contact-info li a:hover {
    color: rgba(49, 63, 254, 1);
}

.footer__inner .col .copiright {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
    .footer {
        border-radius: 24px 24px 0px 0px;
        padding: 100px 0 50px;
    }

    .footer__inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer__inner .col .menu {
        gap: 16px;
        align-items: flex-start;
        flex-direction: column;
        margin-top: 15px;
    }
}

/* ===== POPUP FORM ===== */

.popup-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 29, 35, 0.2);
    z-index: 10;
    opacity: 0;
    transition: all 0.5s;
    visibility: hidden;
    padding: 0 15px;
}

.popup-form__inner {
    background: #f2f2f2;
    padding: 80px 64px;
    border-radius: 24px;
    position: relative;
    max-width: 1026px;
    width: 100%;
}

.popup-form__inner .close-button {
    position: absolute;
    top: 64px;
    right: 64px;
    cursor: pointer;
    background: #bed5fe;
    width: 56px;
    height: 56px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
}

.popup-form__inner h3 {
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    text-align: center;
    margin: 0 auto 48px;
    max-width: 470px;
}

.popup-form__container form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.popup-form__container .form-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.popup-form__container .form-col-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.popup-form__container .form-group {
    position: relative;
}

.popup-form__container .error-message {
    display: none;
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    color: red;
    position: absolute;
    left: 32px;
    bottom: -20px;
}

.popup-form__container .form-group.has-error input {
    border-color: red;
}

.popup-form__container .form-group.has-error .error-message {
    display: block;
}

.popup-form__container input,
.popup-form__container textarea {
    background: #fff;
    border-radius: 100px;
    padding: 17px 32px;
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    min-height: 56px;
    border: 1px solid #fff;
    width: 100%;
    color: #15151f;
}

.popup-form__container input::placeholder,
.popup-form__container textarea::placeholder {
    color: #404040;
}

.popup-form__container textarea {
    border-radius: 24px;
    height: 100%;
    min-height: 216px;
    resize: none;
}

.popup-form__container .form-col-right {
    display: flex;
}

.popup-form__container .form-col-right textarea {
    flex: 1;
}

.popup-form__container input:focus-visible,
.popup-form__container textarea:focus-visible {
    outline: none;
    border-color: #313ffe;
}

.popup-form__container .submit-btn {
    padding: 17px 32px;
    color: #fff;
    background: #313ffe;
    border-radius: 100px;
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    height: 56px;
    cursor: pointer;
    transition: all 0.5s;
    border: none;
    align-self: center;
}

.popup-form__container .submit-btn:hover {
    background: #e6f355;
    color: #15151f;
}

/* Thank you state */

.popup-form__thank-you {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
    gap: 24px;
}

.popup-form__thank-you .thank-you-icon {
    margin-bottom: 0;
}

.popup-form__thank-you h3 {
    margin-bottom: 0;
}

.popup-form__thank-you p {
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    color: #404040;
    line-height: 1.5;
}

.active-popup {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 900px) {
    .popup-form__inner {
        padding: 40px 15px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .popup-form__inner .close-button {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .popup-form__inner h3 {
        font-size: 28px;
        line-height: 36px;
        max-width: 370px;
    }

    .popup-form__container .form-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .popup-form__container textarea {
        min-height: 150px;
    }
}

/* ===== POLICY / TERMS PAGE ===== */

.policy-page-body header.header {
    margin-top: 32px;
}

.policy-page__inner .content {
    background: rgba(223, 227, 248, 1);
    border-radius: 24px;
    margin: 32px auto;
    padding: 80px;
}

.policy-page__inner .content h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 57px;
    margin-bottom: 48px;
    color: rgba(21, 21, 31, 1);
}

.policy-page__inner .content h2 {
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    text-align: left;
    margin-bottom: 16px;
    color: rgba(21, 21, 31, 1);
    margin-top: 48px;
}

.policy-page__inner .content h2:first-of-type {
    margin-top: 0;
}

.policy-page__inner .content h3 {
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    text-align: left;
    margin-bottom: 16px;
    color: rgba(21, 21, 31, 1);
    margin-top: 48px;
}

.policy-page__inner .content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    margin-bottom: 16px;
    color: rgba(21, 21, 31, 1);
}

.policy-page__inner .content a {
    color: rgba(49, 63, 254, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
}

.policy-page__inner .content ul {
    list-style: disc;
    margin-left: 22px;
    color: #15151f;
    margin-bottom: 16px;
}

.policy-page__inner .content ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #15151f;
}

.policy-page__inner .content ol {
    list-style: decimal;
    margin-left: 22px;
    color: #15151f;
    margin-bottom: 16px;
    padding: 0;
}

.policy-page__inner .content ol li {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #15151f;
}

.policy-page__inner .content strong {
    font-weight: 700;
}

@media (max-width: 900px) {
    .policy-page__inner .content {
        padding: 24px;
    }

    .policy-page__inner .content h1 {
        font-size: 36px;
        line-height: 43px;
    }
}
