        :root {
            --bg-main: #0B0E14;
            --bg-card: #141923;
            --bg-card-hover: #1A2230;
            --accent-gold: #D4AF37;
            --accent-gold-glow: rgba(212, 175, 55, 0.25);
            --accent-blue: #007AFF;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --border-color: #262F40;
            --radius-lg: 20px;
            --radius-md: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            padding: 40px 20px;
            min-height: 100vh;
            background-image: 
                radial-gradient(circle at 10% 10%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 90%, rgba(0, 122, 255, 0.05) 0%, transparent 40%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Заголовок страницы */
        .page-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .page-header .badge-tag {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            color: var(--accent-gold);
            border: 1px solid var(--accent-gold);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }

        .page-header h1 {
            font-size: 38px;
            font-weight: 800;
            margin-bottom: 12px;
            background: linear-gradient(135deg, #FFFFFF 0%, #A5B4FC 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .page-header p {
            color: var(--text-secondary);
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Сетка тарифов */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
            margin-bottom: 60px;
        }

        /* Карточки */
        .price-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: var(--transition);
        }

        .price-card:hover {
            transform: translateY(-6px);
            background: var(--bg-card-hover);
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        /* Выделенная карточка (Суперцена) */
        .price-card.featured {
            border: 2px solid var(--accent-gold);
            box-shadow: 0 0 30px var(--accent-gold-glow);
        }

        .price-card.featured .featured-badge {
            position: absolute;
            top: -14px;
            right: 28px;
            background: linear-gradient(135deg, #D4AF37 0%, #AA7C11 100%);
            color: #000;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            padding: 4px 14px;
            border-radius: 20px;
            letter-spacing: 1px;
        }

        .card-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .card-subtitle {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            min-height: 38px;
        }

        /* Блок с ценой */
        .price-display {
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .price-value {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1;
        }

        .price-period {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 400;
        }

        /* Список опций внутри карточки */
        .price-list {
            list-style: none;
            margin-bottom: 28px;
            flex-grow: 1;
        }

        .price-item-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
            font-size: 14px;
        }

        .price-item-row:last-child {
            border-bottom: none;
        }

        .price-item-row .label {
            color: var(--text-secondary);
        }

        .price-item-row .val {
            font-weight: 600;
            color: var(--text-primary);
        }

        .feature-list {
            list-style: none;
            margin-bottom: 28px;
            flex-grow: 1;
        }

        .feature-list li {
            position: relative;
            padding-left: 26px;
            margin-bottom: 12px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-gold);
            font-weight: bold;
        }

        /* Кнопки */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 14px 20px;
            border-radius: var(--radius-md);
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            box-sizing: border-box;
        }

        .btn-primary {
            background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
            color: #000;
        }

        .btn-primary:hover {
            box-shadow: 0 0 20px var(--accent-gold-glow);
            filter: brightness(1.1);
        }

        .btn-outline {
            background: transparent;
            /*color: var(--text-primary);
            border: 1px solid var(--border-color);*/
			color: #f7d070; 
			border: 2px solid #d4af37;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--text-primary);
        }

        /* Поперечный блок контактов */
        .contact-cta-box {
            background: linear-gradient(135deg, #141923 0%, #1E2638 100%);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 36px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .cta-info h3 {
            font-size: 22px;
            margin-bottom: 6px;
        }

        .cta-info p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .cta-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-contact {
            padding: 12px 20px;
            border-radius: var(--radius-md);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-home { border: 2px solid #d4af37; color: #d4af37; }

        .btn-phone { background: #1E293B; border: 1px solid var(--border-color); }
        .btn-wa { background: #25D366; color: #fff; }
        .btn-tg { background: #229ED9; color: #fff; }
        .btn-max { background: linear-gradient(135deg, #5b36f5 0%, #3b1cb7 100%); color: #ffffff; }

        .btn-contact:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        /* Мобильная адаптация */
        @media (max-width: 768px) {
            .page-header h1 { font-size: 28px; }
            .pricing-grid { grid-template-columns: 1fr; }
            .contact-cta-box { flex-direction: column; text-align: center; }
            .cta-actions { width: 100%; justify-content: center; }
            .btn-contact { width: 100%; justify-content: center; }
        }
