        /* ========== Секция: Тарифы ========== */
        .tariff-btn {
            display: inline-block;
            padding: 10px 24px;
            background-color: #ff6b6b;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-size: 1.05rem;
            font-weight: bold;
            margin-top: 16px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.2s ease;
            border: 2px solid white;
        }

        .tariff-btn-sold {
            background-color: #e0e0e0 !important;
            color: #888 !important;
            border-color: #ccc !important;
            cursor: not-allowed !important;
            pointer-events: none; /* полностью отключает клики */
            box-shadow: none !important;
        }
        
        .tariff-btn:hover {
            background-color: #ff5252;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
        }

        .tariff-btn:active {
            transform: translateY(1px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }
        
        .tariffs-section {
            padding: 80px 20px;
            background-color: #ffffff;
            text-align: center;
        }

        .section-header {
            max-width: 800px;
            margin: 0 auto 50px;
        }

        .tariffs-section h2 {
            color: #35424a;
            font-size: 2.2rem;
            margin-bottom: 16px;
        }

        .tariffs-section .note {
            font-size: 0.95rem;
            color: #777;
            font-style: italic;
            line-height: 1.5;
        }

        .tariffs-grid {
            display: grid;
            /* grid-template-columns: 1fr 1fr; */
            grid-template-columns: repeat(3, 1fr); /* ← 3 колонки на ПК */
            gap: 32px;
            max-width: 1200px; /* ← было 900px, теперь шире */
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px; /* защита от прилипания к краям на очень широких экранах */
        }

        .tariff-card {
            background: #fdf9f9;
            border-radius: 16px; /* чуть мягче */
            padding: 32px 24px; /* чуть больше внутреннего отступа */
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.25s, box-shadow 0.25s;
            min-width: 0;
        }

        .tariff-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }

        .tariff-card h3 {
            font-size: 1.25rem;
            color: #e03e3e;
            margin-bottom: 14px;
        }

        .price {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ff6b6b;
            margin: 12px 0;
        }

        .highlight {
            background-color: #fff4f4;
            color: #e03e3e;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 20px;
            display: inline-block;
            margin: 12px 0;
            font-size: 0.95rem;
        }

        .renewal {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.5;
            margin-top: 12px;
        }

        @media (max-width: 768px) {
            .tariff-btn {
                padding: 8px 20px;
                font-size: 1rem;
            }
        }
        @media (max-width: 992px) {
            .tariffs-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшетах */
            }
        }

        @media (max-width: 576px) {
            .tariffs-grid {
                grid-template-columns: 1fr; /* 1 колонка на телефонах */
            }
        }
