@font-face {
    font-family: Sentient;
    src: url("../fonts/Sentient-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Sentient;
    src: url("../fonts/Sentient-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Sentient;
    src: url("../fonts/Sentient-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #173a36;
    --ink-2: #131313;
    --muted: #4b4c4d;
    --text: #54595f;
    --teal: #19d1a7;
    --teal-deep: #168877;
    --teal-mid: #138576;
    --pink: #ff4588;
    --paper: #f4fffb;
    --paper-2: #edf8f4;
    --mint: #eafcf5;
    --card: #ffffff;
    --shadow: 0 18px 50px rgba(23, 58, 54, 0.1);
    --radius: 22px;
    --font-display: Sentient, sans-serif;
    --font-body: Roboto, sans-serif;
    --font-ui: "DM Sans", sans-serif;
}

html, body {
    overflow-x: clip;
}
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}
h1, h2 {
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 1;
    color: var(--ink);
}
h3, h4, .lead-form__title {
    font-family: var(--font-ui);
    font-style: normal;
    font-weight: 500;
    color: var(--ink);
}
button, input, select, textarea {
    font-family: var(--font-ui);
}
.teal { color: var(--teal); }
a { color: var(--teal-mid); text-decoration: none; }
a:hover { color: var(--teal-deep); }

.site-header {
    background: #fff;
    padding: 16px 0;
    position: relative;
    z-index: 20;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: inherit;
}
.brand img { width: 180px; height: auto; }
.brand span {
    font-family: var(--font-ui);
    font-size: 17px;
    line-height: 1;
    color: var(--teal);
    font-weight: 600;
    letter-spacing: 0;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}
.header-phone {
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-family: var(--font-ui);
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
}
.header-phone i { color: var(--teal); }

.btn-offer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    color: #fff;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    background: linear-gradient(90deg, #168877 0%, #19d1a7 100%);
    box-shadow: 0 8px 20px rgba(22, 136, 119, 0.25);
    transition: transform .15s ease, filter .15s ease;
}
.btn-offer:hover,
.btn-offer:focus-visible {
    color: #fff;
    filter: brightness(1.05);
    transform: translateY(-1px);
}
.btn-offer:active { transform: translateY(1px); }
.btn-offer--sm { width: auto; padding: 10px 18px; font-size: 16px; }
.btn-offer:focus-visible { outline: 3px solid #19d1a7; outline-offset: 2px; }

.hero {
    position: relative;
    padding: 48px 0 20px;
    background: linear-gradient(180deg, #f7fffc 0%, #edf8f4 55%, #f7fffc 100%);
    overflow: hidden;
    min-height: 680px;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #FFFFFF00 62%, #FFFFFF 100%);
    pointer-events: none;
    z-index: 2;
}
.hero-inner { position: relative; z-index: 3; }
.hero h1 {
    font-size: clamp(36px, 4.6vw, 56px);
    line-height: 1;
    letter-spacing: -0.06em;
    margin-bottom: 18px;
    font-weight: 500;
}
@media (min-width: 1200px) {
    .hero h1 { white-space: nowrap; font-size: 56px; }
}
.hero .lead {
    font-family: var(--font-ui);
    color: var(--muted);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 16px;
}
.hero-list {
    font-family: var(--font-ui);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    padding-left: 22px;
    margin: 0 0 28px;
    color: var(--ink);
}
.hero-list li { margin-bottom: 6px; }
.proof {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-wrap: nowrap;
}
.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-align: center;
    min-width: 0;
    padding: 2px 28px;
}
.proof-item:first-child { padding-left: 0; }
.proof-item:not(:first-child) {
    border-left: 1px solid rgba(23, 58, 54, 0.16);
}
.proof-item img { height: 50px; width: auto; }
.proof-item span {
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 600;
    color: var(--teal-deep);
    line-height: 1;
}
.proof-stat strong {
    font-family: var(--font-ui);
    font-size: 38px;
    font-weight: 600;
    line-height: 1;
    color: var(--muted);
    min-height: 50px;
    display: flex;
    align-items: center;
    letter-spacing: 0;
}
.proof-stat span {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 500;
}
.proof-stat span { display: block; }

.hero-visual {
    position: relative;
    min-height: 560px;
}
.books-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}
.books-container .inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    position: relative;
}
.books-container .books {
    width: 46%;
    right: -5.5%;
    margin: 0 auto;
    height: 100%;
    position: absolute;
    transform: rotate(-5deg);
}
.books-container .books-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    animation: moveBooks 28s linear infinite;
    will-change: transform;
}
.books-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    flex: 0 0 auto;
}
@keyframes moveBooks {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(0, -50%, 0); }
}
.books-container .books .item {
    width: auto;
    padding: 6% 5%;
}
.books-container .books .book-item { position: relative; }
.books-container .books .book-item::before {
    content: "";
    display: block;
    width: 7%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, rgba(68,68,68,.31) 15.1%, rgba(107,107,107,.13) 36.98%, rgba(117,116,116,.08) 51.04%, rgba(87,87,87,.24) 65.1%, rgba(54,54,54,.08) 83.33%, rgba(109,109,109,0) 100%);
}
.books-set .item:nth-child(2) { margin: 20% 0 0; }
.books-set .item:nth-child(3),
.books-set .item:nth-child(5) { margin: -20% 0 0; }
.books-container .books .item img {
    width: 100%;
    height: auto;
    box-shadow: 7px 12px 11px rgba(0,0,0,.23);
    display: block;
}

.form-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 28px 26px 24px;
    margin: 40px auto 0;
    max-width: 400px;
    overflow: visible;
}

.lead-form__title {
    font-family: var(--font-ui);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 20px;
}
.lead-form__title em,
.lead-form__title .pink {
    font-style: normal;
    color: var(--pink);
    white-space: nowrap;
}
.ff-field {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--mint);
    border-radius: 6px;
    margin-bottom: 12px;
    min-height: 48px;
}
.ff-req {
    color: var(--pink);
    padding: 0 8px 0 10px;
    font-size: 16px;
}
.ff-ico {
    color: #8aa8a2;
    margin-right: 6px;
}
.ff-field input {
    border: 0;
    background: transparent;
    width: 100%;
    padding: 12px 12px 12px 0;
    outline: none;
    box-shadow: none;
    color: var(--ink);
    font-family: var(--font-ui);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
}
.ff-field input:invalid,
.ff-field input:user-invalid,
.lead-form input:invalid,
.lead-form input:user-invalid {
    box-shadow: none;
    outline: none;
}
.ff-field input::-ms-reveal,
.ff-field input::-ms-clear,
.ff-field input::-webkit-credentials-auto-fill-button,
.ff-field input::-webkit-contacts-auto-fill-button,
.ff-field input::-webkit-strong-password-auto-fill-button {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
    width: 0;
    height: 0;
    margin: 0;
}
.ff-field input::placeholder { color: #9bb3ae; }
.ff-field--phone {
    padding-right: 8px;
    overflow: visible;
    z-index: 4;
}
.phone-field {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 48px;
}
.phone-field.is-open { z-index: 20; }
.phone-field__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    padding: 0 10px 0 0;
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    white-space: nowrap;
}
.phone-field__caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #7a938e;
}
.phone-field .phone-input {
    flex: 1;
    min-width: 0;
    width: 100%;
    border: 0;
    background: transparent;
    padding: 12px 8px 12px 0;
    outline: none;
    font-family: var(--font-ui);
    font-size: 18px;
    line-height: 1.4;
}
.phone-field__menu {
    position: absolute;
    top: calc(100% + 4px);
    left: -8px;
    min-width: 200px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #dce2ea;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(23, 58, 54, 0.12);
    z-index: 30;
}
.phone-field__option {
    padding: 8px 14px;
    cursor: pointer;
    font-family: var(--font-ui);
    font-size: 16px;
    color: var(--ink);
}
.phone-field__option:hover,
.phone-field__option.is-active {
    background: var(--mint);
}
.ff-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    color: var(--muted);
    margin: 10px 0 16px;
}
.ff-consent input {
    margin-top: 3px;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    accent-color: var(--teal);
    outline: none;
    box-shadow: none;
}
.ff-field.is-error {
    box-shadow: inset 0 0 0 1.5px #e45c6a;
    background: #fff6f6;
}
.ff-consent.is-error {
    box-shadow: none;
}
.ff-consent.is-error input {
    outline: 2px solid #e45c6a;
    outline-offset: 2px;
    border-radius: 3px;
}
.ff-consent.is-error span:last-child {
    color: #c23b48;
}

.benefits {
    padding: 28px 0 10px;
    background: #F8F5F1;
}
.benefit {
    text-align: center;
    padding: 10px 18px;
}
.benefit i {
    font-size: 26px;
    color: var(--ink);
    display: block;
    margin-bottom: 10px;
}
.benefit h3 {
    font-family: var(--font-ui);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 8px;
}
.benefit p {
    font-family: var(--font-ui);
    color: var(--text);
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}

.steps-sec {
    padding: 70px 0 40px;
    text-align: center;
}
.eyebrow {
    font-family: var(--font-ui);
    color: var(--teal);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.steps-sec h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.06em;
    max-width: 720px;
    margin: 0 auto 14px;
}
.steps-sec h2 span {
    font-family: var(--font-ui);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 1.16;
}
.steps-sec .sub {
    font-family: var(--font-ui);
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    color: var(--text);
    max-width: 640px;
    margin: 0 auto 36px;
}
.steps-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 28px 28px 36px;
    text-align: left;
    overflow: visible;
}
.step-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    border-bottom: 1px solid #eef3f1;
    margin-bottom: 28px;
}
.step-tab {
    background: none;
    border: 0;
    text-align: left;
    padding: 8px 6px 14px;
    color: #9aa6a3;
    border-bottom: 2px solid transparent;
    font-family: var(--font-ui);
}
.step-tab small {
    display: block;
    font-size: 20px;
    line-height: 1.36;
    font-weight: 500;
}
.step-tab strong {
    display: block;
    font-size: 20px;
    line-height: 1.36;
    font-weight: 500;
}
.step-tab.active {
    color: var(--ink);
    border-bottom-color: var(--teal);
}
.step-tab.active small { color: var(--teal); }
.step-pane { display: none; }
.step-pane.active { display: block; }
.step-copy h3 {
    font-family: var(--font-ui);
    font-size: clamp(26px, 3vw, 32px);
    line-height: 1.16;
    letter-spacing: -0.04em;
    font-weight: 500;
    margin-bottom: 18px;
}
.step-copy ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}
.step-copy li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text);
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}
.step-copy li i { color: var(--teal); margin-top: 3px; }
.step-shot {
    position: relative;
    background: #f4f7fb;
    border-radius: 16px;
    padding: 8px;
    overflow: visible;
}
.step-shot img.ui { width: 100%; height: auto; border-radius: 12px; }
.manuscript {
    position: absolute;
    left: -13%;
    top: 40%;
    width: 40%;
    max-width: none;
    z-index: 2;
    pointer-events: none;
    will-change: transform;
}

.features {
    padding: 70px 0 40px;
    background: linear-gradient(180deg, #f7fffc 0%, #fff 100%);
}
.features h2 {
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.06em;
    max-width: 680px;
    margin: 0 auto 36px;
}
.feat-acc {
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
    align-items: flex-start;
}
.feat {
    width: 24.25%;
    border-radius: 10px;
    border: 1px solid #dce2ea;
    margin-bottom: 1%;
    background: #fff;
    transition: border-color .3s ease, box-shadow .3s ease;
}
.feat:hover,
.feat[open] {
    border-color: var(--teal-mid);
}
.feat summary {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
    min-height: 63px;
    padding: 10px 14px;
    cursor: pointer;
    list-style: none;
    border-radius: 10px;
    transition: background-color .3s ease;
}
.feat summary::-webkit-details-marker { display: none; }
.feat summary:hover { background-color: var(--mint); }
.feat summary:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}
.feat summary:active { background-color: var(--paper-2); }
.feat-ico { font-style: normal; font-size: 16px; line-height: 1; }
.feat-title {
    flex: 1;
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 17px;
    line-height: 1.2;
    color: var(--ink);
    min-width: 0;
}
.feat .chev {
    color: #98a2b3;
    font-size: 12px;
    transition: transform .35s ease;
    flex-shrink: 0;
}
.feat[open] .chev { transform: rotate(180deg); }
.feat-acc.is-animated .feat-panel {
    overflow: hidden;
    height: 0;
    transition: height .35s ease;
}
.feat p {
    padding: 0 15px 15px;
    margin: -5px 0 0;
    color: #667085;
    font-family: var(--font-ui);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

.global {
    padding: 30px 0 70px;
    text-align: center;
}
.global img.mock { max-width: 720px; width: 100%; margin-bottom: 18px; }
.global h2 {
    font-family: var(--font-ui);
    font-size: clamp(26px, 4vw, 33px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 6px;
}
.global h2 + p.accent {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.8vw, 45px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.06em;
    color: var(--teal);
    margin-bottom: 10px;
}
.global .desc {
    font-family: var(--font-ui);
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    color: var(--text);
    max-width: 620px;
    margin: 0 auto 28px;
}
.logo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 28px 36px;
}
.logo-row img { height: 28px; width: auto; }

.reviews {
    background: #f7f4ef;
    padding: 80px 0 50px;
    overflow: hidden;
}
.reviews h2 {
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.06em;
    max-width: 720px;
    margin: 0 auto 8px;
}
.reviews h2 em,
.reviews h2 .teal {
    font-style: normal;
    color: var(--teal) !important;
}
.reviews .sub {
    text-align: center;
    font-family: var(--font-ui);
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 28px;
}
.rev-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: rev-move 70s linear infinite;
}
.rev-row + .rev-row .rev-track { animation-direction: reverse; animation-duration: 80s; }
.rev-row { overflow: hidden; margin-bottom: 16px; }
.rev-card {
    width: 260px;
    background: #fff;
    border-radius: 16px;
    padding: 18px 16px 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,.04);
    display: flex;
    flex-direction: column;
    min-height: 230px;
}
.rev-card p {
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: -0.05em;
    font-weight: 400;
    color: var(--ink-2);
    flex: 1;
    margin-bottom: 14px;
}
.rev-who {
    display: flex;
    align-items: center;
    gap: 8px;
}
.rev-who img, .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.rev-who strong { display: block; font-family: var(--font-ui); font-size: 15px; line-height: 1.5; font-weight: 500; }
.stars-gold { color: #f5b301; font-size: 11px; letter-spacing: 1px; }
.qmark {
    margin-left: auto;
    color: #e6e6e6;
    font-size: 28px;
    line-height: 1;
}

@keyframes rev-move {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.help {
    padding: 70px 0 40px;
}
.help h2 {
    font-size: clamp(32px, 4vw, 38px);
    line-height: 1;
    letter-spacing: -0.06em;
    margin-bottom: 12px;
}
.help p {
    font-family: var(--font-ui);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--text);
    max-width: 360px;
}
.help-photo {
    display: block;
    margin: 0 auto;
    max-width: 360px;
    width: 100%;
    mix-blend-mode: multiply;
}
.help .form-card { margin-top: 0; }

.site-footer { padding: 10px 0 90px; }
.footer-card {
    background: #fff;
    border-radius: 28px;
    padding: 36px 36px 20px;
    box-shadow: var(--shadow);
}
.footer-card h4 {
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 12px;
}
.footer-card ul { list-style: none; padding: 0; margin: 0; }
.footer-card li {
    margin-bottom: 8px;
    color: var(--text);
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}
.footer-brand img {
    width: 180px;
    height: auto;
}
.footer-tel { white-space: nowrap; }
.footer-trust {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 20px;
    border-top: 1px solid #eef2f0;
    margin-top: 28px;
    padding-top: 22px;
    align-items: center;
}
.trust-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.trust-item i { font-size: 22px; }
.trust-item strong {
    display: block;
    font-family: var(--font-ui);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
}
.trust-item span {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--text);
}
.pay-logos { text-align: right; }
.pay-logos img { height: 18px; margin: 0 6px 8px; }
.pay-logos .copy {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--text);
    margin: 6px 0 0;
}

.fab-chat {
    position: fixed;
    left: 18px;
    bottom: 78px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 12px 18px 12px 14px;
    background: linear-gradient(90deg, #168877 0%, #19d1a7 100%);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(22, 136, 119, 0.28);
    cursor: pointer;
}
.fab-chat:hover,
.fab-chat:focus-visible {
    color: #fff;
    filter: brightness(1.05);
}
.fab-chat i { font-size: 18px; }
.fab-top {
    position: fixed;
    left: 18px;
    bottom: 22px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    z-index: 40;
    display: none;
}
.fab-top.show { display: inline-flex; align-items: center; justify-content: center; }

.offer-modal {
    border: 0;
    border-radius: 20px;
    padding: 28px 26px 22px;
    position: relative;
}
.offer-modal .btn-close { position: absolute; right: 14px; top: 14px; }
.modal-lead-title {
    font-size: 35px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.modal-channels {
    text-align: center;
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.3;
    margin: 16px 0 8px;
}
.modal-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    align-items: center;
}
.modal-logos img { height: 22px; }

.legal-page { padding: 50px 0 80px; background: #fff; }
.legal-page h1 { margin-bottom: 18px; font-size: 32px; }
.legal-page h2 { font-size: 24px; margin-top: 24px; letter-spacing: -0.04em; }
.legal-page p, .legal-page li {
    font-family: var(--font-ui);
    color: var(--text);
}
.thanks {
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 80px 0;
}
.thanks h1 { font-size: 48px; }
.thanks p { color: var(--text); max-width: 520px; margin: 0 auto 20px; }

@media (max-width: 1024px) {
    .feat { width: 32.33%; margin-bottom: 1.5%; }
    .feat-acc { gap: 1.5%; }
}
@media (max-width: 991px) {
    .hero { min-height: 0; }
    .hero-visual { min-height: auto; margin-top: 10px; }
    .form-card { margin-top: 25px; }
    .books-container { display: none !important; }
    .step-tabs { grid-template-columns: 1fr 1fr; }
    .footer-trust { grid-template-columns: 1fr; }
    .pay-logos { text-align: center; }
}
@media (max-width: 768px) {
    .feat-acc { gap: 0; }
    .feat { width: 100%; margin-bottom: 10px; }
    .feat summary { min-height: 50px; }
    .manuscript {
        left: -6%;
        top: 46%;
        width: 48%;
    }
    .footer-card {
        padding: 24px 20px 56px;
    }
    .footer-card h4 {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-bottom: 12px;
    }
    .footer-card li {
        font-size: 15px;
        line-height: 1.45;
        margin-bottom: 10px;
    }
    .footer-trust {
        gap: 18px;
        margin-top: 8px;
        padding-top: 20px;
    }
    .trust-item strong { font-size: 16px; }
    .pay-logos img {
        height: 20px;
        margin: 0 12px 12px 0;
    }
}
@media (max-width: 575px) {
    .hero { padding-top: 24px; }
    .hero h1 { font-size: 36px; }
    .brand img,
    .footer-brand img { width: 150px; }
    .brand span { font-size: 12px; line-height: 1.2; }
    .header-inner { gap: 10px; }
    .header-actions .btn-offer--sm {
        white-space: nowrap;
        padding: 8px 12px;
        font-size: 13px;
        line-height: 1;
    }
    .steps-card { padding: 20px; }
    .footer-card { padding: 24px 20px 56px; }
    .feat-title { font-size: 16px; }
    .proof {
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: 8px;
    }
    .proof-item {
        flex: 1 1 0;
        min-width: 0;
        padding: 2px 8px;
    }
    .proof-item img {
        height: 28px;
        max-width: 100%;
        object-fit: contain;
    }
    .proof-item span { font-size: 13px; }
    .proof-stat strong { font-size: 24px; min-height: 28px; }
    .header-phone { font-size: 18px; }
    .modal-lead-title { font-size: 26px; }
    .step-tab small,
    .step-tab strong { font-size: 16px; }
    .thanks h1 { font-size: 36px; }
}
@media (max-width: 380px) {
    .proof {
        flex-direction: column;
        align-items: stretch;
    }
    .proof-item,
    .proof-item:first-child {
        padding: 10px 0;
    }
    .proof-item:not(:first-child) {
        border-left: 0;
        border-top: 1px solid rgba(23, 58, 54, 0.16);
    }
    .fab-chat span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
    .fab-chat {
        width: 44px;
        height: 44px;
        padding: 0;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rev-track,
    .books-container .books-content { animation: none; }
    .btn-offer,
    .feat,
    .feat summary,
    .feat .chev,
    .feat-panel { transition: none; }
}
