/* style.css */
:root {
    --primary: #7855d7;
    --primary-dark: #4d34a4;
    --secondary: #4a4a4a;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #28a745;
    --gray: #6c757d;
    --border: #dee2e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

p {
	margin-bottom: 0.75em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка */
.site-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.logo-icon {
    /*background: var(--primary);*/
	background:url(../images/logo-48.webp) 50% 50%;
	background-size: contain;
    color: white;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 10px;
}

.logo-text {
    color: var(--dark);
}

.logo-highlight {
    color: var(--primary);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary);
}

/* Главная страница */
.hero-main {
    background: linear-gradient(135deg, var(--primary) 0%, #f04f9c 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-main h1 {
    font-size: 48px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-main-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-main-description {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin: 0 10px;
}

.btn-primary {
    background: white;
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Аудитория */
.target-audience {
    padding: 60px 0;
    background: var(--light);
}

.target-audience h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.audience-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.audience-item i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

/* Сравнение */
.comparison {
    padding: 60px 0;
}

.comparison h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.comparison-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid;
}

.comparison-item.good {
    border-left-color: var(--success);
}

.comparison-item.good .comparison-icon {
    color: var(--success);
}

.comparison-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.alternatives-block {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tag {
    background: white;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid var(--border);
    font-size: 14px;
}

/* Список городов */
.cities-list-section {
    padding: 60px 0;
    background: var(--light);
}

.cities-list-section h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.city-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-color: var(--primary);
}

.city-name {
    font-size: 18px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.city-region {
    font-size: 14px;
    color: var(--gray);
    display: block;
    margin-bottom: 10px;
}

.city-price {
    color: var(--primary);
    font-weight: 600;
}

/* Преимущества */
.advantages {
    padding: 60px 0;
}

.advantages h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.advantage {
    text-align: center;
    padding: 30px;
    background: var(--light);
    border-radius: 10px;
}

.advantage i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.disadvantages {
    background: #fff3f3;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #dc3545;
}

.disadvantages ul {
    list-style: none;
    margin-top: 15px;
}

.disadvantages li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disadvantages i {
    color: #dc3545;
}

/* FAQ */
.faq {
    padding: 60px 0;
    background: var(--light);
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
}

.faq-toggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Страница города */
.city-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #f04f9c 100%);
    color: white;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.badge i {
    margin-right: 5px;
}

.hero-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.city-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-watermark {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
}

/* Уникальный контент города */
.city-unique-content {
    padding: 60px 0;
}

.city-features {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 1.8;
}

.check-delivery-tip {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
	text-align: left;
}

.check-delivery-tip i {
    font-size: 24px;
    color: #0d6efd;
}

/* Калькулятор */
.calculator {
    padding: 60px 0;
    background: var(--light);
}

.calculator h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.transport-selector label {
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}

.transport-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 30px;
}

.transport-btn {
    padding: 15px;
    border: 2px solid var(--border);
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.transport-btn i {
    font-size: 24px;
}

.transport-btn small {
    color: var(--gray);
}

.transport-btn.active {
    border-color: var(--primary);
    background: #fff0fa;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.input-group input[type=range] {
    width: 100%;
    margin: 10px 0;
}

.input-value {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.calculator-results {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.result-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.result-label {
    display: block;
    color: var(--gray);
    margin-bottom: 10px;
}

.result-value {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}

.calculator-note {
    font-size: 14px;
    color: var(--gray);
    text-align: center;
}

.calculator .small-text {
    font-size: 12px;
}
.calculator .color-gray {
    color: var(--gray);
}

/* Требования */
.requirements {
    padding: 60px 0;
}
.requirements h2 {
	font-size: 2rem;
}
.requirements-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.requirements-list {
    margin-top: 30px;
}

.requirement-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.requirement-icon {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.requirements-card {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
}

.check-list, .x-list {
    list-style: none;
    margin: 15px 0;
}

.check-list li, .x-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i {
    color: var(--success);
}

.x-list i {
    color: #dc3545;
}

.mt-4 {
    margin-top: 30px;
}
.requirements-notes {
	background: var(--light);
	padding: 30px;
	border-radius: 10px;
	border-left: 4px solid var(--success);
}

/* Кому подойдет */
.suitable-for {
    padding: 60px 0;
    background: var(--light);
}

.suitable-for h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.suitable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.suitable-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.suitable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.suitable-icon {
    background: var(--primary);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

/* Ближайшие города */
.nearby-cities {
    padding: 40px 0;
    background: var(--light);
    text-align: center;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.city-pill {
    background: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--dark);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.city-pill:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Ключевые слова */
.keywords-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.keywords-cloud span {
    background: var(--light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--gray);
}

/* Футер */
.site-footer {
    background: var(--dark);
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-disclaimer {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

/* ========== АДАПТИВНОЕ МЕНЮ ========== */

/* Мобильное меню - по умолчанию скрыто на десктопе */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Анимация для активного состояния бургера */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Затемнение фона при открытом меню */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Десктопное меню */
.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ========== МЕДИА-ЗАПРОСЫ ДЛЯ МОБИЛЬНЫХ ========== */

@media (max-width: 768px) {
    /* Показываем бургер-кнопку */
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Скрываем обычное меню */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease-in-out;
        z-index: 100;
        padding-top: 80px;
    }
    
    /* Открытое меню */
    .main-nav.active {
        right: 0;
    }
    
    /* Стили для списка в мобильном меню */
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        font-size: 18px;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background-color: var(--light);
        padding-left: 25px;
    }
    
    /* Затемнение фона */
    .menu-overlay {
        display: none;
    }
    
    .menu-overlay.active {
        display: block;
    }
    
    /* Фиксируем body при открытом меню */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Адаптация хедера для мобильных */
    .header-content {
        height: 60px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .logo-text {
        font-size: 20px;
    }
	
	    .hero-main h1 {
        font-size: 2rem;
    }
    
    .hero-main-subtitle {
        font-size: 18px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links a {
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .main-nav {
        width: 85%;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .nav-link:hover {
        padding-left: 20px;
    }
	.btn-primary {
		margin-bottom: 20px;
	}
}

/* Для очень маленьких экранов */
@media (max-width: 360px) {
    .logo-text {
        font-size: 18px;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .mobile-menu-toggle {
        padding: 5px;
    }
    
    .hamburger-line {
        width: 22px;
        margin: 4px 0;
    }
}

/* ========== ДОПОЛНИТЕЛЬНЫЕ МОБИЛЬНЫЕ УЛУЧШЕНИЯ ========== */

/* Улучшение touch-областей для мобильных */
@media (max-width: 768px) {
    /* Увеличиваем область касания для кнопок */
    .btn,
    .city-card,
    .nav-link,
    .transport-btn,
    .faq-question,
    .city-pill {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(203, 17, 171, 0.1);
    }
    
    /* Убираем hover-эффекты на мобильных */
    .city-card:hover,
    .transport-btn:hover,
    .btn:hover {
        transform: none;
    }
    
    /* Добавляем active-эффекты для touch */
    .city-card:active,
    .transport-btn:active,
    .btn:active {
        opacity: 0.7;
        transform: scale(0.98);
    }
    
    /* Улучшаем читаемость на мобильных */
    h1 {
        font-size: 28px !important;
    }
    
    h2 {
        font-size: 24px !important;
    }
    
    p {
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Адаптация сеток */
    .hero-grid,
    .calculator-grid,
    .requirements-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    /* Улучшаем отступы */
    section {
        padding: 40px 0 !important;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Адаптация карточек */
    .city-card {
        padding: 15px;
    }
    
    .city-name {
        font-size: 16px;
    }
    
    /* Адаптация калькулятора */
    .transport-buttons {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .transport-btn {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    .transport-btn i {
        font-size: 20px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    /* Адаптация преимуществ */
    .suitable-grid {
        grid-template-columns: 1fr;
    }
    
    .suitable-card {
        padding: 20px;
    }
    
    /* Адаптация FAQ */
    .faq-question h3 {
        font-size: 16px;
        padding-right: 40px;
    }
    
    /* Адаптация футера */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-links a {
        margin: 0;
        font-size: 14px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 360px) {
    h1 {
        font-size: 24px !important;
    }
    
    h2 {
        font-size: 20px !important;
    }
    
    .badge {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .stat-value {
        font-size: 18px;
    }
}

/* Адаптация для планшетов */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-grid,
    .calculator-grid,
    .requirements-grid {
        gap: 30px;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .suitable-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Улучшение доступности */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Стили для устройств с сенсорным экраном */
@media (hover: none) and (pointer: coarse) {
    /* Убираем hover-эффекты на сенсорных устройствах */
    .nav-link:hover::after,
    .city-card:hover,
    .btn:hover {
        display: none;
    }
    
    /* Добавляем отступы для удобства касания */
    .nav-link {
        padding: 12px 0;
    }
    
    .city-pill {
        padding: 12px 20px;
    }
}
/* Стили для калькулятора */
.calculator-stats {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row strong {
    color: var(--primary);
    font-size: 18px;
}

.transport-orders {
    font-size: 12px;
    color: var(--gray);
    margin-top: 5px;
}

.input-hint {
    font-size: 12px;
    color: var(--gray);
    font-weight: normal;
    margin-left: 10px;
}

/* Таблица сравнения */
.transport-comparison {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--border);
}

.transport-comparison h4 {
    margin-bottom: 15px;
    color: var(--dark);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table th {
    background: var(--primary);
    color: white;
    padding: 10px;
    text-align: left;
}

.comparison-table td {
    padding: 10px;
    border-bottom: 1px solid var(--border);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table i {
    margin-right: 5px;
    color: var(--primary);
}

.foot-row td:first-child {
    color: #28a745;
}

.bicycle-row td:first-child {
    color: #17a2b8;
}

.car-row td:first-child {
    color: #dc3545;
}

.table-note {
    font-size: 12px;
    color: var(--gray);
    margin-top: 10px;
    text-align: right;
}

/* Мобильная адаптация для таблицы */
@media (max-width: 768px) {
    .comparison-table {
        font-size: 12px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 5px;
    }
    
    .transport-orders {
        display: none; /* Скрываем на мобильных для экономии места */
    }
    
    .transport-btn {
        padding: 10px;
    }
    
    .transport-btn i {
        font-size: 20px;
    }
    
    .transport-btn span {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
	.stat-value {
		font-size: 18px;
	}
	.stat-row {
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
	}
}