/* ═══════════════════════════════════════
   FastStudy Template — Light + brand gradients
   Mirrors faststudy.help design system
   ═══════════════════════════════════════ */

:root {
    --fs-blue1: #11BDFD;
    --fs-blue2: #0A83F8;
    --fs-green1: #49D60A;
    --fs-green2: #09CB01;
    --fs-grad-blue: linear-gradient(249.9deg, #11BDFD 23.59%, #0A83F8 82.35%);
    --fs-grad-green: linear-gradient(138.77deg, #49D60A 3.5%, #09CB01 97.72%);
    --fs-dark: #0f1a2e;
    --fs-text: #1a2740;
    --fs-text-light: #5a6a80;
    --fs-bg: #f6faff;
    --fs-bg-card: #ffffff;
    --fs-brd: rgba(10, 131, 248, 0.12);
    --fs-brd-strong: rgba(10, 131, 248, 0.2);
    --fs-shadow: 0 4px 24px rgba(10, 131, 248, .1);
    --fs-shadow-lg: 0 20px 60px rgba(10, 131, 248, .14);
    --fs-radius: 12px;
    --fs-radius-lg: 20px;
    --fs-font: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ─── Page background (subtle FastStudy hero gradient) ─── */
.lp--fs {
    padding: 25px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 0% 0%, rgba(17, 189, 253, .12), transparent 45%),
        radial-gradient(circle at 100% 100%, rgba(73, 214, 10, .08), transparent 45%),
        var(--fs-bg);
    font-family: var(--fs-font);
    color: var(--fs-text);
    position: relative;
    overflow: hidden;
}
.lp--fs::before,
.lp--fs::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: fsDrift 20s ease-in-out infinite;
}
.lp--fs::before {
    top: -40%; right: -20%;
    width: 720px; height: 720px;
    background: radial-gradient(circle, rgba(17, 189, 253, .14) 0%, transparent 70%);
}
.lp--fs::after {
    bottom: -30%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(9, 203, 1, .1) 0%, transparent 70%);
    animation-duration: 15s;
    animation-direction: reverse;
}
@keyframes fsDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, -50px) scale(1.08); }
}

/* ─── Card ─── */
.lp--fs .lp-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    background: var(--fs-bg-card);
    border: 1px solid var(--fs-brd);
    padding: 44px 32px 40px;
    border-radius: 28px;
    box-shadow: var(--fs-shadow-lg);
    max-width: 560px;
    margin: 0 auto;
    width: calc(100% - 40px);
}

/* ─── Logo (FastStudy SVG mark + wordmark) ─── */
.lp--fs .lp-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: auto;
    max-width: none;
}
.lp--fs .lp-logo-mark {
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(10, 131, 248, .2));
}
.lp--fs .lp-logo-text {
    font-family: var(--fs-font);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: var(--fs-dark);
    line-height: 1;
}
.lp--fs .lp-logo-text span {
    background: var(--fs-grad-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─── Headings ─── */
.lp--fs .lp-heading {
    font-family: var(--fs-font);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    max-width: 480px;
    margin: 24px auto 0;
    color: var(--fs-dark);
    letter-spacing: -0.5px;
}
.lp--fs .lp-heading-accent {
    background: var(--fs-grad-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lp--fs .lp-desc {
    text-align: center;
    max-width: 440px;
    margin: 12px auto 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--fs-text-light);
}

/* ─── Hero badges (funnel) ─── */
.lp--fs .lp-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}
.lp--fs .lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--fs-grad-blue);
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(10, 131, 248, .25);
}
.lp--fs .lp-badge svg {
    flex-shrink: 0;
    stroke: #fff;
}

/* ─── Stats ─── */
.lp--fs .lp-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 28px;
    background: linear-gradient(135deg, rgba(17, 189, 253, .05) 0%, rgba(10, 131, 248, .05) 100%);
    border: 1px solid var(--fs-brd);
    border-radius: 18px;
    padding: 18px 10px;
    width: 100%;
    max-width: 560px;
}
.lp--fs .lp-stats--mini {
    margin-top: 22px;
    padding: 14px 10px;
    max-width: 480px;
}

/* ─── Trust line (funnel) — воздушная inline-полоска ─── */
.lp--fs .lp-trust-line {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    margin-top: 22px;
    font-size: 14px;
    color: var(--fs-text-light);
    line-height: 1.4;
}
.lp--fs .lp-trust-num b {
    font-weight: 800;
    color: var(--fs-text);
    letter-spacing: -0.2px;
}
.lp--fs .lp-trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--fs-brd-strong);
    flex-shrink: 0;
}
.lp--fs .lp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 0 8px;
    text-align: center;
}
.lp--fs .lp-stat-num {
    font-family: var(--fs-font);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    background: var(--fs-grad-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-flex;
    align-items: baseline;
}
.lp--fs .lp-stats--mini .lp-stat-num { font-size: 22px; }
.lp--fs .lp-stat-suffix { font-size: 0.85em; }
.lp--fs .lp-stat-label {
    font-size: 12px;
    color: var(--fs-text-light);
    margin-top: 4px;
    line-height: 1.3;
}
.lp--fs .lp-stat-sep {
    width: 1px;
    height: 36px;
    background: var(--fs-brd-strong);
    flex-shrink: 0;
}

/* ─── Trust bar (moderation) ─── */
.lp--fs .lp-trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
    width: 100%;
    max-width: 560px;
}
.lp--fs .lp-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--fs-text-light);
    font-size: 13px;
    font-weight: 500;
}
.lp--fs .lp-trust-item svg {
    color: var(--fs-blue2);
    flex-shrink: 0;
}

/* ─── Promo block (funnel) ─── */
.lp--fs .lp-promo {
    background: linear-gradient(135deg, rgba(17, 189, 253, .08) 0%, rgba(10, 131, 248, .06) 100%);
    border: 1px solid var(--fs-brd-strong);
    border-radius: var(--fs-radius-lg);
    padding: 22px 28px;
    margin-top: 26px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 560px;
    width: 100%;
}
.lp--fs .lp-promo::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(17, 189, 253, .14) 0%, transparent 70%);
    border-radius: 50%;
}
.lp--fs .lp-promo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--fs-grad-blue);
    color: #fff;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(10, 131, 248, .3);
    animation: fsBob 2.4s ease-in-out infinite;
}
@keyframes fsBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.lp--fs .lp-promo-heading {
    font-family: var(--fs-font);
    font-size: 22px;
    font-weight: 800;
    color: var(--fs-dark);
    margin: 0 0 8px;
    line-height: 1.25;
    letter-spacing: -0.2px;
}
.lp--fs .lp-promo-text {
    font-size: 15px;
    color: var(--fs-text-light);
    margin: 0;
    line-height: 1.5;
    position: relative;
}

/* ─── Action buttons (funnel) ─── */
.lp--fs .lp-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
    width: 100%;
    max-width: 440px;
}
.lp--fs .lp-btn {
    position: relative;
    color: #fff;
    padding: 14px 18px;
    background: var(--fs-grad-green);
    border-radius: 18px;
    font-family: var(--fs-font);
    text-decoration: none;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 22px rgba(9, 203, 1, .28);
    overflow: hidden;
    width: 100%;
    text-align: left;
}
.lp--fs .lp-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .22) 50%, transparent 100%);
    transform: translateX(-100%);
    pointer-events: none;
}
.lp--fs .lp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(9, 203, 1, .38);
}
.lp--fs .lp-btn:hover::before { animation: fsShine .9s ease; }
.lp--fs .lp-btn:active {
    transform: translateY(0) scale(.99);
}
.lp--fs .lp-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    flex-shrink: 0;
}
.lp--fs .lp-btn-icon svg { stroke: #fff; }
.lp--fs .lp-btn-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.lp--fs .lp-btn-title {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.2px;
}
.lp--fs .lp-btn-sub {
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.3;
    color: rgba(255, 255, 255, .85);
}
.lp--fs .lp-btn-arrow {
    transition: transform .3s ease;
    stroke: #fff;
    flex-shrink: 0;
    opacity: .9;
}
.lp--fs .lp-btn:hover .lp-btn-arrow { transform: translateX(4px); opacity: 1; }
.lp--fs .lp-btn--alt {
    background: var(--fs-grad-blue);
    box-shadow: 0 8px 22px rgba(10, 131, 248, .3);
}
.lp--fs .lp-btn--alt:hover {
    box-shadow: 0 12px 28px rgba(10, 131, 248, .4);
}
@keyframes fsShine {
    to { transform: translateX(100%); }
}

/* ─── Fine-print under CTAs ─── */
.lp--fs .lp-fineprint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 14px 0 0;
    font-size: 12.5px;
    color: var(--fs-text-light);
    text-align: center;
}
.lp--fs .lp-fineprint svg {
    color: var(--fs-blue2);
    flex-shrink: 0;
}

/* ─── Feature checklist ─── */
.lp--fs .lp-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
    margin-top: 22px;
    width: 100%;
    max-width: 560px;
}
.lp--fs .lp-feat {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: var(--fs-text);
    font-weight: 500;
}
.lp--fs .lp-feat-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--fs-grad-green);
    color: #fff;
    flex-shrink: 0;
}
.lp--fs .lp-feat-mark svg { stroke: #fff; }

/* moderation-variant features as pill chips */
.lp--fs .lp-features--mod {
    margin-top: 24px;
    gap: 10px;
}
.lp--fs .lp-features--mod .lp-feat {
    background: rgba(10, 131, 248, .05);
    border: 1px solid var(--fs-brd);
    padding: 7px 14px 7px 8px;
    border-radius: 50px;
    transition: background .2s, border-color .2s;
}
.lp--fs .lp-features--mod .lp-feat:hover {
    background: rgba(10, 131, 248, .09);
    border-color: var(--fs-brd-strong);
}
.lp--fs .lp-features--mod .lp-feat-mark {
    width: 24px;
    height: 24px;
    background: var(--fs-grad-blue);
}

/* ─── Steps ─── */
.lp--fs .lp-steps {
    margin-top: 28px;
    width: 100%;
    max-width: 560px;
}
.lp--fs .lp-steps-title {
    font-family: var(--fs-font);
    font-size: 17px;
    font-weight: 700;
    color: var(--fs-dark);
    text-align: center;
    margin: 0 0 16px;
}
.lp--fs .lp-steps-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
}
.lp--fs .lp-step {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1.5px solid var(--fs-brd);
    border-radius: 14px;
    padding: 12px 14px;
    flex: 1;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.lp--fs .lp-step:hover {
    border-color: var(--fs-brd-strong);
    box-shadow: var(--fs-shadow);
    transform: translateY(-2px);
}
.lp--fs .lp-step-num {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fs-grad-blue);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}
.lp--fs .lp-step-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--fs-text);
    line-height: 1.3;
}
.lp--fs .lp-step-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--fs-blue2);
    opacity: .4;
    flex-shrink: 0;
    align-self: center;
}

/* ─── Form ─── */
.lp--fs .lp-form-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin-top: 26px;
}
.lp--fs .lp-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: opacity .4s, transform .4s;
}
.lp--fs .lp-form-wrap.is-sent .lp-form {
    opacity: 0;
    transform: scale(.95);
    pointer-events: none;
    position: absolute;
    inset: 0;
}
.lp--fs .lp-form-error {
    margin: 0;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(220, 38, 38, .08);
    color: #b91c1c;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    border: 1px solid rgba(220, 38, 38, .2);
}
.lp--fs .lp-form-error[hidden] { display: none; }
.lp--fs .lp-field {
    position: relative;
    display: flex;
    align-items: center;
}
.lp--fs .lp-field--area { align-items: flex-start; }
.lp--fs .lp-field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
    color: var(--fs-text-light);
    display: inline-flex;
    align-items: center;
    transition: color .2s;
}
.lp--fs .lp-field--area .lp-field-icon {
    top: 16px;
    transform: none;
}
.lp--fs .lp-input,
.lp--fs .lp-textarea {
    width: 100%;
    border: 1.5px solid var(--fs-brd);
    color: var(--fs-text);
    font-family: var(--fs-font);
    font-size: 15px;
    transition: border-color .25s, box-shadow .25s;
    outline: none;
    background: #fff;
}
.lp--fs .lp-input {
    padding: 14px 18px 14px 44px;
    border-radius: 50px;
}
.lp--fs .lp-textarea {
    padding: 14px 18px 14px 44px;
    border-radius: 18px;
    resize: vertical;
    min-height: 92px;
    line-height: 1.45;
}
.lp--fs .lp-input::placeholder,
.lp--fs .lp-textarea::placeholder {
    color: var(--fs-text-light);
}
.lp--fs .lp-input:focus,
.lp--fs .lp-textarea:focus {
    border-color: var(--fs-blue2);
    box-shadow: 0 0 0 4px rgba(10, 131, 248, .1);
}
.lp--fs .lp-field:focus-within .lp-field-icon { color: var(--fs-blue2); }

.lp--fs .lp-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--fs-grad-green);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--fs-font);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 8px 22px rgba(9, 203, 1, .3);
    position: relative;
    overflow: hidden;
    margin-top: 6px;
}
.lp--fs .lp-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .3) 50%, transparent 100%);
    transform: translateX(-100%);
}
.lp--fs .lp-submit:hover::after { animation: fsShine .9s ease; }
.lp--fs .lp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(9, 203, 1, .42);
}
.lp--fs .lp-submit:active {
    transform: translateY(0) scale(.98);
}
.lp--fs .lp-submit-arrow {
    display: inline-flex;
    transition: transform .3s ease;
}
.lp--fs .lp-submit-arrow svg { stroke: #fff; }
.lp--fs .lp-submit:hover .lp-submit-arrow { transform: translateX(4px); }

/* ─── Success ─── */
.lp--fs .lp-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    animation: fsFadeUp .5s ease;
}
.lp--fs .lp-form-wrap.is-sent .lp-success { display: flex; }
@keyframes fsFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.lp--fs .lp-success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fs-grad-green);
    color: #fff;
    border-radius: 50%;
    margin-bottom: 14px;
    box-shadow: 0 8px 22px rgba(9, 203, 1, .3);
}
.lp--fs .lp-success-icon svg { stroke: #fff; }
.lp--fs .lp-success-heading {
    font-family: var(--fs-font);
    font-size: 22px;
    font-weight: 800;
    color: var(--fs-dark);
    margin: 0 0 6px;
}
.lp--fs .lp-success-text {
    font-size: 14px;
    color: var(--fs-text-light);
    margin: 0;
    line-height: 1.5;
    max-width: 340px;
}

/* ─── Contacts ─── */
.lp--fs .lp-contacts {
    margin-top: 26px;
    width: 100%;
    max-width: 560px;
    border-top: 1px solid var(--fs-brd);
    padding-top: 22px;
}
.lp--fs .lp-contacts-title {
    font-family: var(--fs-font);
    font-size: 15px;
    font-weight: 700;
    color: var(--fs-text-light);
    text-align: center;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.lp--fs .lp-contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.lp--fs .lp-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 14px 10px;
    background: rgba(10, 131, 248, .03);
    border: 1px solid var(--fs-brd);
    border-radius: 14px;
    transition: all .25s;
    cursor: pointer;
}
.lp--fs .lp-contact-card:hover {
    background: rgba(10, 131, 248, .07);
    border-color: var(--fs-brd-strong);
    transform: translateY(-2px);
    box-shadow: var(--fs-shadow);
}
.lp--fs .lp-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--fs-grad-blue);
    color: #fff;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(10, 131, 248, .25);
}
.lp--fs .lp-contact-icon svg { stroke: #fff; }
.lp--fs .lp-contact-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--fs-text-light);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 3px;
}
.lp--fs .lp-contact-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--fs-text);
    word-break: break-all;
}
.lp--fs a.lp-contact-card:hover .lp-contact-value { color: var(--fs-blue2); }

/* ═══ Responsive ═══ */
@media (max-width: 1190px) {
    .lp--fs .lp-card { padding: 38px 26px; }
    .lp--fs .lp-heading { font-size: 32px; }
    .lp--fs .lp-promo-heading { font-size: 20px; }
}

@media (max-width: 760px) {
    .lp--fs::before { width: 500px; height: 500px; }
    .lp--fs::after { width: 400px; height: 400px; }
    .lp--fs .lp-card { padding: 34px 22px 32px; border-radius: 24px; }
    .lp--fs .lp-heading { font-size: 26px; line-height: 1.2; }
    .lp--fs .lp-desc { font-size: 15px; }
    .lp--fs .lp-trust-line { font-size: 13px; gap: 6px 12px; }
    .lp--fs .lp-stats { padding: 14px 8px; }
    .lp--fs .lp-stat-num { font-size: 22px; }
    .lp--fs .lp-stat-label { font-size: 11px; }
    .lp--fs .lp-trust-bar { gap: 12px; }
    .lp--fs .lp-trust-item { font-size: 12px; }
    .lp--fs .lp-promo { padding: 20px; }
    .lp--fs .lp-promo-heading { font-size: 18px; }
    .lp--fs .lp-promo-text { font-size: 14px; }
    .lp--fs .lp-step { padding: 10px 12px; }
    .lp--fs .lp-step-text { font-size: 12px; }
    .lp--fs .lp-btn-title { font-size: 16px; }
    .lp--fs .lp-btn-sub { font-size: 12px; }
}

@media (max-width: 480px) {
    .lp--fs { padding: 15px 0; }
    .lp--fs::before { width: 300px; height: 300px; top: -30%; right: -30%; }
    .lp--fs::after { width: 250px; height: 250px; bottom: -20%; left: -20%; }
    .lp--fs .lp-card { padding: 26px 16px 28px; border-radius: 20px; }
    .lp--fs .lp-logo-mark { width: 34px; height: 34px; }
    .lp--fs .lp-logo-text { font-size: 22px; }
    .lp--fs .lp-heading { font-size: 22px; margin-top: 18px; }
    .lp--fs .lp-desc { font-size: 14px; }
    .lp--fs .lp-badges { gap: 6px; margin-top: 16px; }
    .lp--fs .lp-badge { padding: 6px 12px; font-size: 12px; }
    .lp--fs .lp-trust-line { margin-top: 16px; font-size: 13px; }
    .lp--fs .lp-trust-dot { display: none; }
    .lp--fs .lp-trust-line { gap: 4px 16px; }
    .lp--fs .lp-stats { flex-direction: column; gap: 12px; padding: 14px 10px; }
    .lp--fs .lp-stat-sep { width: 60px; height: 1px; }
    .lp--fs .lp-trust-bar { gap: 10px; flex-direction: column; align-items: center; }
    .lp--fs .lp-promo { padding: 18px; }
    .lp--fs .lp-promo-icon { width: 48px; height: 48px; }
    .lp--fs .lp-promo-heading { font-size: 16px; }
    .lp--fs .lp-promo-text { font-size: 13px; }
    .lp--fs .lp-actions { gap: 8px; }
    .lp--fs .lp-btn { padding: 12px 14px; gap: 12px; }
    .lp--fs .lp-btn-icon { width: 38px; height: 38px; border-radius: 10px; }
    .lp--fs .lp-btn-icon svg { width: 18px; height: 18px; }
    .lp--fs .lp-btn-title { font-size: 15px; }
    .lp--fs .lp-btn-sub { font-size: 11.5px; }
    .lp--fs .lp-fineprint { font-size: 11.5px; }
    .lp--fs .lp-features { gap: 8px 16px; }
    .lp--fs .lp-feat { font-size: 13px; }
    .lp--fs .lp-steps-row { flex-direction: column; gap: 6px; }
    .lp--fs .lp-step-arrow { transform: rotate(90deg); }
    .lp--fs .lp-form-wrap { margin-top: 22px; }
    .lp--fs .lp-input { padding: 12px 16px 12px 40px; font-size: 14px; }
    .lp--fs .lp-textarea { padding: 12px 16px 12px 40px; font-size: 14px; }
    .lp--fs .lp-field-icon { left: 14px; }
    .lp--fs .lp-submit { padding: 14px 28px; font-size: 14px; }
    .lp--fs .lp-features--mod { gap: 8px; }
    .lp--fs .lp-features--mod .lp-feat { padding: 6px 12px 6px 6px; font-size: 12px; }
    .lp--fs .lp-features--mod .lp-feat-mark { width: 20px; height: 20px; }
    .lp--fs .lp-contacts { margin-top: 22px; padding-top: 18px; }
    .lp--fs .lp-contacts-grid { gap: 8px; }
    .lp--fs .lp-contact-card { padding: 12px 8px; }
    .lp--fs .lp-contact-icon { width: 32px; height: 32px; }
    .lp--fs .lp-contact-icon svg { width: 18px; height: 18px; }
    .lp--fs .lp-contact-value { font-size: 11px; }
    .lp--fs .lp-success-icon { width: 54px; height: 54px; }
    .lp--fs .lp-success-icon svg { width: 26px; height: 26px; }
    .lp--fs .lp-success-heading { font-size: 18px; }
    .lp--fs .lp-success-text { font-size: 13px; }
}
