/* =========================================================
   BOOSTPME
   CONTACT + LEGAL
========================================================= */

.boost-contact-page,
.boost-legal-page {
    --blue: #657cff;
    --purple: #9560ff;
    --pink: #e95e9d;

    overflow: hidden;

    background: #f7f7fa;

    color: #19191f;
}

.boost-contact-page *,
.boost-legal-page * {
    box-sizing: border-box;
}

.boost-contact-page em,
.boost-legal-page em {
    font-style: normal;

    color: transparent;

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

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


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

.boost-contact-hero {
    position: relative;

    min-height: 88vh;

    display: flex;
    align-items: center;

    padding: 145px 0 100px;

    overflow: hidden;
}

.boost-contact-glow,
.boost-legal-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    right: -190px;
    top: -230px;

    border-radius: 50%;

    background:
        rgba(111, 89, 255, .12);

    filter: blur(120px);

    pointer-events: none;
}

.boost-contact-hero-grid {
    position: relative;

    z-index: 2;

    display: grid;

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

    gap: 70px;

    align-items: center;
}

.boost-contact-copy > span {
    color: #9999a3;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.7px;
}

.boost-contact-copy h1 {
    margin: 18px 0 23px;

    color: #18181e;

    font-size:
        clamp(
            58px,
            6.5vw,
            98px
        );

    line-height: .91;

    letter-spacing: -5px;

    font-weight: 500;
}

.boost-contact-copy h1 em {
    display: block;
}

.boost-contact-copy p {
    max-width: 570px;

    margin: 0;

    color: #6b6b74;

    font-size: 13px;

    line-height: 1.8;
}


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

.boost-contact-chat {
    padding: 25px;

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

    border-radius: 25px;

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

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

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

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

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

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

    transform: none;
}

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

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 17px;
}

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

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

    padding: 14px 16px;
}

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

    background: #18191f;
}

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

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

.contact-ai img {
    width: 35px;
    height: 35px;

    flex: 0 0 35px;

    border-radius: 50%;

    object-fit: cover;
}

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

    margin-bottom: 5px;

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;
}

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

.contact-ai span {
    color: #8061ca;
}

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

    font-size: 11px;

    line-height: 1.68;
}

.contact-user p {
    color: #f4f4f6;
}

.contact-ai p,
.contact-ai .boost-sequence-text {
    color: #302b34;
}


/* =========================================================
   CONTACT MAIN
========================================================= */

.boost-contact-main {
    padding: 120px 0;

    background: #fff;
}

.boost-contact-grid {
    display: grid;

    grid-template-columns:
        .75fr 1.25fr;

    gap: 70px;

    align-items: start;
}

.boost-contact-info > span {
    color: #8a67da;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.boost-contact-info h2 {
    margin: 13px 0 18px;

    color: #202027;

    font-size: 42px;

    line-height: 1;

    letter-spacing: -2px;

    font-weight: 500;
}

.boost-contact-info > p {
    margin-bottom: 40px;

    color: #71717a;

    font-size: 11px;

    line-height: 1.75;
}

.contact-info-line {
    padding: 18px 0;

    border-top:
        1px solid
        #e5e5e9;
}

.contact-info-line small {
    display: block;

    margin-bottom: 6px;

    color: #9b9ba4;

    font-size: 7px;

    font-weight: 800;
}

.contact-info-line strong {
    color: #34343b;

    font-size: 11px;

    line-height: 1.65;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.boost-contact-form-card {
    padding: 32px;

    border:
        1px solid
        #e5e5e9;

    border-radius: 24px;

    background: #f8f8fa;
}

.boost-contact-form {
    display: grid;

    gap: 18px;
}

.contact-field-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;
}

.boost-contact-form label > span {
    display: block;

    margin-bottom: 7px;

    color: #5d5d66;

    font-size: 8px;

    font-weight: 700;
}

.boost-contact-form input,
.boost-contact-form select,
.boost-contact-form textarea {
    width: 100%;

    min-height: 49px;

    padding: 0 14px;

    border:
        1px solid
        #dddde4;

    border-radius: 11px;

    background: #fff;

    color: #27272e;

    outline: none;
}

.boost-contact-form textarea {
    min-height: 150px;

    padding: 14px;

    resize: vertical;
}

.boost-contact-form input:focus,
.boost-contact-form select:focus,
.boost-contact-form textarea:focus {
    border-color: #9978dd;
}

.contact-consent {
    display: flex !important;

    align-items: flex-start;

    gap: 9px;
}

.contact-consent input {
    width: 16px;
    height: 16px;

    min-height: 0;

    margin-top: 2px;
}

.contact-consent span {
    margin: 0 !important;

    color: #777780 !important;

    font-size: 8px !important;

    line-height: 1.6;
}

.boost-contact-form button {
    min-height: 50px;

    display: inline-flex;

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

    gap: 12px;

    border: 0;

    border-radius: 12px;

    background: #18191f;

    color: #fff;

    cursor: pointer;

    font-size: 9px;

    font-weight: 800;
}

.contact-success,
.contact-error {
    margin-bottom: 20px;

    padding: 16px;

    border-radius: 12px;

    background: #fff;
}

.contact-success {
    border-left:
        3px solid
        #71b54e;
}

.contact-error {
    border-left:
        3px solid
        #d86c68;
}

.contact-success strong,
.contact-error strong {
    color: #292930;
}

.contact-success p,
.contact-error p {
    margin: 5px 0 0;

    color: #74747d;

    font-size: 9px;
}


/* =========================================================
   COMPANY IDENTITY
========================================================= */

.boost-contact-identity {
    padding: 110px 0;

    text-align: center;

    background: #f5f5f8;
}

.boost-contact-identity span {
    color: #8867d7;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.boost-contact-identity h2 {
    margin: 14px auto;

    color: #202027;

    font-size:
        clamp(38px, 4.5vw, 62px);

    letter-spacing: -3px;

    font-weight: 500;
}

.boost-contact-identity p {
    color: #797982;

    font-size: 10px;
}


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

.boost-legal-hero {
    position: relative;

    padding:
        155px 0
        90px;

    overflow: hidden;
}

.boost-legal-hero .container {
    position: relative;

    z-index: 2;
}

.boost-legal-hero span {
    color: #9999a3;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.7px;
}

.boost-legal-hero h1 {
    max-width: 900px;

    margin:
        15px 0
        20px;

    color: #18181e;

    font-size:
        clamp(
            53px,
            6vw,
            90px
        );

    line-height: .93;

    letter-spacing: -4.5px;

    font-weight: 500;
}

.boost-legal-hero p {
    max-width: 600px;

    margin: 0;

    color: #6f6f78;

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   LEGAL CONTENT
========================================================= */

.boost-legal-content {
    padding:
        40px 0
        130px;

    background: #fff;
}

.boost-legal-layout {
    display: grid;

    grid-template-columns:
        260px 1fr;

    gap: 70px;

    align-items: start;
}

.boost-legal-layout aside {
    position: sticky;

    top: 120px;

    padding: 23px;

    border:
        1px solid
        #e5e5e9;

    border-radius: 18px;

    background: #f8f8fa;
}

.boost-legal-layout aside span {
    display: block;

    color: #8b69d7;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.boost-legal-layout aside strong {
    display: block;

    margin-top: 9px;

    color: #303037;

    font-size: 13px;

    line-height: 1.5;
}

.boost-legal-layout aside small {
    display: block;

    margin-top: 14px;

    color: #92929b;

    font-size: 8px;
}

.boost-legal-document {
    max-width: 800px;
}

.boost-legal-document section {
    padding:
        0 0
        42px;

    margin-bottom: 42px;

    border-bottom:
        1px solid
        #e7e7eb;
}

.boost-legal-document section > span {
    color: #a8a8b0;

    font-size: 8px;

    font-weight: 800;
}

.boost-legal-document h2 {
    margin:
        9px 0
        18px;

    color: #25252c;

    font-size: 28px;

    letter-spacing: -1px;
}

.boost-legal-document p {
    color: #65656e;

    font-size: 11px;

    line-height: 1.85;
}

.boost-legal-document strong {
    color: #303037;
}


/* =========================================================
   COMPANY CARD
========================================================= */

.legal-company-card {
    margin-top: 22px;

    padding: 22px;

    border-radius: 16px;

    background: #f6f6f9;
}

.legal-company-card > strong {
    display: block;

    color: #27272e;

    font-size: 14px;
}

.legal-company-card p {
    margin-bottom: 0;
}


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

.legal-data-grid {
    display: grid;

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

    gap: 10px;
}

.legal-data-grid > div {
    padding: 17px;

    border:
        1px solid
        #e5e5e9;

    border-radius: 13px;

    background: #fafafd;
}

.legal-data-grid small {
    display: block;

    color: #9a9aa3;

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1px;
}

.legal-data-grid strong {
    display: block;

    margin-top: 6px;

    color: #34343b;

    font-size: 10px;
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:900px) {

    .boost-contact-hero-grid,
    .boost-contact-grid,
    .boost-legal-layout {
        grid-template-columns: 1fr;
    }

    .boost-legal-layout aside {
        position: relative;

        top: auto;
    }

}

@media(max-width:600px) {

    .boost-contact-hero {
        min-height: auto;

        padding:
            120px 0
            80px;
    }

    .boost-contact-main,
    .boost-contact-identity {
        padding:
            82px 0;
    }

    .boost-legal-hero {
        padding:
            125px 0
            65px;
    }

    .boost-legal-content {
        padding:
            20px 0
            85px;
    }

    .boost-contact-copy h1,
    .boost-legal-hero h1,
    .boost-contact-identity h2 {
        letter-spacing: -2.5px;
    }

    .contact-field-grid,
    .legal-data-grid {
        grid-template-columns: 1fr;
    }

    .boost-contact-form-card {
        padding: 20px;
    }

}