@font-face {
    font-family: Onest;
    src: url("../fonts/Onest-Regular.ttf");
}

:root {
    --blue: #40a7e3;
    --blue-dark: #237fed;
    --green: #02c060;
    --orange: #f05430;
    --ink: #1d2e45;
    --text: #33475f;
    --muted: #7c8a98;
    --line: #dce6ef;
    --soft: #f4f9fd;
    --shadow: 0 18px 42px rgba(23, 50, 77, 0.10);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--text);
    font-family: Onest, Helvetica, sans-serif;
    background: #ffffff;
}

a {
    color: var(--blue);
    text-decoration: none;
}

a:hover {
    color: var(--blue-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.content {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 30px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.header__right {
    display: flex;
    align-items: center;
    flex: 0 1 auto;
    gap: 18px;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 620px;
    flex-wrap: wrap;
    gap: 12px 16px;
    min-width: 0;
    font-size: 16px;
}

.navigation__link {
    position: relative;
    color: var(--blue);
    font-family: Onest, sans-serif;
    opacity: 0.82;
    transition: color 0.25s, opacity 0.25s;
    white-space: nowrap;
}

.navigation__link::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--blue);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s, transform 0.25s;
}

.navigation__link:hover,
.navigation__link:focus {
    opacity: 1;
}

.navigation__link:hover::after,
.navigation__link:focus::after {
    opacity: 0.8;
    transform: translateY(0);
}

.navigation__link.active {
    color: var(--orange);
}

.navigation__link.active::after {
    display: none;
}

.dropdown {
    display: none;
}

.logocenter {
    position: relative;
    display: flex;
    width: 128px;
    height: 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #131313;
    font-family: Onest, sans-serif;
    font-size: 24px;
    letter-spacing: 0.15em;
    line-height: 1;
    text-decoration: none;
    text-shadow: -1px 1px 1px #d8d6d5, -2px 2px 1px #dbdad9, -3px 3px 1px #dfdddc, -4px 4px 1px #e2e0df, -5px 5px 1px #f1efed;
}

.logocenter:hover {
    color: #c0c0c0 !important;
}

.logocenter::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -100%;
    width: 50%;
    height: 140%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: waveFlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes waveFlow {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.logo-text__print {
    margin-bottom: -2px;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    transition: background-color 0.25s, opacity 0.25s;
}

.header-social a:hover {
    background-color: #eef7fc;
    opacity: 0.85;
}

.header-social a img {
    width: 28px !important;
    height: 28px !important;
}

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #2c4055;
    font-size: 14px;
    line-height: 1.35;
}

.info__adress,
.info__phone {
    color: #2c4055;
    font-family: Onest, sans-serif;
    white-space: nowrap;
}

.info__phone {
    display: none;
    align-items: center;
    padding: 4px 0;
}

@media (min-width: 1051px) {
    .header {
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        gap: 16px 24px;
        flex-wrap: nowrap;
    }

    .header__right {
        display: contents;
    }

    .logocenter {
        grid-column: 1;
        grid-row: 1;
    }

    .info {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
    }

    .navigation {
        grid-column: 3;
        grid-row: 1;
        flex: none;
        justify-content: flex-end;
    }

    .header-social {
        grid-column: 4;
        grid-row: 1;
        justify-self: end;
    }
}

.phone {
    width: 26px;
    padding-right: 0;
}

.main {
    min-height: 500px;
    background: #2c4055 url("../img/main.jpg") left / cover no-repeat;
    color: #ffffff;
    font-family: Onest, sans-serif;
}

.main__title {
    display: flex;
    min-height: 500px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 24px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    text-align: center;
}

.hero-kicker,
.hero-subtitle,
.hero-title {
    margin: 0;
    text-shadow:
        0 0 8px rgba(0, 0, 0, 0.95),
        0 0 16px rgba(0, 0, 0, 0.85),
        0 0 24px rgba(0, 0, 0, 0.75),
        0 0 32px rgba(44, 64, 85, 0.65),
        0 0 48px rgba(44, 64, 85, 0.45);
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 18px rgba(44, 64, 85, 0.95));
}

.hero-kicker {
    font-size: 20px;
}

.hero-title {
    max-width: 1176px;
    font-size: 50px;
    line-height: 1.12;
}

.hero-subtitle {
    max-width: 1104px;
    font-size: 20px;
    line-height: 1.5;
}

.hero-actions,
.quick-links,
.cross-links__list,
.price-brand-nav,
.price-benefits,
.cartridge-actions,
.model-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-button,
.quick-links a,
.cross-links__list a,
.price-benefits span,
.cartridge-offer__button,
.fix-cta a,
.fix-news a,
.service-link {
    text-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 8px;
    font-family: Onest, sans-serif;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.30);
    transition: background-color 0.25s, box-shadow 0.25s, transform 0.25s, opacity 0.25s;
}

.hero-button--primary,
.cartridge-offer__button,
.service-link {
    background: var(--blue-dark);
    color: #ffffff !important;
}

.hero-button--secondary {
    border: 1px solid #d6d6d6;
    background: #f5f5f5;
    color: #111111 !important;
}

.hero-button:hover,
.service-link:hover {
    color: #ffffff;
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.body {
    width: 100%;
    margin: 0 auto;
    padding: 56px 16px;
    flex: 1 0 auto;
    color: #555555;
    font-size: 18px;
    text-align: justify;
}

.body--no-padding {
    padding: 0;
}

.page-title {
    display: flex;
    min-height: 60px;
    margin: 0;
    padding: 12px 20px;
    align-items: center;
    justify-content: center;
    background: #2c4055;
    color: #ffffff;
    font-family: Onest, sans-serif;
    font-size: 24px;
    text-align: center;
}

.breadcrumbs {
    max-width: 1400px;
    margin: 0 auto 24px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumbs--inner {
    padding: 24px 20px 0;
}

.services,
.service-process,
.semantic-block,
.faq-section,
.cross-links,
.faq,
.fix-layout,
.cartridge-details,
.cartridge-offers,
.related-cartridges,
.service-page {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
}

.services,
.service-process,
.semantic-block,
.faq-section {
    padding: 40px 32px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.content-block {
    width: 100%;
}

.section-lead {
    max-width: 984px;
    margin: 0 auto 32px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.65;
    text-align: center;
}

.services h2,
.service-process h2,
.semantic-block h2,
.faq-section h2,
.home-services h2 {
    margin: 0 0 30px;
    color: var(--ink);
    font-size: 32px;
    line-height: 1.25;
    text-align: center;
}

.content-block h2 {
    margin: 0 0 30px;
    color: var(--ink);
    font-size: 32px;
    line-height: 1.25;
    text-align: center;
}

.service-columns,
.contact-grid,
.stats-grid,
.process-grid,
.keyword-grid,
.article-grid,
.faq-grid,
.fix-card-grid,
.related-cartridges__grid,
.cartridge-offers,
.price-brand-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-columns > *,
.contact-grid > *,
.article-grid > * {
    flex: 1 1 360px;
}

.stats-grid > *,
.process-grid > *,
.keyword-grid > *,
.fix-card-grid > *,
.related-cartridges__grid > * {
    flex: 1 1 240px;
}

.stats-card,
.note-card,
.contact-card,
.article-card,
.faq-item,
.cta-box,
.fix-card,
.related-card {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(44, 64, 85, 0.08);
    text-align: left;
    min-width: 0;
    max-width: 100%;
}

.stats-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 120px;
    padding: 22px;
}

.stats-card__icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    object-fit: contain;
}

.stats-card strong {
    display: block;
    margin-bottom: 6px;
    color: #2c4055;
    font-size: 26px;
}

.stats-card span {
    display: block;
    font-size: 14px;
    line-height: 1.35;
}

.service-process .process-grid {
    padding: 8px 0;
    gap: 0;
    flex-wrap: nowrap;
    align-items: stretch;
}

.process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 24px;
    flex: 1 1 0;
    min-width: 0;
}

.process-step + .process-step {
    border-left: none;
}

.process-step + .process-step::before {
    content: "›";
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    font-weight: 400;
    color: var(--blue);
    line-height: 1;
    z-index: 1;
}

.process-step__icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #dbeeff;
}

.process-step__icon img {
    width: 28px;
    height: 28px;
	filter: invert(39%) sepia(92%) saturate(2532%) hue-rotate(170deg)
}

.process-step__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.process-step__content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.process-step__content span,
.fix-process li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #40abd9;
    background-color: #ffffff;
    color: #000000;
    font-weight: 700;
    font-size: 14px;   
}

.process-step__content h3 {
    margin: 0;
    color: var(--ink);
    font-size: 18px;
}

.process-step > p {
    margin: 0;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.keyword-grid > div {
    text-align: center;
}

.keyword-grid__icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.faq,
.faq-grid,
.faq-section .content-block,
.model-list,
.cartridge-summary,
.fix-process ol,
.fix-guarantee ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item,
.contact-card,
.article-card,
.note-card,
.cta-box {
    padding: 24px;
}

.contact-card iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: 10px;
}

.seo-checklist,
.list {
    padding-left: 22px;
}

.seo-checklist li,
.list li {
    margin-bottom: 10px;
}

.search {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 20px;
    margin-bottom: 0;
}

.search-field {
    display: flex;
    align-items: center;
    gap: 12px 20px;
    width: min(720px, 100%);
}

.search-field #search__input {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
}

.page-price .search-field {
    width: min(960px, 100%);
}

#search__input {
    width: min(720px, 100%);
    min-height: 44px;
    padding: 0 20px;
    border: 2px solid #2c4055;
    border-radius: 6px;
    color: #2c4055;
    font-size: 18px;
    outline: none;
}

#search__input::placeholder {
    color: rgb(254, 139, 139);
    opacity: 1;
}

.search__button,
.next__button {
    min-height: 44px;
    border: 0;
    border-radius: 6px;
    background: var(--blue);
    color: #ffffff;
    cursor: pointer;
    font-family: Onest, sans-serif;
    font-size: 18px;
    transition: opacity 0.25s;
}

.search__button {
    width: 110px;
}

.next__button {
    width: 200px;
}

.search__button:hover,
.next__button:hover {
    opacity: 0.82;
}

.search__image {
    display: none;
    width: 26px;
    height: 26px;
}

.search__button--inline .search__image {
    display: none;
}

.search__result,
.price {
    width: min(720px, 100%);
    padding: 10px 20px;
    border: 2px solid #2c4055;
    border-radius: 6px;
    background: #ffffff;
    font-family: Onest, sans-serif;
}

.price {
    display: none;
}

.model {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #2c4055;
}

.page-price .model {
    min-width: 0;
}

.page-price .model a {
    min-width: 0;
    overflow-wrap: anywhere;
}

.model__price {
    margin-left: 20px;
    color: #000000;
    white-space: nowrap;
}

.price-search-sticky {
        position: sticky;
        top: 0;
        z-index: 999;
        background: #ffffff;
        box-shadow: 0 4px 14px rgba(44, 64, 85, 0.1);
        padding: 8px 0;
        margin: 0 0 8px;
}

.page-price .search__result,
.page-price .search__result.active {
    width: min(960px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.page-price .price-table {
    width: min(960px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.page-price .price-brand-section {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.page-price .content,
.page-price .body {
    max-width: 100%;
    overflow-x: clip;
}

/* Единая ширина всех блоков (интро, хлебные крошки, список брендов, FAQ),
   чтобы верх/середина/низ страницы были одной ширины, как таблица и поиск */
.page-price .breadcrumbs,
.page-price .content-block,
.page-price .price-brand-nav,
.page-price .faq {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.page-price .price-brand-nav {
    padding: 10px 8px 0;
}

.page-price .price-intro {
    padding: 22px 24px;
    background: #ffffff;
}

.page-price .price-intro h2 {
    margin-bottom: 12px;
    text-align: center;
}

.page-price .price-intro p {
    margin: 0;
}

.page-price .search__result,
.page-price .price-search-sticky .search,
.page-price .search-field {
    max-width: 100%;
    box-sizing: border-box;
}

.price-brand-link {
    position: relative;
    display: inline-flex;
    min-height: 42px;
    width: 120px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0px 10px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    background: #ffffff;
    color: #2c4055;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.price-brand-link:hover {
    border-color: var(--blue);
    color: #2c4055;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.brand-logo {
    max-width: 100px;
    max-height: 45px;
    object-fit: contain;
}

.brand-logo-title {
    max-height: 32px;
    margin-right: 8px;
    vertical-align: middle;
}

.price-brand-link__count {
    position: absolute;
    top: -8px;
    right: -8px;
    display: inline-flex;
    min-width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #1e79f8;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.price-table {
    width: 100%;
    margin-top: 18px;
	margin: 20px auto;
    display: table;  
    overflow: hidden;
    border-collapse: collapse;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(44, 64, 85, 0.08);
}

.price-table th,
.price-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e5eef5;
    vertical-align: top;
}

.price-table th,
.price-table__price {
    text-align: center;
}

.price-table th {
    background: #eef7fc;
    color: #2c4055;
}

.price-table tr:last-child td {
    border-bottom: 0;
}

.price-table__price {
    color: #2c4055;
    font-weight: 700;
    white-space: nowrap;
}

.page-title--sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.body--cartridge {
    max-width: 1200px;
    padding: 32px 20px 56px;
    text-align: left;
    background: #f5f7fa;
}

.page-cartridge .content {
    background: #f5f7fa;
}

.page-cartridge .breadcrumbs {
    margin-bottom: 28px;
}

.page-home.page-cartridge .body--cartridge {
    padding: 32px 20px 56px;
}

/* --- Cartridge page (cpt) --- */

.cpt-hero {
    display: grid;
    grid-template-columns: 220px 1fr 1.1fr;
    gap: 32px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 28px 32px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.cpt-hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.cpt-hero__image img {
    max-height: 220px;
    object-fit: contain;
}

.cpt-hero__title {
    margin: 0 0 12px;
    color: #1a1a2e;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.cpt-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.cpt-badge--neutral {
    background: #eef1f5;
    color: #5a6577;
}

.cpt-badge--green {
    margin-left: 8px;
    background: #e8f8ef;
    color: #02c060;
    font-size: 12px;
    vertical-align: middle;
}

.cpt-hero__compat {
    margin: 16px 0 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.55;
}

.cpt-hero__compat span {
    display: block;
    margin-bottom: 4px;
    color: #374151;
    font-weight: 600;
}

.cpt-benefits__title {
    margin: 0 0 18px;
    color: #1a1a2e;
    font-size: 16px;
    font-weight: 700;
}

.cpt-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.cpt-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.cpt-benefit__icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cpt-benefit__icon--green { background: #e8f8ef; }
.cpt-benefit__icon--blue { background: #e8f0fe; }
.cpt-benefit__icon--purple { background: #f0e8fe; }
.cpt-benefit__icon--orange { background: #fff3e8; }

.cpt-benefit__icon img {
    width: 28px;
    height: 28px;
    max-width: none;
}

.cpt-benefit strong {
    color: #1a1a2e;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.cpt-benefit span {
    color: #9ca3af;
    font-size: 11px;
    line-height: 1.35;
}

.cpt-offers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 32px;
}

.cpt-offer {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.cpt-offer__header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.cpt-offer__icon {
    display: flex;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cpt-offer__icon--green { background: #e8f8ef; }
.cpt-offer__icon--blue { background: #e8f0fe; }

.cpt-offer__icon img {
    width: 32px;
    height: 32px;
    max-width: none;
}

.cpt-offer__heading h2 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.cpt-offer--refill .cpt-offer__heading h2 { color: #02c060; }
.cpt-offer--buy .cpt-offer__heading h2 { color: #007bff; }

.cpt-offer__heading p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.cpt-offer__body {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.cpt-offer__features {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cpt-offer__features li {
    position: relative;
    padding: 5px 0 5px 28px;
    color: #374151;
    font-size: 14px;
    line-height: 1.45;
}

.cpt-offer__features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.cpt-offer__features--green li::before {
    background-color: #e8f8ef;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%2328a745' d='M4.5 9L1.5 6l1-1 2 2 4-4 1 1z'/%3E%3C/svg%3E");
}

.cpt-offer__features--blue li::before {
    background-color: #e8f0fe;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23007bff' d='M4.5 9L1.5 6l1-1 2 2 4-4 1 1z'/%3E%3C/svg%3E");
}

.cpt-offer__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    text-align: center;
}

.cpt-offer__price-label {
    color: #9ca3af;
    font-size: 13px;
}

.cpt-offer__price strong {
    margin: 4px 0;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.cpt-offer__price--green strong { color: #02c060; }
.cpt-offer__price--blue strong { color: #007bff; }

.cpt-offer__price-meta {
    color: #9ca3af;
    font-size: 12px;
    line-height: 1.4;
}

.cpt-offer__note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.cpt-offer__note--green {
    background: #f0faf4;
    color: #374151;
}

.cpt-offer__note--blue {
    background: #f0f6ff;
    color: #374151;
}

.cpt-offer__note img {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    max-width: none;
    margin-top: 2px;
    opacity: 0.85;
}

.cpt-offer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    margin-top: auto;
    padding: 0 24px;
    border: 0;
    border-radius: 12px;
    color: #ffffff !important;
    font-family: Onest, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: opacity 0.2s, transform 0.2s;
}

.cpt-offer__btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    color: #ffffff;
}

.cpt-offer__btn--green { background: #02c060; }
.cpt-offer__btn--blue { background: #007bff; }

.cpt-offer__btn img {
    width: 22px;
    height: 22px;
    max-width: none;
    filter: brightness(0) invert(1);
}

.cpt-compare {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 32px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.cpt-compare__title {
    margin: 0 0 24px;
    color: #1a1a2e;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

.cpt-compare__table-wrap {
    overflow-x: auto;
}

.cpt-compare__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.cpt-compare__table th,
.cpt-compare__table td {
    padding: 14px 20px;
    border-bottom: 1px solid #eef1f5;
    text-align: center;
}

.cpt-compare__table th:first-child,
.cpt-compare__table td:first-child {
    text-align: left;
    color: #374151;
    font-weight: 600;
}

.cpt-compare__table thead th {
    border-bottom: 2px solid #eef1f5;
    background: #fafbfc;
    color: #6b7280;
    font-size: 14px;
    font-weight: 700;
}

.cpt-compare__table tbody tr:last-child td {
    border-bottom: 0;
}

.cpt-compare__col--green {
    color: #02c060;
    font-weight: 600;
}

.cpt-compare__col--blue {
    color: #007bff;
    font-weight: 600;
}

.cpt-consult {
    display: flex;
    flex-direction: row;
    gap: 18px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 24px 28px;
    border-radius: 14px;
    background: #fff9f0;
}

.cpt-consult__main {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

.cpt-consult__icon {
    display: flex;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff0e0;
    color: #f59e0b;
    font-size: 20px;
    font-weight: 800;
}

.cpt-consult__text {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    color: #374151;
    font-size: 14px;
    line-height: 1.55;
}

.cpt-consult__text strong {
    display: block;
    margin-bottom: 4px;
    color: #1a1a2e;
    font-size: 15px;
}

.cpt-consult__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 22px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #ffffff;
    color: #374151 !important;
    font-family: Onest, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cpt-consult__btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(35, 127, 237, 0.34);
    color: #1a1a2e; !important;
}

.page-cartridge .related-cartridges {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.page-cartridge .related-cartridges h2 {
    margin: 0 0 20px;
    font-size: 22px;
    text-align: left;
}

@media (max-width: 1024px) {
    .cpt-hero {
        grid-template-columns: 1fr 1fr;
    }

    .cpt-hero__image {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .cpt-benefits {
        grid-column: 1 / -1;
    }

    .cpt-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .body--cartridge {
        padding: 24px 16px 40px;
    }

    .page-home.page-cartridge .body--cartridge {
        padding: 24px 16px 40px;
    }

    .cpt-hero {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 20px;
    }

    .cpt-hero__title {
        font-size: 24px;
    }

    .cpt-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cpt-offers {
        grid-template-columns: 1fr;
    }

    .cpt-offer__body {
        grid-template-columns: 1fr;
    }


    .cpt-consult {
        padding: 20px;
		display: flex;
		flex-direction: column;
    }

    .cpt-consult__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cpt-benefits__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .cpt-offer {
        padding: 20px;
    }

    .cpt-offer__price strong {
        font-size: 30px;
    }

    .cpt-compare {
        padding: 24px 16px;
    }

    .cpt-compare__table th,
    .cpt-compare__table td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* --- Legacy cartridge styles (other pages) --- */

.cartridge-hero {
    display: flex;
    align-items: stretch;
    gap: 46px;
    max-width: 1400px;
    margin: 0 auto 36px;
    padding: 14px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.cartridge-hero__image,
.cartridge-hero__content {
    flex: 1 1 360px;
    border-radius: 8px;
    background: #ffffff;
}

.cartridge-hero__image {
    display: flex;
    min-height: 220px;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.cartridge-hero__image img {
    max-height: 267px;
    object-fit: contain;
}

.cartridge-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px 24px;
}

.cartridge-hero__content h2 {
    margin: 0 0 10px;
    color: #2c4055;
    font-size: 34px;
    line-height: 1.12;
}

.cartridge-summary div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 7px 0;
    border-bottom: 1px solid #e5eef5;
}

.cartridge-summary div:last-child {
    border-bottom: 0;
}

.cartridge-summary span,
.cartridge-offer__price span,
.muted {
    color: var(--muted);
}

.cartridge-summary strong {
    color: #2c4055;
    font-size: 16px;
}

.cartridge-price {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 0 22px;
    border-radius: 8px;
    background: #2c4055;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
}

.cartridge-offer {
    display: flex;
    flex: 1 1 420px;
    flex-direction: column;
    padding: 28px;
    border: 1px solid #dbeaf3;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.cartridge-offer__top,
.cartridge-offer__head {
    display: flex;
    gap: 18px;
}

.cartridge-offer__top {
    flex-direction: column;
    margin-bottom: 22px;
}

.cartridge-offer__head {
    align-items: flex-start;
    padding-bottom: 18px;
    border-bottom: 1px solid #e6edf5;
}

.cartridge-offer__label,
.cartridge-offer__badges span,
.model-tags span,
.quick-links a,
.cross-links__list a,
.price-benefits span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #eef7fc;
    color: var(--blue);
}

.cartridge-offer__label {
    align-self: flex-start;
    min-height: 28px;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.cartridge-offer__icon {
    display: inline-flex;
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #eef7fc;
}

.cartridge-offer--buy .cartridge-offer__icon,
.cartridge-offer__icon--buy {
    background: #e6faf0;
}

.cartridge-offer__icon img {
    width: 42px;
    height: 42px;
}

.cartridge-offer__price {
    display: flex;
    min-width: 126px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    text-align: center;
}

.cartridge-offer__price strong {
    color: #000000;
    font-size: 28px;
    line-height: 1;
}

.cartridge-offer__badges,
.cartridge-offer__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 12px 0 0;
}

.cartridge-offer__badges span,
.model-tags span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 14px;
}

.cartridge-offer--buy .cartridge-offer__button,
.fix-news a {
    background: var(--green);
    color: #ffffff !important;
}

.cartridge-offer--buy .cartridge-offer__button:hover,
.fix-news a:hover {
    background: #02a050;
}

.related-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px;
}

.related-card span {
    color: #000000;
    font-size: 22px;
    font-weight: 700;
    white-space: nowrap;
}

.fix-body {
    padding: 48px 20px 70px;
    background: #ffffff;
}

.fix-layout {
    color: #24364d;
}

.fix-layout h2,
.fix-layout h3,
.fix-layout p {
    margin-top: 0;
}

.fix-hero {
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 250px;
    position: relative;
}

.fix-hero__content,
.fix-hero__image {
    flex: 1 1 420px;
    min-width: 0;
}

.fix-hero__image {
    position: relative;
}

.fix-hero__content h2 {
    margin-bottom: 22px;
    color: #24364d;
    font-size: 46px;
    line-height: 1.22;
}

.fix-title-line {
    display: block;
    width: 52px;
    height: 5px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: #2485f3;
}

.fix-hero__content p {
    max-width: 560px;
    margin-bottom: 32px;
    color: #31445b;
    font-size: 16px;
}

.fix-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 22px 24px;
    border: 1px solid #a1d3ff;
    border-radius: 8px;
    background: #ffffff;
    /* Абсолютное позиционирование поверх изображения */
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    border-radius: 12px;
    padding: 12px 20px;
    width: calc(100% - 48px);
    z-index: 2;
}

.fix-hero__badges div,
.fix-card,
.fix-cta,
.fix-cta > div,
.fix-process li {
    display: flex;
    align-items: center;
    gap: 14px;
}

.fix-hero__badges div {
    flex: 1 1 150px;
}

.fix-hero__badges img,
.fix-card > img,
.fix-cta img {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    object-fit: contain;
}
.fix-hero__badges img[src$="time.svg"],
.fix-card > img[src$="time.svg"] {
    filter: none;
}

.fix-hero__badges img, .fix-benefits h2 img, .fix-process h2 img {
    filter: brightness(0) saturate(100%) invert(42%) sepia(86%) saturate(2360%) hue-rotate(203deg) brightness(101%) contrast(95%);
}


.fix-hero__image {
    display: flex;
    min-height: 430px;
    align-items: center;
    justify-content: center;
}

.fix-hero__image img {
    width: 100%;
    max-width: 500px;
    object-fit: contain;
}

.fix-benefits,
.fix-info-grid,
.fix-cta,
.fix-news,
.firmware-price,
.fix-faq,
.fix-additional-info {
    margin-top: 52px;
}

.fix-benefits h2,
.fix-process h2,
.fix-guarantee h2,
.fix-layout section:not(.fix-cta) h2,
.fix-additional-info h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 26px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.25;
    text-align: center;
}

.fix-card {
    min-height: 96px;
    padding: 20px 22px;
}

.fix-card h3 {
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 16px;
}

.fix-card p {
    margin-bottom: 0;
    color: #364a60;
    font-size: 13px;
}

.fix-info-grid {
    display: flex;
    gap: 52px;
}

.fix-process,
.fix-guarantee {
    flex: 1 1 340px;
}

.fix-process {
    padding-right: 46px;
    border-right: 1px solid #e0e8f1;
}

.fix-process ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.fix-guarantee ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.fix-guarantee li {
    position: relative;
    padding-left: 34px;
}

.fix-guarantee li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 10px;
    border-left: 3px solid var(--green);
    border-bottom: 3px solid var(--green);
    transform: rotate(-45deg);
}

.fix-cta {
    justify-content: space-between;
    padding: 28px 36px;
    border: 1px solid #b9d9fb;
    border-radius: 8px;
    background: linear-gradient(180deg, #f8fcff 0%, #eff7ff 100%);
}

.fix-cta > div {
    flex: 1 1 180px;
}

.fix-cta a {
    flex: 0 0 auto;
    background: var(--blue-dark);
    color: #ffffff;
}

.fix-news {
    padding: 28px 32px;
    border-radius: 16px;
    background: #f0f6fa;
}

.footer {
    width: 100%;
    margin-top: auto;
    background: #2c4055;
}

.footer__content {
    display: flex;
    min-height: 100px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 50px;
    color: #ffffff;
    font-family: Onest, sans-serif;
}

.footer__contacts,
.footer__time,
.footer__yandex {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__contacts a {
    color: #ffffff;
}

.ring {
    width: 40px;
    transition: opacity 0.25s;
}

.ring:hover {
    opacity: 0.72;
}

.section {
    padding: 60px 20px;
}

.white {
    background: #ffffff;
}

.gray {
    background: #f0f0f0;
}

.content_repair,
.content_top {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.content_top {
    flex-direction: column;
}

.img_left,
.img_right {
    width: 100%;
    max-width: 570px;
    margin: 20px;
}
.img_left {
    float: left;
}

.img_right {
    float: right;
}

.img_center {
    display: block;
    margin: 0 auto;
}

.rounded {
    border-radius: 15px;
}

.service-page {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.service-hero,
.service-panel {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.service-hero {
    display: flex;
    align-items: center;
    gap: 42px;
    padding: 42px;
}

.service-hero__content,
.service-hero__media {
    flex: 1 1 420px;
    min-width: 0;
}

.service-hero h2 {
    margin: 0 0 20px;
    color: var(--ink);
    font-size: 44px;
    line-height: 1.18;
}

.service-hero p {
    margin: 0 0 26px;
    color: var(--text);
    font-size: 17px;
}

.service-hero__media {
    display: flex;
    min-height: 300px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.service-hero__media img {
    max-height: 260px;
    object-fit: contain;
}

.service-panel {
    padding: 34px;
}

.service-panel h2 {
    margin: 0 0 22px;
    color: var(--ink);
    font-size: 28px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-list li {
    position: relative;
    flex: 1 1 280px;
    padding: 22px 22px 22px 50px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fbfdff;
}

.service-list li::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 22px;
    width: 14px;
    height: 9px;
    border-left: 3px solid var(--green);
    border-bottom: 3px solid var(--green);
    transform: rotate(-45deg);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.service-card {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #ffffff;
}

.service-card h3 {
    margin: 0 0 10px;
    color: var(--ink);
}

.service-card p {
    flex: 1 1 auto;
    margin: 0 0 20px;
}

.service-card .service-link {
    margin-top: auto;
    align-self: center;
}

	.service-card__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.home-services {
    max-width: 1400px;
    margin: 40px auto;
    padding: 40px 32px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.home-services h2 {
    margin: 0 0 26px;
    color: var(--ink);
    font-size: 32px;
    text-align: center;
}

@media (max-width: 1300px) {
    .info {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .fix-hero,
    .fix-info-grid,
    .cartridge-hero,
    .service-hero {
        flex-direction: column;
    }

    .fix-process {
        padding-right: 0;
        border-right: 0;
    }
    
    /* На мобильных отключаем абсолютное позиционирование бейджей */
    .fix-hero__badges {
        position: absolute;
        bottom: 290px;
        left: 4px;
        width: auto;
        max-width: calc(100% - 32px);
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.42);
        backdrop-filter: blur(1px);
        border-radius: 12px;
        margin-top: 0;
    }
	 .fix-hero__badges div {
        flex: none;
        gap: 10px;
    }

    .fix-hero__badges img {
        width: 32px !important;
        height: 32px !important;
    }

    .fix-hero__badges span {
        font-size: 13px;
        line-height: 1.3;
    }
}

@media (max-width: 1050px) {
    .page-price .search-field {
        position: relative;
        width: 100%;
    }

    .page-price #search__input {
        width: 100%;
        padding-right: 48px;
        background-color: #ffffff;
        background-image: none;
    }

    .page-price .search__button--inline {
        position: absolute;
        right: 4px;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        min-height: 40px;
        padding: 0;
        border: 0;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .page-price .search__button--inline .search__text {
        display: none;
    }

    .page-price .search__button--inline .search__image {
        display: block;
        width: 22px;
        height: 22px;
    }

    .page-price .price-search-sticky .search {
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .price-search-sticky {
        top: 70px; /* хедер 70px на мобильном */
    }

    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: #ffffff;
        height: 70px;           /* фиксируем высоту хедера */
        box-sizing: border-box;
        padding: 10px 0 !important;
    }
	.logocenter {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        width: max-content;
        max-width: calc(100vw - 120px); /* защита от вылезания за границы */
        margin: 0;
        text-align: center;
		height: auto;                        /* высота по содержимому */
        line-height: 1.2;
        top: 50%;
        transform: translate(-50%, -50%); 
    }


    .navigation {
        display: none;
    }

    .dropdown {
		margin-right: auto;
		display: flex;           /* делаем flex-контейнером */
        align-items: center;    /* вертикальное центрирование */
        height: 100%;
	}

    .header__right {
		height: auto !important;             /* убираем фиксированную высоту 76px/60px */
        min-height: unset;
        position: relative;
        display: flex;
        justify-content: flex-end; /* прижимаем правую группу к краю */
        align-items: center;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .info__phone {
        display: inline-flex;
    }

    .header-social {
        margin: 0;
        gap: 8px;
        display: flex;
    }
		    .content_repair {
        flex-direction: column;
        background: #fff;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
    }

    .content_repair img {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
	.fix-hero__content,
	.fix-hero__image {
    flex: 1 1 250px;
    min-width: 0;
	}
	
}

@media (max-width: 760px) {
    #menu {
        max-width: calc(100vw - 32px);
    }

    .body {
        padding: 32px 16px;
        font-size: 16px;
    }

    .main,
    .main__title {
        min-height: calc(100vh - 64px);
    }

    .main__title {
        justify-content: flex-start;
        padding: 14vh 22px 40px;
    }

    .hero-kicker {
        display: none;
    }

    .hero-title {
        max-width: 360px;
        font-size: 32px;
    }

    .hero-subtitle {
        max-width: 360px;
        font-size: 17px;
    }

    .hero-actions,
    .fix-cta,
    .cartridge-offer__head {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-button,
    .quick-links a,
    .cross-links__list a,
    .price-benefits span,
    .fix-cta a,
    .service-link {
        width: 100%;
    }

    .services,
    .service-process,
    .semantic-block,
    .faq-section,
    .home-services {
        margin: 0px 0px;
        padding: 24px 15px;
        border-radius: 16px;
    }

    .content-block h2,
    .services h2,
    .service-process h2,
    .semantic-block h2,
    .faq-section h2,
    .home-services h2 {
        font-size: 24px;
    }

    .stats-card,
    .fix-card {
        align-items: flex-start;
    }

    .service-process .process-grid {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .process-step + .process-step {
        border-left: none;
        border-top: 1px solid var(--line);
    }

    .process-step + .process-step::before {
        left: 50%;
        top: -16px;
        transform: translateX(-50%);
        content: "›";
        rotate: 90deg;
    }

    .fix-body {
        padding: 0px 20px 46px;
    }

    .fix-hero__content h2,
    .service-hero h2 {
        font-size: 31px;
        text-align: center;
    }

    .fix-title-line {
        margin-right: auto;
        margin-left: auto;
    }

    .fix-hero__badges {
        padding: 18px;
    }

    .price-table {
        display: block;
        overflow-x: auto;
        white-space: normal;
    }

    .price-table th,
    .price-table td {
        min-width: 120px;
        word-break: break-word;
    }

    .footer__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 18px;
    }

    .footer__contacts,
    .footer__time,
    .footer__yandex {
        justify-content: center;
    }

    .service-hero,
    .service-panel {
        padding: 24px 18px;
    }	
}

@media (max-width: 520px) {
    .logocenter {
        width: 108px;
        font-size: 20px;
        letter-spacing: 0.11em;
    }

    .header-social {
        gap: 6px;
    }

    .header-social a {
        width: 32px;
        height: 32px;
    }

    .page-title {
        font-size: 20px;
    }

    .price-brand-link {
        width: 120px;
    }

    .brand-logo {
        max-width: 81px;
        max-height: 31px;
    }
}


/* Перестройка IT-аутсорсинг блока для мобильных — без grid */
@media (max-width: 1300px) {
    .service-hero {
        display: flex;
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
		gap: 26px;
    }

    /* Делаем дочерние элементы .service-hero__content прямыми участниками flex-раскладки */
    .service-hero__content {
        display: contents;
    }

    /* Заголовок — первый */
    .service-hero__content h2 {
        order: 1;
        margin: 0;
        padding: 0px 0px 0 00px;
        text-align: center;
        font-size: 28px;
    }

    /* Картинка — второй элемент, без отступов */
    .service-hero__media {
        order: 2;
        margin: 0;
        padding: 0;
        line-height: 0;
        display: block;
		flex: none;
		min-height: min-content;
    }

    .service-hero__media img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    /* Текст — третий */
    .service-hero__content p {
        order: 3;
        padding: 0px 20px 0 0px;
        margin: 0;
        text-align: center;
    }

    /* Кнопка — четвёртая */
    .service-hero__content .service-link {
        order: 4;
        margin: 20px;
        text-align: center;
        width: auto;
    }

    .service-panel:first-of-type {
        margin-top: 24px;
    }
}

/* --- Разделители для карточек (заправка / покупка) --- */

/* Горизонтальная полоска под всем верхним блоком (иконка + заголовок) */
.cpt-offer__header {
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
    margin-bottom: 6px;
}

/* Вертикальная полоска между списком преимуществ и ценой */
.cpt-offer__features {
    border-right: 1px solid var(--line);
    padding-right: 20px;
}

/* Небольшой отступ для блока цены */
.cpt-offer__price {
    padding-left: 8px;
}

/* Мобильная адаптация — вертикальная полоска превращается в горизонтальную */
@media (max-width: 768px) {
    .cpt-offer__body {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cpt-offer__features {
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding-right: 0;
        padding-bottom: 16px;
        margin-bottom: 8px;
    }

    .cpt-offer__price {
        padding-left: 0;
    }
}

/* ================================================================
   ГЛАВНАЯ СТРАНИЦА — новый дизайн (см. Claude Design)
   Все правила ниже намеренно ограничены селектором .page-home,
   чтобы не задевать остальные страницы сайта.
   ================================================================ */

@font-face {
    font-family: Montserrat;
    src: url("../fonts/Montserrat-Medium.ttf");
}

.page-home {
    background: #ffffff;
}

.page-home .body {
    padding: 0;
    text-align: left;
}

.page-home .kicker {
    margin: 0 0 18px;
    color: var(--muted);
    font-family: Montserrat, monospace;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* --- Header nav (навигация в шапке) --- */

.page-home .header {
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-home .navigation__link {
    color: #5a6b7e;
    font-weight: 400;
    opacity: 1;
}

.page-home .navigation__link:hover,
.page-home .navigation__link:focus {
    color: var(--ink);
    opacity: 1;
}

.page-home .navigation__link::after {
    display: none;
}

.page-home .navigation__link.active {
    color: var(--ink);
    font-weight: 700;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 2px;
}

@media (min-width: 1051px) {
    .page-home .navigation {
        grid-column: 2;
        justify-content: center;
    }

    .page-home .info {
        grid-column: 3;
        align-items: flex-end;
    }
}

/* --- Мобильная быстрая навигация под шапкой --- */

.page-home .quicknav {
    display: none;
}

@media (max-width: 1050px) {
    .page-home .quicknav {
        display: flex;
        gap: 18px;
        padding: 12px 18px;
        border-bottom: 1px solid #e3ecf4;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 13px;
        letter-spacing: 0.08em;
    }

    .page-home .quicknav__link {
        color: #5a6b7e;
    }

    .page-home .quicknav__link.active {
        color: var(--ink);
        font-weight: 700;
        border-bottom: 2px solid var(--orange);
        padding-bottom: 2px;
    }
}

/* --- Hero --- */

.page-home .main {
    min-height: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: #eef4f9 url("../img/main.jpg") center / cover no-repeat;
    color: inherit;
    position: relative;
}

.page-home .main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(238,244,249,0.97) 0%,
        rgba(238,244,249,0.92) 26%,
        rgba(238,244,249,0.78) 44%,
        rgba(238,244,249,0.5) 60%,
        rgba(238,244,249,0.22) 76%,
        rgba(238,244,249,0.06) 90%,
        rgba(238,244,249,0) 100%);
}

.page-home .main__title {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 0;
    max-width: 680px;
    margin: 0;
    padding: 72px 48px 72px 56px;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    gap: 20px;
}

.page-home .hero-kicker,
.page-home .hero-subtitle,
.page-home .hero-title {
    text-shadow: none;
    filter: none;
}

.page-home .hero-kicker {
    margin: 0;
    color: var(--blue-dark);
    font-family: Montserrat, monospace;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.page-home .hero-title {
    max-width: none;
    margin: 0;
    color: var(--ink);
    font-size: 50px;
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.page-home .hero-subtitle {
    max-width: 560px;
    margin: 0;
    color: #4a5d72;
    font-size: 18px;
    line-height: 1.65;
    text-align: left;
}

.page-home .hero-actions {
    justify-content: flex-start;
    gap: 0;
}

.page-home .hero-button {
    min-height: 58px;
    padding: 0 28px;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
}

.page-home .hero-button:hover {
    transform: none;
    box-shadow: none;
}

.page-home .hero-button--primary {
    background: var(--blue-dark);
    color: #ffffff !important;
    gap: 14px;
}

.page-home .hero-button--secondary {
    border: 1px solid #c3d2e0;
    border-left: none;
    background: #ffffff;
    color: var(--ink) !important;
}

.page-home .hero-button__icon,
.page-home .hero-button__phone {
    display: none;
}

.page-home .hero-media {
    display: none;
}

@media (max-width: 1050px) {
    .page-home .main {
        background: #eef4f9;
    }

    .page-home .main::before {
        display: none;
    }

    .page-home .hero-media {
        display: block;
        height: 200px;
        background: #dfe8f0 url("../img/main_mobile.jpg") center 22% / cover no-repeat;
    }

    .page-home .main__title {
        max-width: 560px;
        padding: 26px 20px 34px;
        background: radial-gradient(120% 100% at 0% 0%, #ffffff 0%, #eef4f9 70%);
    }

    .page-home .hero-title {
        font-size: 34px;
    }

    .page-home .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-home .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }

    .page-home .hero-button {
        min-height: 54px;
        width: 100%;
        justify-content: space-between;
    }

    .page-home .hero-button--secondary {
        border: 2px solid #6b7785;
        justify-content: space-between;
    }

    .page-home .hero-button__label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .page-home .hero-button__icon {
        display: inline-block;
        width: 18px;
        height: 18px;
    }

    .page-home .hero-button__phone {
        display: inline;
        color: #5a6b7e;
        font-weight: 400;
        font-size: 14px;
    }
}

/* --- Полоса преимуществ --- */

.page-home .stats-section {
    max-width: none;
    margin: 0;
}

.page-home .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    border-top: 3px solid var(--blue-dark);
    background: #ffffff;
    gap: 0;
}

.page-home .stats-card {
    display: block;
    min-height: 0;
    padding: 28px 32px;
    border: 0;
    border-right: 1px solid #d7e3ee;
    border-radius: 0;
    box-shadow: none;
}

.page-home .stats-card:last-child {
    border-right: 0;
}

.page-home .stats-card__content strong {
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 34px;
    letter-spacing: -0.02em;
}

.page-home .stats-card__content span {
    color: #5a6b7e;
    font-size: 14px;
}

@media (max-width: 760px) {
    .page-home .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-home .stats-card {
        padding: 18px 20px;
        border-right: 1px solid #d7e3ee;
        border-bottom: 1px solid #d7e3ee;
    }

    .page-home .stats-card:nth-child(2n) {
        border-right: 0;
    }

    .page-home .stats-card:nth-child(3),
    .page-home .stats-card:nth-child(4) {
        border-bottom: 0;
    }

    .page-home .stats-card__content strong {
        font-size: 26px;
    }
}

/* --- Быстрая заправка (интро) --- */

.page-home .services {
    max-width: 1400px;
    padding: 56px;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #e3ecf4;
}

.page-home .services h2 {
    max-width: 760px;
    margin: 0 0 20px;
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-align: left;
}

.page-home .section-lead {
    max-width: 720px;
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
    text-align: left;
}

@media (min-width: 1300px) {
    .page-home .services {
        display: grid;
        grid-template-columns: 5fr 7fr;
        gap: 56px;
        align-items: start;
    }

    .page-home .services h2 {
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 760px) {
    .page-home .services {
        padding: 30px 20px;
    }

    .page-home .services h2 {
        font-size: 24px;
    }

    .page-home .section-lead {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* --- Что входит в обслуживание картриджа --- */

.page-home .service-process {
    max-width: 1400px;
    padding: 56px;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #e3ecf4;
}

.page-home .service-process h2 {
    margin: 0 0 28px;
    color: var(--muted);
    font-family: Montserrat, monospace;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-align: left;
    text-transform: uppercase;
}

.page-home .service-process .process-grid {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
}

.page-home .process-step {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    gap: 24px;
    padding: 22px 0;
    border-top: 1px solid #e3ecf4;
}

.page-home .service-process .process-grid > .process-step:last-child {
    border-bottom: 1px solid #e3ecf4;
}

.page-home .process-step + .process-step::before {
    display: none;
}

.page-home .process-step__photo {
    width: 130px;
    height: 130px;
    border-radius: 8px;
    object-fit: cover;
}

@media (min-width: 1300px) {
    .page-home .service-process {
        display: grid;
        grid-template-columns: 5fr 7fr;
        gap: 56px;
        align-items: start;
    }

    .page-home .service-process h2 {
        margin: 0;
    }

    .page-home .process-step {
        grid-template-columns: 120px 1fr;
        gap: 20px;
    }

    .page-home .process-step__photo {
        width: 120px;
        height: 88px;
    }
}

.page-home .process-step__body h3 {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 20px;
}

.page-home .process-step__body p {
    margin: 0;
    color: #5a6b7e;
    font-size: 15px;
    line-height: 1.65;
}

@media (max-width: 760px) {
    .page-home .service-process {
        padding: 30px 20px;
    }

    .page-home .process-step {
        grid-template-columns: 92px 1fr;
        gap: 14px;
        padding: 16px 0;
    }

    .page-home .process-step__photo {
        width: 92px;
        height: 92px;
    }

    .page-home .process-step__body h3 {
        font-size: 17px;
    }

    .page-home .process-step__body p {
        font-size: 14px;
    }
}

/* --- С какими проблемами обращаются --- */

.page-home .semantic-block {
    max-width: 1400px;
    padding: 56px;
    border-radius: 0;
    box-shadow: none;
    background: var(--soft);
    border-bottom: 1px solid #e3ecf4;
}

.page-home .semantic-block h2 {
    margin: 0 0 28px;
    color: var(--muted);
    font-family: Montserrat, monospace;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-align: left;
    text-transform: uppercase;
}

.page-home .keyword-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.page-home .keyword-grid > * {
    flex: none;
}

.page-home .problem-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border: 1px solid #e3ecf4;
    border-radius: 10px;
    background: #ffffff;
    text-align: left;
}

.page-home .problem-card__photo {
    width: 130px;
    height: 130px;
    border-radius: 8px;
    object-fit: cover;
}

.page-home .problem-card__body h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 18px;
}

.page-home .problem-card__body p {
    margin: 0;
    color: #5a6b7e;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 760px) {
    .page-home .semantic-block {
        padding: 30px 20px;
    }

    .page-home .keyword-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .page-home .problem-card {
        grid-template-columns: 96px 1fr;
        gap: 14px;
        padding: 14px;
    }

    .page-home .problem-card__photo {
        width: 96px;
        height: 96px;
    }

    .page-home .problem-card__body h3 {
        font-size: 16px;
    }

    .page-home .problem-card__body p {
        font-size: 14px;
    }
}

/* --- Дополнительные направления сервиса --- */

.page-home .home-services {
    max-width: 1400px;
    padding: 56px;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #e3ecf4;
}

.page-home .home-services h2 {
    margin: 0 0 28px;
    color: var(--muted);
    font-family: Montserrat, monospace;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-align: left;
    text-transform: uppercase;
}

.page-home .service-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    align-items: flex-start;
    text-align: left;
}

.page-home .service-card__image {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

@media (min-width: 761px) {
    .page-home .service-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .page-home .service-card {
        flex: none;
    }
}

.page-home .service-card h3 {
    margin: 18px 0 8px;
    font-size: 22px;
}

.page-home .service-card p {
    margin: 0 0 14px;
    color: #5a6b7e;
    font-size: 15px;
    line-height: 1.65;
}

.page-home .service-card .service-link {
    align-self: flex-start;
    width: auto;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--blue-dark) !important;
    font-weight: 700;
    justify-content: flex-start;
}

.page-home .service-card .service-link:hover {
    color: var(--blue) !important;
    transform: none;
    box-shadow: none;
}

@media (max-width: 760px) {
    .page-home .home-services {
        padding: 30px 20px;
    }

    .page-home .service-card__image {
        height: 180px;
    }

    .page-home .service-card h3 {
        font-size: 18px;
    }
}

/* --- Частые вопросы --- */

.page-home .faq-section {
    max-width: 1400px;
    padding: 56px;
    border-radius: 0;
    box-shadow: none;
}

.page-home .faq-section h2 {
    margin: 0 0 28px;
    color: var(--muted);
    font-family: Montserrat, monospace;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-align: left;
    text-transform: uppercase;
}

@media (min-width: 1300px) {
    .page-home .faq-section {
        display: grid;
        grid-template-columns: 5fr 7fr;
        gap: 56px;
        align-items: start;
    }

    .page-home .faq-section h2 {
        margin: 0;
    }
}

.page-home .faq-item {
    padding: 22px 0;
    border: 0;
    border-top: 1px solid #e3ecf4;
    border-radius: 0;
    box-shadow: none;
}

.page-home .faq .faq-item:last-child {
    border-bottom: 1px solid #e3ecf4;
}

.page-home .faq-item h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 20px;
}

.page-home .faq-item p {
    margin: 0;
    color: #5a6b7e;
    font-size: 15px;
    line-height: 1.65;
}

@media (max-width: 760px) {
    .page-home .faq-section {
        padding: 30px 20px;
    }

    .page-home .faq-item h3 {
        font-size: 17px;
    }

    .page-home .faq-item p {
        font-size: 14px;
    }
}

/* --- Подвал --- */

.page-home .footer {
    background: var(--ink);
}

.page-home .footer__content {
    max-width: 1400px;
    align-items: center;
    padding: 36px 56px;
}

.page-home .footer__kicker {
    margin: 0 0 8px;
    color: #8fa5bb;
    font-family: Montserrat, monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.page-home .footer__contacts,
.page-home .footer__time {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    font-size: 15px;
    line-height: 1.7;
}

.page-home .footer__contacts a {
    color: #7fc0f7;
}

.page-home .footer__yandex {
    margin-left: auto;
}

.page-home .footer__yandex iframe {
    border-radius: 4px;
    background: rgba(255,255,255,0.12);
}

@media (max-width: 760px) {
    .page-home .footer__content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 28px 20px;
        gap: 22px;
    }

    .page-home .footer__yandex {
        margin-left: 0;
    }
}

/* ================================================================
   ВНУТРЕННИЕ СТРАНИЦЫ СЕРВИСОВ (page-it — IT-аутсорсинг и т.п.)
   ================================================================ */

.page-it .it-hero {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
    background: var(--soft);
}

.page-it .it-hero__content h1 {
    max-width: 640px;
    margin: 0 0 20px;
    color: var(--ink);
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: -0.015em;
}

.page-it .it-hero__content p {
    max-width: 540px;
    margin: 0 0 28px;
    color: #4a5d72;
    font-size: 17px;
    line-height: 1.65;
}

.page-it .it-hero__media img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.page-it .hero-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 56px;
    padding: 0 26px;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
    font-weight: 700;
}

.page-it .hero-button--primary {
    background: var(--blue-dark);
    color: #ffffff !important;
}

.page-it .hero-button:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.92;
}

.page-it .it-panel {
    display: block;
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
    border-bottom: 1px solid #e3ecf4;
}

.page-it .it-panel--soft {
    background: var(--soft);
}

.page-it .it-list__item {
    padding: 22px 0;
    border-top: 1px solid #e3ecf4;
}

.page-it .it-list > .it-list__item:last-child {
    border-bottom: 1px solid #e3ecf4;
}

.page-it .it-list__item h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 20px;
}

.page-it .it-list__item p {
    margin: 0;
    color: #5a6b7e;
    font-size: 15px;
    line-height: 1.65;
}

.page-it .it-why {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
}

.page-it .it-why--soft {
    max-width: none;
    background: var(--soft);
}

.page-it .it-why--soft > * {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.page-it .it-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.page-it .it-why__card {
    padding: 28px;
    border: 1px solid #e3ecf4;
    border-radius: 10px;
    background: #ffffff;
}

.page-it .it-why__card h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 18px;
}

.page-it .it-why__card p {
    margin: 0;
    color: #5a6b7e;
    font-size: 15px;
    line-height: 1.6;
}

@media (min-width: 1051px) {
    .page-it .it-hero {
        flex-direction: row;
        align-items: center;
        gap: 56px;
        padding: 64px 56px;
    }

    .page-it .it-hero__content,
    .page-it .it-hero__media {
        flex: 1 1 0;
        min-width: 0;
    }
}

@media (min-width: 1300px) {
    .page-it .it-panel {
        display: grid;
        grid-template-columns: 5fr 7fr;
        gap: 56px;
        align-items: start;
    }

    .page-it .it-panel .kicker {
        margin: 0;
    }
}

@media (max-width: 760px) {
    .page-it .it-hero {
        padding: 30px 20px;
        gap: 20px;
    }

    .page-it .it-hero__content h1 {
        font-size: 28px;
    }

    .page-it .it-hero__content p {
        font-size: 15px;
    }

    .page-it .it-panel {
        padding: 30px 20px;
    }

    .page-it .it-why {
        padding: 30px 20px;
    }

    .page-it .it-why__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ================================================================
   КУПИТЬ КАРТРИДЖ (page-kupit)
   ================================================================ */

.page-kupit .kupit-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
    background: var(--soft);
}

.page-kupit .kupit-hero h1 {
    max-width: 720px;
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.page-kupit .kupit-hero p {
    max-width: 640px;
    margin: 0;
    color: #4a5d72;
    font-size: 16px;
    line-height: 1.6;
}

.page-kupit .kupit-hero p a {
    color: var(--blue-dark);
    font-weight: 700;
}

.page-kupit .kupit-search {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 56px;
    background: #ffffff;
    box-shadow: none;
    position: static;
}

.page-kupit .search-field {
    width: 100%;
}

.page-kupit #search__input {
    width: 100%;
    min-height: 52px;
    padding: 0 20px;
    border: 1px solid #dce6ef;
    border-radius: 10px;
    background: #ffffff url("../img/poisk.svg") 18px center / 18px no-repeat;
    padding-left: 48px;
    color: var(--ink);
    font-size: 15px;
}

.page-kupit #search__input::placeholder {
    color: #9aabbb;
    opacity: 1;
}

.page-kupit .search__button--inline {
    display: none;
}

.page-kupit .kupit-brands {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 56px 56px;
}

.page-kupit .kupit-brands .kicker,
.page-kupit .price-brand-section .kicker {
    margin: 0 0 18px;
}

.page-kupit .price-brand-nav {
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 14px;
}

.page-kupit .price-brand-link {
    width: auto;
    min-height: 40px;
    padding: 3px 6px;
    border: 1px solid #e3ecf4;
    border-radius: 10px;
    gap: 8px;
}

.page-kupit .price-brand-link:hover {
    border-color: var(--blue-dark);
}

.page-kupit .price-brand-link__count {
    top: -8px;
    right: -8px;
    background: var(--blue-dark);
}

.page-kupit .price-brand-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 56px 40px;
}

.page-kupit .price-brand-section h3.kicker {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-kupit .kupit-note {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
    border-top: 1px solid #e3ecf4;
}

.page-kupit .kupit-note h3 {
    margin: 0;
    color: var(--ink);
    font-size: 26px;
    line-height: 1.3;
}

.page-kupit .kupit-note p {
    margin: 0;
    color: #5a6b7e;
    font-size: 16px;
    line-height: 1.65;
}

.page-kupit .kupit-note p a {
    color: var(--blue-dark);
    font-weight: 700;
}

@media (min-width: 1300px) {
    .page-kupit .kupit-note {
        display: grid;
        grid-template-columns: 5fr 7fr;
        gap: 56px;
        align-items: center;
    }
}

@media (max-width: 760px) {
    .page-kupit .kupit-note {
        padding: 30px 20px;
    }

    .page-kupit .kupit-note h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
}

.page-kupit .price-brand-section .brand-logo-title {
    max-height: 30px;
    margin: 0;
}

.page-kupit .search__result {
    width: 100%;
    max-width: none;
    padding: 0;
    border: 0;
    background: transparent;
}

.page-kupit .faq {
    max-width: none;
    margin: 0;
}

.page-kupit .kupit-search-results {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 56px 56px;
}

@media (max-width: 760px) {
    .page-kupit .kupit-search-results {
        padding: 0 20px 30px;
    }
}

.page-kupit .model {
    padding: px 0;
    border: 0;
    border-top: 1px solid #e3ecf4;
    color: var(--ink);
}

.page-kupit .price-brand-section .search__result.active > .model:last-child,
.page-kupit .search__result.active > .model:last-child {
    border-bottom: 1px solid #e3ecf4;
}

.page-kupit .model__link {
    color: var(--blue-dark);
    font-size: 15px;
    font-weight: 600;
}

.page-kupit .model__link:hover {
    color: var(--blue-dark);
    text-decoration: underline;
}

.page-kupit .model__price {
    color: var(--ink);
    font-weight: 700;
}

@media (max-width: 1300px) {
    .page-kupit .price-brand-nav {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 760px) {
    .page-kupit .kupit-hero {
        padding: 30px 20px;
    }

    .page-kupit .kupit-hero h1 {
        font-size: 26px;
    }

    .page-kupit .kupit-search {
        padding: 20px;
    }

    .page-kupit .kupit-brands {
        padding: 0 20px 30px;
    }

    .page-kupit .price-brand-nav {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .page-kupit .price-brand-section {
        padding: 0 20px 24px;
    }
}

/* ================================================================
   ПРОШИВКА (page-fix)
   ================================================================ */

.page-fix .fix-layout {
    color: inherit;
}

.page-fix .fix-hero-new {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 420px;
    background: #dfe8f0 url("../img/fix2.jpg") center / cover no-repeat;
}

.page-fix .fix-hero-new::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(238,244,249,0.97) 0%,
        rgba(238,244,249,0.9) 30%,
        rgba(238,244,249,0.6) 52%,
        rgba(238,244,249,0.15) 74%,
        rgba(238,244,249,0) 92%);
}

.page-fix .fix-hero-new__media {
    display: none;
}

.page-fix .fix-hero-new__content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    padding: 72px 48px;
}

.page-fix .fix-hero-new__content h1 {
    margin: 0 0 16px;
    color: var(--ink);
    font-size: 42px;
    line-height: 1.12;
    letter-spacing: -0.015em;
}

.page-fix .fix-hero-new__content p {
    margin: 0;
    max-width: 480px;
    color: #4a5d72;
    font-size: 17px;
    line-height: 1.6;
}

.page-fix .fix-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    border-top: 3px solid var(--blue-dark);
    background: #ffffff;
}

.page-fix .fix-badges__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 32px;
    border-right: 1px solid #d7e3ee;
    color: var(--ink);
    font-weight: 700;
    font-size: 20px;
}

.page-fix .fix-badges__item:last-child {
    border-right: 0;
}

.page-fix .fix-badges__item img {
    width: 18px;
    height: 18px;
}

.page-fix .fix-badges__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex: 0 0 auto;
}

.page-fix .fix-badges__icon--green {
    background: #e6faf0;
}

.page-fix .fix-badges__icon--blue {
    background: #e8f0fe;
}

.page-fix .fix-benefits {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
    border-bottom: 1px solid #e3ecf4;
}

.page-fix .fix-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.page-fix .fix-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 24px;
    border: 1px solid #e3ecf4;
    border-radius: 10px;
    box-shadow: none;
}

.page-fix .fix-card > img {
    display: none;
}

.page-fix .fix-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.page-fix .fix-card__icon img {
    width: 22px;
    height: 22px;
    filter: none;
}

.page-fix .fix-card__icon--blue { background: #e8f0fe; }
.page-fix .fix-card__icon--pink { background: #fde8ef; }
.page-fix .fix-card__icon--green { background: #e6faf0; }

.page-fix .fix-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-top: auto;
    border-radius: 50%;
    background: var(--soft);
    color: var(--blue-dark);
    font-weight: 700;
}

.page-fix .fix-card h3 {
    color: var(--ink);
    font-size: 17px;
}

.page-fix .fix-card p {
    color: #5a6b7e;
}

.page-fix .fix-info-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
    gap: 56px;
    border-bottom: 1px solid #e3ecf4;
}

.page-fix .fix-layout .fix-process h2,
.page-fix .fix-layout .fix-guarantee h2 {
    justify-content: flex-start;
    margin-bottom: 22px;
    text-align: left;
    font-size: 24px;
}

.page-fix .fix-process {
    padding: 28px;
    border: 1px solid #e3ecf4;
    border-radius: 12px;
    background: #ffffff;
}

.page-fix .fix-guarantee {
    position: relative;
    padding: 28px;
    border-radius: 12px;
    background: var(--ink);
}

.page-fix .fix-guarantee__badge {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.page-fix .fix-layout .fix-guarantee h2 {
    max-width: 80%;
    color: #ffffff;
}

.page-fix .fix-guarantee li {
    color: #ffffff;
}

.page-fix .fix-guarantee li::before {
    border-color: #ffffff;
}

.page-fix .fix-process ol li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.6;
}

.page-fix .fix-process li span {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border: 0;
    background: var(--blue-dark);
    color: #fff;
    font-size: 13px;
}

.page-fix .fix-guarantee p {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.page-fix .fix-guarantee li {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 15px;
}

.page-fix .fix-additional-info {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
    background: var(--soft);
    border-bottom: 1px solid #e3ecf4;
}

.page-fix .fix-additional-info h3 {
    justify-content: flex-start;
    margin: 0 0 16px;
    text-align: left;
    font-size: 22px;
}

.page-fix .fix-additional-info p {
    max-width: 900px;
    margin: 0 0 14px;
    color: #5a6b7e;
    font-size: 15px;
    line-height: 1.65;
}

.page-fix .firmware-price {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
}

.page-fix .firmware-price .price-table {
    box-shadow: none;
    border: 1px solid #e3ecf4;
}

.page-fix .firmware-price .price-table th {
    text-align: left;
    background: var(--soft);
}

.page-fix .firmware-price .price-table th:last-child,
.page-fix .firmware-price .price-table__price {
    text-align: right;
}

.page-fix .fix-news {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 56px;
    background: var(--soft);
    border-radius: 0;
    border-top: 1px solid #e3ecf4;
    border-bottom: 1px solid #e3ecf4;
}

.page-fix .fix-news h3 {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 20px;
}

.page-fix .fix-news p {
    margin: 0;
    color: #5a6b7e;
}

.page-fix .fix-news a {
    color: var(--blue-dark);
    font-weight: 700;
}

.page-fix .fix-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
    border: 0;
    border-radius: 0;
    background: #ffffff;
}

.page-fix .fix-cta > div {
    align-items: center;
}

.page-fix .fix-cta img {
    width: 44px;
    height: 44px;
}

.page-fix .fix-cta h2 {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 24px;
    text-align: left;
}

.page-fix .fix-cta p {
    margin: 0;
    color: #5a6b7e;
}

.page-fix .fix-cta a {
    background: var(--blue-dark);
    border-radius: 0;
    box-shadow: none;
}

@media (min-width: 1051px) {
    .page-fix .fix-hero-new {
        display: flex;
        min-height: 620px;
    }

    .page-fix .fix-hero-new__content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .page-fix .fix-hero-new__content .hero-button {
        margin-top: auto;
    }

    .page-fix .fix-info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .page-fix .fix-process {
        padding-right: 28px;
        border-right: 1px solid #e0e8f1;
    }
}

@media (max-width: 760px) {
    .page-fix .fix-hero-new {
        display: flex;
        min-height: 480px;
        background-size: cover;
        background-position: 62% center;
    }

    .page-fix .fix-hero-new::before {
        background: linear-gradient(to bottom, #eef4f9 0%, rgba(238,244,249,0.95) 60%, rgba(238,244,249,0.5) 78%, rgba(238,244,249,0) 100%);
        background-size: 100% 320px;
        background-repeat: no-repeat;
        background-position: top;
    }

    .page-fix .fix-hero-new__content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: none;
        padding: 28px 20px 28px;
    }

    .page-fix .fix-hero-new__content .hero-button {
        margin-top: auto;
    }

    .page-fix .fix-hero-new__content h1 {
        font-size: 26px;
    }

    .page-fix .fix-badges {
        grid-template-columns: 1fr;
    }

    .page-fix .fix-badges__item {
        padding: 16px 20px;
        border-right: 0;
        border-bottom: 1px solid #d7e3ee;
    }

    .page-fix .fix-badges__item:last-child {
        border-bottom: 0;
    }

    .page-fix .fix-benefits,
    .page-fix .fix-info-grid,
    .page-fix .fix-additional-info,
    .page-fix .firmware-price {
        padding: 30px 20px;
    }

    .page-fix .fix-card-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .page-fix .fix-news,
    .page-fix .fix-cta {
        padding: 24px 20px;
    }
}

/* --- FAQ-аккордеон --- */

.page-fix .faq--accordion .faq-item {
    padding: 0;
}

.page-fix .faq--accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    color: var(--ink);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
}

.page-fix .faq--accordion summary::-webkit-details-marker {
    display: none;
}

.page-fix .faq--accordion summary::after {
    content: "";
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--blue-dark);
    border-bottom: 2px solid var(--blue-dark);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.page-fix .faq--accordion .faq-item[open] summary::after {
    transform: rotate(-135deg);
}

.page-fix .faq--accordion .faq-item p {
    margin: 0 0 20px;
    color: #5a6b7e;
    font-size: 15px;
    line-height: 1.6;
}

/* --- Статьи и новости / CTA: промо-карточки --- */

.page-fix .fix-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
}

.page-fix .fix-promo-card {
    padding: 28px;
    border: 1px solid #e3ecf4;
    border-radius: 12px;
    background: #ffffff;
}

.page-fix .fix-promo-card__icon {
    display: block;
    width: 44px;
    height: 44px;
    padding: 10px;
    margin-bottom: 16px;
    border-radius: 50%;
    object-fit: contain;
}

.page-fix .fix-promo-card--green .fix-promo-card__icon {
    background: #e6faf0;
}

.page-fix .fix-promo-card--blue .fix-promo-card__icon {
    background: #e8f0fe;
}

.page-fix .fix-promo-card h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 20px;
}

.page-fix .fix-promo-card p {
    margin: 0 0 16px;
    color: #5a6b7e;
    font-size: 15px;
    line-height: 1.6;
}

.page-fix .fix-promo-card__link {
    color: var(--blue-dark);
    font-weight: 700;
}

.page-fix .fix-promo-card--green .fix-promo-card__link {
    color: #02c060;
}

@media (max-width: 760px) {
    .page-fix .fix-promo-grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 16px;
    }
}

/* ================================================================
   РЕМОНТ (page-repair)
   ================================================================ */

.page-repair .repair-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 56px;
    background: var(--soft);
}

.page-repair .repair-hero h1 {
    margin: 0;
    color: var(--ink);
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.page-repair .repair-intro {
    display: block;
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
    border-bottom: 1px solid #e3ecf4;
}

.page-repair .repair-intro__media img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.page-repair .repair-intro__content h2 {
    margin: 0 0 16px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.3;
}

.page-repair .repair-intro__content p {
    margin: 0 0 14px;
    color: #5a6b7e;
    font-size: 15px;
    line-height: 1.65;
}

.page-repair .repair-intro__content p:last-child {
    margin-bottom: 0;
}

.page-repair .repair-intro__content a {
    color: var(--blue-dark);
    font-weight: 700;
}

.page-repair .repair-directions {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
}

@media (min-width: 1051px) {
    .page-repair .repair-intro {
        display: grid;
        grid-template-columns: 2fr 3fr;
        gap: 48px;
        align-items: center;
    }
}

@media (max-width: 760px) {
    .page-repair .repair-hero {
        padding: 24px 20px;
    }

    .page-repair .repair-hero h1 {
        font-size: 26px;
    }

    .page-repair .repair-intro {
        padding: 30px 20px;
        gap: 20px;
    }

    .page-repair .repair-intro__content h2 {
        font-size: 20px;
    }

    .page-repair .repair-directions {
        padding: 30px 20px;
    }
}

/* ================================================================
   КОНТАКТЫ (page-contacts)
   ================================================================ */

.page-contacts .contacts-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 56px;
    background: var(--soft);
}

.page-contacts .contacts-hero h1 {
    margin: 0;
    color: var(--ink);
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.page-contacts .contacts-grid {
    display: block;
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
    gap: 48px;
}

.page-contacts .contacts-info h3 {
    margin: 28px 0 12px;
    color: var(--ink);
    font-size: 20px;
}

.page-contacts .contacts-info h3:first-child {
    margin-top: 0;
}

.page-contacts .contacts-info p {
    margin: 0;
    color: #5a6b7e;
    font-size: 15px;
    line-height: 1.65;
}

.page-contacts .contacts-info p strong {
    color: var(--ink);
}

.page-contacts .contacts-info a {
    color: var(--blue-dark);
    font-weight: 700;
}

.page-contacts .contacts-checklist {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.page-contacts .contacts-checklist li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 30px;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.5;
}

.page-contacts .contacts-checklist li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 6px;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(-45deg);
}

.page-contacts .contacts-map__frame {
    overflow: hidden;
    border-radius: 10px;
}

.page-contacts .contacts-map__frame iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
}

.page-contacts .contacts-note {
    margin-top: 24px;
    padding: 24px;
    background: var(--soft);
    border-radius: 10px;
}

.page-contacts .contacts-note h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 18px;
}

.page-contacts .contacts-note p {
    margin: 0;
    color: #5a6b7e;
    font-size: 15px;
    line-height: 1.6;
}

.page-contacts .contacts-note a {
    color: var(--blue-dark);
    font-weight: 700;
}

@media (min-width: 1051px) {
    .page-contacts .contacts-grid {
        display: grid;
        grid-template-columns: 5fr 7fr;
        align-items: start;
    }
}

@media (max-width: 760px) {
    .page-contacts .contacts-hero {
        padding: 24px 20px;
    }

    .page-contacts .contacts-hero h1 {
        font-size: 26px;
    }

    .page-contacts .contacts-grid {
        padding: 30px 20px;
        gap: 32px;
    }

    .page-contacts .contacts-map__frame iframe {
        height: 220px;
    }
}

/* ================================================================
   КАРТОЧКА КАРТРИДЖА (page-cartridge)
   ================================================================ */

.page-cartridge .cpt-hero-new {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 56px;
    background: var(--soft);
}

.page-cartridge .cpt-hero-new__media {
    flex: 0 0 160px;
}

.page-cartridge .cpt-hero-new__media img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.page-cartridge .cpt-hero-new__content {
    flex: 1 1 320px;
    min-width: 0;
}

.page-cartridge .cpt-hero-new__content h1 {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 28px;
    line-height: 1.25;
}

.page-cartridge .cpt-hero-new__compat {
    margin: 8px 0 0;
    color: #5a6b7e;
    font-size: 14px;
    line-height: 1.55;
}

.page-cartridge .cpt-offers-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
}

.page-cartridge .cpt-offer-new {
    padding: 24px;
    border: 1px solid #e3ecf4;
    border-radius: 10px;
    background: #ffffff;
}

.page-cartridge .cpt-offer-new h3 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 20px;
}

.page-cartridge .cpt-offer-new__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
}

.page-cartridge .cpt-offer-new__price strong {
    color: var(--ink);
    font-size: 28px;
    letter-spacing: -0.01em;
}

.page-cartridge .cpt-offer-new__price span {
    color: #9aabbb;
    font-size: 13px;
}

.page-cartridge .cpt-offer-new__list {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.page-cartridge .cpt-offer-new__list li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 24px;
    color: #5a6b7e;
    font-size: 14px;
    line-height: 1.5;
}

.page-cartridge .cpt-offer-new__list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 5px;
    width: 12px;
    height: 7px;
    border-left: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(-45deg);
}

.page-cartridge .cpt-offer-new .hero-button {
    width: 100%;
    justify-content: center;
    min-height: 48px;
}

.page-cartridge .cpt-offer-new .hero-button--secondary {
    border: 1px solid #c3d2e0;
    background: #ffffff;
    color: var(--ink) !important;
}

.page-cartridge .cpt-compare-new {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 56px 56px;
}

.page-cartridge .cpt-compare-new .price-table {
    box-shadow: none;
    border: 1px solid #e3ecf4;
}

.page-cartridge .cpt-consult-new {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 56px;
    background: var(--soft);
    border-top: 1px solid #e3ecf4;
    border-bottom: 1px solid #e3ecf4;
}

.page-cartridge .cpt-consult-new p {
    margin: 0;
    max-width: 640px;
    color: #4a5d72;
    font-size: 15px;
    line-height: 1.6;
}

.page-cartridge .cpt-consult-new strong {
    color: var(--ink);
}

.page-cartridge .cpt-consult-new .hero-button {
    flex: 0 0 auto;
}

.page-cartridge .cpt-related-new {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
}

@media (max-width: 760px) {
    .page-cartridge .cpt-hero-new {
        padding: 24px 20px;
    }

    .page-cartridge .cpt-hero-new__media {
        flex: 0 0 100px;
    }

    .page-cartridge .cpt-hero-new__media img {
        width: 100px;
        height: 100px;
    }

    .page-cartridge .cpt-hero-new__content h1 {
        font-size: 22px;
    }

    .page-cartridge .cpt-offers-new {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 16px;
    }

    .page-cartridge .cpt-compare-new,
    .page-cartridge .cpt-related-new {
        padding: 0 20px 30px;
    }

    .page-cartridge .cpt-consult-new {
        padding: 24px 20px;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

/* ================================================================
   НОВОСТИ (page-news)
   ================================================================ */

.page-news .news-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 56px;
    background: var(--soft);
}

.page-news .news-hero h1 {
    margin: 0;
    color: var(--ink);
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.page-news .news-feature {
    display: block;
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
    border-bottom: 1px solid #e3ecf4;
}

.page-news .news-feature__media img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.page-news .news-feature__content h2 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.3;
}

.page-news .news-feature__content h3 {
    margin: 24px 0 8px;
    color: var(--ink);
    font-size: 17px;
}

.page-news .news-feature__content p {
    margin: 0 0 12px;
    color: #5a6b7e;
    font-size: 15px;
    line-height: 1.65;
}

.page-news .news-panel__more {
    color: var(--blue-dark) !important;
    font-weight: 700;
}

.page-news .news-panel {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
    background: var(--soft);
}

.page-news .news-panel__content h2 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.3;
}

.page-news .news-panel__content p {
    margin: 0 0 12px;
    color: #4a5d72;
    font-size: 15px;
    line-height: 1.6;
}

.page-news .news-panel__content a {
    color: var(--blue-dark);
    font-weight: 700;
}

.page-news .news-panel__more {
    display: inline-block;
    margin: 8px 0 20px;
}

@media (min-width: 1051px) {
    .page-news .news-feature {
        display: grid;
        grid-template-columns: 2fr 3fr;
        gap: 48px;
        align-items: start;
    }

    .page-news .news-panel {
        display: grid;
        grid-template-columns: 5fr 7fr;
        gap: 56px;
    }

    .page-news .news-panel .kicker {
        margin: 0;
    }
}

@media (max-width: 760px) {
    .page-news .news-hero {
        padding: 24px 20px;
    }

    .page-news .news-hero h1 {
        font-size: 26px;
    }

    .page-news .news-feature,
    .page-news .news-panel {
        padding: 30px 20px;
        gap: 20px;
    }

    .page-news .news-feature__content h2 {
        font-size: 20px;
    }
}

/* ================================================================
   АПГРЕЙД (page-upgrade)
   ================================================================ */

.page-upgrade .upgrade-options {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
    border-bottom: 1px solid #e3ecf4;
}

.page-upgrade .upgrade-options__list p {
    margin: 0;
    padding: 20px 0;
    border-top: 1px solid #e3ecf4;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.6;
}

.page-upgrade .upgrade-options__list p:last-child {
    border-bottom: 1px solid #e3ecf4;
}

@media (max-width: 760px) {
    .page-upgrade .upgrade-options {
        padding: 30px 20px;
    }
}

/* ================================================================
   СТРАНИЦЫ ПРОШИВКИ КОНКРЕТНЫХ МОДЕЛЕЙ (page-fixmodel)
   ================================================================ */

.page-fixmodel .fixmodel-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 56px;
    background: var(--soft);
}

.page-fixmodel .fixmodel-hero h1 {
    margin: 0;
    color: var(--ink);
    font-size: 30px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.page-fixmodel .fixmodel-intro {
    display: block;
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
    border-bottom: 1px solid #e3ecf4;
}

.page-fixmodel .fixmodel-intro__media img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.page-fixmodel .fixmodel-intro__content h2,
.page-fixmodel .fixmodel-panel__content h2 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.3;
}

.page-fixmodel .fixmodel-intro__content p,
.page-fixmodel .fixmodel-panel__content p {
    margin: 0 0 12px;
    color: #5a6b7e;
    font-size: 15px;
    line-height: 1.65;
}

.page-fixmodel .fixmodel-intro__content a,
.page-fixmodel .fixmodel-panel__content a {
    color: var(--blue-dark);
    font-weight: 700;
}

.page-fixmodel .fixmodel-panel {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px;
    background: var(--soft);
}

.page-fixmodel .fixmodel-panel__more {
    display: inline-block;
    margin-top: 8px;
    color: var(--blue-dark) !important;
    font-weight: 700;
}

@media (min-width: 1051px) {
    .page-fixmodel .fixmodel-intro {
        display: grid;
        grid-template-columns: 2fr 3fr;
        gap: 48px;
        align-items: center;
    }

    .page-fixmodel .fixmodel-intro--reverse {
        grid-template-columns: 3fr 2fr;
    }

    .page-fixmodel .fixmodel-panel {
        display: grid;
        grid-template-columns: 5fr 7fr;
        gap: 56px;
    }

    .page-fixmodel .fixmodel-panel .kicker {
        margin: 0;
    }
}

@media (max-width: 760px) {
    .page-fixmodel .fixmodel-hero {
        padding: 24px 20px;
    }

    .page-fixmodel .fixmodel-hero h1 {
        font-size: 24px;
    }

    .page-fixmodel .fixmodel-intro,
    .page-fixmodel .fixmodel-panel {
        padding: 30px 20px;
        gap: 20px;
    }
}

.page-fixmodel .fixmodel-cta {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 56px 56px;
}

.page-fixmodel .fixmodel-cta__box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    border: 1px solid #c3d2e0;
    border-radius: 10px;
    background: #f8fbff;
}

.page-fixmodel .fixmodel-cta__icon {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
}

.page-fixmodel .fixmodel-cta__text {
    flex: 1 1 260px;
}

.page-fixmodel .fixmodel-cta__text h2 {
    margin: 0 0 4px;
    color: var(--ink);
    font-size: 18px;
}

.page-fixmodel .fixmodel-cta__text p {
    margin: 0;
    color: #5a6b7e;
    font-size: 14px;
}

.page-fixmodel .fixmodel-cta .hero-button {
    flex: 0 0 auto;
}

@media (max-width: 760px) {
    .page-fixmodel .fixmodel-cta {
        padding: 0 20px 30px;
    }

    .page-fixmodel .fixmodel-cta__box {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-fixmodel .fixmodel-cta .hero-button {
        width: 100%;
        justify-content: center;
    }
}