<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* /assets/css/tariffs/benefits-section.css */
/* Ð¡Ñ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ ÑÐµÐºÑ†Ð¸Ð¸ Ð¿Ñ€ÐµÐ¸Ð¼ÑƒÑ‰ÐµÑÑ‚Ð² */

:root {
    --primary-orange: #F68826; /* ÐžÑÐ½Ð¾Ð²Ð½Ð¾Ð¹ Ð¾Ñ€Ð°Ð½Ð¶ÐµÐ²Ñ‹Ð¹ */
    --secondary-orange: #ff9045; /* Ð¡Ð²ÐµÑ‚Ð»Ñ‹Ð¹ Ð¾Ñ€Ð°Ð½Ð¶ÐµÐ²Ñ‹Ð¹ */
    --dark-orange: #ff3000; /* Ð¢ÐµÐ¼Ð½Ñ‹Ð¹ Ð¾Ñ€Ð°Ð½Ð¶ÐµÐ²Ñ‹Ð¹ Ð´Ð»Ñ Ð³Ñ€Ð°Ð´Ð¸ÐµÐ½Ñ‚Ð¾Ð² */
    --dark-bg: #1f2129; /* Ð¢ÐµÐ¼Ð½Ñ‹Ð¹ Ñ„Ð¾Ð½ */
    --page-bg: #1a1a1a; /* Ð¤Ð¾Ð½ ÑÑ‚Ñ€Ð°Ð½Ð¸Ñ†Ñ‹ */
    --card-bg: #0e1016; /* Ð¤Ð¾Ð½ ÐºÐ°Ñ€Ñ‚Ð¾Ñ‡ÐµÐº */
    --card-header-bg: #F68826; /* Ð¤Ð¾Ð½ Ð·Ð°Ð³Ð¾Ð»Ð¾Ð²ÐºÐ° ÐºÐ°Ñ€Ñ‚Ð¾Ñ‡ÐºÐ¸ */
    --feature-bg: #262932; /* Ð¤Ð¾Ð½ Ð±Ð»Ð¾ÐºÐ¾Ð² Ð¿Ñ€ÐµÐ¸Ð¼ÑƒÑ‰ÐµÑÑ‚Ð² */
    --text-light: #ffffff;
    --text-dark: #e0e0e0;
    --text-muted: #9ca0b0;
    --border-radius: 24px; /* Ð£Ð²ÐµÐ»Ð¸Ñ‡ÐµÐ½Ð½Ñ‹Ð¹ Ñ€Ð°Ð´Ð¸ÑƒÑ ÑÐºÑ€ÑƒÐ³Ð»ÐµÐ½Ð¸Ñ */
    --transition: all 0.3s ease;
    --glass-effect: rgba(255, 255, 255, 0.05);
    --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    --recommended-badge: #ff3300; /* ÐžÑ€Ð°Ð½Ð¶ÐµÐ²Ð¾-ÐºÑ€Ð°ÑÐ½Ñ‹Ð¹ Ð´Ð»Ñ Ð±ÐµÐ¹Ð´Ð¶Ð° */
}

.benefits-section {
    margin: 60px auto;
    max-width: 1200px;
}

.benefits-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    background: rgba(38, 41, 50, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.benefit-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    background: rgba(38, 41, 50, 0.9);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff5e00 0%, #ff3000 100%);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
</pre></body></html>