       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #FFFFFF;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            line-height: 1.5;
            color: #111111;
            padding: 2rem 1.5rem;
        }

        .container {
            max-width: 1120px;
            margin: 0 auto;
            background: #FFFFFF;
            /* border: 1px solid #E2E2E2; */
            border-radius: 24px;
            padding: 2.5rem 2rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
        }

        .avatar-top {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 2rem;
        }

        .bot-avatar {
            width: 120px;
            height: 120px;
            background: #F2F2F2;
            border-radius: 50%;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #EAEAEA;
        }

        .avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: none;
        }

        .bot-name {
            font-size: 1.9rem;
            font-weight: 650;
            letter-spacing: -0.5px;
            color: #000000;
            text-align: center;
            line-height: 1.2;
        }

        .bot-name-small {
            font-size: 0.8rem;
            font-weight: 400;
            color: #4F4F4F;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-top: 6px;
        }

        .bot-status {
            text-align: center;
            color: #3A3A3A;
            font-size: 0.75rem;
            letter-spacing: 0.4px;
            margin-top: 8px;
            font-weight: 400;
            border-top: 1px solid #E8E8E8;
            padding-top: 8px;
            display: inline-block;
        }

        .status-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            background: #2C6E2C;
            border-radius: 50%;
            margin-right: 6px;
            animation: blinkSoft 1.8s infinite;
        }

        @keyframes blinkSoft {
            0%, 100% { opacity: 1; background: #2C6E2C; }
            50% { opacity: 0.4; background: #6F9E6F; }
        }

        .header {
            text-align: center;
            margin-bottom: 2rem;
            border-bottom: 1px solid #EBEBEB;
            padding-bottom: 1.5rem;
        }

        h1 {
            font-size: 3rem;
            font-weight: 500;
            letter-spacing: -2px;
            color: #000000;
            margin-bottom: 0.75rem;
        }

        .highlight {
            font-weight: 700;
            background: none;
            border-bottom: 2px solid #000;
            display: inline-block;
            padding-bottom: 2px;
        }

        .subtitle {
            font-size: 1rem;
            font-weight: 350;
            color: #3E3E3E;
            max-width: 540px;
            margin: 0 auto;
            letter-spacing: -0.2px;
        }

        .gigachat-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
            padding: 8px 18px;
            background: #F5F5F5;
            border: 1px solid #E0E0E0;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 500;
            color: #2A2A2A;
            letter-spacing: 0.2px;
        }

        .gigachat-badge img {
            width: 22px;
            height: 22px;
            object-fit: contain;
        }

        .team-section {
            background: #F9F9F9;
            border: 1px solid #E0E0E0;
            border-radius: 20px;
            padding: 1.8rem;
            margin: 2rem 0;
        }

        .team-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #111;
            margin-bottom: 1rem;
        }

        .team-text {
            color: #2A2A2A;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 1.25rem;
        }

        .team-highlight {
            color: #000;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid #B0B0B0;
        }

        .team-highlight:hover {
            border-bottom-color: #000;
        }

        .team-mission {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1.25rem;
            border-top: 1px solid #E8E8E8;
            padding-top: 1.25rem;
        }

        .mission-item {
            flex: 1;
            min-width: 130px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 450;
            color: #1F1F1F;
        }

        .mission-icon {
            background: #EBEBEB;
            width: 30px;
            height: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 600;
            color: #1A1A1A;
            border-radius: 8px;
        }

        .features {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            margin: 1.8rem 0 1rem;
        }

        .feature-item {
            text-align: center;
            padding: 10px 20px;
            background: #FFFFFF;
            border: 1px solid #D6D6D6;
            border-radius: 40px;
            min-width: 90px;
            transition: all 0.2s ease;
        }

        .feature-item:hover {
            background: #F5F5F5;
            border-color: #999;
        }

        .feature-icon {
            font-size: 1.2rem;
            margin-bottom: 4px;
            display: block;
        }

        .feature-text {
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            color: #1D1D1D;
        }

        /* Блок с мессенджерами */
        .messenger-section {
            margin: 2rem 0;
            text-align: center;
        }

        .messenger-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #111;
            margin-bottom: 1.5rem;
            letter-spacing: -0.3px;
        }

        .messenger-grid {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .messenger-card {
            flex: 1;
            min-width: 160px;
            max-width: 200px;
            background: #FFFFFF;
            border: 1px solid #E0E0E0;
            border-radius: 20px;
            padding: 1.8rem 1rem 1.5rem;
            text-align: center;
            transition: all 0.25s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .messenger-card:hover {
            transform: translateY(-4px);
            border-color: #B0B0B0;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
        }

        .messenger-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 0.25rem;
            overflow: hidden;
            /* background: #F0F0F0; */
        }

        .messenger-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }



        .messenger-icon.vk {
            background: #0077FF;
        }

        .messenger-icon.mc {
            background: #FFFFFF;
            border: 1px solid #E0E0E0;
        }

        .messenger-name {
            font-weight: 600;
            font-size: 1rem;
            color: #000;
            letter-spacing: -0.2px;
        }

        .messenger-status {
            font-size: 0.7rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #4F4F4F;
            margin-bottom: 0.5rem;
        }

        .messenger-link {
            display: inline-block;
            margin-top: auto;
            padding: 10px 18px;
            background: #111111;
            color: #FFFFFF;
            text-decoration: none;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            transition: all 0.2s ease;
            border: 1px solid transparent;
        }

        .messenger-link:hover {
            background: #FFFFFF;
            color: #111111;
            border-color: #111111;
        }

        .messenger-link.dev {
            background: #F2F2F2;
            color: #4A4A4A;
            pointer-events: none;
            border-color: #D6D6D6;
        }

        .messenger-link.dev:hover {
            background: #F2F2F2;
            color: #4A4A4A;
            border-color: #D6D6D6;
        }

        .pricing-section {
            width: 100%;
            margin: 2rem 0 1rem;
        }

        .pricing-title {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 500;
            letter-spacing: -0.5px;
            color: #000;
            margin-bottom: 2rem;
        }

        .pricing-grid {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .pricing-card {
            flex: 1;
            min-width: 210px;
            max-width: 250px;
            background: #FFFFFF;
            border-radius: 20px;
            padding: 1.6rem 1.2rem;
            text-align: center;
            transition: all 0.25s ease;
            position: relative;
            border: 1px solid #D9D9D9;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            border-color: #9E9E9E;
            background: #FEFEFE;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.03);
        }

        .pricing-card.popular {
            border: 2px solid #000000;
            background: #FFFFFF;
            transform: scale(1.02);
        }

        .pricing-card.popular:hover {
            transform: scale(1.02) translateY(-5px);
        }

        .popular-badge {
            position: absolute;
            top: 12px;
            right: 16px;
            background: #111111;
            color: #FFFFFF;
            padding: 4px 10px;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            border-radius: 40px;
        }

        .pricing-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: #000;
            margin-bottom: 0.5rem;
            letter-spacing: -0.2px;
        }

        .pricing-price {
            font-size: 2.2rem;
            font-weight: 700;
            color: #111;
            margin-bottom: 0.25rem;
            line-height: 1;
        }

        .pricing-price small {
            font-size: 0.85rem;
            font-weight: 350;
            color: #5C5C5C;
        }

        .pricing-period {
            font-size: 0.7rem;
            color: #5E5E5E;
            margin-bottom: 1rem;
            border-bottom: 1px dashed #D4D4D4;
            display: inline-block;
            padding-bottom: 3px;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0.5rem 0;
            text-align: left;
        }

        .pricing-features li {
            padding: 6px 0;
            color: #1F1F1F;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }

        .pricing-features li::before {
            content: "✓";
            color: #000;
            font-weight: 700;
            font-size: 0.8rem;
            width: 18px;
        }

        .saving-item {
            list-style: none;
            padding: 6px 0;
            color: #1F4F1F;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            border-top: 1px solid #EDEDED;
            margin-top: 6px;
        }

        .saving-item::before {
            content: "✓";
            color: #1F4F1F;
            font-weight: 700;
            font-size: 0.8rem;
            width: 18px;
        }

        .empty-saving {
            margin-top: 6px;
            height: 34px;
        }

        .guarantee {
            text-align: center;
            color: #3D3D3D;
            font-size: 0.85rem;
            margin-top: 2rem;
            padding: 12px;
            background: #F6F6F6;
            border: 1px solid #E2E2E2;
            border-radius: 40px;
            font-weight: 500;
        }

        .legal-section {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #ECECEC;
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
        }

        .legal-link {
            font-size: 0.75rem;
            color: #4F4F4F;
            text-decoration: none;
            border-bottom: 1px solid #CBCBCB;
            transition: all 0.15s ease;
            letter-spacing: 0.2px;
        }

        .legal-link:hover {
            color: #000000;
            border-bottom-color: #000000;
        }

        .site-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 1rem;
        }

        .site-logo img {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        .site-logo span {
            font-size: 0.75rem;
            color: #6A6A6A;
            letter-spacing: 0.3px;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.75);
            align-items: center;
            justify-content: center;
            z-index: 1000;
            backdrop-filter: blur(2px);
        }

        .modal-content {
            background: #FFFFFF;
            max-width: 700px;
            width: 90%;
            max-height: 85vh;
            border-radius: 24px;
            padding: 1.8rem;
            position: relative;
            overflow-y: auto;
            border: 1px solid #D4D4D4;
            box-shadow: 0 30px 40px rgba(0, 0, 0, 0.1);
        }

        .modal-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: -0.3px;
        }

        .modal-content p, .modal-content li {
            font-size: 0.85rem;
            line-height: 1.5;
            color: #2A2A2A;
            margin-bottom: 0.75rem;
        }

        .modal-content ul {
            padding-left: 1.5rem;
            margin: 0.5rem 0;
        }

        .close-modal {
            position: absolute;
            top: 16px;
            right: 20px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #5A5A5A;
            transition: color 0.2s;
            line-height: 1;
        }

        .close-modal:hover {
            color: #000;
        }

        .disclaimer {
            font-size: 0.7rem;
            color: #6A6A6A;
            margin-top: 1.2rem;
            text-align: center;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
        }

        .bg-soft {
            position: fixed;
            width: 260px;
            height: 260px;
            background: radial-gradient(circle, #F5F5F5 0%, transparent 70%);
            pointer-events: none;
            z-index: -1;
            opacity: 0.5;
            border-radius: 50%;
        }

        .bg-soft:nth-child(1) {
            top: 0%;
            left: -5%;
        }
        .bg-soft:nth-child(2) {
            bottom: 0%;
            right: -5%;
        }

        @media (max-width: 880px) {
            .pricing-grid, .messenger-grid {
                gap: 16px;
            }
            .pricing-card, .messenger-card {
                min-width: 210px;
            }
        }

        @media (max-width: 780px) {
            body {
                padding: 1rem;
            }
            .container {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.4rem;
            }
            .pricing-card, .messenger-card {
                min-width: 180px;
                padding: 1.2rem;
            }
            .pricing-card.popular {
                transform: scale(1);
            }
            .pricing-card.popular:hover {
                transform: translateY(-5px);
            }
            .legal-section {
                gap: 20px;
            }
        }