
    .ev6-page {
        --g: #16914f;
        --gd: #0f6d3a;
        --t: #1f2937;
        --m: #5f6b7a;
        --s: #f1fbf5;
        font-family: Arial, sans-serif;
        color: var(--t);
        background: #fff;
        line-height: 1.58;
    }

    .ev6-page * {
        box-sizing: border-box;
    }

    .ev6-wrap {
        max-width: 1180px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .ev6-hero {
        padding: 62px 0 32px;
        background:
            radial-gradient(circle at 12% 10%, rgba(22, 145, 79, .16) 0%, rgba(22, 145, 79, 0) 35%),
            #fff;
    }

    .ev6-kicker {
        margin: 0 0 10px;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: .08em;
        font-weight: 700;
        color: var(--gd);
    }

    .ev6-hero h1 {
        margin: 0;
        max-width: none;
        font-size: clamp(40px, 5vw, 45px);
        line-height: .9;
    }

    .ev6-lead {
        margin: 16px 0 0;
        max-width: 82ch;
        color: var(--m);
        font-size: 13px;
    }

    .ev6-hero__actions {
        margin-top: 22px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .ev6-ribbon {
        overflow: hidden;
        border-top: 1px solid #d8ece1;
        border-bottom: 1px solid #d8ece1;
        background: #f8fdf9;
    }

    .ev6-ribbon__track {
        display: flex;
        gap: 28px;
        white-space: nowrap;
        padding: 12px 20px;
        color: var(--gd);
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: .03em;
        overflow-x: auto;
    }

    .ev6-ribbon__track::-webkit-scrollbar {
        height: 6px;
    }

    .ev6-ribbon__track::-webkit-scrollbar-thumb {
        background: #b8dcc8;
        border-radius: 999px;
    }

    .ev6-photo-band {
        position: relative;
        height: 360px;
    }

    .ev6-photo-band img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: saturate(.9);
    }

    .ev6-photo-band__overlay {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 28px 20px;
        color: #fff;
        background: linear-gradient(180deg, rgba(10, 20, 15, 0) 0%, rgba(10, 20, 15, .78) 100%);
    }

    .ev6-photo-band__overlay p {
        margin: 0 0 4px;
        opacity: .9;
    }

    .ev6-photo-band__overlay strong {
        font-size: clamp(22px, 3vw, 36px);
        line-height: 1.05;
    }

    .ev6-section {
        padding: 20px 0;
    }

    .ev6-head {
        margin-bottom: 24px;
    }

    .ev6-head h2 {
        margin: 0;
        font-size: clamp(32px, 4vw, 35px);
        line-height: .92;
    }

    .ev6-head p {
        margin: 8px 0 0;
        color: var(--m);
        max-width: 62ch;
    }

    .ev6-section--flow {
        background: #fff;
    }

    .ev6-flow {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .ev6-flow li {
        display: grid;
        grid-template-columns: 72px 1fr;
        gap: 10px;
        align-items: start;
        padding-bottom: 10px;
        border-bottom: 1px solid #dceee4;
    }

    .ev6-flow li:last-child {
        grid-column: 1 / -1;
        margin-top: 30px;
    }

    .ev6-flow b {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #e8f7ef;
        color: var(--gd);
        font-size: 14px;
        letter-spacing: .06em;
    }

    .ev6-flow h3 {
       margin: 6px 0 4px;
    font-size: clamp(20px, 0vw, 8px) !important;
    line-height: .95;

    }

    .ev6-flow p {
        margin: 0;
        color: var(--m);
    }

    .ev6-profiles__line {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
    }

    .ev6-profile-tile {
        position: relative;
        overflow: hidden;
        min-height: 260px;
        padding: 18px;
        color: #fff;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        background-image: linear-gradient(rgba(15, 28, 20, .55), rgba(15, 28, 20, .7)), var(--tile);
        background-size: cover;
        background-position: center;
        transition: transform .2s ease, box-shadow .2s ease;
    }

    .ev6-profile-tile:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 26px rgba(0, 0, 0, .22);
    }

    .ev6-profile-tile h3 {
        margin: 0 0 8px;
        font-size: clamp(28px, 3vw, 40px);
        line-height: .95;
        color: #fff;
    }

    .ev6-profile-tile p {
        margin: 0 0 10px;
        color: #f1faf5;
    }

    .ev6-profile-tile ul {
        margin: 0 0 12px;
        padding-left: 18px;
        color: #ecf8f1;
    }

    .ev6-profile-tile::after {
        content: "Открыть профиль";
        width: fit-content;
        font-weight: 700;
        border-bottom: 1px solid rgba(255, 255, 255, .75);
        padding-bottom: 2px;
    }

    .ev6-section--tint {
        background: linear-gradient(180deg, #f6fcf8 0%, #edf8f2 100%);
    }

    .ev6-section--palette {
        background: linear-gradient(180deg, #f6fcf8 0%, #edf8f2 100%);
    }

    .ev6-palette {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .ev6-palette article {
        padding: 14px;
        border-bottom: 1px solid #d8ece1;
        background: linear-gradient(180deg, rgba(0, 0, 0, .02) 0%, rgba(0, 0, 0, 0) 100%);
    }

    .ev6-palette article::before {
        content: "";
        display: block;
        width: 100%;
        height: 24px;
        border-radius: 999px;
        margin-bottom: 10px;
        background: var(--sw);
        border: 1px solid rgba(0, 0, 0, .12);
    }

    .ev6-palette h3 {
        margin: 0 0 6px;
        font-size: 20px;
        line-height: 1;
    }

    .ev6-palette p {
        margin: 0;
        color: var(--m);
    }

    .ev6-cases {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .ev6-cases figure {
        margin: 0;
        position: relative;
        overflow: hidden;
        min-height: 260px;
    }

    .ev6-cases img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .ev6-cases figcaption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 10px 12px;
        color: #fff;
        font-weight: 700;
        background: linear-gradient(to top, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .2) 100%);
    }

    .ev6-layers {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 20px;
        align-items: start;
    }

    .ev6-layers h2 {
        margin: 0 0 8px;
        font-size: clamp(32px, 3.4vw, 40px);
        line-height: .92;
    }

    .ev6-layers p {
        margin: 0;
        color: var(--m);
        max-width: 50ch;
    }

    .ev6-layers ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 10px;
    }

    .ev6-layers li {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        padding: 10px 0;
        border-bottom: 1px dashed #b9dcc9;
    }

    .ev6-layers span {
        color: var(--gd);
        font-weight: 700;
    }

    .ev6-layers b {
        font-weight: 600;
        color: #2f3f36;
    }

    .ev6-faq {
        display: grid;
        gap: 8px;
    }

    .ev6-faq details {
        border-bottom: 1px solid #d8ece1;
        padding: 10px 0;
    }

    .ev6-faq summary {
        cursor: pointer;
        font-weight: 700;
    }

    .ev6-faq p {
        margin: 8px 0 0;
        color: var(--m);
    }

    .ev6-section--longread {
        background: #fff;
    }

    .ev6-tips {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .ev6-tips article {
        display: grid;
        grid-template-columns: 54px 1fr;
        gap: 10px;
        border-top: 2px solid #c8e4d4;
        padding-top: 10px;
    }

    .ev6-tip-ic {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #f4faf7;
        border: 1px solid #cfe5d8;
        color: var(--gd);
    }

    .ev6-tip-ic svg {
        width: 22px;
        height: 22px;
        stroke-width: 2px;
    }

    .ev6-tips h3 {
        margin: 2px 0 4px;
        font-size: 24px;
        line-height: .96;
    }

    .ev6-tips p {
        margin: 0;
        color: #3c4e43;
    }

    .ev6-section--extra {
        background: #fff;
    }

    .ev6-section--faq-bg {
        background: linear-gradient(180deg, #f6fcf8 0%, #edf8f2 100%);
    }

    .ev6-extra-top {
        margin-bottom: 14px;
    }

    .ev6-catalog-hero {
        min-height: 180px;
        display: flex;
        align-items: flex-end;
        padding: 16px;
        text-decoration: none;
        color: #fff;
        background-image: linear-gradient(rgba(15, 28, 20, .45), rgba(15, 28, 20, .72)), url("https://artzabor.ru/wp-content/uploads/2023/01/DSCF0689_HDR-1.jpg");
        background-size: cover;
        background-position: center;
    }

    .ev6-catalog-hero span {
        font-size: clamp(22px, 2.7vw, 36px);
        line-height: .98;
        font-weight: 700;
        max-width: 18ch;
    }

    .ev6-extra-grid {
        display: grid;
        gap: 10px;
    }

    .ev6-extra-grid--2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ev6-extra-grid--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ev6-head--spaced {
        margin-top: 20px;
    }

    .ev6-extra-tile {
        min-height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 16px;
        text-decoration: none;
        color: #fff;
        background-image: linear-gradient(rgba(15, 28, 20, .45), rgba(15, 28, 20, .75)), var(--extra-bg);
        background-size: cover;
        background-position: center;
        transition: transform .2s ease, box-shadow .2s ease;
    }

    .ev6-extra-tile:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
    }

    .ev6-extra-tile h3 {
        margin: 0 0 6px;
        font-size: 24px;
        line-height: .96;
        color: #fff;
    }

    .ev6-extra-tile p {
        margin: 0;
        color: #ecf8f1;
    }

    .ev6-final {
        padding: 24px 0 54px;
    }

    .ev6-final__inner {
        padding: 24px;
        border-radius: 14px;
        background: linear-gradient(150deg, #0f3f25 0%, #16914f 100%);
        display: block;
    }

    .ev6-final__link {
        text-decoration: none;
        color: #fff;
        transition: transform .2s ease, box-shadow .2s ease;
    }

    .ev6-final__link:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(9, 45, 26, .2);
    }

    .ev6-final h2 {
        margin: 0;
        max-width: none;
        font-size: clamp(30px, 3.8vw, 40px);
        line-height: .9;
        color: #fff;
    }

    .ev6-final__delivery {
        margin: 10px 0 0;
        color: rgba(255, 255, 255, .92);
        font-weight: 700;
        font-size: clamp(18px, 2vw, 24px);
    }

    .ev6-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        padding: 12px 20px;
        text-decoration: none;
        font-weight: 700;
        border: 2px solid transparent;
        transition: .2s ease;
    }

    .ev6-btn--primary {
        background: var(--g);
        color: #fff !important;
    }

    .ev6-btn--primary:hover {
        background: var(--gd);
        transform: translateY(-1px);
    }

    .ev6-btn--ghost {
        border-color: var(--g);
        color: var(--gd);
        background: #fff !important;
    }

    .ev6-btn--ghost:hover {
        background: #ecf8f1 !important;
    }

    .ev6-btn--light {
        border-color: var(--g);
        color: var(--gd) !important;
        background: #fff;
        white-space: nowrap;
    }

    .ev6-btn--light:hover {
        background: #ecf8f1;
    }

    @media (max-width: 1024px) {
        .ev6-layers {
            grid-template-columns: 1fr;
        }

        .ev6-palette,
        .ev6-cases,
        .ev6-tips {
            grid-template-columns: 1fr 1fr;
        }

        .ev6-extra-grid--2,
        .ev6-extra-grid--3 {
            grid-template-columns: 1fr 1fr;
        }

        .ev6-profiles__line {
            grid-template-columns: 1fr;
        }

        .ev6-final__inner {
            flex-direction: column;
            align-items: flex-start;
        }

    }

    @media (max-width: 760px) {
        .ev6-hero {
            padding: 44px 0 24px;
        }

        .ev6-hero h1 {
            font-size: clamp(34px, 12vw, 52px);
        }

        .ev6-lead {
            font-size: 16px;
        }

        .ev6-flow li {
            grid-template-columns: 1fr;
        }

        .ev6-flow b {
            width: 46px;
            height: 46px;
        }

        .ev6-photo-band {
            height: 290px;
        }

        .ev6-palette,
        .ev6-cases,
        .ev6-tips,
        .ev6-extra-grid--2,
        .ev6-extra-grid--3 {
            grid-template-columns: 1fr;
        }

        .ev6-profile-tile {
            min-height: 230px;
        }

        .ev6-section {
            padding: 46px 0;
        }
    }