    :root {
        --bg: #F5F7FA;
        --white: #ffffff;
        --black: #111111;
        --gray: #555555;
        --light-gray: #9F9F9F;
        --orange: #FF9706;
        --blue: #26BCF4;
        --dark-blue: #003E59;
        --radius: 50px;
        --radius-sm: 30px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 90px; }
    body {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        background: var(--bg);
        color: var(--black);
        font-size: 16px;
        line-height: 25px;
        font-weight: 400;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; height: auto; display: block; }
    button { background: none; border: none; cursor: pointer; font-family: inherit; }
    .container { max-width: 1360px; margin: 0 auto; padding: 0 20px; }

    /* HEADER */
    .header { background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.07); position: sticky; top: 0; z-index: 100; }
    .header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 80px; gap: 20px; }
    .header__logo { font-size: 26px; font-weight: 700; color: var(--dark-blue); white-space: nowrap; }
    .header__nav { display: flex; gap: 28px; align-items: center; }
    .header__nav a { color: var(--black); font-size: 15px; font-weight: 400; transition: color 0.3s; white-space: nowrap; }
    .header__nav a:hover { color: var(--orange); }
    .header__right { display: flex; align-items: center; gap: 20px; }
    .header__phone { font-size: 17px; font-weight: 700; color: var(--black); white-space: nowrap; }
    .tg { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--gray); transition: color 0.3s; }
    .tg:hover { color: var(--orange); }

    .btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: 50px; font-size: 15px; font-weight: 400; transition: 0.3s; cursor: pointer; white-space: nowrap; font-family: inherit; }
    .btn-orange { background: var(--orange); color: var(--white); }
    .btn-orange:hover { background: var(--blue); color: var(--white); }
    .btn-outline { background: none; border: 1px solid var(--orange); color: var(--black); }
    .btn-outline:hover { background: var(--orange); color: var(--white); }
    .btn-dark { background: var(--dark-blue); color: var(--white); }
    .btn-dark:hover { background: var(--blue); }

    section { margin-bottom: 100px; }
    .section-title { font-size: 40px; font-weight: 700; line-height: 50px; color: var(--black); margin-bottom: 57px; }
    .section-title span { color: var(--blue); }
    .section-title .orange { color: var(--orange); }

    /* HERO */
    .hero { margin-top: 30px; margin-bottom: 100px; }
    .hero__card { background: var(--white); border-radius: var(--radius); padding: 60px 55px 0 55px; display: flex; align-items: flex-end; justify-content: space-between; overflow: hidden; gap: 40px; min-height: 520px; }
    .hero__left { max-width: 660px; padding-bottom: 60px; }
    .hero__badge { display: inline-flex; align-items: center; gap: 8px; background: #FFF3DC; border: 1px solid #FFD88A; border-radius: 50px; padding: 6px 16px; font-size: 13px; font-weight: 600; color: #8B5E00; margin-bottom: 24px; }
    .hero__badge::before { content: '🏆'; font-size: 14px; }
    .hero__title { font-size: 46px; font-weight: 700; line-height: 56px; color: var(--black); margin-bottom: 24px; }
    .hero__title .accent { color: var(--orange); }
    .hero__desc { font-size: 16px; line-height: 28px; color: var(--gray); margin-bottom: 28px; }
    .hero__kpi { display: flex; gap: 28px; margin-bottom: 32px; flex-wrap: wrap; }
    .hero__kpi-item { display: flex; flex-direction: column; }
    .hero__kpi-num { font-size: 28px; font-weight: 700; color: var(--orange); line-height: 1; }
    .hero__kpi-label { font-size: 13px; color: var(--gray); margin-top: 4px; }
    .hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }
    .hero__image { flex-shrink: 0; align-self: flex-end; }
    .hero__image img { max-height: 460px; object-fit: contain; }

    /* RESULTS (6 выгод) */
    .results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .result-card { background: var(--white); border-radius: var(--radius-sm); padding: 36px 32px; display: flex; flex-direction: column; gap: 14px; transition: transform 0.3s, box-shadow 0.3s; }
    .result-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
    .result-card__icon { width: 56px; height: 56px; border-radius: 50%; background: #FFF3DC; display: flex; align-items: center; justify-content: center; font-size: 26px; }
    .result-card__title { font-size: 18px; font-weight: 700; color: var(--black); line-height: 26px; }
    .result-card__desc { font-size: 14px; line-height: 22px; color: var(--gray); }

    /* CERT SECTION */
    .cert-section { margin-bottom: 100px; }
    .cert-inner { display: flex; align-items: center; gap: 60px; }
    .cert-left { flex: 1; }
    .cert-right { flex-shrink: 0; display: flex; gap: 16px; }
    .cert-right img { height: 220px; border-radius: 16px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); background: var(--white); padding: 8px; }
    .cert-text { font-size: 16px; line-height: 28px; color: var(--gray); margin-bottom: 24px; }

    /* STATS */
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 100px; }
    .stat-item { background: var(--white); border-radius: var(--radius-sm); padding: 32px 24px; text-align: center; }
    .stat-number { display: block; font-size: 40px; font-weight: 700; line-height: 1; color: var(--orange); margin-bottom: 10px; }
    .stat-label { font-size: 14px; color: var(--gray); line-height: 20px; }

    /* SERVICES */
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .service-card { background: var(--white); border-radius: var(--radius); padding: 40px 40px 36px; display: flex; flex-direction: column; gap: 16px; transition: transform 0.3s, box-shadow 0.3s; }
    .service-card--featured { border: 2px solid var(--orange); }
    .service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
    .service-card__title { font-size: 22px; font-weight: 700; line-height: 30px; color: var(--black); }
    .service-card__desc { font-size: 15px; line-height: 24px; color: var(--gray); flex: 1; }
    .service-card__link { font-size: 15px; font-weight: 600; color: var(--dark-blue); display: flex; align-items: center; gap: 6px; transition: color 0.3s; }
    .service-card__link:hover { color: var(--orange); }
    .service-card__link::after { content: '→'; }
    .service-card__badge { display: inline-block; background: #FFF3DC; color: #8B5E00; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; width: fit-content; letter-spacing: 0.04em; text-transform: uppercase; }

    /* TASKS BLOCK */
    .tasks-blue { background: var(--dark-blue); border-radius: var(--radius); padding: 60px 56px; color: var(--white); }
    .tasks-blue .section-title { color: var(--white); margin-bottom: 40px; }
    .tasks-list { display: flex; flex-direction: column; gap: 0; counter-reset: tasks; }
    .tasks-list dt { padding: 24px 0 24px 72px; border-top: 1px solid rgba(255,255,255,0.15); font-size: 16px; line-height: 28px; color: var(--white); position: relative; counter-increment: tasks; }
    .tasks-list dt::before { content: counter(tasks); position: absolute; left: 0; top: 20px; width: 44px; height: 44px; border: 1px solid var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 600; color: var(--orange); }
    .tasks-list dt b { color: var(--blue); font-weight: 700; }
    .tasks-list dt:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }

    /* PRICES */
    .prices-list { background: var(--white); border-radius: var(--radius); overflow: hidden; }
    .prices-list__head { display: grid; grid-template-columns: 1fr auto; padding: 18px 32px; background: var(--bg); font-weight: 600; font-size: 14px; color: var(--black); border-bottom: 1px solid #C8CACC; }
    .prices-list__row { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 16px 32px; border-bottom: 1px solid #E8ECF0; font-size: 14px; line-height: 22px; gap: 20px; transition: background 0.2s; }
    .prices-list__row:last-child { border-bottom: none; }
    .prices-list__row:hover { background: #FFF8EE; }
    .prices-list__price { font-weight: 700; color: var(--dark-blue); white-space: nowrap; text-align: right; }

    /* PACKAGES */
    .packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .package-card { background: var(--white); border-radius: var(--radius); padding: 40px 36px; display: flex; flex-direction: column; gap: 20px; border: 1px solid #E0E5EB; transition: transform 0.3s; }
    .package-card:hover { transform: translateY(-4px); }
    .package-card--featured { background: var(--dark-blue); border-color: var(--dark-blue); color: var(--white); }
    .package-card__name { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); }
    .package-card--featured .package-card__name { color: var(--orange); }
    .package-card__price { font-size: 36px; font-weight: 700; line-height: 1; color: var(--black); }
    .package-card--featured .package-card__price { color: var(--white); }
    .package-card__for { font-size: 14px; color: var(--gray); margin-top: -12px; }
    .package-card--featured .package-card__for { color: rgba(255,255,255,0.7); }
    .package-card__divider { height: 1px; background: #E0E5EB; }
    .package-card--featured .package-card__divider { background: rgba(255,255,255,0.2); }
    .package-card__features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
    .package-card__feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 20px; color: var(--gray); }
    .package-card--featured .package-card__feature { color: rgba(255,255,255,0.85); }
    .package-card__feature::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

    /* PRICE FACTORS */
    .factors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .factor-card { background: var(--white); border-radius: var(--radius-sm); padding: 32px 28px; display: flex; flex-direction: column; gap: 12px; }
    .factor-card__icon { width: 48px; height: 48px; background: #FFF3DC; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; }
    .factor-card__title { font-size: 17px; font-weight: 700; color: var(--black); line-height: 24px; }
    .factor-card__desc { font-size: 14px; line-height: 22px; color: var(--gray); }

    /* CASES */
.cases-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 36px;
}

.case-showcase-card {
    display: flex;
    flex-direction: column;
}

.case-showcase-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    margin-bottom: 22px;
}

.case-showcase-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-showcase-card__tags {
    position: absolute;
    left: 24px;
    bottom: 22px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    z-index: 2;
}

.case-showcase-card__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.96);
    color: #555;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0,0,0,.10);
    backdrop-filter: blur(8px);
}

.case-showcase-card__title {
    font-size: 26px;
    line-height: 34px;
    font-weight: 400;
    color: var(--black);
    margin: 0 0 12px;
}

.case-showcase-card__title strong,
.case-showcase-card__title b {
    font-weight: 800;
}

.case-showcase-card__company {
    font-size: 15px;
    line-height: 22px;
    color: var(--gray);
}

@media (max-width: 900px) {
    .cases-showcase {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .case-showcase-card__title {
        font-size: 22px;
        line-height: 30px;
    }
}

    /* INDUSTRIES */
    .industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .industry-card { background: var(--white); border-radius: var(--radius-sm); padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; text-align: left; }
    .industry-card__icon { font-size: 32px; margin-bottom: 4px; }
    .industry-card__title { font-size: 16px; font-weight: 700; color: var(--black); line-height: 22px; }
    .industry-card__desc { font-size: 13px; line-height: 20px; color: var(--gray); }

    /* TEAM */
    .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .team-card { background: var(--white); border-radius: var(--radius); padding: 36px 32px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
    .team-card__photo { width: 120px; height: 120px; border-radius: 50%; background: var(--bg); overflow: hidden; }
    .team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
    .team-card__role { font-size: 13px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; }
    .team-card__name { font-size: 22px; font-weight: 700; color: var(--black); line-height: 28px; }
    .team-card__desc { font-size: 14px; line-height: 22px; color: var(--gray); }

    /* AWARDS */
.certs-lite__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.certs-lite__item {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
}

.certs-lite__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
}

.certs-lite__item img {
    width: 150px;
    height: 190px;
    object-fit: contain;
}

.certs-lite__item span {
    font-size: 15px;
    line-height: 22px;
    font-weight: 700;
    color: var(--black);
}

@media (max-width: 900px) {
    .certs-lite__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .certs-lite__grid {
        grid-template-columns: 1fr;
    }
}

    /* REVIEWS */
    .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .review-card { background: var(--white); border-radius: var(--radius); padding: 36px 36px 32px; display: flex; flex-direction: column; gap: 20px; }
    .review-card__header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
    .review-card__name { font-size: 16px; font-weight: 700; color: var(--black); line-height: 22px; }
    .review-card__company { font-size: 13px; color: var(--gray); margin-top: 2px; }
    .review-card__stars { color: var(--orange); font-size: 14px; white-space: nowrap; }
    .review-card__text { font-size: 14px; line-height: 22px; color: var(--gray); flex: 1; }
.review-card {
    justify-content: space-between; /* важно */
}

.review-card__footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #E8ECF0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.review-card__person {
    font-size: 12px;
    color: var(--light-gray);
}

.review-card__scan {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-blue);
    transition: color .2s;
}

.review-card__scan:hover {
    color: var(--orange);
}
.reviews-links {
    clear: both;
    margin-top: 38px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

    /* FAQ */
    .faq-list { display: flex; flex-direction: column; gap: 12px; }
    .faq-item { background: var(--white); border-radius: var(--radius-sm); overflow: hidden; }
    .faq-question { padding: 22px 30px 22px 45px; cursor: pointer; font-size: 20px; font-weight: 700; line-height: 30px; color: var(--black); display: flex; justify-content: space-between; align-items: center; gap: 20px; transition: 0.3s; }
    .faq-question:hover { color: var(--dark-blue); }
    .faq-question__icon { width: 56px; height: 56px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: 0.3s; font-size: 20px; color: var(--gray); }
    .faq-item.active .faq-question__icon { background: var(--orange); color: var(--white); }
    .faq-answer { display: none; padding: 0 45px 28px; font-size: 15px; line-height: 26px; color: var(--gray); }
    .faq-item.active .faq-answer { display: block; }

    /* CTA */
    .cta-block { background: var(--dark-blue); border-radius: var(--radius); padding: 70px 56px; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
    .cta-block__left { max-width: 600px; }
    .cta-block__title { font-size: 36px; font-weight: 700; line-height: 46px; color: var(--white); margin-bottom: 16px; }
    .cta-block__title span { color: var(--orange); }
    .cta-block__desc { font-size: 16px; line-height: 26px; color: rgba(255,255,255,0.75); }
    .cta-block__form { flex-shrink: 0; width: 600px; }
    .cta-form { display: flex; flex-direction: column; gap: 12px; }
    .cta-form input, .cta-form select, .cta-form textarea { width: 100%; padding: 16px 22px; border-radius: 50px; border: none; font-size: 15px; font-family: inherit; background: rgba(255,255,255,0.12); color: var(--white); outline: none; transition: background 0.3s; }
    .cta-form textarea { border-radius: 24px; resize: vertical; min-height: 80px; }
    .cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,0.55); }
    .cta-form select { color: rgba(255,255,255,0.55); }
    .cta-form select option { color: var(--black); background: var(--white); }
    .cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus { background: rgba(255,255,255,0.2); }
    .cta-form__consent { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 18px; padding: 0 8px; }
    .cta-form__consent a { color: var(--orange); text-decoration: underline; }

    /* PROCESS */
    .process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
    .process-step { background: var(--white); border-radius: var(--radius-sm); padding: 48px 24px 28px; position: relative; }
    .process-step__num { position: absolute; top: -18px; left: 24px; width: 44px; height: 44px; background: linear-gradient(135deg, var(--orange), #FF7700); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--white); box-shadow: 0 4px 16px rgba(255,151,6,0.35); }
    .process-step__title { font-size: 16px; font-weight: 700; line-height: 22px; color: var(--black); margin-bottom: 10px; }
    .process-step__desc { font-size: 13px; line-height: 20px; color: var(--gray); }

    /* TOOLS */
    .tools-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
    .tool-tag { background: var(--white); border-radius: 50px; padding: 10px 22px; font-size: 14px; font-weight: 400; color: var(--dark-blue); border: 1px solid #D8E3EC; transition: 0.3s; }
    .tool-tag:hover { background: var(--dark-blue); color: var(--white); }

    /* CLIENTS */
    .client-logos-grid { background: var(--white); border-radius: var(--radius); padding: 40px 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .client-logo-item { display: flex; align-items: center; justify-content: center; padding: 20px 16px; }
    .client-logo-item img { max-width: 200px; max-height: 90px; width: 100%; height: auto; object-fit: contain; filter: grayscale(100%); opacity: 0.7; transition: filter 0.3s, opacity 0.3s; }
    .client-logo-item img:hover { filter: grayscale(0%); opacity: 1; }

    /* OBJECTIONS */
    .objections-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .objection-card { background: var(--white); border-radius: var(--radius-sm); padding: 32px 36px; }
    .objection-card__q { font-size: 16px; font-weight: 700; color: var(--orange); margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; }
    .objection-card__q::before { content: '✗'; font-size: 18px; margin-top: 2px; }
    .objection-card__a { font-size: 14px; line-height: 22px; color: var(--gray); padding-left: 28px; }

    /* LOCAL BLOCK */
    .local-block { background: var(--white); border-radius: var(--radius); padding: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
    .local-block h3 { font-size: 24px; font-weight: 700; color: var(--black); margin-bottom: 20px; line-height: 32px; }
    .local-block p { font-size: 15px; line-height: 26px; color: var(--gray); margin-bottom: 16px; }
    .local-features { display: flex; flex-direction: column; gap: 14px; list-style: none; padding: 0; margin-top: 24px; }
    .local-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 22px; color: var(--black); }
    .local-features li::before { content: ''; flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; background-color: #E8F9FF; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%2326BCF4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-size: 14px; background-position: center; }

    /* RELATED SERVICES */
    .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .related-card { background: var(--white); border-radius: var(--radius-sm); padding: 28px 32px; display: flex; flex-direction: column; gap: 10px; transition: transform 0.3s; }
    .related-card:hover { transform: translateY(-4px); }
    .related-card__title { font-size: 17px; font-weight: 700; color: var(--black); line-height: 24px; }
    .related-card__desc { font-size: 13px; line-height: 20px; color: var(--gray); }
    .related-card__link { font-size: 13px; font-weight: 600; color: var(--dark-blue); margin-top: 8px; }
    .related-card__link::after { content: ' →'; color: var(--orange); }

    /* FOOTER */
    .footer { background: var(--white); padding: 40px 0 24px; margin-top: 60px; margin-bottom: 0; }
    .footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; color: var(--gray); font-size: 14px; padding-top: 20px; border-top: 1px solid #E0E5EB; }
    .footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
    .footer__links a { color: var(--gray); transition: color 0.3s; }
    .footer__links a:hover { color: var(--orange); }

    /* SEO SECTION */
    .seo-section { background: var(--white); border-radius: var(--radius); padding: 48px 56px; }
    .seo-section p { font-size: 16px; line-height: 28px; color: var(--gray); margin-bottom: 24px; }
    .seo-section p:last-child { margin-bottom: 0; }
    .check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 32px; margin: 24px 0; list-style: none; padding: 0; }
    .check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 24px; color: var(--black); }
    .check-list li::before { content: ''; flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; background-color: #E8F9FF; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%2326BCF4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-size: 14px; background-position: center; }
    .check-list--negative li::before { background-color: #FFF0F0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18 6L6 18M6 6l12 12' stroke='%23FF4D4D' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
    .check-list--single { grid-template-columns: 1fr; }

    /* MOBILE STICKY */
    .mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 1px solid #E0E5EB; padding: 12px 20px; z-index: 99; box-shadow: 0 -4px 20px rgba(0,0,0,0.1); }
    .mobile-cta .btn { width: 100%; height: 52px; font-size: 16px; }

    /* RESPONSIVE */
    @media (max-width: 1100px) {
        .section-title { font-size: 32px; line-height: 40px; }
        .hero__title { font-size: 38px; line-height: 46px; }
        .stats-grid { grid-template-columns: repeat(3, 1fr); }
        .hero__card { padding: 50px 40px 0; }
        .packages-grid { grid-template-columns: 1fr 1fr; }
        .packages-grid .package-card:last-child { grid-column: 1 / -1; }
        .factors-grid { grid-template-columns: 1fr 1fr; }
        .industries-grid { grid-template-columns: repeat(3, 1fr); }
        .results-grid { grid-template-columns: 1fr 1fr; }
        .process-steps { grid-template-columns: repeat(3, 1fr); }
        .awards-row { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 900px) {
        .header__nav { display: none; }
        .services-grid, .cases-grid, .reviews-grid, .related-grid { grid-template-columns: 1fr 1fr; }
        .process-steps { grid-template-columns: repeat(2, 1fr); }
        .team-grid { grid-template-columns: 1fr 1fr; }
        .cert-inner { flex-direction: column; }
        .cta-block { flex-direction: column; }
        .cta-block__form { width: 100%; }
        .objections-grid { grid-template-columns: 1fr; }
        .hero__card { flex-direction: column; padding: 40px 30px; min-height: auto; }
        .hero__image { display: none; }
        .tasks-blue { padding: 40px 30px; }
        .mobile-cta { display: block; }
        body { padding-bottom: 80px; }
        .local-block { grid-template-columns: 1fr; padding: 40px 32px; }
        .industries-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
        .section-title { font-size: 26px; line-height: 34px; margin-bottom: 32px; }
        .stats-grid { grid-template-columns: repeat(2, 1fr); }
        .services-grid, .cases-grid, .reviews-grid, .related-grid, .team-grid, .results-grid, .industries-grid, .factors-grid { grid-template-columns: 1fr; }
        .packages-grid { grid-template-columns: 1fr; }
        .process-steps { grid-template-columns: 1fr; }
        .awards-row { grid-template-columns: 1fr 1fr; padding: 28px 24px; }
        .cta-block { padding: 36px 24px; }
        .cta-block__title { font-size: 26px; line-height: 34px; }
        .hero__title { font-size: 28px; line-height: 36px; }
        .hero__card { border-radius: var(--radius-sm); padding: 30px 24px; }
        section { margin-bottom: 64px; }
        .tasks-blue { padding: 32px 24px; border-radius: var(--radius-sm); }
        .client-logos-grid { grid-template-columns: repeat(2, 1fr); padding: 24px; }
        .seo-section { padding: 32px 24px; border-radius: var(--radius-sm); }
        .check-list { grid-template-columns: 1fr; }
    .header__inner {
        justify-content: space-between;
    }

    .header__right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .header__phone {
        font-size: 13px;
        font-weight: 600;
    }

    .tg span {
        display: none; /* оставить только иконку телеги */
    }

    .tg svg {
        width: 18px;
        height: 18px;
    }

    .header .btn {
        display: none;
    }
    }