:root {
    --violet: #8b5cf6;
    --violet-deep: #7957fc;
    --violet-hover: #7a49f0;
    --yellow: #f6c55c;
    --ink: #0b1840;
    --text: #6b7baf;
    --text-pill: #283457;
    --white: #ffffff;
    --border-pill: rgba(43, 127, 255, 0.2);

    --f-display: 'Unbounded', sans-serif;
    --f-body: 'Manrope', sans-serif;

    --max-w: 1440px;
    --pad: 100px;
    --pad-md: 48px;
    --pad-sm: 20px;
}

.content-wrap {
    --page-margin: var(--pad, 100px);
    max-width: var(--max-w);
    padding-left: var(--page-margin);
    padding-right: var(--page-margin);
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1280px) {
    .content-wrap {
        --page-margin: 48px;
    }
}

@media (max-width: 767px) {
    .content-wrap {
        --page-margin: 20px;
    }
}

@media (max-width: 390px) {
    .content-wrap {
        --page-margin: 16px;
    }
}

body {
    position: relative;
    background: var(--white);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: clip;
}

body::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -10;
    background: #F3F5FB;
}

.section-title {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 58px;
    line-height: 1.06;
    letter-spacing: -1.74px;
    color: #14142b;
    text-align: center;
}

.icon-circle {
    width: 56px;
    height: 56px;
    background: rgba(75, 75, 245, 0.03);
    border: 1px solid rgba(75, 75, 245, 0.07);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.icon-circle img {
    width: 26px;
    height: 26px;
}

.bullet-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 11px;
    font-family: var(--f-body);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    color: var(--violet);
    transform: rotate(90deg);
    flex-shrink: 0;
}

@media (max-width: 1023px) {
    .section-title {
        font-size: 44px;
        letter-spacing: -1.32px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 32px;
        letter-spacing: -0.96px;
    }
}
