* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Оверлей (затемнение фона) */
        .max-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(6px);
            z-index: 100000;
            display: flex;
            align-items: center;
            justify-content: center;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0.2s ease, opacity 0.25s ease;
            font-family: 'Inter', 'Segoe UI', 'Roboto', system-ui, -apple-system, 'Montserrat', sans-serif;
        }

        .max-popup-overlay.active {
            visibility: visible;
            opacity: 1;
        }

        /* Контейнер окна — ширина, тени, скругления под стиль агро-бренда */
        .max-popup-container {
            position: relative;
            max-width: 560px;
            width: 90%;
            background: #ffffff;
            border-radius: 32px;
            box-shadow: 0 30px 45px -20px rgba(0, 0, 0, 0.4);
            transform: scale(0.96);
            transition: transform 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            overflow: hidden;
            border: 1px solid rgba(190, 210, 160, 0.4);
        }

        .max-popup-overlay.active .max-popup-container {
            transform: scale(1);
        }

        /* Кнопка закрытия (крестик) */
        .popup-close {
            position: absolute;
            top: 18px;
            right: 20px;
            width: 36px;
            height: 36px;
            background: rgba(100, 120, 70, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 20;
            transition: all 0.2s;
            border: none;
            font-size: 28px;
            font-weight: 400;
            color: #4a6741;
            line-height: 1;
            backdrop-filter: blur(2px);
        }

        .popup-close:hover {
            background: #e9f0e2;
            transform: rotate(90deg);
            color: #c2591e;
        }

        /* Основной контент */
        .popup-main {
            padding: 28px 32px 38px;
        }

        /* Брендированный значок / мини-лого */
        .brand-icon {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f2f7ec;
            border-radius: 60px;
            padding: 6px 16px;
            margin-bottom: 24px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #558b2f;
            letter-spacing: 0.3px;
            border-left: 3px solid #e6a017;
        }

        .brand-icon::before {
            content: "🌾";
            font-size: 1rem;
        }

        /* Заголовок канала MAX */
        .max-headline {
            font-size: 1.9rem;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 14px;
            color: #2a4824;
            letter-spacing: -0.3px;
        }

        .max-headline span {
            background: linear-gradient(135deg, #db7a2a, #b64915);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            display: inline-block;
        }

        .desc-text {
            font-size: 1.05rem;
            color: #2e3e28;
            margin-bottom: 22px;
            font-weight: 500;
            border-left: 3px solid #e6a017;
            padding-left: 14px;
            background: #fefcf5;
            border-radius: 0 12px 12px 0;
        }

        /* Список преимуществ / новости, интерактивы */
        .benefits-list {
            background: #fafcf5;
            padding: 12px 18px;
            border-radius: 20px;
            margin: 18px 0 22px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #4f6b3e;
            background: white;
            padding: 6px 14px;
            border-radius: 40px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .benefit-item::before {
            content: "✓";
            color: #e68a2e;
            font-weight: bold;
            font-size: 1rem;
        }

        /* Кнопка призыва (ПЕРЕЙТИ) */
        .max-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: linear-gradient(98deg, #417a36 0%, #2b5a22 100%);
            border: none;
            padding: 14px 28px;
            border-radius: 60px;
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            cursor: pointer;
            transition: all 0.25s;
            width: 100%;
            max-width: 280px;
            font-family: inherit;
            letter-spacing: 0.3px;
            box-shadow: 0 8px 16px -8px rgba(60, 110, 47, 0.4);
            text-decoration: none;
        }

        .max-btn:hover {
            background: linear-gradient(98deg, #559a46, #3d7332);
            transform: translateY(-2px);
            box-shadow: 0 14px 22px -12px #2b5a2270;
        }

        .max-btn:active {
            transform: translateY(1px);
        }

        /* Небольшой блок с цифрами урожайности (как на скриншоте, но деликатно) 
           чтобы напомнить об успехах и сохранить визуал сканшота */
        .yield-mini {
            margin-top: 28px;
            padding-top: 18px;
            border-top: 1px solid #e1e9d6;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 12px;
        }

        .yield-mini-item {
            flex: 1;
            text-align: center;
            background: #fefcf0;
            border-radius: 24px;
            padding: 8px 8px;
        }

        .yield-mini-label {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            color: #7d8f66;
            letter-spacing: 0.6px;
        }

        .yield-mini-number {
            font-size: 1.3rem;
            font-weight: 800;
            color: #7a5c2c;
            line-height: 1.2;
        }

        .yield-mini-unit {
            font-size: 0.7rem;
            font-weight: 500;
            color: #b48b3a;
        }

        .small-note {
            font-size: 0.7rem;
            text-align: center;
            margin-top: 16px;
            color: #889a73;
        }

        /* Адаптив */
        @media (max-width: 550px) {
            .popup-main {
                padding: 24px 22px 32px;
            }
            .max-headline {
                font-size: 1.5rem;
            }
            .desc-text {
                font-size: 0.9rem;
            }
            .benefits-list {
                padding: 8px 12px;
            }
            .benefit-item {
                font-size: 0.75rem;
                padding: 4px 12px;
            }
            .max-btn {
                padding: 12px 20px;
                font-size: 1rem;
                max-width: 100%;
            }
            .yield-mini-number {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 420px) {
            .yield-mini {
                flex-direction: column;
                gap: 8px;
            }
            .yield-mini-item {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 6px 18px;
            }
            .yield-mini-label {
                font-size: 0.7rem;
            }
        }

        /* ссылка внутри кнопки обрабатывается */
        .max-btn-link {
            text-decoration: none;
            width: 100%;
            display: flex;
            justify-content: center;
        }