.atp-trust-strip {
            background: #0f5132;
            color: #fff;
            padding: 12px 18px;
            font-family: inherit;
            position: relative;
            z-index: 2;
        }
        .atp-trust-strip__inner {
            max-width: 1180px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            flex-wrap: wrap;
        }
        .atp-trust-strip strong {
            font-size: 18px;
            line-height: 1.3;
        }
        .atp-trust-strip__points {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .atp-trust-strip__points span {
            background: rgba(255,255,255,.14);
            border: 1px solid rgba(255,255,255,.24);
            border-radius: 6px;
            padding: 7px 10px;
            font-size: 13px;
            line-height: 1;
            white-space: nowrap;
        }
        .atp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 10px 15px;
            border-radius: 6px;
            font-weight: 700;
            text-decoration: none !important;
            line-height: 1.15;
            white-space: nowrap;
        }
        .atp-btn--primary {
            background: #f7c948;
            color: #111 !important;
        }
        .atp-btn--dark {
            background: #102a43;
            color: #fff !important;
        }
        .atp-floating-contact {
            position: fixed;
            right: 18px;
            top: 42%;
            transform: translateY(-50%);
            z-index: 9998;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .atp-floating-contact a {
            width: 132px;
            min-height: 42px;
            border-radius: 6px;
            color: #fff !important;
            text-decoration: none !important;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            font-size: 13px;
            font-weight: 700;
            box-shadow: 0 8px 22px rgba(15, 23, 42, .18);
        }
        .atp-floating-contact .whatsapp { background: #25d366; color: #073b20 !important; }
        .atp-floating-contact .messenger { background: #0866ff; }
        .atp-floating-contact .viber { background: #7360f2; }
        .atp-floating-contact .phone { background: #102a43; }
        .atp-product-cta {
            border: 1px solid #d9e2ec;
            border-left: 4px solid #0f5132;
            background: #f8fbf9;
            border-radius: 8px;
            padding: 16px;
            margin: 18px 0;
        }
        .atp-product-cta h3 {
            margin: 0 0 8px;
            font-size: 19px;
            line-height: 1.25;
        }
        .atp-product-cta p {
            margin: 0 0 12px;
            color: #334e68;
        }
        .atp-product-cta__actions,
        .atp-product-cta__resources {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }
        .atp-product-cta__resources a {
            color: #0f5132;
            font-weight: 700;
            text-decoration: underline;
        }
        @media (max-width: 767px) {
            .atp-trust-strip {
                padding: 12px;
            }
            .atp-trust-strip__inner {
                align-items: stretch;
                gap: 10px;
            }
            .atp-trust-strip strong {
                font-size: 16px;
            }
            .atp-trust-strip__points {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 6px;
            }
            .atp-trust-strip__points span {
                text-align: center;
                white-space: normal;
            }
            .atp-trust-strip .atp-btn {
                width: 100%;
            }
            .atp-floating-contact {
                left: 0;
                right: 0;
                top: auto;
                bottom: 0;
                transform: none;
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 0;
                background: #fff;
                border-top: 1px solid #d9e2ec;
                padding: 6px;
            }
            .atp-floating-contact a {
                width: auto;
                min-height: 44px;
                border-radius: 5px;
                font-size: 11px;
                box-shadow: none;
                padding: 5px 3px;
            }
            body {
                padding-bottom: 62px;
            }
            .atp-product-cta__actions .atp-btn {
                width: 100%;
            }
        }