/* =====================================================
   Мост задач — landing Integrator.Digital
   ===================================================== */

/* ---- Base / Reset ---- */
.lk-page, .lk-page *, .lk-page *::before, .lk-page *::after { box-sizing: border-box; }
.lk-page {
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
   color: #1a1a2e;
   background: #fff;
   -webkit-font-smoothing: antialiased;
}
.lk-page img { max-width: 100%; display: block; }
.lk-page ul, .lk-page ol { margin: 0; padding: 0; }
.lk-page a { color: inherit; }
.lk-page button { font-family: inherit; }

/* ---- CSS Variables (взято из фирменного стиля площадки) ---- */
:root {
   --purple:        #623fa2;
   --purple-dark:   #4e3183;
   --purple-light:  #7048b8;
   --purple-pale:   #f3eeff;
   --blue:          #4370e5;
   --blue-pale:     #eaf0ff;
   --gray-bg:       #f7f7f7;
   --text:          #1a1a2e;
   --text-muted:    #5c5c7a;
   --white:         #ffffff;
   --green:         #039f00;
   --green-pale:    #e6fbe6;
   --red:           #c0392b;
   --red-pale:      #fff0f0;
   --amber:         #b8860b;
   --amber-pale:    #fffbea;
   --radius:        14px;
   --radius-sm:     8px;
   --shadow:        0 10px 40px rgba(98, 63, 162, 0.12);
   --shadow-hover:  0 16px 50px rgba(98, 63, 162, 0.18);
}

/* ---- Layout utilities ---- */
.n-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 24px;
}
.graybg { background: var(--gray-bg); }

.eyebrow {
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 1.6px;
   text-transform: uppercase;
   color: var(--purple);
   background: var(--purple-pale);
   border-radius: 20px;
   padding: 6px 14px;
   display: inline-flex;
   align-items: center;
   gap: 6px;
   margin-bottom: 16px;
}

.section-head {
   text-align: center;
   max-width: 760px;
   margin: 0 auto 46px;
}
.section-head__title {
   font-size: 32px;
   font-weight: 800;
   color: var(--text);
   line-height: 1.25;
   margin: 0 0 12px;
}
.section-head__subtitle {
   font-size: 16px;
   line-height: 1.7;
   color: var(--text-muted);
   margin: 0;
}
.section-head--left { text-align: left; margin: 0 0 40px; max-width: 760px; }

.lk-page section { padding: 50px 0; }

/* ---- Buttons ---- */
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 15px 30px;
   border-radius: var(--radius-sm);
   font-size: 15px;
   font-weight: 700;
   text-decoration: none;
   cursor: pointer;
   border: 2px solid var(--purple);
   transition: all 0.25s ease;
   box-sizing: border-box;
   line-height: 1;
   background: transparent;
   color: var(--purple);
}
.btn--fill {
   background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
   color: #fff;
   box-shadow: 0 6px 20px rgba(98, 63, 162, 0.35);
   border-color: transparent;
}
.btn--fill:hover {
   box-shadow: 0 10px 30px rgba(98, 63, 162, 0.45);
   transform: translateY(-2px);
   color: #fff;
}
.btn--outline { background: transparent; color: var(--purple); }
.btn--outline:hover { background: var(--purple); color: #fff; }
.btn--block { width: 100%; }

/* ---- Icon helper ---- */
.icon { flex-shrink: 0; stroke: currentColor; fill: none; }
.icon--check { color: var(--green); }
.icon--cross { color: var(--red); }

/* =====================================================
   TOP BAR
   ===================================================== */
.lk-topbar {
   padding: 18px 0;
   border-bottom: 1px solid #ececf5;
}
.lk-topbar__wrap {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
}
.lk-topbar__logo {
   font-weight: 800;
   font-size: 17px;
   color: var(--text);
   text-decoration: none;
   display: flex;
   align-items: center;
   gap: 10px;
}
.lk-topbar__logo span { color: var(--purple); }
.lk-topbar__right { display: flex; align-items: center; gap: 18px; }
.lk-topbar__phone {
   font-weight: 700;
   font-size: 15px;
   text-decoration: none;
   color: var(--text);
   display: none;
}

@media (min-width: 640px) {
   .lk-topbar__phone { display: inline-flex; align-items: center; gap: 6px; }
}

/* =====================================================
   HERO (Блок 1)
   ===================================================== */
.lk-hero {
   background: linear-gradient(135deg, #f7f5ff 0%, #f0ecfa 45%, #e8e1f8 100%);
   padding: 64px 0 76px;
   overflow: hidden;
}
.lk-hero__wrap {
   display: flex;
   align-items: center;
   gap: 60px;
}
.lk-hero__col-left { flex: 1 1 0; min-width: 0; }
.lk-hero__col-right {
   flex: 0 0 440px;
   width: 440px;
   position: relative;
}
.lk-hero__title {
   font-size: 42px;
   font-weight: 800;
   line-height: 1.18;
   color: var(--text);
   margin: 0 0 20px;
}
.lk-hero__title em { color: var(--purple); font-style: normal; }
.lk-hero__desc {
   font-size: 17px;
   line-height: 1.7;
   color: var(--text-muted);
   margin: 0 0 30px;
   max-width: 620px;
}
.lk-hero__desc strong { color: var(--purple); font-weight: 700; }
.lk-hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.lk-hero__badges {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 10px;
   max-width: 560px;
}
.lk-hero__badge {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 13px;
   font-weight: 600;
   color: var(--text);
   background: #fff;
   border: 1px solid rgba(98, 63, 162, 0.16);
   padding: 10px 14px;
   border-radius: 12px;
   box-shadow: 0 4px 14px rgba(98, 63, 162, 0.08);
}
.lk-hero__badge .icon { color: var(--purple); }

.lk-hero__shot {
   width: 100%;
   height: auto;
   border-radius: 18px;
   box-shadow: 0 24px 60px rgba(30, 20, 60, 0.28);
   border: 6px solid #fff;
}
.lk-hero__shot-tag {
   position: absolute;
   bottom: -18px;
   left: 24px;
   background: #fff;
   border-radius: 12px;
   padding: 10px 16px;
   font-size: 13px;
   font-weight: 700;
   color: var(--purple);
   box-shadow: var(--shadow);
   display: flex;
   align-items: center;
   gap: 8px;
}

@media (max-width: 1024px) {
   .lk-hero__col-right { flex: 0 0 360px; width: 360px; }
   .lk-hero__title { font-size: 32px; }
}
@media (max-width: 860px) {
   .lk-hero__wrap { flex-direction: column; }
   .lk-hero__col-right { width: 100%; max-width: 380px; order: -1; }
   .lk-hero__badges { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
   .lk-hero__title { font-size: 26px; }
   .lk-hero__btns { flex-direction: column; align-items: stretch; }
}

/* =====================================================
   FIGURE / SCREENSHOT CAPTION (переиспользуется везде)
   ===================================================== */
.lk-figure {
   background: var(--white);
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   overflow: hidden;
   border: 1px solid #ececf5;
}
.lk-figure img { width: 100%; height: auto; }
.lk-figure figcaption {
   padding: 14px 20px;
   font-size: 13px;
   color: var(--text-muted);
   border-top: 1px solid #ececf5;
   display: flex;
   align-items: center;
   gap: 8px;
}
.lk-figure figcaption .icon { color: var(--purple); }

/* =====================================================
   ZOOM (клик по скриншоту -> лайтбокс)
   ===================================================== */
.lk-zoom {
   position: relative;
   cursor: zoom-in;
   overflow: hidden;
   line-height: 0;
}
.lk-zoom img { transition: transform 0.35s ease; }
.lk-zoom:hover img { transform: scale(1.03); }
.lk-zoom__hint {
   position: absolute;
   right: 14px;
   bottom: 14px;
   width: 36px;
   height: 36px;
   border-radius: 50%;
   background: rgba(20, 14, 40, 0.62);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transform: translateY(6px);
   transition: opacity 0.2s ease, transform 0.2s ease;
   pointer-events: none;
}
.lk-zoom:hover .lk-zoom__hint { opacity: 1; transform: translateY(0); }

.lk-hero__col-right .lk-zoom { border-radius: 18px; }

/* =====================================================
   LIGHTBOX — модалка увеличения скриншотов
   ===================================================== */
.lk-lightbox {
   position: fixed;
   inset: 0;
   z-index: 3000;
   display: none;
   align-items: center;
   justify-content: center;
   padding: 40px;
   background: rgba(14, 10, 28, 0.86);
   backdrop-filter: blur(2px);
}
.lk-lightbox.is-open { display: flex; }
.lk-lightbox__img {
   max-width: min(1200px, 92vw);
   max-height: 90vh;
   width: auto;
   height: auto;
   display: block;
   border-radius: 12px;
   box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
   -webkit-user-select: none;
   user-select: none;
}
.lk-lightbox__close {
   position: absolute;
   top: 24px;
   right: 28px;
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.12);
   border: none;
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: background 0.2s ease;
}
.lk-lightbox__close:hover { background: rgba(255, 255, 255, 0.25); }

@media (max-width: 600px) {
   .lk-lightbox { padding: 16px; }
   .lk-lightbox__close { top: 12px; right: 12px; }
}

/* =====================================================
   COMPARE (было / стало) — используется в блоке 2
   ===================================================== */
.lk-compare { display: grid; gap: 16px; }
@media (min-width: 720px) {
   .lk-compare { grid-template-columns: 1fr 1fr; }
}
.lk-compare__col {
   border-radius: var(--radius);
   padding: 22px 24px;
   display: flex;
   flex-direction: column;
   gap: 10px;
}
.lk-compare__col.bad { background: var(--red-pale); }
.lk-compare__col.good { background: var(--green-pale); }
.lk-compare__label {
   display: flex;
   align-items: center;
   gap: 8px;
   font-weight: 800;
   font-size: 14px;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}
.lk-compare__col.bad .lk-compare__label { color: var(--red); }
.lk-compare__col.good .lk-compare__label { color: var(--green); }
.lk-compare__col p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--text); }

.lk-result-tag {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: var(--purple-pale);
   color: var(--purple);
   font-weight: 700;
   font-size: 14px;
   padding: 10px 16px;
   border-radius: var(--radius-sm);
   margin-top: 4px;
}

/* =====================================================
   TABS (переиспользуемый компонент)
   ===================================================== */
.tabs { display: flex; flex-direction: column; gap: 28px; }
.tabs__nav {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
}
.tabs__nav-btn {
   display: flex;
   align-items: center;
   gap: 9px;
   padding: 12px 18px;
   border-radius: 40px;
   border: 2px solid #e3ddf3;
   background: #fff;
   color: var(--text-muted);
   font-weight: 700;
   font-size: 14px;
   cursor: pointer;
   transition: all 0.2s ease;
}
.tabs__nav-btn .icon { color: var(--purple-light); transition: color 0.2s ease; }
.tabs__nav-btn:hover { border-color: var(--purple-light); color: var(--text); }
.tabs__nav-btn.is-active {
   background: var(--purple);
   border-color: var(--purple);
   color: #fff;
   box-shadow: 0 6px 18px rgba(98, 63, 162, 0.3);
}
.tabs__nav-btn.is-active .icon { color: #fff; }

.tabs--vertical { flex-direction: row; align-items: flex-start; gap: 32px; }
.tabs--vertical .tabs__nav { flex-direction: column; flex: 0 0 300px; }
.tabs--vertical .tabs__nav-btn { justify-content: flex-start; border-radius: var(--radius-sm); text-align: left; }
.tabs--vertical .tabs__panels { flex: 1 1 0; min-width: 0; }
@media (max-width: 860px) {
   .tabs--vertical { flex-direction: column; }
   .tabs--vertical .tabs__nav { flex-direction: row; overflow-x: auto; flex: none; width: 100%; padding-bottom: 4px; }
   .tabs--vertical .tabs__nav-btn { flex: 0 0 auto; white-space: nowrap; }
}

.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; animation: lk-fade-in 0.35s ease; }

@keyframes lk-fade-in {
   from { opacity: 0; transform: translateY(6px); }
   to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   ACCORDION (переиспользуемый компонент)
   ===================================================== */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion__item {
   background: #fff;
   border: 1px solid #ececf5;
   border-radius: var(--radius-sm);
   box-shadow: 0 2px 10px rgba(98, 63, 162, 0.06);
   overflow: hidden;
}
.accordion__header {
   width: 100%;
   display: flex;
   align-items: center;
   gap: 14px;
   padding: 18px 22px;
   background: none;
   border: none;
   text-align: left;
   cursor: pointer;
   font-size: 15px;
   font-weight: 700;
   color: var(--text);
}
.accordion__num {
   flex-shrink: 0;
   width: 30px;
   height: 30px;
   border-radius: 50%;
   background: var(--purple-pale);
   color: var(--purple);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 13px;
   font-weight: 800;
}
.accordion__header-text { flex: 1 1 0; }
.accordion__chevron { color: var(--purple-light); transition: transform 0.25s ease; }
.accordion__item.is-open .accordion__chevron { transform: rotate(180deg); }
.accordion__item.is-open .accordion__header { border-bottom: 1px solid #ececf5; }

.accordion__body {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease;
}
.accordion__body-inner {
   padding: 4px 22px 20px 66px;
   font-size: 14.5px;
   line-height: 1.7;
   color: var(--text-muted);
}
.accordion__body-inner p { margin: 0 0 10px; }
.accordion__body-inner p:last-child { margin-bottom: 0; }
.accordion__body-inner ul { display: flex; flex-direction: column; gap: 8px; margin: 10px 0 0; }
.accordion__body-inner li { list-style: none; padding-left: 20px; position: relative; }
.accordion__body-inner li::before {
   content: '';
   position: absolute;
   left: 0;
   top: 8px;
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: var(--purple-light);
}

/* Компактный аккордеон без номера (FAQ) */
.accordion--faq .accordion__header { font-size: 15.5px; }
.accordion--faq .accordion__body-inner { padding-left: 22px; }

/* =====================================================
   БЛОК 3 — Архитектура (stepper)
   ===================================================== */
.stepper { display: flex; flex-direction: column; max-width: 880px; margin: 0 auto; }
.stepper__item { display: flex; gap: 22px; }
.stepper__marker { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.stepper__num {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background: var(--purple);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 6px 16px rgba(98, 63, 162, 0.32);
   flex-shrink: 0;
}
.stepper__line { width: 2px; flex: 1; background: linear-gradient(#c9b8ea, #e3ddf3); margin: 6px 0; }
.stepper__item:last-child .stepper__line { display: none; }
.stepper__content { padding-bottom: 40px; flex: 1; }
.stepper__item:last-child .stepper__content { padding-bottom: 0; }
.stepper__title { font-size: 17px; font-weight: 800; color: var(--text); margin: 6px 0 8px; }
.stepper__content p { font-size: 14.5px; line-height: 1.7; color: var(--text-muted); margin: 0; }

/* =====================================================
   БЛОК 4 — Функционал (tabs + скрин)
   ===================================================== */
.lk-feature-panel { display: grid; gap: 36px; align-items: start; }
@media (min-width: 900px) {
   .lk-feature-panel { grid-template-columns: 1fr 1fr; }
   .lk-feature-panel--reverse { direction: rtl; }
   .lk-feature-panel--reverse > * { direction: ltr; }
}
.lk-feature-list { display: flex; flex-direction: column; gap: 16px; }
.lk-feature-item {
   display: flex;
   gap: 14px;
   padding: 18px 20px;
   background: #fff;
   border: 1px solid #ececf5;
   border-radius: var(--radius-sm);
   box-shadow: 0 2px 10px rgba(98, 63, 162, 0.05);
}
.lk-feature-item .icon-wrap {
   flex-shrink: 0;
   width: 38px;
   height: 38px;
   border-radius: 10px;
   background: var(--purple-pale);
   color: var(--purple);
   display: flex;
   align-items: center;
   justify-content: center;
}
.lk-feature-item strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 4px; }
.lk-feature-item p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-muted); }


/* =====================================================
   БЛОК 6 — Результаты (stat grid)
   ===================================================== */
.stat-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
}
@media (max-width: 1024px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stat-grid { grid-template-columns: 1fr; } }

.stat-card {
   background: #fff;
   border-radius: var(--radius);
   padding: 26px 22px;
   box-shadow: var(--shadow);
   border-top: 4px solid var(--purple);
   display: flex;
   flex-direction: column;
   gap: 12px;
   transition: transform 0.25s, box-shadow 0.25s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.stat-card .icon-wrap {
   width: 42px;
   height: 42px;
   border-radius: 12px;
   background: var(--purple-pale);
   color: var(--purple);
   display: flex;
   align-items: center;
   justify-content: center;
}
.stat-card strong { font-size: 15.5px; font-weight: 800; color: var(--text); line-height: 1.35; }
.stat-card p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--text-muted); }
/* ===== ПОДБЛОКИ В БЛОКЕ "ЧТО СИНХРОНИЗИРУЕТСЯ" ===== */
.lk-feature-block {
    background: var(--bg-card, #fff);
    border: 1px solid var(--border, #e6e8eb);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    transition: box-shadow .25s ease, transform .25s ease;
}
.lk-feature-block:hover {
    box-shadow: 0 8px 24px rgba(20, 40, 80, .06);
    transform: translateY(-2px);
}
.lk-feature-block:last-child {
    margin-bottom: 0;
}
.lk-feature-block__head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border, #e6e8eb);
}
.lk-feature-block__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent, #0077ff) 0%, #00a3ff 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 119, 255, .25);
}
.lk-feature-block__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text, #1a2335);
    margin: 0 0 6px;
    line-height: 1.3;
}
.lk-feature-block__desc {
    font-size: 15px;
    color: var(--text-muted, #6b7684);
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 640px) {
    .lk-feature-block {
        padding: 20px;
    }
    .lk-feature-block__head {
        flex-direction: column;
        gap: 12px;
    }
    .lk-feature-block__title {
        font-size: 18px;
    }
}

/* =====================================================
   БЛОК 9 — Кейс
   ===================================================== */
.case-intro {
   display: grid;
   gap: 32px;
   align-items: center;
   margin-bottom: 44px;
}
@media (min-width: 900px) { .case-intro { grid-template-columns: 1fr 420px; } }

.case-problem-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 0; }
.case-problem-list li {
   list-style: none;
   display: flex;
   gap: 10px;
   font-size: 14.5px;
   line-height: 1.6;
   color: var(--text-muted);
}
.case-problem-list .icon { color: var(--red); flex-shrink: 0; margin-top: 3px; }

.case-results {
   margin-top: 44px;
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 16px;
}
@media (max-width: 1024px) { .case-results { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .case-results { grid-template-columns: 1fr; } }
.case-result-card {
   background: var(--purple-pale);
   border-radius: var(--radius-sm);
   padding: 18px 18px;
   display: flex;
   gap: 12px;
   align-items: flex-start;
}
.case-result-card .icon { color: var(--purple); flex-shrink: 0; margin-top: 2px; }
.case-result-card p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--text); }

/* =====================================================
   FAQ
   ===================================================== */
.lk-faq__wrap { max-width: 880px; margin: 0 auto; }

/* =====================================================
   CTA / FORM (Блок 11)
   ===================================================== */
.lk-cta {
   background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 55%, var(--purple-light) 100%);
   color: #fff;
   position: relative;
   overflow: hidden;
}
.lk-cta__wrap {
   display: grid;
   gap: 44px;
   position: relative;
   z-index: 1;
}
@media (min-width: 900px) { .lk-cta__wrap { grid-template-columns: 1fr 1fr; align-items: center; } }
.lk-cta__title { font-size: 30px; font-weight: 800; line-height: 1.3; margin: 0 0 16px; }
.lk-cta__text { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.85); margin: 0; }

.lk-cta__form {
   background: #fff;
   border-radius: var(--radius);
   padding: 32px;
   box-shadow: 0 30px 70px rgba(20, 10, 40, 0.35);
}
.lk-cta__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.lk-cta__field label { font-size: 13px; font-weight: 700; color: var(--text-muted); }
.lk-cta__field input,
.lk-cta__field textarea {
   border: 1px solid #d8d3ea;
   border-radius: var(--radius-sm);
   padding: 13px 14px;
   font-size: 15px;
   color: var(--text);
   outline: none;
   transition: border-color 0.2s;
   width: 100%;
   font-family: inherit;
   resize: vertical;
}
.lk-cta__field input:focus,
.lk-cta__field textarea:focus { border-color: var(--purple); }
.lk-cta__field input.error,
.lk-cta__field textarea.error { border-color: var(--red); }

.lk-cta__agree {
   display: flex;
   gap: 10px;
   align-items: flex-start;
   font-size: 12.5px;
   line-height: 1.5;
   color: var(--text-muted);
   margin-bottom: 18px;
   cursor: pointer;
}
.lk-cta__agree input { margin-top: 3px; flex-shrink: 0; }
.lk-cta__agree a { color: var(--purple); }

.lk-cta__result {
   margin-top: 14px;
   font-size: 14px;
   font-weight: 600;
   text-align: center;
}
.lk-cta__result--ok { color: var(--green); }
.lk-cta__result--error { color: var(--red); }

/* decorative blobs */
.lk-cta::before, .lk-cta::after {
   content: '';
   position: absolute;
   border-radius: 50%;
   background: rgba(255,255,255,0.06);
}
.lk-cta::before { width: 460px; height: 460px; top: -220px; right: -140px; }
.lk-cta::after { width: 320px; height: 320px; bottom: -180px; left: -100px; }

/* =====================================================
   FOOTER
   ===================================================== */
.lk-footer {
   padding: 30px 0;
   border-top: 1px solid #ececf5;
   font-size: 13px;
   color: var(--text-muted);
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   align-items: center;
   justify-content: space-between;
}
.lk-footer a { color: var(--purple); text-decoration: none; }

/* =====================================================
   SCROLL ANIMATION
   ===================================================== */
.fade-on-scroll { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE — общие правки
   ===================================================== */
@media (max-width: 767px) {
   .lk-page section { padding: 54px 0; }
   .section-head__title { font-size: 24px; }
   .lk-cta__title { font-size: 24px; }
   .stat-grid, .case-results { grid-template-columns: 1fr; }
}
/* Улучшение читаемости шрифтов и адаптивность таблицы */
    .lk-page p, .lk-page li, .lk-page td, .lk-page th {
        font-size: 16px;
        line-height: 1.6;
    }
    @media (max-width: 768px) {
        .lk-page p, .lk-page li, .lk-page td, .lk-page th {
            font-size: 15px;
            line-height: 1.5;
        }
    }
    .lk-table-wrap {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 32px 0;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }
    .lk-compare-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 500px;
        background: #fff;
    }
    .lk-compare-table th, .lk-compare-table td {
        padding: 16px 20px;
        text-align: left;
        border-bottom: 1px solid #eef2f6;
    }
    .lk-compare-table thead th {
        background: #f8fafc;
        font-weight: 600;
        color: #1a2b3c;
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .lk-compare-table tbody tr:last-child td {
        border-bottom: none;
    }
    .lk-compare-table .col-old {
        color: #e74c3c;
        background: rgba(231, 76, 60, 0.03);
    }
    .lk-compare-table .col-new {
        color: #27ae60;
        background: rgba(39, 174, 96, 0.03);
    }
    .lk-compare-table td:first-child {
        font-weight: 600;
        color: #2c3e50;
    }
/* ===== БЛОК СТОИМОСТИ ===== */
.lk-price { padding: 80px 0; background: #fff; }
.lk-price-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #f7f9fc 0%, #eef3fb 100%);
  border: 1px solid #e3e9f2;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(20, 40, 80, 0.06);
}
.lk-price-card__label {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; text-transform: uppercase; letter-spacing: .08em;
  color: #6b7a90; font-weight: 600; margin-bottom: 16px;
}
.lk-price-card__amount { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.lk-price-card__value {
  font-size: 64px; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, #1a73e8 0%, #0b5cd1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
}
.lk-price-card__currency { font-size: 32px; font-weight: 700; color: #1a73e8; }
.lk-price-card__note { color: #6b7a90; font-size: 15px; margin-bottom: 24px; }
.lk-price-card__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.lk-price-card__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid #d9e2ef;
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: #2b3a55;
}
.lk-price-card__badge .icon { color: #1a73e8; }
.lk-price-card__divider { width: 1px; background: #d9e2ef; align-self: stretch; }
.lk-price-card__includes-title { font-size: 18px; font-weight: 700; margin-bottom: 18px; color: #1b2538; }
.lk-price-card__list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.lk-price-card__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: #2b3a55; }
.lk-price-card__list .icon { color: #1a73e8; flex-shrink: 0; margin-top: 2px; }
.lk-price-card__footnote { margin-top: 14px; font-size: 13px; color: #6b7a90; text-align: center; }
.lk-price-note {
  display: flex; gap: 14px; align-items: flex-start;
  margin-top: 28px; padding: 18px 22px;
  background: #fff8e6; border: 1px solid #f1dfa0; border-radius: 14px;
  color: #6b5a1f; font-size: 14px;
}
.lk-price-note .icon { color: #c99a1f; flex-shrink: 0; margin-top: 2px; }
.lk-price-note strong { color: #6b5a1f; }

@media (max-width: 900px) {
  .lk-price-card { grid-template-columns: 1fr; padding: 28px; }
  .lk-price-card__divider { width: 100%; height: 1px; }
  .lk-price-card__value { font-size: 48px; }
}