/* =========================================================
   BOOSTPME — KELTOUM RESTAURANT
========================================================= */

.kresto-page {
    --purple: #965eff;
    --orange: #e98555;
    --green: #72b94b;

    overflow: hidden;

    background: #f7f7fa;

    color: #19191f;
}

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

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

    color: transparent;

    background:
        linear-gradient(
            90deg,
            #795fff,
            #ab61e6,
            #e47a63
        );

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


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

.kresto-hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 145px 0 105px;

    overflow: hidden;
}

.kresto-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(110px);
}

.kresto-glow-one {
    width: 480px;
    height: 480px;

    right: -150px;
    top: -100px;

    background:
        rgba(151, 89, 255, .13);
}

.kresto-glow-two {
    width: 400px;
    height: 400px;

    left: -170px;
    bottom: -100px;

    background:
        rgba(226, 123, 86, .08);
}

.kresto-hero-grid {
    position: relative;

    z-index: 3;

    display: grid;

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

    gap: 70px;

    align-items: center;
}

.kresto-copy > span {
    color: #94949e;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.8px;
}

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

    color: #17171d;

    font-size:
        clamp(
            57px,
            6.4vw,
            97px
        );

    line-height: .91;

    letter-spacing: -5px;

    font-weight: 500;
}

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

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

    color: #686871;

    font-size: 14px;

    line-height: 1.8;
}

.kresto-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;
}


/* =========================================================
   CARDS
========================================================= */

.kresto-card,
.kresto-conversation {
    padding: 25px;

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

    border-radius: 25px;

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

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


/* =========================================================
   ANIMATION
========================================================= */

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

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

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

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

    transform: none;
}


/* =========================================================
   MESSAGE
========================================================= */

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

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 17px;
}

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

.kr-user img {
    order: 2;
}

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

    flex:
        0 0
        35px;

    border-radius: 50%;

    object-fit: cover;
}

.kr-user > div,
.kr-ai > div {
    max-width: 77%;

    padding:
        14px
        16px;
}

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

    background: #18191f;
}

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

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

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

    margin-bottom: 5px;

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;
}

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

.kr-ai span {
    color: #8461cb;
}

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

    font-size: 11px;

    line-height: 1.68;
}

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

.kr-ai p,
.kr-ai .boost-sequence-text {
    color: #2f2a34;
}


/* =========================================================
   DATA
========================================================= */

.kr-data {
    display: grid;

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

    gap: 8px;

    margin: 20px 0;
}

.kr-data > div {
    padding: 14px;

    border-radius: 12px;

    background: #f5f5f7;
}

.kr-data small {
    color: #9999a3;

    font-size: 6px;
}

.kr-data strong {
    display: block;

    margin-top: 5px;

    color: #292930;

    font-size: 10px;
}


/* =========================================================
   ACTION
========================================================= */

.kr-action {
    width: max-content;

    max-width: 100%;

    display: flex;

    align-items: center;

    gap: 7px;

    margin:
        20px
        auto
        3px;

    padding:
        8px
        11px;

    border-radius: 999px;

    border:
        1px solid
        rgba(100, 170, 70, .14);

    background:
        rgba(100, 170, 70, .06);

    color: #4e8735;

    font-size: 7px;

    font-weight: 800;
}

.kr-action i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #70b64a;
}

.kr-action.warning {
    border-color:
        rgba(220, 125, 68, .16);

    background:
        rgba(220, 125, 68, .06);

    color: #a55e35;
}

.kr-action.warning i {
    background: #d9804b;
}


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

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

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

    margin-bottom: 55px;
}

.kresto-title > span {
    display: block;

    color: #9999a3;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.6px;
}

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

    color: #19191f;

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

    line-height: .97;

    letter-spacing: -4px;

    font-weight: 500;
}

.kresto-conversation {
    max-width: 850px;

    margin: auto;
}

.kresto-alt {
    background: #fff;
}


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

.kresto-offer {
    background:
        radial-gradient(
            circle at center,
            rgba(145, 88, 255, .08),
            transparent 45%
        );
}

.kresto-offer-card {
    max-width: 950px;

    display: grid;

    grid-template-columns:
        1fr
        auto;

    gap: 40px;

    align-items: center;

    margin: auto;

    padding: 36px;

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

    border-radius: 24px;

    background: #fff;
}

.kresto-offer-card > div:first-child > span {
    color: #8764d5;

    font-size: 8px;

    font-weight: 800;
}

.kresto-offer-card h2 {
    margin:
        9px
        0
        12px;

    color: #202027;

    font-size: 34px;

    letter-spacing: -1.5px;
}

.kresto-offer-card p {
    max-width: 500px;

    margin: 0;

    color: #6c6c76;

    font-size: 11px;

    line-height: 1.7;
}

.kresto-price {
    display: flex;

    align-items: center;

    gap: 15px;
}

.kresto-price > div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.kresto-price small {
    color: #9999a3;

    font-size: 6px;
}

.kresto-price strong {
    color: #25252c;

    font-size: 14px;
}

.kresto-price > span {
    color: #aaaab1;
}

.kresto-offer-card > a {
    grid-column: 1 / -1;

    width: max-content;

    min-height: 47px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 0 17px;

    border-radius: 12px;

    background: #18191f;

    color: #f5f5f7;

    text-decoration: none;

    font-size: 9px;

    font-weight: 800;
}


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

@media(max-width:900px) {

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

    .kresto-offer-card {
        grid-template-columns: 1fr;
    }

}

@media(max-width:600px) {

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

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

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

    .kr-data {
        grid-template-columns: 1fr;
    }

    .kresto-price {
        align-items: flex-start;

        flex-direction: column;
    }

    .kresto-price > span {
        display: none;
    }

}