/* BuyFollowers Instagram Help Pages */

.bf-help-page {
    --bf-help-purple: #5b4cf0;
    --bf-help-purple-light: #7668ff;
    --bf-help-pink: #ec4899;
    --bf-help-green: #20bf6b;
    --bf-help-red: #ef4444;
    --bf-help-ink: #101828;
    --bf-help-body: #475569;
    --bf-help-muted: #718096;
    --bf-help-line: rgba(43, 55, 85, 0.1);
    --bf-help-card: rgba(255, 255, 255, 0.91);

    position: relative;
    overflow: hidden;
    padding: 108px 0 96px;
    background:
        radial-gradient(
            circle at 8% 4%,
            rgba(91, 76, 240, 0.13),
            transparent 29%
        ),
        radial-gradient(
            circle at 92% 7%,
            rgba(236, 72, 153, 0.11),
            transparent 31%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfbff 45%,
            #ffffff 100%
        );
}

.bf-help-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.45;
    background-image:
        linear-gradient(
            rgba(15, 23, 42, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 23, 42, 0.025) 1px,
            transparent 1px
        );
    background-size: 44px 44px;
}

.bf-help-page [hidden] {
    display: none !important;
}

.bf-help-shell {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 32px), 980px);
    margin: 0 auto;
}

.bf-help-hero {
    max-width: 820px;
    margin-bottom: 40px;
}

.bf-help-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 15px;
    border: 1px solid rgba(91, 76, 240, 0.14);
    border-radius: 999px;
    background: rgba(91, 76, 240, 0.08);
    color: var(--bf-help-purple);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bf-help-eyebrow i {
    font-size: 15px;
}

.bf-help-title {
    max-width: 760px;
    margin: 0 0 20px;
    color: var(--bf-help-ink);
    font-size: clamp(42px, 7vw, 68px);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.bf-help-lead {
    max-width: 680px;
    margin: 0;
    color: var(--bf-help-body);
    font-size: clamp(17px, 2.2vw, 20px);
    line-height: 1.65;
}

.bf-help-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 7px;
    max-width: 100%;
    margin: 0 0 28px;
    padding: 7px;
    border: 1px solid var(--bf-help-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 38px -30px rgba(15, 23, 42, 0.5);
}

.bf-help-tab {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 11px 20px;
    border: 0;
    border-radius: 13px;
    background: transparent;
    color: var(--bf-help-ink);
    font: inherit;
    font-size: 14px;
    font-weight: 850;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.bf-help-tab:hover {
    background: rgba(91, 76, 240, 0.07);
}

.bf-help-tab[aria-selected="true"] {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--bf-help-purple),
            var(--bf-help-purple-light) 55%,
            var(--bf-help-pink)
        );
    box-shadow: 0 12px 26px -16px rgba(91, 76, 240, 0.9);
}

.bf-help-tab:focus-visible {
    outline: 3px solid rgba(91, 76, 240, 0.3);
    outline-offset: 3px;
}

.bf-help-panel {
    margin-bottom: 22px;
}

.bf-help-step {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 210px;
    gap: 22px;
    align-items: center;
    margin-bottom: 18px;
    padding: 26px;
    border: 1px solid var(--bf-help-line);
    border-radius: 28px;
    background: var(--bf-help-card);
    box-shadow: 0 24px 60px -48px rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(10px);
}

.bf-help-step:last-child {
    margin-bottom: 0;
}

.bf-help-step__number {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--bf-help-purple),
            var(--bf-help-pink)
        );
    font-size: 17px;
    font-weight: 900;
    box-shadow: 0 12px 24px -14px rgba(91, 76, 240, 0.9);
}

.bf-help-step__content h2,
.bf-help-step__content h3 {
    margin: 0 0 8px;
    color: var(--bf-help-ink);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.22;
}

.bf-help-step__content p {
    margin: 0;
    color: var(--bf-help-body);
    font-size: 15px;
    line-height: 1.65;
}

.bf-help-step__content p + p {
    margin-top: 10px;
}

.bf-help-visual {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 190px;
    overflow: hidden;
    border: 1px solid rgba(91, 76, 240, 0.12);
    border-radius: 23px;
    background:
        radial-gradient(
            circle at 20% 15%,
            rgba(118, 104, 255, 0.22),
            transparent 43%
        ),
        radial-gradient(
            circle at 85% 85%,
            rgba(236, 72, 153, 0.2),
            transparent 47%
        ),
        #f8f8ff;
}

.bf-help-visual::before,
.bf-help-visual::after {
    content: "";
    position: absolute;
    border-radius: 999px;
}

.bf-help-visual::before {
    top: -25px;
    right: -20px;
    width: 92px;
    height: 92px;
    background: rgba(236, 72, 153, 0.12);
}

.bf-help-visual::after {
    bottom: -34px;
    left: -25px;
    width: 110px;
    height: 110px;
    background: rgba(91, 76, 240, 0.12);
}

.bf-help-visual__device {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 112px;
    height: 158px;
    border: 6px solid #161927;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 22px 36px -24px rgba(15, 23, 42, 0.8);
}

.bf-help-visual__device::before {
    content: "";
    position: absolute;
    top: 7px;
    width: 34px;
    height: 6px;
    border-radius: 999px;
    background: #161927;
}

.bf-help-visual__device i {
    color: var(--bf-help-purple);
    font-size: 42px;
}

.bf-help-visual__device span {
    position: absolute;
    right: 10px;
    bottom: 11px;
    left: 10px;
    height: 7px;
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            rgba(91, 76, 240, 0.25),
            rgba(236, 72, 153, 0.3)
        );
}

.bf-help-visual--computer {
    min-height: 170px;
}

.bf-help-visual--computer .bf-help-visual__device {
    width: 170px;
    height: 108px;
    border-width: 5px;
    border-radius: 13px;
}

.bf-help-visual--computer .bf-help-visual__device::before {
    top: auto;
    bottom: -16px;
    width: 54px;
    height: 10px;
    border-radius: 2px;
}

.bf-help-visual--computer .bf-help-visual__device::after {
    content: "";
    position: absolute;
    bottom: -23px;
    width: 88px;
    height: 7px;
    border-radius: 999px;
    background: #161927;
}

.bf-help-checker {
    margin-top: 44px;
    padding: 32px;
    overflow: hidden;
    border-radius: 30px;
    color: #ffffff;
    background:
        linear-gradient(
            140deg,
            #5144e6,
            #7063f6 54%,
            #dd4694
        );
    box-shadow: 0 30px 70px -36px rgba(81, 68, 230, 0.8);
}

.bf-help-checker__head {
    margin-bottom: 21px;
}

.bf-help-checker__head h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 29px;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.bf-help-checker__head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
}

.bf-help-anatomy {
    margin-bottom: 20px;
    padding: 15px 17px;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.12);
    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;
    font-size: 13px;
    white-space: nowrap;
}

.bf-help-anatomy strong {
    color: #ffffff;
}

.bf-help-anatomy span {
    color: rgba(255, 255, 255, 0.62);
}

.bf-help-checker__field {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.bf-help-checker__field input {
    flex: 1 1 280px;
    min-width: 0;
    min-height: 52px;
    padding: 14px 17px;
    border: 0;
    border-radius: 15px;
    background: #ffffff;
    color: var(--bf-help-ink);
    font: inherit;
    font-size: 15px;
}

.bf-help-checker__field input:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 3px;
}

.bf-help-checker__field button,
.bf-help-clean__copy {
    appearance: none;
    border: 0;
    border-radius: 15px;
    background: var(--bf-help-ink);
    color: #ffffff;
    font: inherit;
    font-size: 14px;
    font-weight: 850;
    cursor: pointer;
    transition:
        transform 0.18s ease,
        background 0.18s ease;
}

.bf-help-checker__field button {
    min-height: 52px;
    padding: 14px 23px;
}

.bf-help-checker__field button:hover,
.bf-help-clean__copy:hover {
    transform: translateY(-1px);
    background: #1d2939;
}

.bf-help-verdict {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 24px;
    margin-top: 17px;
    font-size: 15px;
    font-weight: 700;
}

.bf-help-verdict::before {
    content: "";
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    margin-top: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
}

.bf-help-verdict.is-success::before {
    background: #62e99d;
}

.bf-help-verdict.is-error::before {
    background: #ffb4bc;
}

.bf-help-clean {
    display: none;
    margin-top: 13px;
    padding: 14px 15px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.2);
}

.bf-help-clean.is-visible {
    display: block;
}

.bf-help-clean__value {
    color: #ffffff;
    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;
    font-size: 13px;
    line-height: 1.55;
    word-break: break-all;
}

.bf-help-clean__copy {
    margin-top: 11px;
    padding: 10px 16px;
    background: #ffffff;
    color: var(--bf-help-ink);
}

.bf-help-clean__copy:hover {
    background: #f8fafc;
}

.bf-help-problems {
    margin-top: 52px;
}

.bf-help-problems__title {
    margin: 0 0 20px;
    color: var(--bf-help-ink);
    font-size: 31px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.bf-help-problem {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    margin-bottom: 13px;
    padding: 21px 23px;
    border: 1px solid var(--bf-help-line);
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.88);
}

.bf-help-problem:last-child {
    margin-bottom: 0;
}

.bf-help-problem__icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: var(--bf-help-purple);
    background: rgba(91, 76, 240, 0.09);
    font-size: 19px;
}

.bf-help-problem.is-warning .bf-help-problem__icon {
    color: var(--bf-help-pink);
    background: rgba(236, 72, 153, 0.1);
}

.bf-help-problem h3 {
    margin: 1px 0 5px;
    color: var(--bf-help-ink);
    font-size: 17px;
    font-weight: 900;
}

.bf-help-problem p {
    margin: 0;
    color: var(--bf-help-body);
    font-size: 15px;
    line-height: 1.6;
}

.bf-help-problem code {
    padding: 2px 6px;
    border-radius: 7px;
    background: rgba(91, 76, 240, 0.08);
    color: var(--bf-help-purple);
    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;
    font-size: 0.91em;
}

.bf-help-cta {
    margin-top: 48px;
    padding: 32px 24px;
    border: 1px solid var(--bf-help-line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    text-align: center;
}

.bf-help-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 15px 30px;
    border-radius: 16px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--bf-help-purple),
            var(--bf-help-purple-light) 55%,
            var(--bf-help-pink)
        );
    box-shadow: 0 18px 34px -20px rgba(91, 76, 240, 0.9);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.bf-help-cta__button:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 22px 38px -20px rgba(91, 76, 240, 1);
}

.bf-help-cta__button:focus-visible {
    outline: 3px solid rgba(91, 76, 240, 0.3);
    outline-offset: 4px;
}

.bf-help-cta p {
    margin: 16px 0 0;
    color: var(--bf-help-muted);
    font-size: 14px;
}

.bf-help-cta p a {
    color: var(--bf-help-purple);
    font-weight: 800;
}

@media (max-width: 800px) {
    .bf-help-page {
        padding-top: 86px;
    }

    .bf-help-step {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .bf-help-step__visual {
        grid-column: 2;
    }

    .bf-help-visual {
        max-width: 280px;
    }
}

@media (max-width: 560px) {
    .bf-help-page {
        padding: 72px 0 72px;
    }

    .bf-help-shell {
        width: min(calc(100% - 24px), 980px);
    }

    .bf-help-title {
        font-size: clamp(38px, 13vw, 52px);
    }

    .bf-help-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }

    .bf-help-tab {
        padding: 10px 8px;
        font-size: 13px;
    }

    .bf-help-tab i {
        display: none;
    }

    .bf-help-step {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 15px;
        padding: 21px;
        border-radius: 23px;
    }

    .bf-help-step__number {
        width: 42px;
        height: 42px;
    }

    .bf-help-step__visual {
        grid-column: 1 / -1;
    }

    .bf-help-visual {
        max-width: none;
        min-height: 170px;
    }

    .bf-help-checker {
        padding: 24px 20px;
        border-radius: 24px;
    }

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

    .bf-help-checker__field button {
        width: 100%;
    }

    .bf-help-problem {
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 19px;
    }

    .bf-help-problem__icon {
        width: 38px;
        height: 38px;
    }

    .bf-help-cta {
        padding: 27px 19px;
    }

    .bf-help-cta__button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bf-help-page *,
    .bf-help-page *::before,
    .bf-help-page *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }
}
/* Exact Instagram help illustrations */

.bf-help-step__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    margin: 0;
}

.bf-help-shot {
    width: 100%;
    max-width: 218px;
    margin: 0 auto;
}

.bf-help-shot--wide {
    max-width: 430px;
}

.bf-help-shot svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.bf-help-step--text-only {
    grid-template-columns: 48px minmax(0, 1fr);
}

.bf-help-step--text-only .bf-help-step__content {
    min-width: 0;
}

/* Tablet */

@media (max-width: 900px) {
    .bf-help-step {
        grid-template-columns: 48px minmax(0, 1fr);
        align-items: start;
    }

    .bf-help-step__visual {
        grid-column: 2;
        justify-content: flex-start;
        width: 100%;
        margin-top: 4px;
    }

    .bf-help-step--text-only {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .bf-help-shot {
        margin-right: auto;
        margin-left: 0;
    }

    .bf-help-shot--wide {
        width: 100%;
        max-width: 430px;
    }
}

/* Mobile */

@media (max-width: 560px) {
    .bf-help-page {
        padding: 56px 0 68px;
        overflow-x: clip;
    }

    .bf-help-shell {
        width: min(calc(100% - 24px), 980px);
    }

    .bf-help-hero {
        margin-bottom: 30px;
    }

    .bf-help-eyebrow {
        margin-bottom: 14px;
        padding: 7px 12px;
        font-size: 11px;
    }

    .bf-help-title {
        margin-bottom: 16px;
        font-size: clamp(36px, 11vw, 48px);
        line-height: 1.02;
        letter-spacing: -0.045em;
        overflow-wrap: anywhere;
    }

    .bf-help-lead {
        font-size: 16px;
        line-height: 1.58;
    }

    .bf-help-tabs {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        margin-bottom: 22px;
        padding: 5px;
        gap: 4px;
        border-radius: 15px;
    }

    .bf-help-tab {
        min-width: 0;
        min-height: 44px;
        padding: 9px 5px;
        border-radius: 11px;
        font-size: 12px;
        white-space: nowrap;
    }

    .bf-help-tab i {
        display: none;
    }

    .bf-help-step,
    .bf-help-step--text-only {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
        align-items: start;
        padding: 19px 16px;
        border-radius: 22px;
    }

    .bf-help-step__number {
        width: 42px;
        height: 42px;
        border-radius: 13px;
        font-size: 16px;
    }

    .bf-help-step__content {
        min-width: 0;
    }

    .bf-help-step__content h2,
    .bf-help-step__content h3 {
        margin-top: 2px;
        font-size: 18px;
        line-height: 1.25;
    }

    .bf-help-step__content p {
        font-size: 15px;
        line-height: 1.58;
    }

    .bf-help-step__visual {
        grid-column: 1 / -1;
        justify-content: center;
        width: 100%;
        margin-top: 5px;
    }

    .bf-help-shot {
        max-width: 205px;
        margin: 0 auto;
    }

    .bf-help-shot--wide {
        width: 100%;
        max-width: 100%;
    }

    .bf-help-checker {
        margin-top: 34px;
        padding: 23px 17px;
        border-radius: 23px;
    }

    .bf-help-checker__head {
        margin-bottom: 18px;
    }

    .bf-help-checker__head h2 {
        font-size: 25px;
        line-height: 1.15;
    }

    .bf-help-anatomy {
        padding: 12px;
        font-size: 11px;
        line-height: 1.5;
        -webkit-overflow-scrolling: touch;
    }

    .bf-help-checker__field {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }

    .bf-help-checker__field input {
        width: 100%;
        min-width: 0;
        font-size: 16px;
    }

    .bf-help-checker__field button {
        width: 100%;
        min-height: 50px;
    }

    .bf-help-problems {
        margin-top: 40px;
    }

    .bf-help-problems__title {
        margin-bottom: 16px;
        font-size: 26px;
    }

    .bf-help-problem {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 13px;
        padding: 18px 15px;
        border-radius: 19px;
    }

    .bf-help-problem__icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .bf-help-problem h3 {
        font-size: 16px;
    }

    .bf-help-problem p {
        font-size: 14px;
        line-height: 1.58;
    }

    .bf-help-cta {
        margin-top: 38px;
        padding: 25px 16px;
        border-radius: 23px;
    }

    .bf-help-cta__button {
        width: 100%;
        min-height: 52px;
        padding-right: 18px;
        padding-left: 18px;
    }
}

@media (max-width: 370px) {
    .bf-help-shell {
        width: min(calc(100% - 18px), 980px);
    }

    .bf-help-title {
        font-size: 34px;
    }

    .bf-help-tab {
        font-size: 11px;
    }

    .bf-help-step,
    .bf-help-step--text-only {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 11px;
        padding: 17px 13px;
    }

    .bf-help-step__number {
        width: 38px;
        height: 38px;
    }

    .bf-help-shot {
        max-width: 190px;
    }

    .bf-help-checker {
        padding-right: 14px;
        padding-left: 14px;
    }
}