
.shablon3 {
        --brand: #39546F;
        --brand-dark: #1f3144;
        --ink: #111827;
        --muted: #374151;
        --surface: #f8fafc;
        --surface-2: #eef3f9;
        --border: #e5e7eb;
        --line: #dbe4ef;
        --white: #ffffff;
        --radius: 16px;
        --radius-sm: 12px;
        --shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
        --font: "Segoe UI", system-ui, -apple-system, sans-serif;
        position: relative;
        max-width: 1200px;
        margin: 32px auto;
        font-family: var(--font);
        color: var(--muted);
        line-height: 1.6;
        overflow: clip;
    }

    .shablon3 h2 {
        font-size: clamp(1.35rem, 2.5vw, 1.75rem);
        color: var(--ink);
        margin: 0 0 10px;
        letter-spacing: -0.02em;
    }

    .shablon3 h3 {
        font-size: 1.1rem;
        color: var(--ink);
        margin: 0 0 8px;
    }

    .shablon3 p {
        margin: 0 0 12px;
    }

    /* Картинка по URL: обёртка задаёт рамку и пропорции, img всегда заполняет ячейку (object-fit: cover).
       Для логотипов/схем: добавьте к обёртке класс shablon3-media--contain */
    .shablon3-media {
        position: relative;
        width: 100%;
        border-radius: var(--radius-sm);
        overflow: hidden;
        background: var(--surface-2);
        margin: 0 0 14px;
    }

    .shablon3-media:last-child {
        margin-bottom: 0;
    }

    .shablon3-media--16x9 {
        aspect-ratio: 16 / 9;
    }

    .shablon3-media--4x3 {
        aspect-ratio: 4 / 3;
    }

    .shablon3-media--3x2 {
        aspect-ratio: 3 / 2;
    }

    .shablon3-media--1x1 {
        aspect-ratio: 1 / 1;
    }

    .shablon3-media img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .shablon3-media--contain img {
        object-fit: contain;
        padding: 8px;
        box-sizing: border-box;
    }

    .media-strip {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin: 0 8px 36px;
    }

    .media-strip--solo {
        grid-template-columns: 1fr;
        max-width: 900px;
    }

    .media-strip__item {
        margin: 0;
    }

    .media-strip__item--wide {
        max-width: none;
    }

    .bento__item > .shablon3-media:first-child {
        margin: -20px -20px 14px -20px;
        width: calc(100% + 40px);
        max-width: none;
        border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    }

    .use-case__icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        margin-bottom: 12px;
        border-radius: 14px;
        background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
        border: 1px solid var(--line);
        color: var(--brand);
    }

    .use-case__icon svg {
        width: 26px;
        height: 26px;
        stroke-width: 1.75px;
    }

    .coat__media {
        margin: -18px -18px 14px -18px;
        width: calc(100% + 36px);
        max-width: none;
        border-radius: 0;
    }

    .ambient {
        pointer-events: none;
        position: absolute;
        inset: -20% -10% auto;
        height: 60%;
        background: radial-gradient(ellipse 70% 50% at 80% 0%, rgba(57, 84, 111, 0.14), transparent),
            radial-gradient(ellipse 50% 40% at 10% 20%, rgba(31, 49, 68, 0.08), transparent);
        z-index: 0;
    }

    .hero {
        position: relative;
        z-index: 1;
        border-radius: calc(var(--radius) + 8px) calc(var(--radius) + 8px) 0 0;
        overflow: hidden;
        margin-bottom: 0;
        box-shadow: var(--shadow);
    }

    .hero__mesh {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 48%, #2d4a63 100%);
        opacity: 1;
    }

    .hero__mesh::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 0L0 60M0 0l60 60' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E");
        mix-blend-mode: overlay;
    }

    .hero__grid {
        position: relative;
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: clamp(20px, 4vw, 40px);
        padding: clamp(28px, 5vw, 48px);
        align-items: center;
    }

    .hero__copy {
        color: rgba(255, 255, 255, 0.92) !important;
    }

    .pill-row {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 16px;
    }

    .pill {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 6px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.22);
        color: #fff;
    }

    .pill--pulse {
        animation: pulse 2.4s ease-in-out infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25);
        }

        50% {
            box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
        }
    }

    .hero__title {
        font-size: clamp(1.75rem, 4vw, 2.55rem);
        line-height: 1.15;
        margin: 0 0 16px;
        font-weight: 800;
        letter-spacing: -0.03em;
        color: #fff;
    }

    .grad {
        background: linear-gradient(90deg, #fff 0%, #c8d9ea 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .hero__lead {
        font-size: 1rem;
        max-width: 36em;
        opacity: 0.95;
        margin-bottom: 20px;
    }

    .hero__cta {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 18px;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 22px;
        border-radius: 999px;
        font-weight: 700;
        font-size: 15px;
        text-decoration: none !important;
        transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
        border: 2px solid transparent;
        cursor: pointer;
    }

    .btn--solid {
        background: #fff !important;
        color: var(--brand-dark) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .btn--solid:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
    }

    .btn--glass {
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.35) !important;
        color: #fff !important;
        backdrop-filter: blur(8px);
    }

    .btn--glass:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .btn--outline {
        background: var(--white) !important;
        border-color: var(--brand) !important;
        color: var(--brand) !important;
    }

    .btn--outline:hover {
        background: var(--brand);
        color: #fff !important;
    }

    .btn--lg {
        padding: 16px 26px;
    }

    .micro-proof {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 8px;
        font-size: 14px;
        opacity: 0.9;
    }

    .micro-proof li {
            color: white;
        padding-left: 22px;
        position: relative;
    }

    .micro-proof li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.55em;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: linear-gradient(135deg, #fff, #a8c0d8);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
    }

    .hero__visual {
        display: flex;
        justify-content: center;
    }

    .frame {
        position: relative;
        width: min(100%, 400px);
        border-radius: 20px;
        padding: 10px;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));
        border: 1px solid rgba(255, 255, 255, 0.35);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    }

    .frame img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 14px;
        object-fit: cover;
        aspect-ratio: 4/3;
    }

    .frame__badge {
        position: absolute;
        left: -12px;
        bottom: 18px;
        background: var(--white);
        color: var(--brand-dark);
        padding: 12px 16px;
        border-radius: 14px;
        box-shadow: var(--shadow);
        max-width: 200px;
    }

    .frame__badge-k {
        display: block;
        font-weight: 800;
        font-size: 1.15rem;
        line-height: 1.2;
    }

    .frame__badge-d {
        font-size: 12px;
        color: var(--muted);
    }

    .marquee {
        margin: 0;
        padding: 12px 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        border-left: 1px solid var(--border);
        border-right: 1px solid var(--border);
        overflow: hidden;
    }

    .marquee__track {
        display: flex;
        gap: 28px;
        width: max-content;
        animation: marquee 28s linear infinite;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--brand);
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        padding: 20px;
        background: var(--white);
        border: 1px solid var(--border);
        border-top: none;
        border-radius: 0 0 var(--radius) var(--radius);
        margin-bottom: 36px;
        box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
    }

    .stat {
        padding: 14px 16px;
        border-radius: var(--radius-sm);
        background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
        border: 1px solid var(--line);
    }

    .stat__n {
        display: block;
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--brand);
        letter-spacing: -0.02em;
        line-height: 1.1;
    }

    .stat__l {
        font-size: 12px;
        color: var(--muted);
        line-height: 1.35;
    }

    .section {
        position: relative;
        z-index: 1;
        margin-bottom: 40px;
        padding: 0 8px;
    }

    .section--tilt {
        padding: 32px 8px;
        margin-left: -4px;
        margin-right: -4px;
        border-radius: var(--radius);
        background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
        border: 1px solid var(--border);
        box-shadow: 0 16px 40px rgba(17, 24, 39, 0.06);
    }

    .section--muted {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 28px 20px;
    }

    .section__head {
        margin-bottom: 20px;
        max-width: 720px;
    }

    .section__head p {
        margin: 0;
        color: var(--muted);
    }

    .bento {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .bento__item {
        padding: 20px;
        border-radius: var(--radius-sm);
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
        transition: transform 0.2s, box-shadow 0.2s;
        overflow: hidden;
    }

    .bento__item:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 32px rgba(17, 24, 39, 0.1);
    }

    .bento__item--wide {
        grid-column: span 2;
        background: linear-gradient(120deg, var(--surface-2) 0%, var(--white) 60%);
        border-color: var(--line);
    }

    .bento__item--tall {
        grid-row: span 2;
        display: flex;
        flex-direction: column;
        background: linear-gradient(180deg, var(--white), var(--surface));
    }

    .link-arrow {
        margin-top: auto;
        font-weight: 700;
        font-size: 14px;
        color: var(--brand) !important;
        text-decoration: none !important;
    }

    .link-arrow:hover {
        text-decoration: underline !important;
    }

    .tabs__input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .tabs__labels {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
    }

    .tabs__label {
        padding: 10px 18px;
        border-radius: 999px;
        font-weight: 700;
        font-size: 14px;
        cursor: pointer;
        border: 2px solid var(--line);
        background: var(--white);
        color: var(--muted);
        transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    .tabs__label:hover {
        border-color: var(--brand);
        color: var(--brand);
    }

    #tab-wall:checked~.tabs__labels label[for="tab-wall"],
    #tab-roof:checked~.tabs__labels label[for="tab-roof"],
    #tab-load:checked~.tabs__labels label[for="tab-load"] {
        background: var(--brand) !important;
        border-color: var(--brand) !important;
        color: #fff !important;
    }

    .tab-panel {
        display: none;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        align-items: start;
        padding: 20px;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border);
        background: var(--white);
    }

    .tab-panel__media {
        border-radius: 14px;
        overflow: hidden;
        border: 1px solid var(--border);
        width: 100%;
        aspect-ratio: 4 / 3;
        align-self: start;
        position: relative;
        background: var(--surface-2);
    }

    .tab-panel__media img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .tab-panel__text {
        min-height: 100%;
        display: flex;
        flex-direction: column;
    }

    .tab-panel__text p:last-child {
        margin-bottom: 0;
    }

    .tab-extra {
        margin-top: 16px;
        padding-top: 14px;
        border-top: 1px dashed var(--line);
        font-size: 14px;
        color: var(--muted);
    }

    .tab-extra p {
        margin: 0 0 10px;
    }

    .tab-extra p:last-child {
        margin-bottom: 0;
    }

    .tab-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: auto;
        padding: 10px 14px;
        border-radius: 10px;
        background: linear-gradient(90deg, var(--brand-dark), var(--brand)) !important;
        color: #fff !important;
        text-decoration: none !important;
        font-size: 13px;
        font-weight: 700;
        box-shadow: 0 10px 22px rgba(31, 49, 68, 0.22);
        align-self: flex-end;
    }

    .tab-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 26px rgba(31, 49, 68, 0.28);
    }

    .bento--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bento--compact .bento__item p:last-child,
    .bento--compact .bento__item ul:last-child {
        margin-bottom: 0;
    }

    .checks {
        margin: 12px 0 0;
        padding-left: 18px;
        color: var(--muted);
    }

    .checks li {
        margin: 6px 0;
    }

    #tab-wall:checked~.tabs__panels .tab-panel:nth-child(1),
    #tab-roof:checked~.tabs__panels .tab-panel:nth-child(2),
    #tab-load:checked~.tabs__panels .tab-panel:nth-child(3) {
        display: grid;
    }

    .timeline {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 0;
        position: relative;
    }

    .timeline::before {
        content: "";
        position: absolute;
        left: 19px;
        top: 28px;
        bottom: 28px;
        width: 2px;
        background: linear-gradient(180deg, var(--brand), var(--line));
        border-radius: 2px;
    }

    .timeline li {
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 16px;
        padding: 16px 0;
        align-items: start;
    }

    .timeline__i {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: var(--brand);
        color: #fff;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
        box-shadow: 0 8px 20px rgba(57, 84, 111, 0.35);
    }

    .timeline strong {
        color: var(--ink);
    }

    .order-grid {
        display: grid;
        grid-template-columns: 1fr minmax(280px, 0.9fr);
        gap: 16px;
        align-items: stretch;
    }

    .order-aside {
        border-radius: 14px;
        border: 1px solid var(--border);
        padding: 18px;
        background:
            linear-gradient(0deg, rgba(25, 48, 70, 0.84), rgba(25, 48, 70, 0.84)),
            url("https://images.unsplash.com/photo-1602913268078-f740e8fa7ac5?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
        color: rgba(255, 255, 255, 0.94);
        box-shadow: 0 12px 26px rgba(17, 24, 39, 0.18);
        display: flex;
        flex-direction: column;
    }

    .order-aside h3 {
        margin: 0 0 10px;
        color: #fff;
    }

    .order-aside .checks {
        margin-top: 0;
        color: rgba(255, 255, 255, 0.9);
    }

    .order-aside__cta {
        margin-top: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 16px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.45);
        background: rgba(255, 255, 255, 0.14) !important;
        color: #fff !important;
        text-decoration: none !important;
        font-weight: 700;
    }

    .order-aside__cta:hover {
        background: rgba(255, 255, 255, 0.22) !important;
    }

    .coatings {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .coat {
        padding: 18px;
        border-radius: var(--radius-sm);
        background: var(--white);
        border: 1px solid var(--border);
        border-top: 4px solid var(--brand);
        overflow: hidden;
    }

    .coat p:last-child {
        margin-bottom: 0;
        font-size: 14px;
    }

    .extra-links {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .extra-link {
        position: relative;
        padding: 20px;
        border-radius: 14px;
        border: 1px solid var(--border);
        background: linear-gradient(180deg, #fff, #f5f9ff);
        box-shadow: 0 10px 22px rgba(17, 24, 39, 0.06);
        overflow: hidden;
    }

    .extra-link__kicker {
        margin: 0 0 8px;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        opacity: 0.78;
    }

    .extra-link h3 {
        margin: 0 0 8px;
    }

    .extra-link p {
        font-size: 14px;
    }

    .extra-link__btn {
        margin-top: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 14px;
        border-radius: 10px;
        border: 1px solid var(--line);
        background: var(--white) !important;
        color: var(--brand-dark) !important;
        text-decoration: none !important;
        font-weight: 700;
        font-size: 13px;
    }

    .more-products {
        margin-top: 14px;
        padding: 16px;
        border-radius: 14px;
        border: 1px dashed var(--line);
        background: repeating-linear-gradient(-45deg, #f8fbff 0, #f8fbff 10px, #f3f8ff 10px, #f3f8ff 20px);
    }

    .more-products__title {
        margin: 0 0 10px;
        font-weight: 700;
        color: var(--ink);
    }

    .more-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .more-card {
        position: relative;
        min-height: 52px;
        border-radius: 10px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.22);
        text-decoration: none !important;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 14px;
        background-size: cover;
        background-position: center;
        box-shadow: 0 8px 16px rgba(17, 24, 39, 0.12);
    }

    .more-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, rgba(18, 36, 53, 0.72), rgba(31, 49, 68, 0.58));
    }

    .more-card span {
        position: relative;
        z-index: 1;
        color: #fff !important;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.01em;
        text-align: center;
    }

    .use-cases {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .use-case {
        padding: 16px;
        border-radius: 12px;
        border: 1px solid var(--border);
        background: var(--white);
        box-shadow: 0 6px 18px rgba(17, 24, 39, 0.04);
        overflow: hidden;
    }

    .use-case h3 {
        margin: 0 0 8px;
    }

    .use-case p:last-child {
        margin-bottom: 0;
    }

    .more-card:hover::before {
        background: linear-gradient(120deg, rgba(18, 36, 53, 0.55), rgba(31, 49, 68, 0.44));
    }

    .more-card--tile {
        background-image: url("https://images.unsplash.com/photo-1534073804884-d80017c6a5ba?auto=format&fit=crop&w=1200&q=80");
    }

    .more-card--sandwich {
        background-image: url("https://images.unsplash.com/photo-1635958854582-ddcf6b085c34?auto=format&fit=crop&w=1200&q=80");
    }

    .more-card--siding {
        background-image: url("https://images.unsplash.com/photo-1604177420528-44bb3e1dcd7b?auto=format&fit=crop&w=1200&q=80");
    }

    .cta-card {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: clamp(24px, 4vw, 36px);
        border-radius: var(--radius);
        background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
        color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 20px 50px rgba(31, 49, 68, 0.35);
    }

    .cta-card h2 {
        color: #fff;
    }

    .cta-card p {
        margin: 0;
        max-width: 520px;
        opacity: 0.95;
    }

    .cta-card__actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .cta-card .btn--solid {
        color: var(--brand) !important;
    }

    .cta-card .btn--outline {
        background: transparent !important;
        border-color: rgba(255, 255, 255, 0.65) !important;
        color: #fff !important;
    }

    .cta-card .btn--outline:hover {
        background: rgba(255, 255, 255, 0.12) !important;
    }

    .faq {
        display: grid;
        gap: 10px;
        margin-top: 16px;
    }

    .faq__item {
        border-radius: 14px;
        border: 1px solid var(--line);
        background: var(--white);
        padding: 4px 16px;
        box-shadow: 0 6px 18px rgba(17, 24, 39, 0.04);
    }

    .faq__item summary {
        cursor: pointer;
        font-weight: 800;
        color: var(--ink);
        padding: 12px 0;
        list-style: none;
    }

    .faq__item summary::-webkit-details-marker {
        display: none;
    }

    .faq__item summary::after {
        content: "+";
        float: right;
        color: var(--brand);
        font-weight: 800;
    }

    .faq__item[open] summary::after {
        content: "−";
    }

    .faq__item p {
        margin: 0 0 14px;
        padding-top: 4px;
        border-top: 1px dashed var(--line);
    }

   

    @media (max-width: 900px) {
        .media-strip {
            grid-template-columns: 1fr;
        }

        .hero__grid {
            grid-template-columns: 1fr;
        }

        .frame {
            transform: none;
            width: 100%;
            max-width: 420px;
        }

        .stats {
            grid-template-columns: repeat(2, 1fr);
        }

        .bento {
            grid-template-columns: 1fr;
        }

        .bento__item--wide,
        .bento__item--tall {
            grid-column: auto;
            grid-row: auto;
        }

        .tab-panel {
            grid-template-columns: 1fr;
        }

        .order-grid {
            grid-template-columns: 1fr;
        }

        .coatings {
            grid-template-columns: repeat(2, 1fr);
        }

        .extra-links {
            grid-template-columns: 1fr;
        }

        .use-cases {
            grid-template-columns: 1fr;
        }

        .more-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 560px) {
        .stats {
            grid-template-columns: 1fr;
        }

        .coatings {
            grid-template-columns: 1fr;
        }

        .shablon3 {
            padding-bottom: 120px;
        }
    }

    .btn:focus-visible,
    .tabs__label:focus-visible {
        outline: 2px solid #93c5fd;
        outline-offset: 2px;
    }
