/* =========================================================
   QUANTAPS FREE PLATFORM TOOLS
   COMPACT APP UI • LIGHT SAAS • RESPONSIVE
   DESKTOP / TABLET / MOBILE
   FULL CSS REPLACEMENT
========================================================= */

/* =========================================================
   01. PAGE VARIABLES
========================================================= */

.qtf-page {
    --qtf-accent: var(--qt-platform-default, #6573dc);

    --qtf-accent-04:
        color-mix(in srgb, var(--qtf-accent) 4%, transparent);

    --qtf-accent-06:
        color-mix(in srgb, var(--qtf-accent) 6%, transparent);

    --qtf-accent-08:
        color-mix(in srgb, var(--qtf-accent) 8%, transparent);

    --qtf-accent-10:
        color-mix(in srgb, var(--qtf-accent) 10%, transparent);

    --qtf-accent-12:
        color-mix(in srgb, var(--qtf-accent) 12%, transparent);

    --qtf-accent-16:
        color-mix(in srgb, var(--qtf-accent) 16%, transparent);

    --qtf-accent-22:
        color-mix(in srgb, var(--qtf-accent) 22%, transparent);

    --qtf-accent-dark:
        color-mix(in srgb, var(--qtf-accent) 76%, #17203d);

    --qtf-ink: #151d38;
    --qtf-ink-2: #263451;

    --qtf-muted: #627087;
    --qtf-muted-2: #7c879b;

    --qtf-line: rgba(69, 82, 139, .11);
    --qtf-line-soft: rgba(69, 82, 139, .075);
    --qtf-line-strong: rgba(69, 82, 139, .15);

    --qtf-page-top: #f5f6fb;
    --qtf-page-bottom: #edf1f8;

    --qtf-surface: rgba(255, 255, 255, .90);
    --qtf-surface-strong: rgba(255, 255, 255, .97);
    --qtf-surface-soft: rgba(248, 249, 254, .94);

    --qtf-shadow:
        0 12px 30px rgba(37, 49, 94, .055);

    --qtf-shadow-soft:
        0 7px 19px rgba(37, 49, 94, .045);

    --qtf-shadow-hover:
        0 15px 34px rgba(37, 49, 94, .075);

    --qtf-radius-xl: 24px;
    --qtf-radius-lg: 19px;
    --qtf-radius-md: 14px;
    --qtf-radius-sm: 11px;

    position: relative;
    isolation: isolate;

    min-height: 60vh;
    padding: 14px 0 52px;

    overflow: hidden;

    color: var(--qtf-ink);

    background:
        radial-gradient(
            880px 280px at 7% 0%,
            var(--qtf-accent-08),
            transparent 68%
        ),
        radial-gradient(
            720px 260px at 96% 8%,
            rgba(98, 199, 191, .055),
            transparent 70%
        ),
        linear-gradient(
            180deg,
            var(--qtf-page-top) 0%,
            #f7f8fc 34%,
            var(--qtf-page-bottom) 100%
        );

    font-family:
        Inter,
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.qtf-page::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent 0 13%,
            rgba(101, 115, 220, .025) 13.1%,
            transparent 13.3%
        ),
        linear-gradient(
            90deg,
            transparent 0 86%,
            rgba(98, 199, 191, .025) 86.1%,
            transparent 86.3%
        );
}

.qtf-page,
.qtf-page *,
.qtf-page *::before,
.qtf-page *::after {
    box-sizing: border-box;
}

.qtf-page :where(
    h1,
    h2,
    h3,
    h4,
    p,
    ol,
    ul,
    li,
    figure
) {
    margin: 0;
}

.qtf-page :where(
    input,
    select,
    button,
    textarea
) {
    font: inherit;
}

.qtf-page a {
    color: inherit;
}

.qtf-page button,
.qtf-page input,
.qtf-page select {
    -webkit-tap-highlight-color: transparent;
}

/* =========================================================
   02. MAIN SHELL
========================================================= */

.qtf-page > .qtf-shell {
    position: relative;
    z-index: 1;

    display: grid;
    gap: 14px;

    width: min(1240px, calc(100% - 24px));
    margin: 0 auto;
}

/* =========================================================
   03. BREADCRUMB
========================================================= */

.qtf-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;

    min-height: 30px;
    padding: 0 5px;

    color: var(--qtf-muted-2);

    font-size: 11.5px;
    font-weight: 650;
    line-height: 1.35;
}

.qtf-breadcrumb a {
    color: var(--qtf-muted);

    text-decoration: none;

    transition: color .15s ease;
}

.qtf-breadcrumb a:hover,
.qtf-breadcrumb a:focus-visible {
    color: var(--qtf-accent-dark);
}

.qtf-breadcrumb a:focus-visible {
    outline: none;

    text-decoration: underline;
    text-underline-offset: 3px;
}

.qtf-breadcrumb__sep {
    color: var(--qtf-muted-2);

    opacity: .46;
}

.qtf-breadcrumb__current {
    min-width: 0;

    overflow: hidden;

    color: var(--qtf-accent-dark);

    font-weight: 800;

    text-overflow: ellipsis;
    white-space: nowrap;
}

/* =========================================================
   04. MAIN COMPACT APP
========================================================= */

.qtf-app {
    position: relative;
    isolation: isolate;

    overflow: hidden;

    border: 1px solid var(--qtf-line);
    border-radius: var(--qtf-radius-xl);

    background:
        radial-gradient(
            520px 180px at 0% 0%,
            var(--qtf-accent-08),
            transparent 68%
        ),
        radial-gradient(
            400px 170px at 100% 0%,
            rgba(98, 199, 191, .045),
            transparent 70%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .96),
            rgba(246, 248, 253, .96)
        );

    box-shadow:
        var(--qtf-shadow),
        inset 0 1px 0 rgba(255, 255, 255, .94);
}

.qtf-app::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    height: 2px;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--qtf-accent-22),
            rgba(98, 199, 191, .18),
            transparent
        );
}

/* =========================================================
   05. APP HEADER
========================================================= */

.qtf-app__head {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 15px;

    padding: 18px 20px 16px;

    border-bottom: 1px solid var(--qtf-line-soft);
}

.qtf-app__icon {
    position: relative;

    display: grid;
    place-items: center;

    width: 58px;
    height: 58px;

    border: 1px solid var(--qtf-accent-16);
    border-radius: 18px;

    color: var(--qtf-accent-dark);

    background:
        radial-gradient(
            78px 52px at 28% 5%,
            rgba(255, 255, 255, .90),
            transparent 70%
        ),
        var(--qtf-accent-10);

    box-shadow:
        0 8px 18px var(--qtf-accent-10),
        inset 0 1px 0 rgba(255, 255, 255, .92);
}

.qtf-app__icon::after {
    content: "";

    position: absolute;
    top: 7px;
    right: 7px;

    width: 6px;
    height: 6px;

    border-radius: 999px;

    background: #62c7bf;

    box-shadow:
        0 0 0 4px rgba(98, 199, 191, .11);
}

.qtf-app__icon .qt-ic {
    display: block;

    width: 27px;
    height: 27px;

    color: currentColor;
    fill: currentColor;
    stroke: none;
}

.qtf-app__identity {
    min-width: 0;
}

.qtf-app__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;

    margin-bottom: 7px;
}

.qtf-app__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 23px;
    padding: 0 9px;

    border: 1px solid var(--qtf-accent-12);
    border-radius: 999px;

    color: var(--qtf-accent-dark);

    background:
        color-mix(
            in srgb,
            var(--qtf-accent) 5%,
            #ffffff
        );

    font-size: 9.5px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .035em;

    text-transform: uppercase;
    white-space: nowrap;
}

.qtf-app__badge--safe {
    border-color: rgba(35, 177, 130, .14);

    color: #217c66;

    background: rgba(98, 199, 191, .075);
}

.qtf-app__badge--platform {
    color: var(--qtf-muted);

    border-color: var(--qtf-line);

    background: rgba(255, 255, 255, .68);
}

.qtf-app__title {
    max-width: 920px;

    color: var(--qtf-ink);

    font-size: clamp(1.85rem, 2.8vw, 2.65rem);
    font-weight: 1000;
    line-height: 1;
    letter-spacing: -.052em;

    text-wrap: balance;
}

.qtf-app__description {
    max-width: 840px;
    margin-top: 7px;

    color: var(--qtf-muted);

    font-size: 13.5px;
    font-weight: 540;
    line-height: 1.55;

    text-wrap: pretty;
}

/* =========================================================
   06. REQUEST PANEL
========================================================= */

.qtf-app__panel {
    margin: 13px;
    padding: 15px;

    border: 1px solid var(--qtf-line);
    border-radius: var(--qtf-radius-lg);

    background:
        radial-gradient(
            500px 130px at 0% 0%,
            var(--qtf-accent-04),
            transparent 72%
        ),
        rgba(255, 255, 255, .78);

    box-shadow:
        var(--qtf-shadow-soft),
        inset 0 1px 0 rgba(255, 255, 255, .88);
}

.qtf-app__panelHead {
    margin-bottom: 13px;
}

.qtf-app__panelTitle {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.qtf-app__panelIcon {
    display: grid;
    place-items: center;
    flex: 0 0 27px;

    width: 27px;
    height: 27px;

    border-radius: 9px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            color-mix(
                in srgb,
                var(--qtf-accent) 78%,
                #ffffff
            ),
            var(--qtf-accent)
        );

    box-shadow:
        0 6px 13px var(--qtf-accent-16);

    font-size: 11px;
    font-weight: 950;
    line-height: 1;
}

.qtf-app__panelTitle h2 {
    color: var(--qtf-ink);

    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -.024em;
}

.qtf-app__panelTitle p {
    max-width: 760px;
    margin-top: 3px;

    color: var(--qtf-muted);

    font-size: 11.8px;
    font-weight: 500;
    line-height: 1.5;
}

/* =========================================================
   07. FORM
========================================================= */

.qtf-form {
    display: grid;
    gap: 12px;
}

.qtf-field {
    display: grid;
    gap: 6px;

    min-width: 0;
}

.qtf-field__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    min-width: 0;
}

.qtf-label {
    display: inline-flex;
    align-items: center;

    min-height: 18px;

    color: var(--qtf-ink-2);

    font-size: 11.5px;
    font-weight: 800;
    line-height: 1.25;
}

.qtf-label--button {
    color: transparent;

    user-select: none;
}

/* =========================================================
   08. INPUTS
========================================================= */

.qtf-inputWrap,
.qtf-selectWrap {
    position: relative;

    min-width: 0;
}

.qtf-inputWrap__icon {
    position: absolute;
    top: 50%;
    left: 13px;
    z-index: 2;

    display: grid;
    place-items: center;

    width: 18px;
    height: 18px;

    color: var(--qtf-muted-2);

    pointer-events: none;

    transform: translateY(-50%);
}

.qtf-inputWrap__icon svg {
    display: block;

    width: 17px;
    height: 17px;

    fill: currentColor;
}

.qtf-input {
    display: block;

    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 0 13px;

    border: 1px solid var(--qtf-line-strong);
    border-radius: 12px;

    outline: none;

    color: var(--qtf-ink);

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

    box-shadow:
        0 3px 10px rgba(37, 49, 94, .025),
        inset 0 1px 0 rgba(255, 255, 255, .94);

    font-size: 12.8px;
    font-weight: 550;
    line-height: 1;

    appearance: none;
    -webkit-appearance: none;

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

.qtf-input--with-icon {
    padding-left: 41px;
}

.qtf-input::placeholder {
    color: #9aa4b5;

    font-weight: 500;

    opacity: 1;
}

.qtf-input:hover {
    border-color:
        color-mix(
            in srgb,
            var(--qtf-accent) 20%,
            var(--qtf-line-strong)
        );
}

.qtf-input:focus {
    border-color:
        color-mix(
            in srgb,
            var(--qtf-accent) 38%,
            rgba(69, 82, 139, .15)
        );

    background: #ffffff;

    box-shadow:
        0 0 0 4px var(--qtf-accent-10),
        0 7px 17px rgba(37, 49, 94, .045);
}

.qtf-input:focus + .qtf-inputWrap__icon {
    color: var(--qtf-accent);
}

.qtf-select {
    padding-right: 38px;

    cursor: pointer;
}

.qtf-selectWrap__arrow {
    position: absolute;
    top: 50%;
    right: 15px;

    width: 8px;
    height: 8px;

    border-right: 2px solid var(--qtf-accent);
    border-bottom: 2px solid var(--qtf-accent);

    pointer-events: none;

    transform:
        translateY(-70%)
        rotate(45deg);
}

/* =========================================================
   09. TARGET HELP
========================================================= */

.qtf-help {
    padding: 0 2px;

    color: var(--qtf-muted);

    font-size: 10.8px;
    font-weight: 500;
    line-height: 1.5;
}

/* =========================================================
   10. SAMPLE URL BUTTON
========================================================= */

.qtf-sampleBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    min-height: 29px;
    padding: 0 10px;

    border: 1px solid var(--qtf-accent-12);
    border-radius: 999px;

    color: var(--qtf-accent-dark);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .94),
            var(--qtf-accent-04)
        );

    cursor: pointer;

    font-size: 10.5px;
    font-weight: 800;
    line-height: 1;

    white-space: nowrap;

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

.qtf-sampleBtn__icon {
    display: grid;
    place-items: center;

    width: 16px;
    height: 16px;

    border-radius: 999px;

    color: #ffffff;

    background: var(--qtf-accent);

    font-size: 9px;
    font-weight: 950;
    line-height: 1;
}

.qtf-sampleBtn:hover,
.qtf-sampleBtn[aria-expanded="true"] {
    border-color: var(--qtf-accent-22);

    box-shadow:
        0 5px 13px var(--qtf-accent-08);

    transform: translateY(-1px);
}

.qtf-sampleBtn:focus-visible {
    outline: none;

    box-shadow:
        0 0 0 4px var(--qtf-accent-10);
}

/* =========================================================
   11. SAMPLE URL PANEL
========================================================= */

.qtf-sampleBox {
    position: relative;

    padding: 12px 42px 12px 12px;

    overflow: hidden;

    border: 1px solid var(--qtf-accent-12);
    border-radius: 13px;

    background:
        radial-gradient(
            420px 110px at 0% 0%,
            var(--qtf-accent-06),
            transparent 70%
        ),
        rgba(250, 251, 255, .96);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .90);
}

.qtf-sampleBox[hidden] {
    display: none !important;
}

.qtf-sampleTitle {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 8px;

    color: var(--qtf-accent-dark);

    font-size: 11px;
    font-weight: 850;
    line-height: 1.3;
}

.qtf-sampleTitle::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 999px;

    background: var(--qtf-accent);

    box-shadow:
        0 0 0 4px var(--qtf-accent-10);
}

.qtf-sampleList {
    display: grid;
    gap: 6px;
}

.qtf-sampleItem {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    min-width: 0;
    padding: 8px 9px;

    border: 1px solid var(--qtf-line-soft);
    border-radius: 10px;

    color: var(--qtf-muted);

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

    font-size: 10.8px;
    font-weight: 550;
    line-height: 1.45;
}

.qtf-sampleItem__dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;

    margin-top: 4px;

    border-radius: 999px;

    background: var(--qtf-accent);
}

.qtf-sampleItem__text {
    min-width: 0;

    overflow-wrap: anywhere;
}

.qtf-sampleClose {
    position: absolute;
    top: 8px;
    right: 8px;

    display: grid;
    place-items: center;

    width: 25px;
    height: 25px;
    padding: 0;

    border: 1px solid var(--qtf-line);
    border-radius: 999px;

    color: var(--qtf-muted);

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

    cursor: pointer;

    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.qtf-sampleClose:hover {
    color: var(--qtf-accent-dark);

    border-color: var(--qtf-accent-16);
}

/* =========================================================
   12. FORM CONTROL GRID
========================================================= */

.qtf-form__controls {
    display: grid;
    align-items: end;
    gap: 10px;

    min-width: 0;
}

.qtf-form__controls--email {
    grid-template-columns:
        minmax(120px, .36fr)
        minmax(220px, .95fr)
        minmax(240px, .85fr);
}

.qtf-form__controls--simple {
    grid-template-columns:
        minmax(140px, .38fr)
        minmax(280px, 1fr);
}

.qtf-form__submitField {
    display: grid;
    gap: 6px;

    min-width: 0;
}

/* =========================================================
   13. SUBMIT BUTTON
========================================================= */

.qtf-submit,
.qtf-sideCard__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 0 15px;

    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;

    color: #ffffff;

    background:
        radial-gradient(
            130px 55px at 27% 0%,
            rgba(255, 255, 255, .24),
            transparent 68%
        ),
        linear-gradient(
            135deg,
            color-mix(
                in srgb,
                var(--qtf-accent) 83%,
                #ffffff
            ),
            var(--qtf-accent)
        );

    box-shadow:
        0 9px 19px var(--qtf-accent-16),
        inset 0 1px 0 rgba(255, 255, 255, .20);

    cursor: pointer;

    font-size: 12px;
    font-weight: 900;
    line-height: 1.15;

    text-align: center;
    text-decoration: none;

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

.qtf-submit__text {
    min-width: 0;

    overflow: hidden;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.qtf-submit__arrow,
.qtf-upgrade__button > span:last-child {
    flex: 0 0 auto;

    font-size: 17px;
    font-weight: 700;
    line-height: 1;

    transition: transform .15s ease;
}

.qtf-submit:hover,
.qtf-sideCard__btn:hover {
    filter: brightness(1.025);

    box-shadow:
        0 12px 23px var(--qtf-accent-22),
        inset 0 1px 0 rgba(255, 255, 255, .24);

    transform: translateY(-1px);
}

.qtf-submit:hover .qtf-submit__arrow,
.qtf-upgrade__button:hover > span:last-child {
    transform: translateX(2px);
}

.qtf-submit:focus-visible,
.qtf-sideCard__btn:focus-visible {
    outline: none;

    box-shadow:
        0 0 0 4px var(--qtf-accent-12),
        0 10px 21px var(--qtf-accent-16);
}

.qtf-submit:disabled {
    cursor: wait;

    filter: grayscale(.15);

    opacity: .68;

    transform: none;
}

/* =========================================================
   14. FORM MESSAGE
========================================================= */

.qtf-msg {
    display: none;

    min-height: 0;
    padding: 9px 11px;

    border: 1px solid transparent;
    border-radius: 10px;

    font-size: 11.5px;
    font-weight: 650;
    line-height: 1.45;
}

.qtf-msg:not(:empty) {
    display: block;
}

.qtf-msg.is-success,
.qtf-msg.qtf-msg--success {
    border-color: rgba(34, 160, 120, .16);

    color: #21745e;

    background: rgba(98, 199, 191, .09);
}

.qtf-msg.is-error,
.qtf-msg.qtf-msg--error {
    border-color: rgba(215, 76, 91, .16);

    color: #a13c49;

    background: rgba(215, 76, 91, .07);
}

.qtf-msg.is-info,
.qtf-msg.qtf-msg--info {
    border-color: var(--qtf-accent-16);

    color: var(--qtf-accent-dark);

    background: var(--qtf-accent-06);
}

/* =========================================================
   15. FORM FACTS
========================================================= */

.qtf-form__facts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 14px;

    padding-top: 1px;
}

.qtf-form__fact {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: var(--qtf-muted);

    font-size: 10.5px;
    font-weight: 650;
    line-height: 1.35;

    white-space: nowrap;
}

.qtf-form__factDot {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;

    border-radius: 999px;

    background: #62c7bf;

    box-shadow:
        0 0 0 3px rgba(98, 199, 191, .10);
}

/* =========================================================
   16. PAID UPGRADE BAR
========================================================= */

.qtf-upgrade {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) minmax(210px, auto);
    align-items: center;
    gap: 13px;

    margin: 0 13px 13px;
    padding: 12px 13px;

    border: 1px solid var(--qtf-accent-12);
    border-radius: 15px;

    background:
        radial-gradient(
            350px 100px at 0% 0%,
            var(--qtf-accent-06),
            transparent 70%
        ),
        linear-gradient(
            180deg,
            rgba(249, 250, 255, .92),
            rgba(242, 245, 252, .92)
        );
}

.qtf-upgrade__icon {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    border: 1px solid var(--qtf-accent-12);
    border-radius: 13px;

    color: var(--qtf-accent-dark);

    background: var(--qtf-accent-08);
}

.qtf-upgrade__icon .qt-ic {
    display: block;

    width: 20px;
    height: 20px;

    fill: currentColor;
}

.qtf-upgrade__body {
    min-width: 0;
}

.qtf-upgrade__eyebrow {
    display: block;

    margin-bottom: 3px;

    color: var(--qtf-accent-dark);

    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .075em;

    text-transform: uppercase;
}

.qtf-upgrade__body h2 {
    color: var(--qtf-ink);

    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -.018em;
}

.qtf-upgrade__body p {
    max-width: 720px;
    margin-top: 3px;

    color: var(--qtf-muted);

    font-size: 10.8px;
    font-weight: 500;
    line-height: 1.45;
}

.qtf-upgrade__button {
    justify-self: end;

    width: auto;
    min-width: 210px;
    min-height: 42px;

    border-radius: 11px;

    font-size: 11px;
}

/* =========================================================
   17. SHARED SECTION
========================================================= */

.qtf-section,
.qtf-seo,
.qtf-faq {
    overflow: hidden;

    border: 1px solid var(--qtf-line);
    border-radius: var(--qtf-radius-lg);

    background:
        radial-gradient(
            600px 170px at 0% 0%,
            var(--qtf-accent-04),
            transparent 70%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .94),
            rgba(248, 250, 254, .92)
        );

    box-shadow:
        var(--qtf-shadow-soft),
        inset 0 1px 0 rgba(255, 255, 255, .90);
}

/* =========================================================
   18. HOW TO
========================================================= */

.qtf-howto {
    padding: 15px;
}

.qtf-sectionHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    margin-bottom: 12px;
}

.qtf-sectionHead__eyebrow {
    display: block;

    margin-bottom: 4px;

    color: var(--qtf-accent-dark);

    font-size: 9.5px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .08em;

    text-transform: uppercase;
}

.qtf-sectionHead h2 {
    color: var(--qtf-ink);

    font-size: clamp(1.15rem, 1.7vw, 1.5rem);
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -.035em;
}

.qtf-sectionHead__platform {
    display: grid;
    place-items: center;
    flex: 0 0 39px;

    width: 39px;
    height: 39px;

    border: 1px solid var(--qtf-accent-12);
    border-radius: 12px;

    color: var(--qtf-accent-dark);

    background: var(--qtf-accent-08);
}

.qtf-sectionHead__platform .qt-ic {
    width: 19px;
    height: 19px;

    fill: currentColor;
}

.qtf-howto__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;

    padding: 0;

    list-style: none;
}

.qtf-howto__item {
    display: flex;
    align-items: center;
    gap: 9px;

    min-width: 0;
    min-height: 66px;
    padding: 10px 11px;

    border: 1px solid var(--qtf-line-soft);
    border-radius: 12px;

    background: rgba(255, 255, 255, .66);
}

.qtf-howto__number {
    display: grid;
    place-items: center;
    flex: 0 0 28px;

    width: 28px;
    height: 28px;

    border-radius: 9px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            color-mix(
                in srgb,
                var(--qtf-accent) 78%,
                #ffffff
            ),
            var(--qtf-accent)
        );

    box-shadow:
        0 5px 12px var(--qtf-accent-12);

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

.qtf-howto__text {
    min-width: 0;

    color: var(--qtf-ink-2);

    font-size: 11.5px;
    font-weight: 650;
    line-height: 1.48;
}

/* =========================================================
   19. SEO ARTICLE
========================================================= */

.qtf-seo {
    padding: 0;
}

.qtf-seo__article {
    width: min(940px, 100%);
    margin: 0 auto;
    padding: 24px 25px 27px;
}

.qtf-seo__article > *:first-child {
    margin-top: 0;
}

.qtf-seo__article > *:last-child {
    margin-bottom: 0;
}

.qtf-seo__article h2 {
    position: relative;

    margin: 28px 0 11px;
    padding-top: 13px;

    color: var(--qtf-ink);

    font-size: clamp(1.35rem, 2.3vw, 1.95rem);
    font-weight: 950;
    line-height: 1.17;
    letter-spacing: -.038em;

    text-wrap: balance;
}

.qtf-seo__article h2::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 40px;
    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--qtf-accent),
            rgba(98, 199, 191, .70)
        );

    box-shadow:
        0 0 0 5px var(--qtf-accent-06);
}

.qtf-seo__article h3 {
    margin: 22px 0 9px;

    color: var(--qtf-ink);

    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
    font-weight: 880;
    line-height: 1.25;
    letter-spacing: -.027em;
}

.qtf-seo__article h4 {
    margin: 18px 0 7px;

    color: var(--qtf-ink-2);

    font-size: 1rem;
    font-weight: 850;
    line-height: 1.3;
}

.qtf-seo__article p {
    margin: 11px 0 0;

    color: #526077;

    font-size: 14px;
    font-weight: 450;
    line-height: 1.76;
}

.qtf-seo__article ul,
.qtf-seo__article ol {
    display: grid;
    gap: 7px;

    margin: 12px 0 0;
    padding: 0;

    list-style: none;
}

.qtf-seo__article li {
    position: relative;

    padding: 9px 11px 9px 34px;

    border: 1px solid var(--qtf-line-soft);
    border-radius: 11px;

    color: #526077;

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

    font-size: 13px;
    font-weight: 480;
    line-height: 1.6;
}

.qtf-seo__article li::before {
    content: "";

    position: absolute;
    top: 15px;
    left: 14px;

    width: 7px;
    height: 7px;

    border-radius: 999px;

    background: var(--qtf-accent);

    box-shadow:
        0 0 0 4px var(--qtf-accent-08);
}

.qtf-seo__article strong,
.qtf-seo__article b {
    color: var(--qtf-ink);

    font-weight: 800;
}

.qtf-seo__article a {
    color: var(--qtf-accent-dark);

    font-weight: 750;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.qtf-seo__article a:hover {
    color: var(--qtf-accent);
}

/* =========================================================
   20. STRUCTURED SEO SECTIONS
========================================================= */

.qtf-seo__section {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(260px, .88fr);
    align-items: center;
    gap: 20px;

    margin-top: 22px;
    padding-top: 22px;

    border-top: 1px solid var(--qtf-line-soft);
}

.qtf-seo__section--reverse .qtf-seo__content {
    order: 2;
}

.qtf-seo__section--reverse .qtf-seo__media {
    order: 1;
}

.qtf-seo__section--no-media {
    display: block;
}

.qtf-seo__media {
    margin: 0;

    overflow: hidden;

    border: 1px solid var(--qtf-line);
    border-radius: 15px;

    background: var(--qtf-surface-soft);

    box-shadow: var(--qtf-shadow-soft);
}

.qtf-seo__media img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;
}

/* =========================================================
   21. FAQ
========================================================= */

.qtf-faq__head {
    width: min(840px, 100%);
    margin: 0 auto;
    padding: 22px 20px 15px;

    text-align: center;
}

.qtf-faq__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 25px;
    padding: 0 10px;

    border: 1px solid var(--qtf-accent-12);
    border-radius: 999px;

    color: var(--qtf-accent-dark);

    background: var(--qtf-accent-06);

    font-size: 9.5px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .055em;

    text-transform: uppercase;
}

.qtf-faq__head h2 {
    margin-top: 9px;

    color: var(--qtf-ink);

    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 1000;
    line-height: 1.08;
    letter-spacing: -.045em;

    text-wrap: balance;
}

.qtf-faq__head p {
    max-width: 650px;
    margin: 7px auto 0;

    color: var(--qtf-muted);

    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.58;
}

.qtf-faq__list {
    display: grid;
    gap: 7px;

    width: min(900px, 100%);
    margin: 0 auto;
    padding: 0 18px 20px;
}

.qtf-faq__item {
    overflow: hidden;

    border: 1px solid var(--qtf-line-soft);
    border-radius: 12px;

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

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

.qtf-faq__item[open] {
    border-color: var(--qtf-accent-16);

    background:
        radial-gradient(
            360px 100px at 0% 0%,
            var(--qtf-accent-06),
            transparent 70%
        ),
        rgba(255, 255, 255, .84);

    box-shadow:
        0 7px 16px rgba(37, 49, 94, .035);
}

.qtf-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;

    min-height: 52px;
    padding: 12px 13px;

    color: var(--qtf-ink);

    cursor: pointer;

    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.4;

    list-style: none;
}

.qtf-faq__question::-webkit-details-marker {
    display: none;
}

.qtf-faq__question:focus-visible {
    outline: none;

    color: var(--qtf-accent-dark);
}

.qtf-faq__icon {
    position: relative;

    width: 26px;
    height: 26px;
    flex: 0 0 26px;

    border: 1px solid var(--qtf-accent-12);
    border-radius: 999px;

    background: var(--qtf-accent-06);
}

.qtf-faq__icon::before,
.qtf-faq__icon::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 10px;
    height: 2px;

    border-radius: 999px;

    background: var(--qtf-accent);

    transform: translate(-50%, -50%);

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

.qtf-faq__icon::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}

.qtf-faq__item[open] .qtf-faq__icon::after {
    opacity: 0;

    transform:
        translate(-50%, -50%)
        rotate(0deg);
}

.qtf-faq__answer {
    padding: 0 13px 13px;
}

.qtf-faq__answer p {
    padding-top: 11px;

    border-top: 1px solid var(--qtf-line-soft);

    color: #526077;

    font-size: 12.5px;
    font-weight: 450;
    line-height: 1.7;
}

/* =========================================================
   22. RELATED SERVICES
========================================================= */

.qtf-related {
    padding: 15px;

    border: 1px solid var(--qtf-line);
    border-radius: var(--qtf-radius-lg);

    background:
        radial-gradient(
            500px 150px at 0% 0%,
            var(--qtf-accent-04),
            transparent 70%
        ),
        rgba(255, 255, 255, .82);

    box-shadow:
        var(--qtf-shadow-soft),
        inset 0 1px 0 rgba(255, 255, 255, .88);
}

.qtf-related__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;

    margin-bottom: 12px;
}

.qtf-related__eyebrow {
    display: block;

    margin-bottom: 4px;

    color: var(--qtf-accent-dark);

    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .075em;

    text-transform: uppercase;
}

.qtf-related__head h2 {
    color: var(--qtf-ink);

    font-size: clamp(1.2rem, 2vw, 1.65rem);
    font-weight: 1000;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.qtf-related__all {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    min-height: 34px;
    padding: 0 11px;

    border: 1px solid var(--qtf-accent-12);
    border-radius: 10px;

    color: var(--qtf-accent-dark);

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

    font-size: 10.5px;
    font-weight: 800;
    line-height: 1;

    text-decoration: none;
    white-space: nowrap;

    transition:
        transform .15s ease,
        border-color .15s ease;
}

.qtf-related__all:hover {
    border-color: var(--qtf-accent-22);

    transform: translateY(-1px);
}

.qtf-related__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.qtf-related__card {
    --qtf-card-accent: var(--qtf-accent);

    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 9px;

    min-width: 0;
    min-height: 82px;
    padding: 10px;

    overflow: hidden;

    border: 1px solid
        color-mix(
            in srgb,
            var(--qtf-card-accent) 13%,
            var(--qtf-line)
        );

    border-radius: 13px;

    color: inherit;

    background:
        radial-gradient(
            180px 70px at 0% 0%,
            color-mix(
                in srgb,
                var(--qtf-card-accent) 6%,
                transparent
            ),
            transparent 70%
        ),
        rgba(255, 255, 255, .72);

    text-decoration: none;

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

.qtf-related__card:hover {
    border-color:
        color-mix(
            in srgb,
            var(--qtf-card-accent) 24%,
            var(--qtf-line)
        );

    box-shadow:
        0 9px 19px rgba(37, 49, 94, .05);

    transform: translateY(-2px);
}

.qtf-related__icon {
    display: grid;
    place-items: center;

    width: 40px;
    height: 40px;

    border: 1px solid
        color-mix(
            in srgb,
            var(--qtf-card-accent) 14%,
            var(--qtf-line)
        );

    border-radius: 12px;

    color: var(--qtf-card-accent);

    background:
        color-mix(
            in srgb,
            var(--qtf-card-accent) 8%,
            #ffffff
        );
}

.qtf-related__icon .qt-ic {
    display: block;

    width: 19px;
    height: 19px;

    fill: currentColor;
}

.qtf-related__body {
    display: block;

    min-width: 0;
}

.qtf-related__title {
    display: block;

    min-width: 0;

    color: var(--qtf-ink);

    font-size: 11.5px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -.018em;
}

.qtf-related__platform,
.qtf-related__service {
    display: block;

    overflow: hidden;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.qtf-related__description {
    display: block;

    margin-top: 4px;

    color: var(--qtf-muted);

    font-size: 9.5px;
    font-weight: 600;
    line-height: 1.2;
}

.qtf-related__arrow {
    display: grid;
    place-items: center;

    width: 24px;
    height: 24px;

    border-radius: 8px;

    color: var(--qtf-card-accent);

    background:
        color-mix(
            in srgb,
            var(--qtf-card-accent) 7%,
            #ffffff
        );

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

    transition: transform .15s ease;
}

.qtf-related__card:hover .qtf-related__arrow {
    transform: translateX(2px);
}

/* =========================================================
   23. HONEYPOT
========================================================= */

.qtf-hp {
    position: absolute !important;
    left: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    opacity: 0 !important;

    pointer-events: none !important;
}

/* =========================================================
   24. LARGE TABLET
========================================================= */

@media (max-width: 1100px) {
    .qtf-page > .qtf-shell {
        width: min(960px, calc(100% - 22px));
    }

    .qtf-form__controls--email {
        grid-template-columns:
            minmax(130px, .38fr)
            minmax(240px, 1fr);

        grid-template-areas:
            "quantity email"
            "submit submit";
    }

    .qtf-form__quantity {
        grid-area: quantity;
    }

    .qtf-form__email {
        grid-area: email;
    }

    .qtf-form__submitField {
        grid-area: submit;
    }

    .qtf-form__submitField .qtf-label--button {
        display: none;
    }

    .qtf-form__controls--simple {
        grid-template-columns:
            minmax(140px, .42fr)
            minmax(240px, 1fr);
    }

    .qtf-upgrade {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .qtf-upgrade__button {
        grid-column: 1 / -1;

        justify-self: stretch;

        width: 100%;
        min-width: 0;
    }

    .qtf-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   25. TABLET
========================================================= */

@media (max-width: 820px) {
    .qtf-page {
        padding-top: 10px;
    }

    .qtf-page > .qtf-shell {
        width: min(720px, calc(100% - 18px));
        gap: 11px;
    }

    .qtf-app__head {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 13px;

        padding: 16px;
    }

    .qtf-app__icon {
        width: 52px;
        height: 52px;

        border-radius: 16px;
    }

    .qtf-app__icon .qt-ic {
        width: 24px;
        height: 24px;
    }

    .qtf-app__title {
        font-size: clamp(1.7rem, 5vw, 2.2rem);
    }

    .qtf-app__description {
        font-size: 12.8px;
    }

    .qtf-app__panel {
        margin: 10px;
        padding: 13px;
    }

    .qtf-upgrade {
        margin: 0 10px 10px;
    }

    .qtf-howto__list {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .qtf-howto__item {
        min-height: 54px;
    }

    .qtf-seo__section {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .qtf-seo__section--reverse .qtf-seo__content,
    .qtf-seo__section--reverse .qtf-seo__media {
        order: initial;
    }
}

/* =========================================================
   26. MOBILE
========================================================= */

@media (max-width: 640px) {
    .qtf-page {
        padding: 7px 0 42px;
    }

    .qtf-page > .qtf-shell {
        width: calc(100% - 14px);
        gap: 9px;
    }

    .qtf-breadcrumb {
        min-height: 25px;
        padding: 0 3px;

        font-size: 10px;
    }

    .qtf-breadcrumb__current {
        max-width: 42vw;
    }

    .qtf-app {
        border-radius: 18px;
    }

    .qtf-app__head {
        grid-template-columns: 46px minmax(0, 1fr);
        align-items: start;
        gap: 11px;

        padding: 13px 12px 12px;
    }

    .qtf-app__icon {
        width: 46px;
        height: 46px;

        border-radius: 14px;
    }

    .qtf-app__icon::after {
        top: 5px;
        right: 5px;

        width: 5px;
        height: 5px;
    }

    .qtf-app__icon .qt-ic {
        width: 22px;
        height: 22px;
    }

    .qtf-app__badges {
        gap: 4px;

        margin-bottom: 6px;
    }

    .qtf-app__badge {
        min-height: 20px;
        padding: 0 7px;

        font-size: 8px;
    }

    .qtf-app__title {
        font-size: clamp(1.42rem, 7vw, 1.82rem);
        line-height: 1.02;
        letter-spacing: -.045em;
    }

    .qtf-app__description {
        margin-top: 6px;

        font-size: 11.5px;
        line-height: 1.48;
    }

    .qtf-app__panel {
        margin: 8px;
        padding: 11px;

        border-radius: 15px;
    }

    .qtf-app__panelHead {
        margin-bottom: 11px;
    }

    .qtf-app__panelTitle {
        gap: 8px;
    }

    .qtf-app__panelIcon {
        width: 24px;
        height: 24px;
        flex-basis: 24px;

        border-radius: 8px;

        font-size: 9px;
    }

    .qtf-app__panelTitle h2 {
        font-size: 13.5px;
    }

    .qtf-app__panelTitle p {
        margin-top: 2px;

        font-size: 10.5px;
        line-height: 1.42;
    }

    .qtf-form {
        gap: 10px;
    }

    .qtf-field {
        gap: 5px;
    }

    .qtf-label {
        font-size: 10.5px;
    }

    .qtf-field__row {
        gap: 7px;
    }

    .qtf-sampleBtn {
        min-height: 27px;
        padding: 0 8px;

        font-size: 9.5px;
    }

    .qtf-sampleBtn__icon {
        width: 14px;
        height: 14px;

        font-size: 8px;
    }

    .qtf-input {
        min-height: 43px;
        padding-right: 11px;
        padding-left: 11px;

        border-radius: 11px;

        font-size: 11.8px;
    }

    .qtf-input--with-icon {
        padding-left: 37px;
    }

    .qtf-inputWrap__icon {
        left: 11px;
    }

    .qtf-help {
        font-size: 9.8px;
        line-height: 1.45;
    }

    .qtf-form__controls--email {
        grid-template-columns:
            minmax(92px, .38fr)
            minmax(0, 1fr);

        grid-template-areas:
            "quantity email"
            "submit submit";

        gap: 8px;
    }

    .qtf-form__controls--simple {
        grid-template-columns:
            minmax(92px, .38fr)
            minmax(0, 1fr);

        gap: 8px;
    }

    .qtf-submit,
    .qtf-sideCard__btn {
        min-height: 43px;

        border-radius: 11px;

        font-size: 10.8px;
    }

    .qtf-form__facts {
        justify-content: center;
        gap: 6px 10px;

        padding-top: 2px;

        text-align: center;
    }

    .qtf-form__fact {
        font-size: 9px;
    }

    .qtf-upgrade {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 9px;

        margin: 0 8px 8px;
        padding: 10px;

        border-radius: 13px;
    }

    .qtf-upgrade__icon {
        width: 36px;
        height: 36px;

        border-radius: 11px;
    }

    .qtf-upgrade__icon .qt-ic {
        width: 17px;
        height: 17px;
    }

    .qtf-upgrade__eyebrow {
        font-size: 8px;
    }

    .qtf-upgrade__body h2 {
        font-size: 12px;
    }

    .qtf-upgrade__body p {
        font-size: 9.7px;
        line-height: 1.4;
    }

    .qtf-upgrade__button {
        min-height: 40px;
    }

    .qtf-section,
    .qtf-seo,
    .qtf-faq,
    .qtf-related {
        border-radius: 16px;
    }

    .qtf-howto,
    .qtf-related {
        padding: 12px;
    }

    .qtf-sectionHead {
        margin-bottom: 10px;
    }

    .qtf-sectionHead h2 {
        font-size: 1.14rem;
    }

    .qtf-sectionHead__platform {
        width: 35px;
        height: 35px;
        flex-basis: 35px;
    }

    .qtf-howto__item {
        min-height: 50px;
        padding: 8px 9px;
    }

    .qtf-howto__number {
        width: 25px;
        height: 25px;
        flex-basis: 25px;

        font-size: 9px;
    }

    .qtf-howto__text {
        font-size: 10.5px;
    }

    .qtf-seo__article {
        padding: 19px 14px 22px;
    }

    .qtf-seo__article h2 {
        margin-top: 24px;
        padding-top: 12px;

        font-size: 1.28rem;
    }

    .qtf-seo__article h3 {
        margin-top: 19px;

        font-size: 1.06rem;
    }

    .qtf-seo__article p {
        margin-top: 9px;

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

    .qtf-seo__article li {
        padding: 8px 9px 8px 30px;

        font-size: 12px;
        line-height: 1.55;
    }

    .qtf-seo__article li::before {
        top: 14px;
        left: 12px;

        width: 6px;
        height: 6px;
    }

    .qtf-faq__head {
        padding: 18px 14px 13px;
    }

    .qtf-faq__head h2 {
        margin-top: 8px;

        font-size: 1.38rem;
    }

    .qtf-faq__head p {
        font-size: 11.5px;
    }

    .qtf-faq__list {
        gap: 6px;

        padding: 0 11px 14px;
    }

    .qtf-faq__question {
        min-height: 48px;
        padding: 10px 11px;

        font-size: 11.5px;
    }

    .qtf-faq__answer {
        padding: 0 11px 11px;
    }

    .qtf-faq__answer p {
        padding-top: 9px;

        font-size: 11.5px;
        line-height: 1.65;
    }

    .qtf-related__head {
        align-items: flex-start;

        margin-bottom: 10px;
    }

    .qtf-related__head h2 {
        font-size: 1.2rem;
    }

    .qtf-related__all {
        min-height: 31px;
        padding: 0 9px;

        font-size: 9px;
    }

    .qtf-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .qtf-related__card {
        grid-template-columns: 35px minmax(0, 1fr);
        gap: 7px;

        min-height: 72px;
        padding: 8px;

        border-radius: 11px;
    }

    .qtf-related__icon {
        width: 35px;
        height: 35px;

        border-radius: 10px;
    }

    .qtf-related__icon .qt-ic {
        width: 17px;
        height: 17px;
    }

    .qtf-related__title {
        font-size: 10.5px;
    }

    .qtf-related__description {
        font-size: 8.5px;
    }

    .qtf-related__arrow {
        display: none;
    }
}

/* =========================================================
   27. SMALL MOBILE
========================================================= */

@media (max-width: 440px) {
    .qtf-page > .qtf-shell {
        width: calc(100% - 10px);
    }

    .qtf-breadcrumb__current {
        display: none;
    }

    .qtf-breadcrumb__sep:last-of-type {
        display: none;
    }

    .qtf-app__head {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 9px;

        padding: 11px 10px;
    }

    .qtf-app__icon {
        width: 42px;
        height: 42px;

        border-radius: 13px;
    }

    .qtf-app__icon .qt-ic {
        width: 20px;
        height: 20px;
    }

    .qtf-app__badge--platform {
        display: none;
    }

    .qtf-app__title {
        font-size: clamp(1.3rem, 7.5vw, 1.62rem);
    }

    .qtf-app__description {
        font-size: 10.8px;
    }

    .qtf-app__panel {
        margin: 6px;
        padding: 10px;
    }

    .qtf-form__controls--email {
        grid-template-columns: 1fr;
        grid-template-areas:
            "quantity"
            "email"
            "submit";
    }

    .qtf-form__controls--simple {
        grid-template-columns: 1fr;
    }

    .qtf-label--button {
        display: none;
    }

    .qtf-submit {
        margin-top: 1px;
    }

    .qtf-form__facts {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));

        width: 100%;
    }

    .qtf-form__fact {
        justify-content: center;

        min-width: 0;

        white-space: normal;
    }

    .qtf-form__fact:last-child {
        grid-column: 1 / -1;
    }

    .qtf-upgrade {
        grid-template-columns: 33px minmax(0, 1fr);

        margin: 0 6px 6px;
        padding: 9px;
    }

    .qtf-upgrade__icon {
        width: 33px;
        height: 33px;
    }

    .qtf-upgrade__button {
        grid-column: 1 / -1;
    }

    .qtf-related__head {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .qtf-related__all {
        width: 100%;

        justify-content: center;
    }
}

/* =========================================================
   28. EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 350px) {
    .qtf-app__badge--safe {
        display: none;
    }

    .qtf-app__title {
        font-size: 1.25rem;
    }

    .qtf-field__row {
        align-items: flex-start;
    }

    .qtf-sampleBtn > span:last-child {
        display: none;
    }

    .qtf-sampleBtn {
        width: 27px;
        padding: 0;
    }

    .qtf-related__grid {
        grid-template-columns: 1fr;
    }

    .qtf-related__card {
        min-height: 66px;
    }
}

/* =========================================================
   29. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .qtf-page,
    .qtf-page *,
    .qtf-page *::before,
    .qtf-page *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}