.land_enter {
	position:fixed;
	top:0;
	left:0;
	z-index:10000;
	width:100%;
	padding:20px 10px;
	background-color:#d2d113;
	text-align:center;
	font-size:16px;
}	
        /* ===== СТИЛЬ ЯНДЕКС ===== */
        :root {
            --yandex-blue: #1A1A2E;
            --yandex-dark: #0D0D1A;
            --yandex-accent: #FF5500;
            --yandex-light: #F0F2F5;
            --yandex-card: #FFFFFF;
            --yandex-text: #1A1A2E;
            --yandex-muted: #6B6B7A;
            --yandex-border: #E5E7EB;
            --yandex-shadow: 0 8px 32px rgba(0,0,0,0.08);
            --yandex-radius: 16px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--yandex-light);
            color: var(--yandex-text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 1140px;
            padding: 0 20px;
        }

        /* ===== ХЭДЕР (Яндекс-стиль) ===== */
        .header {
            background: var(--yandex-blue);
            padding: 60px 0 70px;
            position: relative;
            overflow: hidden;
        }
        .header::after {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 50%;
            height: 150%;
            background: radial-gradient(ellipse, rgba(255,85,0,0.08) 0%, transparent 70%);
            transform: rotate(-10deg);
        }
        .header .container {
            position: relative;
            z-index: 2;
        }
        .header h1 {
            font-size: 3.4rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.02em;
            line-height: 1.15;
        }
        .header h1 span {
            color: var(--yandex-accent);
        }
        .header .subtitle {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.75);
            max-width: 580px;
            margin: 16px 0 28px;
            font-weight: 400;
            line-height: 1.6;
        }
        .header .badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        .header .badge-row .badge-item {
            background: rgba(255,255,255,0.07);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 100px;
            padding: 6px 18px;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.8);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .header .badge-row .badge-item i {
            color: var(--yandex-accent);
            font-size: 0.9rem;
        }
        .btn-yandex {
            background: var(--yandex-accent);
            color: #fff;
            font-weight: 600;
            padding: 16px 44px;
            border-radius: 100px;
            font-size: 1.1rem;
            border: none;
            transition: all 0.25s ease;
            box-shadow: 0 8px 30px rgba(255,85,0,0.35);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-yandex:hover {
            background: #e04a00;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(255,85,0,0.45);
        }
        .btn-outline-yandex {
            border: 2px solid rgba(255,255,255,0.25);
            color: #fff;
            padding: 14px 34px;
            border-radius: 100px;
            font-weight: 500;
            transition: all 0.25s ease;
            background: transparent;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-outline-yandex:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.5);
            color: #fff;
        }

        /* ===== СЕКЦИИ ===== */
        .section {
            padding: 70px 0;
        }
        .section-light {
            background: #fff;
        }
        .section-gray {
            background: var(--yandex-light);
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin-bottom: 16px;
            line-height: 1.25;
        }
        .section-title span {
            color: var(--yandex-accent);
        }
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--yandex-muted);
            #max-width: 700px;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        /* ===== КАРТОЧКИ ===== */
        .card-yandex {
            background: #fff;
            border-radius: var(--yandex-radius);
            padding: 28px 24px;
            height: 100%;
            border: 1px solid var(--yandex-border);
            transition: all 0.25s ease;
            box-shadow: var(--yandex-shadow);
        }
        .card-yandex:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.1);
        }
        .card-yandex .icon {
            font-size: 2.4rem;
            color: var(--yandex-accent);
            margin-bottom: 12px;
            display: block;
        }
        .card-yandex .icon-blue {
            color: var(--yandex-blue);
        }
        .card-yandex h5 {
            font-weight: 700;
            font-size: 1.15rem;
            margin-bottom: 8px;
        }
        .card-yandex p {
            color: var(--yandex-muted);
            font-size: 0.95rem;
            margin-bottom: 0;
            line-height: 1.6;
        }

        /* ===== ТАБЛИЦА ===== */
        .table-yandex {
            background: #fff;
            border-radius: var(--yandex-radius);
            overflow: hidden;
            border: 1px solid var(--yandex-border);
            box-shadow: var(--yandex-shadow);
        }
        .table-yandex thead {
            background: var(--yandex-blue);
            color: #fff;
        }
        .table-yandex thead th {
            font-weight: 600;
            padding: 14px 20px;
            border: none;
        }
        .table-yandex tbody td {
            padding: 14px 20px;
            vertical-align: middle;
            border-color: var(--yandex-border);
        }
        .table-yandex tbody tr:hover {
            background: #f8f9fc;
        }

        /* ===== БОНУСЫ ===== */
        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 12px;
        }
        .bonus-item {
            background: #fff;
            border: 2px solid var(--yandex-border);
            border-radius: 12px;
            padding: 14px 18px;
            text-align: center;
            transition: all 0.2s ease;
        }
        .bonus-item:hover {
            border-color: var(--yandex-accent);
        }
        .bonus-item .amount {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--yandex-blue);
        }
        .bonus-item .percent {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--yandex-accent);
        }

        /* ===== БЛОК-ЦИТАТА ===== */
        .block-quote {
            background: var(--yandex-blue);
            border-radius: var(--yandex-radius);
            padding: 50px 40px;
            color: #fff;
            text-align: center;
        }
        .block-quote .text {
            font-size: 1.8rem;
            font-weight: 300;
            line-height: 1.4;
            max-width: 800px;
            margin: 0 auto 20px;
        }
        .block-quote .text strong {
            color: var(--yandex-accent);
            font-weight: 600;
        }
        .block-quote .stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
        }
        .block-quote .stats .stat-item .number {
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--yandex-accent);
        }
        .block-quote .stats .stat-item .label {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
        }

        /* ===== ПРИЗЫВ ===== */
        .cta-block {
            background: var(--yandex-blue);
            border-radius: var(--yandex-radius);
            padding: 60px 40px;
            color: #fff;
            text-align: center;
        }
        .cta-block h2 {
            font-size: 2.4rem;
            font-weight: 700;
        }
        .cta-block h2 span {
            color: var(--yandex-accent);
        }
        .cta-block p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.7);
            max-width: 580px;
            margin: 16px auto 28px;
        }

        /* ===== FAQ (аккордеон) ===== */
        .faq-item {
            background: #fff;
            border: 1px solid var(--yandex-border);
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
        }
        .faq-item .faq-question {
            padding: 16px 24px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.2s;
            background: #fff;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 1rem;
            color: var(--yandex-text);
        }
        .faq-item .faq-question:hover {
            background: #f8f9fc;
        }
        .faq-item .faq-question i {
            transition: transform 0.25s;
            font-size: 1.2rem;
            color: var(--yandex-muted);
        }
        .faq-item .faq-question.collapsed i {
            transform: rotate(0deg);
        }
        .faq-item .faq-question:not(.collapsed) i {
            transform: rotate(180deg);
        }
        .faq-item .faq-answer {
            padding: 0 24px 20px;
            color: var(--yandex-muted);
            line-height: 1.7;
        }
        .faq-item .faq-answer p {
            margin-bottom: 0;
        }

        /* ===== ФУТЕР ===== */
        .footer {
            background: var(--yandex-dark);
            color: rgba(255,255,255,0.6);
            padding: 40px 0;
        }
        .footer a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer a:hover {
            color: #fff;
        }
        .footer hr {
            border-color: rgba(255,255,255,0.06);
            margin: 24px 0;
        }

        /* ===== АДАПТИВ ===== */
        @media (max-width: 992px) {
            .header h1 {
                font-size: 2.6rem;
            }
            .block-quote .text {
                font-size: 1.4rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .header {
                padding: 40px 0 50px;
            }
            .header h1 {
                font-size: 2rem;
            }
            .header .subtitle {
                font-size: 1rem;
            }
            .section {
                padding: 50px 0;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .block-quote {
                padding: 30px 20px;
            }
            .block-quote .text {
                font-size: 1.2rem;
            }
            .block-quote .stats {
                gap: 24px;
            }
            .block-quote .stats .stat-item .number {
                font-size: 2rem;
            }
            .cta-block {
                padding: 40px 20px;
            }
            .cta-block h2 {
                font-size: 1.8rem;
            }
            .btn-yandex {
                width: 100%;
                justify-content: center;
            }
            .bonus-grid {
                grid-template-columns: 1fr 1fr;
            }
            .header .badge-row .badge-item {
                font-size: 0.75rem;
                padding: 4px 14px;
            }
        }
        @media (max-width: 576px) {
            .bonus-grid {
                grid-template-columns: 1fr;
            }
            .block-quote .stats {
                flex-direction: column;
                gap: 12px;
            }
        }