/* ============================================
   VARIANT 2 — MINIMAL v2
   Expanded: USP, cases, FAQ
   ============================================ */

:root {
    color-scheme: light only;
    --bg: #fafafa;
    --white: #ffffff;
    --text: #0a0a0a;
    --text-soft: #4a4a4a;
    --text-mute: #999;
    --line: #ececec;
    --line-soft: #f4f4f4;
    --accent: #0a0a0a;
    --good: #16a34a;
    --good-bg: #ecfdf5;
    --bad: #dc2626;
    --bad-bg: #fef2f2;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

.page {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 0 60px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    background: var(--white);
    padding: 60px 28px 40px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.hero__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.hero__avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--text);
    flex-shrink: 0;
}

.hero__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.hero__initial { display: none; }

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--good-bg);
    color: var(--good);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.dot {
    width: 6px; height: 6px;
    background: var(--good);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__eyebrow {
    font-size: 12px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
    font-weight: 500;
}

.hero__name {
    font-size: 40px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -1.5px;
    margin-bottom: 28px;
    line-height: 1.0;
}

.usp {
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 28px;
}

.usp__big {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
}

.usp__text {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.5;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    letter-spacing: -0.2px;
}

.btn--primary {
    background: var(--text);
    color: var(--white);
    width: 100%;
}

.btn--primary:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
}

.btn--primary:active { transform: translateY(0); }

.btn--big {
    padding: 18px 32px;
    font-size: 16px;
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--text);
    width: 100%;
    margin-top: 16px;
}

.btn--ghost:hover {
    background: var(--text);
    color: var(--white);
}

.hero__note {
    text-align: center;
    font-size: 12px;
    color: var(--text-mute);
    margin-top: 12px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.stat__num {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.8px;
    line-height: 1;
    margin-bottom: 6px;
}

.stat__label {
    font-size: 11px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat + .stat {
    border-left: 1px solid var(--line);
    padding-left: 16px;
}

/* ============================================
   BLOCK
   ============================================ */
.block {
    padding: 0 24px;
}

.block__head {
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.block__num {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mute);
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-feature-settings: 'tnum';
}

.block__title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--text);
}

.block__sub {
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-mute);
}

/* ============================================
   SERVICES
   ============================================ */
.services { display: flex; flex-direction: column; }

.service {
    display: block;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: var(--text);
    transition: padding 0.25s ease;
}

.service:first-child { padding-top: 0; }
.service:last-child { border-bottom: none; padding-bottom: 0; }
.service:hover { padding-left: 8px; }

.service__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.service__icon {
    width: 36px; height: 36px;
    background: var(--text);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

.service__title {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.service__desc {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.5;
    margin-bottom: 8px;
}

.service__price {
    display: inline-block;
    font-size: 12px;
    color: var(--text-mute);
    background: var(--bg);
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 500;
}

/* ============================================
   DIFFERENCES
   ============================================ */
.diff { display: flex; flex-direction: column; gap: 10px; }

.diff__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.diff__cell {
    padding: 16px;
    background: var(--white);
}

.diff__cell--bad { background: var(--bad-bg); }
.diff__cell--good { background: var(--good-bg); }

.diff__label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    font-weight: 700;
}

.diff__cell--bad .diff__label { color: var(--bad); }
.diff__cell--good .diff__label { color: var(--good); }

.diff__cell p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.4;
}

/* ============================================
   GUARANTEES
   ============================================ */
.guarantees { display: flex; flex-direction: column; gap: 16px; }

.guarantee {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.guarantee__icon {
    width: 36px; height: 36px;
    background: var(--text);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.guarantee__title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.guarantee__text {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
}

/* ============================================
   BANKS
   ============================================ */
.banks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.bank {
    padding: 16px 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.2px;
}

.banks__note {
    text-align: center;
    font-size: 12px;
    color: var(--text-mute);
}

/* ============================================
   CASES
   ============================================ */
.cases { display: flex; flex-direction: column; gap: 12px; }

.case {
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.case__tag {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-mute);
    margin-bottom: 8px;
    font-weight: 600;
}

.case__title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.case__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.case__num {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.2px;
}

.case__num--bad { background: var(--bad-bg); color: var(--bad); text-decoration: line-through; text-decoration-thickness: 1.5px; }
.case__num--good { background: var(--good-bg); color: var(--good); }

.case__result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
    font-size: 14px;
    color: var(--text-soft);
}

.case__result strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
}

/* ============================================
   PROCESS
   ============================================ */
.process { display: flex; flex-direction: column; }

.process__step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.process__step:first-child { padding-top: 0; }
.process__step:last-child { border-bottom: none; padding-bottom: 0; }

.process__num {
    width: 32px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-mute);
    letter-spacing: 1px;
    padding-top: 2px;
    font-feature-settings: 'tnum';
}

.process__body h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.process__body p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
}

.process__time {
    font-size: 11px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    padding-top: 4px;
    white-space: nowrap;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews { display: flex; flex-direction: column; gap: 12px; }

.review {
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.review__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review__name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.review__rating {
    color: #fbbf24;
    font-size: 13px;
    letter-spacing: 2px;
}

.review__text {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 12px;
}

.review__case {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-mute);
    padding: 4px 10px;
    background: var(--bg);
    border-radius: 100px;
    font-weight: 500;
}

/* ============================================
   FAQ
   ============================================ */
.faq { display: flex; flex-direction: column; }

.faq__item {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}

.faq__item:first-child { padding-top: 0; }
.faq__item:last-child { border-bottom: none; padding-bottom: 0; }

.faq__item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.2px;
    color: var(--text);
    transition: color 0.2s ease;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--text-mute);
    transition: transform 0.3s ease;
}

.faq__item[open] summary::after {
    transform: rotate(45deg);
}

.faq__item p {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.6;
}

/* ============================================
   CTA BLOCK
   ============================================ */
.cta-block {
    background: var(--text);
    color: var(--white);
    padding: 48px 24px;
    margin: 0 24px;
    border-radius: 24px;
    text-align: center;
}

.cta-block__num {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 600;
}

.cta-block__title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.0;
    margin-bottom: 16px;
}

.cta-block__text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 28px;
}

.cta-block__perks {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cta-perk {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.cta-perk span {
    color: #4ade80;
    font-weight: 700;
}

.cta-block .btn--primary {
    background: var(--white);
    color: var(--text);
}

.cta-block .btn--primary:hover {
    background: #e8e8e8;
    color: var(--text);
}

.cta-block__divider {
    margin: 24px 0 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.cta-contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 320px;
    margin: 0 auto;
}

.cta-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 0 0 auto;
    min-width: 110px;
    padding: 16px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.cta-contact:hover {
    background: rgba(255,255,255,0.12);
}

.cta-contact__icon {
    font-size: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    text-align: center;
    padding: 40px 24px 0;
    color: var(--text-mute);
    font-size: 12px;
}

.footer__name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.footer__meta {
    font-size: 12px;
    color: var(--text-mute);
    margin-bottom: 16px;
}

.footer__links {
    margin-bottom: 16px;
}

.footer__links a {
    color: var(--text-mute);
    text-decoration: none;
    border-bottom: 1px dashed var(--text-mute);
    font-size: 11px;
}

.footer__copy {
    font-size: 11px;
    color: var(--text-mute);
    letter-spacing: 1px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   FLOATING CALLBACK BUTTON
   ============================================ */
.float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--text);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: -0.2px;
}

.float-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.float-btn:active { transform: translateY(0); }

.float-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 100px;
    background: var(--text);
    opacity: 0.4;
    z-index: -1;
    animation: ring-pulse 2s ease-out infinite;
}

@keyframes ring-pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: flex-end;
    justify-content: center;
}

.modal[aria-hidden="false"] {
    display: flex;
    animation: fade-in 0.2s ease;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
    animation: fade-in 0.2s ease;
}

.modal__dialog {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 92vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: 24px 24px 0 0;
    padding: 32px 24px 28px;
    animation: slide-up 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes slide-up {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@media (min-width: 481px) {
    .modal { align-items: center; }
    .modal__dialog {
        border-radius: 24px;
        margin: 24px;
        max-height: 85vh;
    }
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--bg);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s ease;
}

.modal__close:hover { background: var(--line); }

.modal__icon {
    width: 56px;
    height: 56px;
    background: var(--text);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.modal__icon--success {
    background: var(--good);
    color: var(--white);
}

.modal__title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.modal__text {
    font-size: 14px;
    color: var(--text-soft);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 24px;
}

.modal__success-contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.modal__success-contacts .cta-contact {
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--line);
}

.modal__success-contacts .cta-contact:hover {
    background: var(--line);
}

/* ============================================
   FORM
   ============================================ */
.form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form__label {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form__caption {
    font-size: 12px;
    color: var(--text-mute);
    font-weight: 500;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.form__optional {
    text-transform: none;
    font-weight: 400;
    color: var(--text-mute);
    opacity: 0.7;
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s ease, background 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form__input:focus {
    outline: none;
    border-color: var(--text);
    background: var(--white);
}

.form__input::placeholder {
    color: var(--text-mute);
}

.form__input--dark {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: var(--white);
}

.form__input--dark::placeholder {
    color: rgba(255,255,255,0.5);
}

.form__input--dark:focus {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
}

.form__textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.form__submit {
    margin-top: 8px;
}

.form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form__submit--light {
    background: var(--white);
    color: var(--text);
}

.form__submit--light:hover {
    background: #e8e8e8;
    color: var(--text);
}

.form__agree {
    font-size: 11px;
    color: var(--text-mute);
    text-align: center;
    margin-top: 8px;
    line-height: 1.4;
}

.form__agree--light {
    color: rgba(255,255,255,0.5);
}

.form__success {
    text-align: center;
    padding: 16px 0;
}

.form__success[hidden] { display: none; }

@media (max-width: 360px) {
    .hero { padding: 40px 20px 32px; }
    .hero__name { font-size: 34px; }
    .usp__big { font-size: 36px; }
    .block { padding: 0 20px; }
    .block__title { font-size: 24px; }
    .cta-block__title { font-size: 28px; }
    .banks { grid-template-columns: repeat(3, 1fr); }
    .cta-contacts { grid-template-columns: 1fr; }
    .float-btn { padding: 12px 16px; font-size: 13px; }
    .float-btn span { display: none; }
}

/* ============================================
   FORCE LIGHT THEME (анти-Force Dark Mode для MI Browser)
   ============================================ */
:root {
    color-scheme: light only !important;
}

* {
    color-scheme: light !important;
}

html, body {
    background-color: #fafafa !important;
    color: #0a0a0a !important;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #fafafa !important;
        --white: #ffffff !important;
        --text: #0a0a0a !important;
        --text-soft: #4a4a4a !important;
        --text-mute: #999999 !important;
        --line: #ececec !important;
        --line-soft: #f4f4f4 !important;
        --good: #16a34a !important;
        --good-bg: #ecfdf5 !important;
        --bad: #dc2626 !important;
        --bad-bg: #fef2f2 !important;
    }

    html, body {
        background-color: #fafafa !important;
        color: #0a0a0a !important;
    }

    .hero { background-color: #ffffff !important; color: #0a0a0a !important; }
    .service, .case, .review, .guarantee, .bank, .modal__dialog { background-color: #ffffff !important; color: #0a0a0a !important; }
    .cta-block { background-color: #0a0a0a !important; color: #ffffff !important; }
}

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