:root {
    --navy:        #081e52;
    --blue:        #1e5bff;
    --blue-dark:   #1040cc;
    --blue-pale:   #eef3ff;
    --white:       #ffffff;
    --bg:          #f4f6fb;
    --border:      #e4e9f5;
    --border-md:   #c8d3ef;
    --text-main:   #111827;
    --text-muted:  #4b5b84;
    --green-acc:   #0db57a;
    --radius-card: 24px;
    --radius-field:14px;
    --shadow-card: 0 8px 48px rgba(8,30,82,0.10);
    --ease:        cubic-bezier(0.4,0,0.2,1);
}

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

body {
    font-family: 'Manrope', sans-serif;
    background: var(--bg);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(30,91,255,0.08);
    border: 1px solid rgba(30,91,255,0.18);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 14px;
}
.section-label::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--blue);
    border-radius: 50%;
}

.section-title {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.18;
    letter-spacing: -0.03em;
}
.section-title span { color: var(--blue); }

.section-sub {
    font-family: 'Manrope', sans-serif;
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.65;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: transparent;
    color: var(--blue);
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    border: 2px solid var(--blue-pale);
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.22s ease;
}
.btn-outline:hover {
    background: rgba(30,91,255,0.06);
    border-color: var(--blue);
}

.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, #0a2466 50%, #0c316e 100%);
    padding: 64px 28px 130px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 0%, transparent 80%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse 70% 80% at 80% 60%, rgba(30,91,255,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(95,139,255,0.12) 0%, transparent 55%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 20px;
}
.hero-badge-dot {
    width: 6px; height: 6px;
    background: #7DDFB4;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:0.4; transform:scale(0.75); }
}

.hero h1 {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}
.hero h1 em {
    font-style: normal;
    color: transparent;
    background: linear-gradient(90deg, #6FB3FF 0%, #A5C8FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 0.97rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    max-width: 420px;
    margin-bottom: 28px;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.hero-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
}
.hero-chip svg { width: 14px; height: 14px; color: #7DDFB4; }

.hero-routes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.route-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floatY 4s ease-in-out infinite;
    transition: background 0.2s;
}
.route-card:nth-child(2) { animation-delay: 1.3s; }
.route-card:nth-child(3) { animation-delay: 2.6s; }
.route-card:hover { background: rgba(255,255,255,0.11); }

@keyframes floatY {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

.rc-icon {
    width: 40px; height: 40px;
    background: rgba(30,91,255,0.35);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.rc-icon svg { width: 18px; height: 18px; color: #fff; }

.rc-info { flex: 1; min-width: 0; }
.rc-route {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rc-meta {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
}
.rc-right { text-align: right; flex-shrink: 0; }
.rc-price {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #7DDFB4;
}
.rc-seats {
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.38);
    margin-top: 2px;
}

.stats-bar {
    background: var(--white);
    border-top: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
    padding: 0;
}
.stats-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: stretch;
}
.stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border-right: 1px solid var(--border);
    transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg); }
.stat-icon {
    width: 44px; height: 44px;
    background: rgba(30,91,255,0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.stat-icon svg { width: 20px; height: 20px; color: var(--blue); }
.stat-num {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 1.45rem; font-weight: 900;
    color: var(--navy); letter-spacing: -0.03em;
    line-height: 1;
}
.stat-label { font-family:'Manrope',sans-serif; font-size:0.76rem; color:var(--text-muted); margin-top:3px; }

.routes-section { padding: 64px 0; background: var(--white); }
.routes-head { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:32px; gap:16px; }

.routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.route-tile {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
}
.route-tile:hover { border-color: rgba(30,91,255,0.25); box-shadow: 0 8px 32px rgba(8,30,82,0.10); transform: translateY(-4px); }

.route-tile-top {
    height: 130px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rtop-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.5s;
}
.route-tile:hover .rtop-bg { transform: scale(1.06); }

.rtop-overlay { position:absolute; inset:0; background:linear-gradient(180deg,rgba(8,30,82,0.1) 0%,rgba(8,30,82,0.65) 100%); }

.rtop-flag {
    position: absolute;
    top: 12px; right: 12px;
    font-size: 1.3rem;
    line-height: 1;
}

.rtop-label {
    position: absolute;
    top: 12px; left: 12px;
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #fff;
    background: rgba(30,91,255,0.6);
    backdrop-filter: blur(6px);
    border-radius: 6px;
    padding: 3px 8px;
}

.route-tile-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.rt-cities { font-family:'Outfit',sans-serif; font-size:0.97rem; font-weight:800; color:var(--navy); margin-bottom:6px; }
.rt-meta { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.rt-badge {
    display: flex; align-items: center; gap: 5px;
    font-family:'Manrope',sans-serif; font-size:0.72rem; font-weight:600;
    color:var(--text-muted);
}
.rt-badge svg { width:13px; height:13px; color:var(--blue); }
.rt-price-row { display:flex; align-items:baseline; gap:5px; margin-top: auto; padding-top: 12px; }
.rt-from { font-family:'Manrope',sans-serif; font-size:0.72rem; color:var(--text-muted); }
.rt-price { font-family:'Outfit',sans-serif; font-size:1.05rem; font-weight:800; color:var(--navy); }
.rt-arrow {
    margin-left: auto;
    width: 28px; height: 28px;
    background: var(--blue-pale);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.route-tile:hover .rt-arrow { background: var(--blue); }
.rt-arrow svg { width: 12px; height: 12px; color: var(--blue); transition: color 0.2s; }
.route-tile:hover .rt-arrow svg { color: #fff; }

.adv-section { padding: 64px 0; background: linear-gradient(180deg, var(--bg) 0%, #e8eeff 100%); }
.adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.adv-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.25s;
}
.adv-card:hover { border-color: rgba(30,91,255,0.22); box-shadow: 0 8px 32px rgba(8,30,82,0.08); transform: translateY(-3px); }
.adv-icon {
    width: 52px; height: 52px;
    background: rgba(30,91,255,0.08);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.adv-icon svg { width: 24px; height: 24px; color: var(--blue); }
.adv-title { font-family:'Outfit',sans-serif; font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:8px; }
.adv-text { font-family:'Manrope',sans-serif; font-size:0.82rem; color:var(--text-muted); line-height:1.65; }

.how-section { padding: 64px 0; background: var(--white); }
.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 48px;
    position: relative;
}
.how-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1.5px;
    background: linear-gradient(90deg, var(--blue) 0%, rgba(30,91,255,0.15) 100%);
}
.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
}
.how-num {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 1.1rem; font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    position: relative; z-index: 1;
    box-shadow: 0 4px 20px rgba(30,91,255,0.3);
}
.how-title { font-family:'Outfit',sans-serif; font-size:0.95rem; font-weight:700; color:var(--navy); margin-bottom:8px; }
.how-text { font-family:'Manrope',sans-serif; font-size:0.8rem; color:var(--text-muted); line-height:1.6; }

.carriers-section {
    padding: 44px 0;
    background: var(--bg);
    border-top: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
    overflow: hidden;
}
.carriers-label {
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 0.73rem; font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 24px;
}
.carriers-wrap { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent); }
.carriers-track { display:flex; align-items:center; gap:52px; animation:scrollCarriers 26s linear infinite; width:max-content; }
@keyframes scrollCarriers { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.carrier-logo { height:32px; display:flex; align-items:center; gap:10px; opacity:0.75; transition:opacity 0.2s; cursor:default; white-space:nowrap; }
.carrier-logo:hover { opacity: 1; }
.carrier-icon { width:32px; height:32px; background:linear-gradient(135deg,var(--navy) 0%,var(--blue-dark) 100%); border-radius:9px; display:flex; align-items:center; justify-content:center; }
.carrier-icon svg { width:16px; height:16px; color:#fff; }
.carrier-name { font-family:'Outfit',sans-serif; font-size:0.92rem; font-weight:800; color:var(--navy); letter-spacing:-0.01em; }

.news-section { padding: 64px 0; background: var(--white); }
.news-head { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:28px; gap:16px; }
.news-grid { display:grid; grid-template-columns: 1.5fr 1fr 1fr; gap:20px; }

.news-card {
    border-radius: 20px; overflow: hidden;
    border: 1.5px solid var(--border);
    background: var(--white);
    text-decoration: none; display: flex; flex-direction: column;
    transition: all 0.25s;
}
.news-card:hover { border-color:rgba(30,91,255,0.22); box-shadow:0 8px 30px rgba(8,30,82,0.09); transform:translateY(-3px); }

.news-thumb { height: 190px; overflow: hidden; }
.news-card.featured .news-thumb { height: 230px; }
.news-thumb-inner { width:100%; height:100%; background-size:cover; background-position:center; transition:transform 0.5s; }
.news-card:hover .news-thumb-inner { transform: scale(1.05); }

.news-body { padding: 20px; flex:1; display:flex; flex-direction:column; }
.news-meta { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.news-cat { font-family:'Outfit',sans-serif; font-size:0.68rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--blue); background:rgba(30,91,255,0.08); border-radius:6px; padding:3px 9px; }
.news-date { font-family:'Manrope',sans-serif; font-size:0.72rem; color:var(--text-muted); }
.news-title { font-family:'Outfit',sans-serif; font-size:0.97rem; font-weight:700; color:var(--navy); line-height:1.35; margin-bottom:10px; flex:1; }
.news-card.featured .news-title { font-size:1.15rem; }
.news-excerpt { font-family:'Manrope',sans-serif; font-size:0.8rem; color:var(--text-muted); line-height:1.6; margin-bottom:14px; display:-webkit-box; line-clamp:3; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.news-read { display:flex; align-items:center; gap:6px; font-family:'Outfit',sans-serif; font-size:0.8rem; font-weight:700; color:var(--blue); margin-top:auto; }
.news-read svg { width:13px; height:13px; transition:transform 0.2s; }
.news-card:hover .news-read svg { transform:translateX(4px); }

.blog-section { padding: 64px 0; background: linear-gradient(180deg, #edf3ff 0%, var(--bg) 100%); }
.blog-head { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:28px; gap:16px; }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }

.blog-card { background:var(--white); border-radius:20px; overflow:hidden; border:1.5px solid var(--border); text-decoration:none; transition:all 0.25s; }
.blog-card:hover { border-color:rgba(30,91,255,0.22); box-shadow:0 8px 30px rgba(8,30,82,0.09); transform:translateY(-3px); }
.blog-thumb { height:190px; overflow:hidden; position:relative; }
.blog-thumb-inner { width:100%; height:100%; background-size:cover; background-position:center; transition:transform 0.5s; }
.blog-card:hover .blog-thumb-inner { transform:scale(1.06); }
.blog-thumb-cat { position:absolute; top:12px; left:12px; font-family:'Outfit',sans-serif; font-size:0.63rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:#fff; background:rgba(8,30,82,0.6); backdrop-filter:blur(8px); border-radius:6px; padding:4px 10px; }
.blog-body { padding:22px; }
.blog-meta { display:flex; align-items:center; gap:8px; margin-bottom:12px; font-family:'Manrope',sans-serif; font-size:0.72rem; color:var(--text-muted); }
.blog-avatar { width:24px; height:24px; border-radius:50%; background:linear-gradient(135deg,var(--blue) 0%,var(--navy) 100%); display:flex; align-items:center; justify-content:center; font-family:'Outfit',sans-serif; font-size:0.6rem; font-weight:800; color:#fff; }
.blog-title { font-family:'Outfit',sans-serif; font-size:0.97rem; font-weight:700; color:var(--navy); line-height:1.35; margin-bottom:10px; }
.blog-excerpt { font-family:'Manrope',sans-serif; font-size:0.78rem; color:var(--text-muted); line-height:1.6; display:-webkit-box; line-clamp:2; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; margin-bottom:16px; }
.blog-footer { display:flex; align-items:center; justify-content:space-between; padding-top:14px; border-top:1px solid var(--border); }
.blog-time { display:flex; align-items:center; gap:5px; font-family:'Manrope',sans-serif; font-size:0.72rem; color:var(--text-muted); }
.blog-time svg { width:13px; height:13px; }
.blog-link { display:flex; align-items:center; gap:5px; font-family:'Outfit',sans-serif; font-size:0.78rem; font-weight:700; color:var(--blue); }
.blog-link svg { width:13px; height:13px; transition:transform 0.2s; }
.blog-card:hover .blog-link svg { transform:translateX(3px); }

.fade-up { opacity:0; transform:translateY(24px); transition:opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

.seo-section { 
    padding: 64px 0; 
    background: var(--white); 
}
.seo-head { 
    text-align: center; 
    margin-bottom: 40px; 
}
.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.seo-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.seo-card:hover {
    border-color: rgba(30,91,255,0.22); 
    box-shadow: 0 8px 32px rgba(8,30,82,0.06);
}
.seo-card-title {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1.5px solid var(--border-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.seo-card-title svg {
    width: 20px; height: 20px;
    color: var(--blue);
}
.seo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.seo-list li a {
    display: flex;
    align-items: center;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}
.seo-list.cities-list li a::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--border-md);
    border-radius: 50%;
    margin-right: 12px;
    transition: background 0.2s, transform 0.2s;
}
.seo-route-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.seo-route-item svg {
    width: 14px; height: 14px;
    color: var(--text-muted);
    transition: color 0.2s, transform 0.2s;
}
.seo-list li a:hover {
    color: var(--blue);
    transform: translateX(5px);
}
.seo-list.cities-list li a:hover::before {
    background: var(--blue);
    transform: scale(1.3);
}
.seo-list li a:hover .seo-route-item svg {
    color: var(--blue);
    transform: translateX(3px);
}

.quick-contacts-section {
    padding: 16px 0;
    background: var(--white);
    border-bottom: 1.5px solid var(--border);
}

.qc-wrapper {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.qc-info, 
.qc-messengers {
    display: flex;
    align-items: center;
    gap: 14px;
}

.qc-label, 
.qc-msg-label {
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.qc-phones {
    display: flex;
    align-items: center;
    gap: 16px;
}

.qc-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    text-decoration: none;
    transition: color var(--transition), transform var(--transition);
}

.qc-phone-link:hover {
    color: var(--blue);
    transform: translateY(-1px);
}

.qc-phone-link svg {
    color: var(--blue);
}

.qc-divider {
    width: 1px;
    height: 28px;
    background: var(--border);
}

.qc-msg-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qc-msg-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--white);
    border: 1.5px solid var(--border);
    transition: all var(--transition);
}

.qc-msg-btn svg {
    transition: transform var(--transition);
}

.qc-msg-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(8, 30, 82, 0.06);
}

.qc-msg-btn:hover svg {
    transform: scale(1.08);
}

.qc-tg { color: #26A5E4; }
.qc-tg:hover { border-color: rgba(38,165,228,0.3); background: rgba(38,165,228,0.05); }

.qc-wa { color: #25D366; }
.qc-wa:hover { border-color: rgba(37,211,102,0.3); background: rgba(37,211,102,0.05); }

.qc-vb { color: #7360F2; }
.qc-vb:hover { border-color: rgba(115,96,242,0.3); background: rgba(115,96,242,0.05); }

.qc-mx { color: #8c46ff; }
.qc-mx:hover { border-color: rgba(140,70,255,0.3); background: rgba(140,70,255,0.05); }

.qc-msg-btn.qc-mx svg {
    transform: scale(1.15);
}

.qc-msg-btn.qc-mx:hover svg {
    transform: scale(1.25);
}

@media (max-width: 991px) {
    .qc-wrapper {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 14px;
    }
    .qc-divider {
    display: none;
    }
    .qc-info, 
    .qc-messengers {
    justify-content: space-between;
    width: 100%;
    }
}

@media (max-width: 576px) {
    .qc-wrapper {
    padding: 16px 12px;
    gap: 16px;
    }

    .qc-info, 
    .qc-messengers {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    width: 100%;
    }

    .qc-label, 
    .qc-msg-label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    }

    .qc-phones {
    flex-direction: column;
    width: 100%;
    gap: 8px;
    }

    .qc-phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 16px;
    background: rgba(30, 91, 255, 0.04); 
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.9rem;
    transition: background 0.2s, border-color 0.2s;
    }

    .qc-phone-link:hover,
    .qc-phone-link:active {
    background: rgba(30, 91, 255, 0.08);
    border-color: var(--blue-pale);
    }

    .qc-messengers {
    border-top: 1px dashed var(--border);
    padding-top: 14px;
    width: 100%;
    }

    .qc-msg-links {
    justify-content: center;
    width: 100%;
    gap: 12px; 
    }

    .qc-msg-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    }

    .qc-msg-btn svg {
    width: 18px;
    height: 18px;
    }
}

.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-head {
    text-align: center;
    margin-bottom: 48px;
}

.faq-head .section-sub {
    max-width: 650px;
    margin: 12px auto 0;
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(30, 91, 255, 0.25);
    box-shadow: 0 4px 20px rgba(8, 30, 82, 0.04);
}

.faq-item.active {
    border-color: rgba(30, 91, 255, 0.4);
    box-shadow: 0 8px 30px rgba(30, 91, 255, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    text-align: left;
    line-height: 1.4;
    gap: 20px;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(30, 91, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-icon svg {
    width: 20px;
    height: 20px;
}

.faq-item:hover .faq-icon {
    background: rgba(30, 91, 255, 0.15);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--blue);
    color: #fff;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer p {
    padding: 0 28px 24px 28px;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

@media (max-width: 768px) {
    .faq-section {
    padding: 60px 0;
    }
    .faq-head {
    margin-bottom: 32px;
    }
    .faq-question {
    font-size: 0.95rem;
    padding: 20px;
    gap: 14px;
    }
    .faq-icon {
    width: 28px;
    height: 28px;
    }
    .faq-icon svg {
    width: 16px;
    height: 16px;
    }
    .faq-answer p {
    padding: 0 20px 20px;
    font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
    padding: 44px 0;
    }
    .faq-accordion {
    gap: 12px;
    }
    .faq-question {
    font-size: 0.9rem;
    padding: 16px;
    }
    .faq-answer p {
    padding: 0 16px 16px;
    font-size: 0.82rem;
    }
}

@media (min-width: 1600px) {
    .container {
    max-width: 1440px;
    padding: 0 48px;
    }

    .hero {
    padding: 80px 48px 150px;
    }

    .hero-inner {
    max-width: 1440px;
    gap: 64px;
    }

    .hero h1 {
    font-size: 3.4rem;
    }

    .stats-bar-inner {
    max-width: 1440px;
    }

    .routes-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    }

    .adv-grid {
    gap: 24px;
    }
}

@media (max-width: 1280px) {
    .container {
    max-width: 1100px;
    padding: 0 32px;
    }

    .hero {
    padding: 60px 32px 130px;
    }

    .hero-inner {
    max-width: 1100px;
    gap: 40px;
    }

    .routes-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    }
}

@media (max-width: 1100px) {
    .container {
    padding: 0 24px;
    }

    .hero {
    padding: 56px 24px 130px;
    }

    .hero-inner {
    gap: 32px;
    }

    .hero h1 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    }

    .route-card {
    padding: 13px 16px;
    border-radius: 14px;
    }

    .rc-route {
    font-size: 0.83rem;
    }

    .rc-meta {
    font-size: 0.66rem;
    }

    .rc-price {
    font-size: 0.88rem;
    }

    .stat-item {
    padding: 18px 18px;
    gap: 12px;
    }

    .stat-num {
    font-size: 1.3rem;
    }

    .routes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    }

    .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    }

    .blog-grid .blog-card:last-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 280px 1fr;
    }

    .blog-grid .blog-card:last-child .blog-thumb {
    height: 100%;
    min-height: 190px;
    }

    .news-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
    }

    .news-card.featured {
    grid-row: span 2;
    }
}

@media (max-width: 900px) {
    .hero {
    padding: 52px 20px 118px;
    }

    .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    }

    .hero-routes {
    display: none;
    }

    .hero h1 {
    font-size: clamp(1.85rem, 5vw, 2.6rem);
    }

    .hero-desc {
    max-width: 100%;
    font-size: 0.93rem;
    }

    .hero-chips {
    gap: 7px;
    }

    .hero-chip {
    font-size: 0.75rem;
    padding: 6px 12px;
    }

    .stats-bar-inner {
    flex-wrap: wrap;
    }

    .stat-item {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid var(--border);
    }

    .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
    border-bottom: none;
    }

    .routes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    }

    .adv-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    }

    .how-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    }

    .how-steps::before {
    display: none;
    }

    .news-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    }

    .news-card.featured {
    grid-column: span 2;
    flex-direction: row;
    }

    .news-card.featured .news-thumb {
    width: 42%;
    height: auto;
    flex-shrink: 0;
    }

    .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    }

    .blog-grid .blog-card:last-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 260px 1fr;
    }

    .blog-grid .blog-card:last-child .blog-thumb {
    height: 100%;
    min-height: 190px;
    }

    .routes-section,
    .adv-section,
    .how-section,
    .news-section,
    .blog-section {
    padding: 52px 0;
    }

    .seo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    }
    .seo-card {
    padding: 24px;
    }
    .seo-section {
    padding: 52px 0;
    }
}

@media (max-width: 768px) {
    .container {
    padding: 0 20px;
    }

    .hero {
    padding: 44px 20px 110px;
    }

    .hero h1 {
    font-size: clamp(1.7rem, 6vw, 2.3rem);
    margin-bottom: 14px;
    }

    .hero-badge {
    font-size: 0.67rem;
    padding: 4px 12px;
    margin-bottom: 16px;
    }

    .hero-desc {
    font-size: 0.9rem;
    margin-bottom: 22px;
    }

    .stat-item {
    padding: 16px 16px;
    gap: 10px;
    }

    .stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    }

    .stat-icon svg {
    width: 17px;
    height: 17px;
    }

    .stat-num {
    font-size: 1.25rem;
    }

    .stat-label {
    font-size: 0.72rem;
    }

    .routes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    }

    .route-tile-top {
    height: 115px;
    }

    .rt-cities {
    font-size: 0.9rem;
    }

    .routes-head,
    .news-head,
    .blog-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
    }

    .adv-card {
    padding: 22px;
    border-radius: 16px;
    }

    .adv-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    margin-bottom: 14px;
    }

    .adv-icon svg {
    width: 20px;
    height: 20px;
    }

    .adv-title {
    font-size: 0.94rem;
    }

    .adv-text {
    font-size: 0.79rem;
    }

    .how-step {
    padding: 0 16px;
    }

    .how-num {
    width: 48px;
    height: 48px;
    font-size: 1rem;
    margin-bottom: 16px;
    }

    .how-title {
    font-size: 0.9rem;
    margin-bottom: 6px;
    }

    .how-text {
    font-size: 0.76rem;
    }

    .carriers-section {
    padding: 36px 0;
    }

    .news-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    }

    .news-card.featured {
    grid-column: span 1;
    flex-direction: column;
    }

    .news-card.featured .news-thumb {
    width: 100%;
    height: 200px;
    }

    .news-thumb {
    height: 170px;
    }

    .news-body {
    padding: 16px;
    }

    .news-title {
    font-size: 0.92rem;
    }

    .news-card.featured .news-title {
    font-size: 1.05rem;
    }

    .blog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    }

    .blog-grid .blog-card:last-child {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    }

    .blog-grid .blog-card:last-child .blog-thumb {
    height: 180px;
    min-height: unset;
    }

    .blog-thumb {
    height: 170px;
    }

    .blog-body {
    padding: 18px;
    }

    .blog-title {
    font-size: 0.92rem;
    }

    .routes-section,
    .adv-section,
    .how-section,
    .news-section,
    .blog-section {
    padding: 44px 0;
    }

    .section-title {
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    }

    .routes-head, 
    .news-head, 
    .blog-head {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    }

    .routes-head > div, 
    .news-head > div, 
    .blog-head > div {
    display: contents;
    }

    .section-label {
    margin-bottom: 0 !important;
    order: 1;
    }

    .routes-head .btn-outline,
    .news-head .btn-outline,
    .blog-head .btn-outline {
    order: 2;
    padding: 6px 12px !important;
    font-size: 0.75rem !important;
    height: fit-content;
    border-width: 1.5px !important;
    border-radius: 10px !important;
    white-space: nowrap;
    }

    .section-title {
    width: 100%;
    order: 3;
    margin-top: 10px !important;
    }

    .section-sub {
    width: 100%;
    order: 4;
    margin-top: 4px !important;
    }

    .bk-section {
    scroll-margin-top: 75px !important;
    }
}

@media (max-width: 640px) {
    .container {
    padding: 0 16px;
    }

    .hero {
    padding: 40px 16px 106px;
    }

    .hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    letter-spacing: -0.03em;
    }

    .stat-item {
    flex: 0 0 50%;
    }

    .routes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    }

    .route-tile {
    border-radius: 16px;
    }

    .route-tile-top {
    height: 100px;
    }

    .rtop-label {
    font-size: 0.55rem;
    padding: 2px 7px;
    }

    .rt-cities {
    font-size: 0.85rem;
    margin-bottom: 5px;
    }

    .rt-meta {
    gap: 7px;
    }

    .rt-badge {
    font-size: 0.68rem;
    }

    .route-tile-body {
    padding: 14px;
    }

    .rt-price {
    font-size: 0.95rem;
    }

    .adv-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    }

    .adv-card {
    padding: 20px;
    display: grid;
    grid-template-columns: 46px 1fr;
    grid-template-rows: auto auto;
    gap: 0 14px;
    align-items: start;
    }

    .adv-icon {
    grid-row: span 2;
    margin-bottom: 0;
    margin-top: 2px;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    flex-shrink: 0;
    }

    .adv-title {
    font-size: 0.9rem;
    margin-bottom: 4px;
    }

    .adv-text {
    font-size: 0.77rem;
    line-height: 1.55;
    }

    .how-steps {
    grid-template-columns: 1fr;
    gap: 20px;
    }

    .how-step {
    flex-direction: row;
    text-align: left;
    padding: 0;
    align-items: flex-start;
    gap: 16px;
    }

    .how-num {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-bottom: 0;
    }

    .how-title {
    margin-bottom: 4px;
    }

    .routes-section,
    .adv-section,
    .how-section,
    .news-section,
    .blog-section {
    padding: 36px 0;
    }

    .routes-head,
    .news-head,
    .blog-head {
    margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .container {
    padding: 0 14px;
    }

    .hero {
    padding: 36px 14px 102px;
    }

    .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    }

    .hero-badge {
    font-size: 0.62rem;
    padding: 4px 10px;
    margin-bottom: 14px;
    }

    .hero-desc {
    font-size: 0.86rem;
    line-height: 1.6;
    margin-bottom: 18px;
    }

    .hero-chip {
    font-size: 0.72rem;
    padding: 5px 11px;
    gap: 6px;
    }

    .hero-chip svg {
    width: 12px;
    height: 12px;
    }

    .stat-item {
    flex: 0 0 100%;
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    padding: 14px 16px;
    flex-direction: row;
    gap: 12px;
    }

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

    .stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    }

    .stat-icon svg {
    width: 16px;
    height: 16px;
    }

    .stat-num {
    font-size: 1.2rem;
    }

    .stat-label {
    font-size: 0.7rem;
    }

    .routes-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    }

    .route-tile {
    flex-direction: row;
    border-radius: 14px;
    min-height: 88px;
    align-items: stretch;
    }

    .route-tile-top {
    width: 115px;
    height: auto;
    min-height: 88px;
    flex-shrink: 0;
    border-radius: 12px 0 0 12px;
    }

    .rtop-flag {
    top: 8px;
    right: 8px;
    font-size: 1.1rem;
    }

    .rtop-label {
    top: 8px;
    left: 8px;
    font-size: 0.5rem;
    padding: 2px 6px;
    }

    .route-tile-body {
    padding: 12px 14px;
    flex: 1;
    justify-content: center;
    min-width: 0;
    }

    .rt-cities {
    font-size: 0.87rem;
    margin-bottom: 4px;
    }

    .rt-meta {
    gap: 6px;
    margin-bottom: 6px;
    }

    .rt-badge {
    font-size: 0.65rem;
    gap: 4px;
    }

    .rt-badge svg {
    width: 11px;
    height: 11px;
    }

    .rt-price-row {
    padding-top: 6px;
    }

    .rt-price {
    font-size: 0.95rem;
    }

    .rt-from {
    font-size: 0.68rem;
    }

    .rt-arrow {
    width: 24px;
    height: 24px;
    }

    .rt-arrow svg {
    width: 10px;
    height: 10px;
    }

    .how-num {
    width: 38px;
    height: 38px;
    font-size: 0.88rem;
    }

    .how-title {
    font-size: 0.87rem;
    }

    .how-text {
    font-size: 0.74rem;
    }

    .news-thumb {
    height: 150px;
    }

    .news-card.featured .news-thumb {
    height: 170px;
    }

    .news-body {
    padding: 14px;
    }

    .news-cat {
    font-size: 0.62rem;
    padding: 2px 7px;
    }

    .news-date {
    font-size: 0.68rem;
    }

    .news-title {
    font-size: 0.88rem;
    margin-bottom: 8px;
    }

    .news-card.featured .news-title {
    font-size: 0.98rem;
    }

    .news-excerpt {
    font-size: 0.77rem;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    margin-bottom: 10px;
    }

    .news-read {
    font-size: 0.76rem;
    }

    .blog-thumb {
    height: 160px;
    }

    .blog-body {
    padding: 16px;
    }

    .blog-meta {
    font-size: 0.68rem;
    gap: 6px;
    }

    .blog-title {
    font-size: 0.88rem;
    margin-bottom: 7px;
    }

    .blog-excerpt {
    font-size: 0.75rem;
    margin-bottom: 12px;
    }

    .blog-footer {
    padding-top: 11px;
    }

    .blog-time {
    font-size: 0.68rem;
    }

    .blog-link {
    font-size: 0.74rem;
    }

    .section-title {
    font-size: clamp(1.25rem, 5vw, 1.7rem);
    }

    .section-sub {
    font-size: 0.84rem;
    }

    .routes-section,
    .adv-section,
    .how-section,
    .news-section,
    .blog-section {
    padding: 32px 0;
    }

    .routes-head,
    .news-head,
    .blog-head {
    margin-bottom: 16px;
    }

    .carriers-section {
    padding: 28px 0;
    }

    .carrier-name {
    font-size: 0.84rem;
    }

    .carrier-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    }

    .sb-sep, #sb-date {
        display: none !important;
    }
}

@media (max-width: 375px) {
    .container {
    padding: 0 12px;
    }

    .hero {
    padding: 30px 12px 98px;
    }

    .hero h1 {
    font-size: 1.45rem;
    }

    .hero-desc {
    font-size: 0.82rem;
    }

    .hero-chips {
    gap: 5px;
    }

    .hero-chip {
    font-size: 0.69rem;
    padding: 5px 10px;
    }

    .stat-item {
    padding: 12px 14px;
    }

    .stat-num {
    font-size: 1.1rem;
    }

    .route-tile-top {
    width: 88px;
    min-height: 82px;
    }

    .rt-cities {
    font-size: 0.82rem;
    }

    .rt-badge {
    font-size: 0.62rem;
    }

    .adv-card {
    padding: 16px;
    }

    .adv-icon {
    width: 38px;
    height: 38px;
    }

    .adv-title {
    font-size: 0.87rem;
    }

    .adv-text {
    font-size: 0.73rem;
    }

    .how-num {
    width: 36px;
    height: 36px;
    font-size: 0.84rem;
    box-shadow: 0 3px 12px rgba(30,91,255,0.25);
    }

    .news-thumb,
    .blog-thumb {
    height: 140px;
    }

    .news-body,
    .blog-body {
    padding: 12px;
    }

    .news-title,
    .blog-title {
    font-size: 0.85rem;
    }

    .section-title {
    font-size: 1.2rem;
    }

    .routes-section,
    .adv-section,
    .how-section,
    .news-section,
    .blog-section {
    padding: 28px 0;
    }
}


@media (min-width: 501px) {
  .seo-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }
}

@media (max-width: 500px) {
  .seo-list {
    text-align: center;
    padding-left: 0;
    list-style: none;
  }

  .seo-list li {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
  }

  .seo-route-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .seo-card:nth-child(1) {
    order: 2; 
  }

  .seo-card:nth-child(2) {
    order: 1;
  }
}