/* =========================================================
   BOOSTPME — CREATION SITE WEB
========================================================= */

.webservice-page {
    --blue: #657dff;
    --purple: #9861ff;
    --pink: #e95e9d;

    overflow: hidden;

    background: #f7f7fa;

    color: #19191f;
}

.webservice-page * {
    box-sizing: border-box;
}

.webservice-page em {
    font-style: normal;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--purple),
            var(--pink)
        );

    -webkit-background-clip: text;
    background-clip: text;
}


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

.webservice-hero {
    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding: 145px 0 105px;

    overflow: hidden;
}

.webservice-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(110px);

    pointer-events: none;
}

.webservice-glow-one {
    width: 500px;
    height: 500px;

    right: -150px;
    top: -130px;

    background:
        rgba(101, 125, 255, .12);
}

.webservice-glow-two {
    width: 430px;
    height: 430px;

    left: -180px;
    bottom: -130px;

    background:
        rgba(232, 92, 157, .07);
}

.webservice-hero-grid {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        1.05fr
        .95fr;

    gap: 70px;

    align-items: center;
}

.webservice-copy > span {
    color: #9797a1;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.8px;
}

.webservice-copy h1 {
    margin: 18px 0 24px;

    color: #17171d;

    font-size:
        clamp(
            54px,
            6.3vw,
            93px
        );

    line-height: .92;

    letter-spacing: -5px;

    font-weight: 500;
}

.webservice-copy h1 em {
    display: block;
}

.webservice-copy p {
    max-width: 580px;

    color: #686871;

    font-size: 14px;

    line-height: 1.8;
}

.webservice-primary {
    min-height: 49px;

    display: inline-flex;

    align-items: center;

    gap: 13px;

    margin-top: 28px;

    padding: 0 18px;

    border-radius: 12px;

    background: #18191f;

    color: #f5f5f7;

    text-decoration: none;

    font-size: 9px;

    font-weight: 800;
}


/* =========================================================
   CHAT
========================================================= */

.webservice-chat {
    padding: 25px;

    border:
        1px solid
        rgba(30, 30, 40, .07);

    border-radius: 25px;

    background:
        rgba(255, 255, 255, .88);

    box-shadow:
        0 30px 80px
        rgba(30, 30, 50, .07);
}

.webservice-chat.wide {
    max-width: 850px;

    margin: auto;
}


/* ANIMATIONS */

.webservice-page
.boost-sequence-message {
    opacity: 0;

    transform:
        translateY(17px)
        scale(.97);

    transition:
        opacity .43s ease,
        transform .43s ease;
}

.webservice-page
.boost-sequence-message.is-sequence-visible {
    opacity: 1;

    transform: none;
}


/* MESSAGES */

.web-user,
.web-ai {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 17px;
}

.web-user {
    justify-content: flex-end;
}

.web-user img {
    order: 2;
}

.web-user img,
.web-ai img {
    width: 35px;
    height: 35px;

    flex:
        0 0
        35px;

    border-radius: 50%;

    object-fit: cover;
}

.web-user > div,
.web-ai > div {
    max-width: 78%;

    padding:
        14px
        16px;
}

.web-user > div {
    border-radius:
        17px
        6px
        17px
        17px;

    background: #18191f;
}

.web-ai > div {
    border-radius:
        6px
        17px
        17px
        17px;

    background:
        linear-gradient(
            145deg,
            #f1eff9,
            #fff
        );
}

.web-user span,
.web-ai span {
    display: block;

    margin-bottom: 5px;

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;
}

.web-user span {
    color:
        rgba(255, 255, 255, .48);
}

.web-ai span {
    color: #8061c9;
}

.web-user p,
.web-ai p {
    margin: 0;

    font-size: 11px;

    line-height: 1.68;
}

.web-user p {
    color: #f3f3f5;
}

.web-ai p,
.web-ai .boost-sequence-text {
    color: #2f2b34;
}


/* =========================================================
   SECTIONS
========================================================= */

.webservice-section,
.webservice-offer {
    padding: 120px 0;
}

.webservice-title {
    max-width: 850px;

    margin-bottom: 55px;
}

.webservice-title > span {
    color: #9999a3;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.6px;
}

.webservice-title h2 {
    margin: 14px 0 0;

    color: #19191f;

    font-size:
        clamp(
            43px,
            5.2vw,
            74px
        );

    line-height: .97;

    letter-spacing: -4px;

    font-weight: 500;
}

.webservice-alt {
    background: #fff;
}


/* =========================================================
   PROCESS
========================================================= */

.webservice-process {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;
}

.webservice-process article {
    min-height: 260px;

    padding: 23px;

    border:
        1px solid
        rgba(30, 30, 40, .07);

    border-radius: 20px;

    background: #fff;
}

.webservice-process article > span {
    display: block;

    color: #d0d0d6;

    font-size: 27px;

    font-weight: 700;
}

.webservice-process small {
    display: block;

    margin-top: 38px;

    color: #9999a3;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.webservice-process strong {
    display: block;

    margin-top: 7px;

    color: #28282f;

    font-size: 15px;

    line-height: 1.4;
}

.webservice-process p {
    margin:
        12px
        0
        0;

    color: #707079;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   GRID SERVICES
========================================================= */

.webservice-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 13px;
}

.webservice-grid article {
    min-height: 245px;

    padding: 25px;

    border:
        1px solid
        rgba(30, 30, 40, .07);

    border-radius: 21px;

    background: #fff;
}

.webservice-grid article > div {
    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #657cff,
            #9861ff
        );

    color: #fff;

    font-size: 8px;

    font-weight: 800;
}

.webservice-grid article > span {
    color: #9999a3;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.webservice-grid h3 {
    margin:
        7px
        0
        11px;

    color: #25252c;

    font-size: 22px;

    letter-spacing: -1px;
}

.webservice-grid p {
    max-width: 420px;

    margin: 0;

    color: #707079;

    font-size: 10px;

    line-height: 1.7;
}


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

.webservice-offer {
    background:
        radial-gradient(
            circle at center,
            rgba(104, 91, 238, .07),
            transparent 42%
        );
}

.webservice-offer-card {
    max-width: 850px;

    margin: auto;

    padding: 38px;

    border:
        1px solid
        rgba(30, 30, 40, .07);

    border-radius: 24px;

    background: #fff;
}

.webservice-offer-card > span {
    color: #8063d4;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.webservice-offer-card h2 {
    margin:
        11px
        0
        13px;

    color: #202027;

    font-size: 35px;

    letter-spacing: -1.5px;
}

.webservice-offer-card p {
    max-width: 620px;

    color: #6d6d76;

    font-size: 11px;

    line-height: 1.7;
}

.webservice-offer-card > strong {
    display: block;

    margin-top: 20px;

    color: #28282f;

    font-size: 18px;
}

.webservice-offer-card > a {
    min-height: 47px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 23px;

    padding: 0 17px;

    border-radius: 12px;

    background: #18191f;

    color: #f5f5f7;

    text-decoration: none;

    font-size: 9px;

    font-weight: 800;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:900px) {

    .webservice-hero-grid {
        grid-template-columns: 1fr;
    }

    .webservice-process {
        grid-template-columns:
            repeat(2, 1fr);
    }

}

@media(max-width:600px) {

    .webservice-hero {
        padding: 120px 0 80px;
    }

    .webservice-section,
    .webservice-offer {
        padding: 82px 0;
    }

    .webservice-copy h1,
    .webservice-title h2 {
        letter-spacing: -2.5px;
    }

    .webservice-process,
    .webservice-grid {
        grid-template-columns: 1fr;
    }

}