.tariff-card-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.tariff-card-section h2 {
    color: white;
    margin-bottom: 3rem;
}

.tariff-card {
    background: transparent; /* Убираем фон */
    backdrop-filter: none; /* Убираем размытие */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tariff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent; /* Убираем фон */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tariff-card:hover {
    transform: translateY(-5px);
    box-shadow: none; /* Убираем тень */
}

.tariff-card:hover::before {
    opacity: 1;
}

.tariff-route h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.tariff-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
}

.distance {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Темная тема */
@media (prefers-color-scheme: dark) {
    .tariff-card-section {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }
    
    .tariff-card {
        background: transparent; /* Убираем фон */
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .tariff-card::before {
        background: transparent; /* Убираем фон */
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .tariff-card-section {
        padding: 2rem 0;
    }
    
    .tariff-card {
        padding: 1.5rem;
    }
    
    .tariff-route h3 {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.25rem;
    }
    
    .distance {
        font-size: 0.9rem;
    }
    
    .tariff-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}
