 /* =========================================================
   CONVERTLY — CONVERSION GUIDE PAGE
========================================================= */

.guide-hero {
    max-width: 900px;
    margin: auto;
    padding: 90px 24px 60px;
    text-align: center;
}

.guide-hero h1 {
    margin: 22px 0 18px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.05;
    letter-spacing: -3px;
}

.guide-hero h1 span {
    color: #6d5dfc;
}

.guide-hero p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: #737582;
    line-height: 1.8;
}


/* SEARCH */

.guide-search {
    max-width: 620px;
    margin: auto;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 8px 10px 8px 18px;

    border: 1px solid #e5e5eb;
    border-radius: 16px;

    background: #fff;

    box-shadow:
        0 15px 45px rgba(30, 30, 60, 0.08);
}

.guide-search > span {
    font-size: 22px;
    color: #888;
}

.guide-search input {
    flex: 1;
    min-width: 0;

    border: none;
    outline: none;

    background: transparent;

    font-family: inherit;
    font-size: 14px;
}

.guide-search kbd {
    padding: 6px 9px;

    border: 1px solid #dddde5;
    border-radius: 7px;

    background: #f7f7fa;

    font-size: 11px;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.guide-layout {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 24px;

    display: grid;
    grid-template-columns: 240px 1fr;

    gap: 60px;

    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.guide-sidebar {
    position: sticky;
    top: 95px;
}

.guide-nav-card {
    padding: 20px 12px;

    border: 1px solid #e7e7ec;
    border-radius: 20px;

    background: #fff;

    box-shadow:
        0 15px 40px rgba(30, 30, 60, 0.06);
}

.guide-nav-card .eyebrow {
    margin-left: 10px;
}

.guide-link {
    display: block;

    padding: 11px;

    border-radius: 9px;

    color: #70727e;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: .2s ease;
}

.guide-link:hover {
    color: #6d5dfc;
    background: #f2f0ff;
}

.guide-link.active {
    color: #6d5dfc;
    background: #eeeaff;
}


/* =========================================================
   GUIDE CONTENT
========================================================= */

.guide-section {
    margin-bottom: 75px;
    padding-bottom: 70px;

    border-bottom: 1px solid #e8e8ed;

    scroll-margin-top: 100px;
}

.guide-section:last-child {
    border-bottom: none;
}

.guide-number {
    display: inline-flex;

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

    width: 38px;
    height: 26px;

    margin-bottom: 16px;

    border-radius: 8px;

    background: #eeeaff;

    color: #6d5dfc;

    font-size: 10px;
    font-weight: 800;
}

.guide-section h2 {
    margin: 0 0 18px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(28px, 4vw, 40px);

    line-height: 1.15;
    letter-spacing: -1.5px;
}

.guide-section > p {
    max-width: 760px;

    color: #70727e;

    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   EXAMPLE
========================================================= */

.example-box {
    margin-top: 28px;
    padding: 22px 24px;

    border-left: 3px solid #6d5dfc;
    border-radius: 0 14px 14px 0;

    background: #f4f2ff;
}

.example-box span {
    display: block;

    margin-bottom: 7px;

    color: #6d5dfc;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
}

.example-box strong {
    font-size: 15px;
}


/* =========================================================
   TABLE
========================================================= */

.conversion-table {
    margin-top: 28px;

    overflow: hidden;

    border: 1px solid #e6e6ec;
    border-radius: 16px;

    background: #fff;
}

.table-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    padding: 17px 20px;

    border-bottom: 1px solid #e8e8ed;

    font-size: 13px;

    color: #70727e;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row strong {
    color: #171821;
}

.table-head {
    background: #f5f3ff;

    color: #6d5dfc;

    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   FORMULAS
========================================================= */

.formula-box {
    display: grid;

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

    gap: 14px;

    margin-top: 28px;
}

.formula-box > div {
    padding: 22px;

    border: 1px solid #e7e7ec;
    border-radius: 16px;

    background: #fff;

    transition: .25s ease;
}

.formula-box > div:hover {
    transform: translateY(-4px);

    border-color: #c9c3ff;

    box-shadow:
        0 15px 35px rgba(30, 30, 60, 0.08);
}

.formula-box span {
    display: block;

    margin-bottom: 10px;

    color: #747681;

    font-size: 12px;
}

.formula-box strong {
    color: #6d5dfc;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 17px;
}


/* =========================================================
   BUTTON
========================================================= */

.guide-button {
    display: inline-flex;

    margin-top: 25px;

    padding: 13px 18px;

    border-radius: 11px;

    background: #6d5dfc;

    color: white;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(109, 93, 252, .2);

    transition: .25s ease;
}

.guide-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 32px rgba(109, 93, 252, .3);
}


/* =========================================================
   TIPS
========================================================= */

.tips-grid {
    display: grid;

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

    gap: 15px;

    margin-top: 30px;
}

.tip-card {
    padding: 24px;

    border: 1px solid #e7e7ec;
    border-radius: 18px;

    background: #fff;

    transition: .25s ease;
}

.tip-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(30, 30, 60, .08);
}

.tip-card > strong {
    color: #6d5dfc;

    font-size: 11px;
}

.tip-card h3 {
    margin: 13px 0 8px;

    font-size: 16px;
}

.tip-card p {
    margin: 0;

    color: #70727e;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.guide-cta {
    max-width: 1200px;

    margin: 0 auto 100px;
    padding: 45px 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border: 1px solid #e7e7ec;
    border-radius: 26px;

    background: #fff;

    box-shadow:
        0 20px 60px rgba(30, 30, 60, .07);
}

.guide-cta h2 {
    margin: 5px 0 10px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(27px, 4vw, 40px);

    letter-spacing: -1.5px;
}

.guide-cta h2 span {
    color: #6d5dfc;
}

.guide-cta p {
    margin: 0;

    color: #70727e;

    font-size: 14px;
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark .guide-search,
body.dark .guide-nav-card,
body.dark .conversion-table,
body.dark .formula-box > div,
body.dark .tip-card,
body.dark .guide-cta {
    background: #1e1f28;

    border-color:
        rgba(255,255,255,.08);
}

body.dark .guide-section h2,
body.dark .guide-search input,
body.dark .tip-card h3,
body.dark .table-row strong {
    color: #f4f4f6;
}

body.dark .guide-section > p,
body.dark .formula-box span,
body.dark .tip-card p {
    color: #a9aab4;
}

body.dark .table-head {
    background: #29263f;
}

body.dark .example-box {
    background: #29263f;
}

body.dark .example-box strong {
    color: #f4f4f6;
}


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

@media (max-width: 900px) {

    .guide-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .guide-sidebar {
        position: static;
    }

    .guide-nav-card {
        display: flex;

        gap: 5px;

        overflow-x: auto;

        scrollbar-width: none;
    }

    .guide-nav-card::-webkit-scrollbar {
        display: none;
    }

    .guide-nav-card .eyebrow {
        display: none;
    }

    .guide-link {
        flex-shrink: 0;
        white-space: nowrap;
    }

}


@media (max-width: 700px) {

    .guide-hero {
        padding:
            60px 20px 45px;
    }

    .guide-layout {
        padding: 0 20px;
    }

    .formula-box {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .guide-cta {
        margin-left: 20px;
        margin-right: 20px;

        padding: 32px 25px;

        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 500px) {

    .guide-hero h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .guide-search kbd {
        display: none;
    }

    .guide-section h2 {
        font-size: 29px;
    }

    .table-row {
        grid-template-columns: 1.2fr .8fr;

        padding: 14px;

        font-size: 12px;
    }

}


/* GUIDE SCROLL ANIMATION */

.guide-reveal {
    opacity: 0;
    transform: translateY(25px);

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

.guide-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   CONVERTLY — FAQ PAGE
========================================================= */

.faq-hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 85px 24px 60px;
    text-align: center;
    animation: faqHeroIn 0.8s ease both;
}

.faq-hero h1 {
    margin: 22px 0 18px;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;

    letter-spacing: -3px;
}

.faq-hero h1 span {
    background:
        linear-gradient(
            135deg,
            #6d5dfc,
            #a18fff
        );

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

    color: transparent;
}

.faq-hero > p {
    max-width: 650px;

    margin: 0 auto 32px;

    color: #747681;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   SEARCH
========================================================= */

.faq-search {
    width: min(100%, 650px);

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 8px 9px 8px 18px;

    background: #ffffff;

    border: 1px solid #e5e5eb;

    border-radius: 16px;

    box-shadow:
        0 18px 50px
        rgba(30, 30, 60, 0.08);

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.faq-search:focus-within {
    border-color: #6d5dfc;

    box-shadow:
        0 18px 50px
        rgba(109, 93, 252, 0.15);
}

.faq-search > span {
    color: #888b96;

    font-size: 22px;
}

.faq-search input {
    flex: 1;

    min-width: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: #171821;

    font-family: inherit;

    font-size: 14px;
}

.faq-search input::placeholder {
    color: #999ba5;
}

.faq-search kbd {
    padding: 6px 9px;

    border:
        1px solid #dedee6;

    border-bottom-width: 2px;

    border-radius: 7px;

    background: #f7f7fa;

    color: #777985;

    font-family: inherit;

    font-size: 11px;
}


/* =========================================================
   FAQ WRAPPER
========================================================= */

.faq-wrapper {
    width: min(900px, calc(100% - 48px));

    margin: 0 auto 100px;
}


/* =========================================================
   FAQ CATEGORY
========================================================= */

.faq-category {
    margin-bottom: 70px;
}

.faq-category-heading {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 22px;
}

.category-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #eeeaff,
            #f6f4ff
        );

    color: #6d5dfc;

    font-size: 19px;

    box-shadow:
        inset 0 0 0 1px
        rgba(109, 93, 252, 0.08);
}

.faq-category-heading .eyebrow {
    display: block;

    margin-bottom: 4px;

    color: #6d5dfc;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.faq-category-heading h2 {
    margin: 0;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 24px;

    letter-spacing: -0.7px;
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-item {
    overflow: hidden;

    border:
        1px solid #e7e7ec;

    border-radius: 16px;

    background: #ffffff;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.faq-item:hover {
    border-color:
        rgba(109, 93, 252, 0.25);

    box-shadow:
        0 12px 35px
        rgba(30, 30, 60, 0.06);
}


/* =========================================================
   QUESTION
========================================================= */

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 21px 22px;

    border: 0;
    outline: 0;

    background: transparent;

    color: #171821;

    font-family: inherit;

    font-size: 14px;
    font-weight: 700;

    text-align: left;

    cursor: pointer;
}

.faq-question > span:first-child {
    flex: 1;
}

.faq-plus {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: #f4f2ff;

    color: #6d5dfc;

    font-size: 20px;
    font-weight: 400;

    line-height: 1;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}


/* =========================================================
   ANSWER
========================================================= */

.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows .35s ease;
}

.faq-answer p {
    overflow: hidden;

    margin: 0;

    padding:
        0 22px;

    color: #747681;

    font-size: 13px;

    line-height: 1.8;

    opacity: 0;

    transform: translateY(-6px);

    transition:
        opacity .25s ease,
        transform .35s ease,
        padding .35s ease;
}


/* =========================================================
   OPEN FAQ
========================================================= */

.faq-item.active {
    border-color:
        rgba(109, 93, 252, 0.28);

    box-shadow:
        0 15px 40px
        rgba(109, 93, 252, 0.07);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding:
        0 22px 22px;

    opacity: 1;

    transform: translateY(0);
}

.faq-item.active .faq-plus {
    transform: rotate(45deg);

    background: #6d5dfc;

    color: #ffffff;
}


/* =========================================================
   NO RESULTS
========================================================= */

.faq-no-results {
    display: none;

    padding: 60px 25px;

    text-align: center;

    border:
        1px solid #e7e7ec;

    border-radius: 20px;

    background: #ffffff;
}

.faq-no-results.visible {
    display: block;

    animation:
        faqFadeIn .3s ease both;
}

.faq-no-results > div {
    width: 50px;
    height: 50px;

    margin: 0 auto 15px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #f1efff;

    color: #6d5dfc;

    font-size: 20px;
    font-weight: 700;
}

.faq-no-results h3 {
    margin: 0 0 7px;

    font-size: 18px;
}

.faq-no-results p {
    margin: 0;

    color: #777985;

    font-size: 13px;
}


/* =========================================================
   CTA
========================================================= */

.faq-cta {
    width: min(1200px, calc(100% - 48px));

    margin: 0 auto 100px;

    padding: 45px 50px;

    display: flex;

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

    gap: 30px;

    border:
        1px solid #e7e7ec;

    border-radius: 26px;

    background: #ffffff;

    box-shadow:
        0 20px 60px
        rgba(30, 30, 60, 0.07);
}

.faq-cta h2 {
    margin: 7px 0 10px;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: clamp(27px, 4vw, 40px);

    line-height: 1.15;

    letter-spacing: -1.5px;
}

.faq-cta h2 span {
    color: #6d5dfc;
}

.faq-cta p {
    margin: 0;

    color: #747681;

    font-size: 14px;
}

.faq-cta-button {
    display: inline-flex;

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

    flex-shrink: 0;

    padding: 14px 20px;

    border-radius: 11px;

    background: #6d5dfc;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 10px 28px
        rgba(109, 93, 252, 0.22);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.faq-cta-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 35px
        rgba(109, 93, 252, 0.3);
}


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

.faq-page-footer {
    width: 100%;
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark .faq-search,
body.dark .faq-item,
body.dark .faq-no-results,
body.dark .faq-cta {
    background: #1e1f28;

    border-color:
        rgba(255, 255, 255, 0.08);
}

body.dark .faq-hero h1,
body.dark .faq-category-heading h2,
body.dark .faq-question,
body.dark .faq-no-results h3 {
    color: #f4f4f6;
}

body.dark .faq-hero > p,
body.dark .faq-answer p,
body.dark .faq-cta p,
body.dark .faq-no-results p {
    color: #a9aab4;
}

body.dark .faq-search input {
    color: #f4f4f6;
}

body.dark .faq-search kbd {
    background:
        rgba(255, 255, 255, 0.05);

    border-color:
        rgba(255, 255, 255, 0.09);

    color: #a9aab4;
}

body.dark .category-icon {
    background:
        rgba(109, 93, 252, 0.15);
}

body.dark .faq-plus {
    background:
        rgba(109, 93, 252, 0.14);
}

body.dark .faq-item.active {
    border-color:
        rgba(109, 93, 252, 0.35);
}

body.dark .faq-no-results > div {
    background:
        rgba(109, 93, 252, 0.15);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes faqHeroIn {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes faqFadeIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 800px) {

    .faq-hero {
        padding:
            70px 20px 50px;
    }

    .faq-wrapper {
        width:
            min(100% - 40px, 700px);
    }

    .faq-cta {
        width:
            calc(100% - 40px);

        padding: 35px 30px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 600px) {

    .faq-hero h1 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .faq-hero > p {
        font-size: 14px;
    }

    .faq-search {
        padding-left: 14px;
    }

    .faq-search kbd {
        display: none;
    }

    .faq-wrapper {
        width:
            calc(100% - 30px);

        margin-bottom: 70px;
    }

    .faq-category {
        margin-bottom: 50px;
    }

    .faq-category-heading {
        gap: 12px;
    }

    .category-icon {
        width: 40px;
        height: 40px;

        font-size: 17px;
    }

    .faq-category-heading h2 {
        font-size: 20px;
    }

    .faq-question {
        padding: 18px 16px;

        font-size: 13px;
    }

    .faq-plus {
        width: 28px;
        height: 28px;

        font-size: 18px;
    }

    .faq-item.active .faq-answer p {
        padding:
            0 16px 18px;
    }

    .faq-cta {
        width:
            calc(100% - 30px);

        margin-bottom: 70px;

        padding: 30px 22px;

        flex-direction: column;

        align-items: flex-start;
    }

    .faq-cta h2 {
        font-size: 29px;
    }

    .faq-cta-button {
        width: 100%;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .faq-hero,
    .faq-item,
    .faq-answer,
    .faq-plus,
    .faq-cta-button {
        animation: none !important;
        transition: none !important;
    }

}

/* =========================================================
   CONVERTLY — CONTACT PAGE
========================================================= */

.contact-hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 85px 24px 55px;
    text-align: center;

    animation: contactHeroIn .8s ease both;
}

.contact-hero h1 {
    margin: 22px 0 18px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(43px, 6vw, 68px);
    line-height: 1.05;

    letter-spacing: -3px;
}

.contact-hero h1 span {
    background:
        linear-gradient(
            135deg,
            #6d5dfc,
            #a18fff
        );

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

    color: transparent;
}

.contact-hero > p {
    max-width: 600px;

    margin: 0 auto;

    color: #747681;

    font-size: 15px;
    line-height: 1.8;
}


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

.contact-wrapper {
    width: min(1180px, calc(100% - 48px));

    margin: 0 auto 110px;

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 75px;

    align-items: start;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-info {
    padding-top: 15px;
}

.contact-info > .eyebrow {
    display: block;

    margin-bottom: 14px;

    color: #6d5dfc;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

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

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -2px;
}

.contact-info h2 span {
    color: #6d5dfc;
}

.contact-intro {
    max-width: 470px;

    margin: 0 0 32px;

    color: #747681;

    font-size: 14px;

    line-height: 1.85;
}


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

.contact-info-card {
    display: flex;

    align-items: center;

    gap: 15px;

    width: 100%;

    margin-bottom: 12px;

    padding: 17px;

    border:
        1px solid #e7e7ec;

    border-radius: 16px;

    background: #ffffff;

    color: inherit;

    text-decoration: none;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.contact-info-card:hover {
    transform: translateX(5px);

    border-color:
        rgba(109, 93, 252, .28);

    box-shadow:
        0 14px 35px
        rgba(30, 30, 60, .07);
}

.contact-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #eeeaff,
            #f7f5ff
        );

    color: #6d5dfc;

    font-size: 16px;
    font-weight: 700;
}

.contact-info-card > div:nth-child(2) {
    flex: 1;
}

.contact-info-card span {
    display: block;

    margin-bottom: 4px;

    color: #888a94;

    font-size: 10px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .7px;
}

.contact-info-card strong {
    display: block;

    color: #1b1c24;

    font-size: 12px;
    font-weight: 700;
}

.contact-info-card > b {
    color: #9698a2;

    font-size: 17px;

    transition:
        transform .2s ease,
        color .2s ease;
}

.contact-info-card:hover > b {
    color: #6d5dfc;

    transform: translateX(3px);
}


/* =========================================================
   FORM CARD
========================================================= */

.contact-form-card {
    padding: 35px;

    border:
        1px solid #e5e5eb;

    border-radius: 25px;

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

    box-shadow:
        0 25px 70px
        rgba(30, 30, 60, .08);

    backdrop-filter: blur(18px);

    animation:
        formCardIn .8s .15s ease both;
}

.form-header {
    margin-bottom: 28px;
}

.form-header .eyebrow {
    display: block;

    margin-bottom: 9px;

    color: #6d5dfc;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.form-header h2 {
    margin: 0;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 25px;

    line-height: 1.25;

    letter-spacing: -.8px;
}

.form-header h2 span {
    color: #6d5dfc;
}


/* =========================================================
   FORM ROW
========================================================= */

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #3f414b;

    font-size: 11px;
    font-weight: 700;
}

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

    box-sizing: border-box;

    border:
        1px solid #e1e1e8;

    border-radius: 11px;

    outline: none;

    background: #fafafd;

    color: #191a22;

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.form-group input,
.form-group select {
    height: 48px;

    padding: 0 14px;
}

.form-group textarea {
    min-height: 140px;

    padding: 14px;

    resize: vertical;

    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a2a4ad;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #6d5dfc;

    background: #ffffff;

    box-shadow:
        0 0 0 4px
        rgba(109, 93, 252, .09);
}


/* =========================================================
   FORM BOTTOM
========================================================= */

.form-bottom {
    display: flex;

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

    gap: 20px;

    margin-top: 5px;
}

.form-bottom p {
    max-width: 250px;

    margin: 0;

    color: #9698a2;

    font-size: 10px;

    line-height: 1.6;
}

.contact-submit {
    display: inline-flex;

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

    gap: 12px;

    padding: 13px 20px;

    border: none;

    border-radius: 11px;

    background: #6d5dfc;

    color: #ffffff;

    font-family: inherit;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 10px 25px
        rgba(109, 93, 252, .22);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.contact-submit:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 35px
        rgba(109, 93, 252, .3);
}

.contact-submit:active {
    transform: translateY(0);
}

.contact-submit span {
    font-size: 16px;
}


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

.form-success {
    display: none;

    margin-top: 17px;

    padding: 12px 15px;

    border:
        1px solid #d7d0ff;

    border-radius: 10px;

    background: #f3f1ff;

    color: #6252df;

    font-size: 11px;
    font-weight: 700;

    animation:
        successIn .35s ease both;
}

.form-success.show {
    display: block;
}


/* =========================================================
   QUICK HELP
========================================================= */

.contact-help {
    width: min(1180px, calc(100% - 48px));

    margin: 0 auto 100px;
}

.help-header {
    margin-bottom: 30px;
}

.help-header .eyebrow {
    display: block;

    margin-bottom: 10px;

    color: #6d5dfc;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.help-header h2 {
    margin: 0;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: clamp(28px, 4vw, 40px);

    letter-spacing: -1.5px;
}

.help-header h2 span {
    color: #6d5dfc;
}


/* =========================================================
   HELP GRID
========================================================= */

.help-grid {
    display: grid;

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

    gap: 15px;
}

.help-card {
    min-height: 170px;

    padding: 24px;

    display: flex;

    flex-direction: column;

    border:
        1px solid #e7e7ec;

    border-radius: 18px;

    background: #ffffff;

    color: inherit;

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.help-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(109, 93, 252, .25);

    box-shadow:
        0 18px 45px
        rgba(30, 30, 60, .08);
}

.help-icon {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    margin-bottom: 18px;

    border-radius: 11px;

    background: #f0eeff;

    color: #6d5dfc;

    font-size: 15px;
    font-weight: 800;
}

.help-card h3 {
    margin: 0 0 8px;

    color: #191a22;

    font-size: 14px;
}

.help-card p {
    margin: 0;

    color: #7d7f89;

    font-size: 11px;

    line-height: 1.7;
}

.help-arrow {
    margin-top: auto;

    padding-top: 18px;

    color: #6d5dfc;

    font-size: 17px;
}


/* =========================================================
   CONTACT CTA
========================================================= */

.contact-cta {
    width: min(1180px, calc(100% - 48px));

    margin: 0 auto 100px;

    padding: 45px 50px;

    display: flex;

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

    gap: 30px;

    border:
        1px solid #e7e7ec;

    border-radius: 25px;

    background: #ffffff;

    box-shadow:
        0 20px 60px
        rgba(30, 30, 60, .07);
}

.contact-cta .eyebrow {
    color: #6d5dfc;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.contact-cta h2 {
    margin: 8px 0 0;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: clamp(27px, 4vw, 40px);

    line-height: 1.15;

    letter-spacing: -1.5px;
}

.contact-cta h2 span {
    color: #6d5dfc;
}

.contact-cta-button {
    flex-shrink: 0;

    padding: 14px 20px;

    border-radius: 11px;

    background: #6d5dfc;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 10px 25px
        rgba(109, 93, 252, .22);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.contact-cta-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 35px
        rgba(109, 93, 252, .3);
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark .contact-info-card,
body.dark .contact-form-card,
body.dark .help-card,
body.dark .contact-cta {
    background: #1e1f28;

    border-color:
        rgba(255, 255, 255, .08);
}

body.dark .contact-info h2,
body.dark .form-header h2,
body.dark .help-header h2,
body.dark .help-card h3,
body.dark .contact-cta h2 {
    color: #f4f4f6;
}

body.dark .contact-intro,
body.dark .contact-hero > p,
body.dark .help-card p {
    color: #a9aab4;
}

body.dark .contact-info-card strong {
    color: #f0f0f3;
}

body.dark .contact-icon,
body.dark .help-icon {
    background:
        rgba(109, 93, 252, .14);
}

body.dark .form-group label {
    color: #c6c7ce;
}

body.dark .form-group input,
body.dark .form-group select,
body.dark .form-group textarea {
    background: #17181f;

    border-color:
        rgba(255, 255, 255, .1);

    color: #f4f4f6;
}

body.dark .form-group input:focus,
body.dark .form-group select:focus,
body.dark .form-group textarea:focus {
    background: #1b1c24;
}

body.dark .form-success {
    background:
        rgba(109, 93, 252, .12);

    border-color:
        rgba(109, 93, 252, .3);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes contactHeroIn {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes formCardIn {

    from {
        opacity: 0;
        transform: translateX(25px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes successIn {

    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .contact-wrapper {
        grid-template-columns: 1fr;

        gap: 45px;

        max-width: 700px;
    }

    .contact-info {
        padding-top: 0;
    }

    .contact-intro {
        max-width: 650px;
    }

    .help-grid {
        grid-template-columns:
            1fr 1fr;
    }

}


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

@media (max-width: 650px) {

    .contact-hero {
        padding:
            65px 20px 45px;
    }

    .contact-hero h1 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .contact-wrapper,
    .contact-help,
    .contact-cta {
        width:
            calc(100% - 30px);
    }

    .contact-wrapper {
        margin-bottom: 75px;
    }

    .contact-info h2 {
        font-size: 34px;
    }

    .contact-form-card {
        padding: 24px 18px;

        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .form-bottom {
        flex-direction: column;

        align-items: stretch;
    }

    .form-bottom p {
        max-width: 100%;
    }

    .contact-submit {
        width: 100%;
    }

    .help-grid {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        margin-bottom: 70px;

        padding: 30px 22px;

        flex-direction: column;

        align-items: flex-start;
    }

    .contact-cta-button {
        width: 100%;

        text-align: center;

        box-sizing: border-box;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-hero,
    .contact-form-card,
    .contact-info-card,
    .help-card,
    .contact-submit,
    .contact-cta-button {
        animation: none !important;

        transition: none !important;
    }

}

