/* Самохостинг шрифтов (вариативные woff2, без внешних запросов) */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700 800;
    font-display: swap;
    src: url(/fonts/montserrat-var-cyrillic-ext.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700 800;
    font-display: swap;
    src: url(/fonts/montserrat-var-cyrillic.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700 800;
    font-display: swap;
    src: url(/fonts/montserrat-var-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url(/fonts/inter-var-cyrillic-ext.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url(/fonts/inter-var-cyrillic.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url(/fonts/inter-var-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   CHINA AIRLINES · Казахстан — дизайн «Сливовый цвет» (梅花)
   Палитра взята из официального логотипа: сливово-красный #A12132,
   лепестковый розовый #CA5766, чернильный синий #1D294C.
   Фактура — рисовая бумага + посадочный талон.
   ============================================================ */

:root {
    --plum:     #A12132;
    --plum-d:   #7E1626;
    --plum-l:   #C33A4A;
    --petal:    #CA5766;
    --blush:    #FBF0F1;
    --blush-2:  #F5E2E4;
    --navy:     #1D294C;
    --navy-2:   #16213F;
    --navy-3:   #2E3C66;
    --ink:      #232B3D;
    --muted:    #64708A;
    --paper:    #FCFAF7;
    --sand:     #F5F0E9;
    --line:     #E8E2D9;
    --line-2:   #DFD6CA;
    --gold:     #C6A15B;
    --jade:     #147C6F;
    --white:    #fff;
    --shadow:   0 12px 34px rgba(29, 41, 76, .10);
    --shadow-s: 0 4px 14px rgba(29, 41, 76, .07);
    --shadow-l: 0 24px 60px rgba(29, 41, 76, .18);
    --r:        16px;
    --font-h:   'Montserrat', 'Segoe UI', Arial, sans-serif;
    --font-b:   'Inter', 'Segoe UI', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font: 400 16px/1.65 var(--font-b);
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: var(--plum); text-decoration: none; }
a:hover { color: var(--plum-l); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 74px 0; }
.section--sand { background: var(--sand); }
.section--blush { background: linear-gradient(180deg, var(--blush) 0%, #fff 100%); }
.section--navy { background: var(--navy-2); color: rgba(255,255,255,.86); }
.section--navy h2, .section--navy h3 { color: #fff; }

h1, h2, h3, h4 { font-family: var(--font-h); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(29px, 4.4vw, 50px); font-weight: 800; letter-spacing: -.6px; }
h2 { font-size: clamp(23px, 2.9vw, 33px); font-weight: 800; letter-spacing: -.3px; }
h3 { font-size: 19px; font-weight: 700; }

/* ---------- Общие мелочи ---------- */
.kicker {
    display: inline-flex; align-items: center; gap: 9px;
    font: 700 12px/1 var(--font-b); letter-spacing: 2.4px;
    text-transform: uppercase; color: var(--plum);
    margin-bottom: 13px;
}
.kicker::before {
    content: ''; width: 22px; height: 2px; flex: none;
    background: linear-gradient(90deg, var(--plum), var(--petal));
    border-radius: 2px;
}
.section__head { max-width: 760px; margin-bottom: 34px; }
.section__head .after { color: var(--muted); margin-top: 12px; font-size: 16.5px; }
/* «Мазок кисти» под заголовком секции */
.brush { position: relative; display: inline-block; }
.brush::after {
    content: ''; position: absolute; left: 2px; right: -6px; bottom: -7px; height: 7px;
    background: linear-gradient(90deg, rgba(202,87,102,.55), rgba(161,33,50,.16) 78%, transparent);
    border-radius: 7px 12px 9px 14px / 6px 8px 5px 7px;
}

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 13px 24px; border-radius: 10px;
    font: 600 15px/1 var(--font-b);
    border: 0; cursor: pointer; transition: .18s;
    white-space: nowrap;
}
.btn .ic { width: 17px; height: 17px; fill: currentColor; flex: none; }
.btn--plum { background: var(--plum); color: #fff !important; box-shadow: 0 8px 20px rgba(161,33,50,.30); }
.btn--plum:hover { background: var(--plum-d); transform: translateY(-1px); }
.btn--ghost { background: rgba(255,255,255,.07); color: #fff !important; border: 1.5px solid rgba(255,255,255,.38); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.14); }
.btn--line { background: #fff; color: var(--navy) !important; border: 1.5px solid var(--line-2); }
.btn--line:hover { border-color: var(--navy); }
.btn--sm { padding: 9px 15px; font-size: 13.5px; border-radius: 8px; }

.chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 999px;
    background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.20);
    color: #fff; font: 500 13.5px/1.3 var(--font-b);
}
.chip .ic { width: 13px; height: 13px; fill: var(--petal); flex: none; }
.tag {
    display: inline-block; padding: 4px 10px; border-radius: 6px;
    font: 700 11px/1.5 var(--font-b); letter-spacing: 1.1px; text-transform: uppercase;
}
.tag--plum { background: var(--blush-2); color: var(--plum-d); }
.tag--jade { background: #E3F1EF; color: var(--jade); }
.tag--gold { background: #F6EEDD; color: #8A6B22; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.prose p { margin-bottom: 14px; color: #303A50; }
.prose p:last-child { margin-bottom: 0; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- Верхняя служебная полоса ---------- */
.topbar {
    background: var(--navy-2); color: rgba(255,255,255,.72);
    font: 500 12.5px/1 var(--font-b);
}
.topbar__in { display: flex; align-items: center; gap: 22px; height: 36px; }
.topbar b { color: #fff; font-weight: 600; }
.topbar__i { display: inline-flex; align-items: center; gap: 7px; }
.topbar__i svg { width: 13px; height: 13px; fill: var(--petal); flex: none; }
.topbar__spacer { margin-left: auto; }

/* ---------- Шапка ---------- */
.site-header {
    position: sticky; top: 0; z-index: 60;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.site-header.scrolled { box-shadow: 0 6px 22px rgba(29,41,76,.10); }
.header-in { display: flex; align-items: center; gap: 18px; height: 70px; }

.logo { display: inline-flex; flex-direction: column; align-items: flex-start; flex: none; }
.logo__img { display: block; height: 28px; width: auto; }

.nav { display: flex; gap: 1px; margin-left: auto; }
.nav a {
    padding: 9px 11px; border-radius: 8px;
    color: var(--navy); font: 500 14px/1 var(--font-b);
    transition: .15s;
}
.nav a:hover { background: var(--blush); color: var(--plum); }

.lang-switch {
    display: inline-flex; align-items: center; gap: 2px; flex: none;
    background: var(--sand); border: 1px solid var(--line-2);
    border-radius: 999px; padding: 3px;
}
.lang-switch a {
    padding: 5px 10px; border-radius: 999px;
    font: 700 11.5px/1 var(--font-b); letter-spacing: .8px;
    color: var(--muted); transition: .15s;
}
.lang-switch a:hover { color: var(--navy); }
.lang-switch a.active { background: var(--plum); color: #fff; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; margin: 5px 0; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
    position: relative; overflow: hidden; color: #fff;
    background:
        radial-gradient(1100px 520px at 88% 8%, rgba(202,87,102,.42) 0%, transparent 62%),
        linear-gradient(140deg, #131C36 0%, #1D294C 42%, #46243F 74%, #7E1626 100%);
}
.hero__in { position: relative; z-index: 2; padding: 56px 20px 66px; display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: 46px; align-items: center; }
.hero__lead { color: rgba(255,255,255,.82); font-size: 17px; margin: 16px 0 20px; max-width: 560px; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: #FFC2C8; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
/* лепестки-подложка */
.hero__petals { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__petals .bl { position: absolute; opacity: .10; fill: #fff; }
.hero__petals .b1 { width: 320px; top: -70px; right: -60px; opacity: .13; }
.hero__petals .b2 { width: 170px; bottom: -46px; left: -40px; opacity: .09; }
.hero__petals .b3 { width: 86px; top: 46%; right: 46%; opacity: .07; }
.hero__arc { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }

/* Карточка поиска в hero */
.searchcard {
    background: #fff; border-radius: 18px; box-shadow: var(--shadow-l);
    padding: 20px 20px 16px; color: var(--ink);
    border: 1px solid rgba(255,255,255,.5);
}
.searchcard__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.searchcard__top h2 { font-size: 19px; letter-spacing: -.2px; }
.searchcard__note { font-size: 12.5px; color: var(--muted); margin-top: 10px; line-height: 1.5; }
.searchcard__tabs { display: flex; gap: 6px; margin: 12px 0 14px; flex-wrap: wrap; }
.searchcard__tabs button {
    padding: 7px 13px; border-radius: 999px; cursor: pointer;
    font: 600 12.5px/1 var(--font-b); color: var(--navy);
    background: var(--sand); border: 1px solid var(--line-2); transition: .15s;
}
.searchcard__tabs button.on { background: var(--navy); border-color: var(--navy); color: #fff; }
.searchcard__trust { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--line-2); }
.searchcard__trust span { display: inline-flex; align-items: center; gap: 6px; font: 500 12px/1.4 var(--font-b); color: var(--muted); }
.searchcard__trust svg { width: 13px; height: 13px; fill: var(--jade); flex: none; }

/* Заглушка формы Travelpayouts (в бою — их скрипт) */
.tpmock { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 8px; }
.tpmock .f {
    border: 1px solid var(--line-2); border-radius: 10px; padding: 9px 12px; background: #fff;
    min-width: 0;
}
.tpmock .f small { display: block; font: 500 10.5px/1 var(--font-b); color: var(--muted); letter-spacing: .4px; text-transform: uppercase; }
.tpmock .f b { display: block; font: 700 15px/1.4 var(--font-h); color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tpmock .f--wide { grid-column: span 2; }
.tpmock .go { grid-column: span 4; }

/* ---------- Лента маршрутов (посадочные талоны) ---------- */
.rail-wrap { background: var(--sand); border-bottom: 1px solid var(--line); padding: 22px 0 26px; }
.rail-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.rail-head h2 { font-size: 17px; }
.rail-head span { color: var(--muted); font-size: 13.5px; }
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(238px, 1fr); gap: 14px; overflow-x: auto; padding-bottom: 6px; }

/* Карточка-талон */
.pass {
    position: relative; background: #fff; border: 1px solid var(--line);
    border-radius: 14px; box-shadow: var(--shadow-s); overflow: hidden;
    display: flex; flex-direction: column; transition: .18s;
}
.pass:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--blush-2); }
.pass__top { padding: 15px 17px 13px; }
.pass__air { display: flex; align-items: center; justify-content: space-between; font: 600 11px/1 var(--font-b); letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); margin-bottom: 11px; }
.pass__air b { color: var(--plum); font-weight: 700; }
.pass__iata { display: flex; align-items: center; gap: 10px; }
.pass__iata .code { font: 800 27px/1 var(--font-h); color: var(--navy); letter-spacing: -.5px; }
.pass__iata .path { flex: 1; position: relative; height: 14px; min-width: 26px; }
.pass__iata .path::before { content: ''; position: absolute; left: 0; right: 0; top: 7px; border-top: 1.5px dotted var(--line-2); }
.pass__iata .path svg { position: absolute; left: 50%; top: 0; width: 14px; height: 14px; transform: translateX(-50%); fill: var(--petal); background: #fff; padding: 0 1px; }
.pass__city { display: flex; justify-content: space-between; gap: 8px; font-size: 12.5px; color: var(--muted); margin-top: 6px; }
/* перфорация */
.pass__perf { position: relative; height: 14px; }
.pass__perf::before { content: ''; position: absolute; left: 12px; right: 12px; top: 50%; border-top: 1.5px dashed var(--line-2); }
.pass__perf::after {
    content: ''; position: absolute; left: -8px; right: -8px; top: 50%; height: 16px; transform: translateY(-50%);
    background:
        radial-gradient(circle 8px at 0 50%, var(--sand) 98%, transparent 100%),
        radial-gradient(circle 8px at 100% 50%, var(--sand) 98%, transparent 100%);
    background-repeat: no-repeat; background-size: 16px 16px, 16px 16px; background-position: left center, right center;
}
.pass__bot { padding: 11px 17px 15px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pass__price small { display: block; font: 500 10.5px/1 var(--font-b); color: var(--muted); text-transform: uppercase; letter-spacing: .8px; }
.pass__price b { font: 800 19px/1.3 var(--font-h); color: var(--plum); }
.pass--sand .pass__perf::after {
    background:
        radial-gradient(circle 8px at 0 50%, #fff 98%, transparent 100%),
        radial-gradient(circle 8px at 100% 50%, #fff 98%, transparent 100%);
    background-repeat: no-repeat; background-size: 16px 16px, 16px 16px; background-position: left center, right center;
}
.pass--paper .pass__perf::after {
    background:
        radial-gradient(circle 8px at 0 50%, var(--paper) 98%, transparent 100%),
        radial-gradient(circle 8px at 100% 50%, var(--paper) 98%, transparent 100%);
    background-repeat: no-repeat; background-size: 16px 16px, 16px 16px; background-position: left center, right center;
}

/* ---------- Карточки-цифры ---------- */
.stat {
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    padding: 18px 18px 16px; text-align: center; box-shadow: var(--shadow-s);
}
.stat b { display: block; font: 800 34px/1 var(--font-h); color: var(--plum); }
.stat p { color: var(--muted); font-size: 13.5px; margin-top: 7px; }

/* ---------- Карточка стыковки ---------- */
.hub {
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    padding: 18px; box-shadow: var(--shadow-s); display: flex; flex-direction: column; gap: 12px;
}
.hub__h { display: flex; align-items: center; gap: 10px; }
.hub__h .n { width: 30px; height: 30px; border-radius: 9px; background: var(--blush); color: var(--plum-d); font: 800 14px/30px var(--font-h); text-align: center; flex: none; }
.leg { display: grid; grid-template-columns: 62px minmax(0,1fr) auto; gap: 10px; align-items: center; font-size: 13.5px; }
.leg + .leg { border-top: 1px dashed var(--line-2); padding-top: 9px; margin-top: 9px; }
.leg .lc { font: 800 13px/1 var(--font-h); color: var(--navy); letter-spacing: .3px; }
.leg .ld { color: var(--muted); font-size: 12.5px; }
.leg .lt { font: 600 12.5px/1 var(--font-b); color: var(--plum); white-space: nowrap; }

/* ---------- Карточки классов / услуг ---------- */
.card {
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    padding: 20px; box-shadow: var(--shadow-s); height: 100%;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.5px; }
.card ul { list-style: none; margin-top: 11px; }
.card ul li { position: relative; padding-left: 20px; font-size: 14px; color: #3A445C; margin-bottom: 6px; }
.card ul li::before {
    content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%;
    background: var(--petal);
}
.card--accent { border-top: 3px solid var(--plum); }

/* ---------- Таблицы ---------- */
table { width: 100%; border-collapse: collapse; background: #fff; min-width: 560px; }
table th, table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14.5px; }
table th { background: var(--navy); color: #fff; font: 700 13px/1.4 var(--font-b); letter-spacing: .3px; }
table tr:last-child td { border-bottom: 0; }
table tbody tr:nth-child(even) td { background: #FCFAF7; }
.tbl { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-s); }
.tbl.table-scroll { overflow-x: auto; overflow-y: hidden; }

/* ---------- Флот ---------- */
.plane-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; box-shadow: var(--shadow-s); }
.plane-card .pl { background: var(--sand); border-radius: 10px; padding: 12px; margin: 12px 0; }
.plane-card .pl--top svg { display: block; margin: 0 auto; max-height: 210px; width: auto; }
.section--sand .plane-card .pl { background: var(--paper); }
.plane-card .specs { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 12.5px; color: var(--muted); }
.plane-card .specs b { color: var(--navy); font: 700 13px/1 var(--font-h); display: block; }
.cabin { display: flex; height: 9px; border-radius: 5px; overflow: hidden; margin-top: 12px; }
.cabin i { display: block; height: 100%; }
.cabin-l { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; font-size: 12px; color: var(--muted); }
.cabin-l span { display: inline-flex; align-items: center; gap: 6px; }
.cabin-l b { width: 9px; height: 9px; border-radius: 3px; display: inline-block; }

/* ---------- Флот: строки на странице «Самолёты» ---------- */
.fleet-row {
    display: grid; grid-template-columns: minmax(0, 260px) minmax(0, 1fr); gap: 30px; align-items: center;
    background: #fff; border: 1px solid var(--line); border-radius: 16px;
    padding: 22px; box-shadow: var(--shadow-s); margin-bottom: 20px;
}
.fleet-row--alt { direction: rtl; }
.fleet-row--alt > * { direction: ltr; }
.fleet-row__pic { background: var(--sand); border-radius: 12px; padding: 14px; }
.fleet-row__pic svg { display: block; margin: 0 auto; max-height: 260px; width: auto; }
.fleet-row__txt h2 { margin: 10px 0 10px; }
.fleet-row__txt p { color: #303A50; margin-bottom: 14px; }

/* ---------- Лояльность (тёмная секция) ---------- */
.tier {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px; padding: 18px;
}
.tier__badge {
    width: 44px; height: 44px; border-radius: 12px; margin-bottom: 12px;
    display: flex; align-items: center; justify-content: center;
}
.tier__badge svg { width: 24px; height: 24px; }
.tier p { color: rgba(255,255,255,.66); font-size: 14px; margin-top: 6px; }

/* ---------- FAQ ---------- */
.faq { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; box-shadow: var(--shadow-s); }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
    list-style: none; cursor: pointer; padding: 16px 46px 16px 18px; position: relative;
    font: 700 15.5px/1.45 var(--font-h); color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: ''; position: absolute; right: 18px; top: 22px; width: 9px; height: 9px;
    border-right: 2px solid var(--plum); border-bottom: 2px solid var(--plum);
    transform: rotate(45deg); transition: .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .a { padding: 0 18px 17px; color: #3A445C; font-size: 15px; }

/* ---------- Виджет-обёртка ---------- */
.widget-wrap { position: relative; z-index: 5; }
.widget-box {
    background: #fff; border: 1px solid var(--line); border-radius: 18px;
    padding: 22px; box-shadow: var(--shadow);
}
.widget-box h2 { font-size: 22px; margin-bottom: 6px; }
.widget-box .wn { color: var(--muted); font-size: 14px; margin-bottom: 16px; }

/* ---------- Подвал ---------- */
.site-footer { background: var(--navy-2); color: rgba(255,255,255,.62); padding: 50px 0 26px; font-size: 14px; }
.site-footer h4 { color: #fff; font-size: 14.5px; margin-bottom: 12px; letter-spacing: .3px; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: minmax(0,1.5fr) repeat(3, minmax(0,1fr)); gap: 28px; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-bot { margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.10); font-size: 12.5px; color: rgba(255,255,255,.45); display: flex; gap: 16px; flex-wrap: wrap; justify-content: space-between; }

/* ---------- Липкая мобильная панель CTA ---------- */
.mobile-cta {
    display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
    border-top: 1px solid var(--line); padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 22px rgba(29,41,76,.12);
    align-items: center; gap: 12px;
}
.mobile-cta .mc-t { min-width: 0; }
.mobile-cta .mc-t b { display: block; font: 700 13.5px/1.2 var(--font-h); color: var(--navy); }
.mobile-cta .mc-t small { color: var(--muted); font-size: 11.5px; }
.mobile-cta .btn { margin-left: auto; }

/* ---------- Шапка внутренней страницы ---------- */
.page-hero {
    position: relative; overflow: hidden; color: #fff;
    background:
        radial-gradient(900px 420px at 92% 0%, rgba(202,87,102,.38) 0%, transparent 62%),
        linear-gradient(135deg, #131C36 0%, #1D294C 52%, #5A2036 100%);
    padding: 34px 0 40px;
}
.page-hero h1 { color: #fff; font-size: clamp(26px, 3.6vw, 40px); }
.page-hero__lead { color: rgba(255,255,255,.80); margin-top: 14px; max-width: 720px; font-size: 16.5px; }
.page-hero__petals { position: absolute; inset: 0; pointer-events: none; }
.page-hero__petals .bl { position: absolute; fill: #fff; }
.page-hero__petals .b1 { width: 220px; top: -70px; right: -40px; opacity: .10; }
.page-hero__petals .b2 { width: 110px; bottom: -50px; left: 8%; opacity: .07; }
.page-hero .container { position: relative; z-index: 2; }

.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; margin-bottom: 14px; color: rgba(255,255,255,.55); }
.crumbs a { color: rgba(255,255,255,.75); }
.crumbs a:hover { color: #fff; }
.crumbs__here { color: rgba(255,255,255,.55); }

/* ---------- Мобильное меню ---------- */
.nav.open {
    display: flex; flex-direction: column; gap: 2px;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(29,41,76,.14);
    padding: 10px 20px 16px; margin: 0; z-index: 61;
}
.nav.open a { padding: 11px 8px; border-radius: 8px; font-size: 15px; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Кнопка «наверх» ---------- */
.to-top {
    position: fixed; right: 18px; bottom: 18px; z-index: 65;
    width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer;
    background: var(--navy); color: #fff; font-size: 19px; line-height: 1;
    box-shadow: 0 8px 20px rgba(29,41,76,.28);
    opacity: 0; visibility: hidden; transition: .2s;
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--plum); }

/* ---------- Варианты карточки поиска ---------- */
.searchcard--block { max-width: none; }
.searchcard--block .searchcard__top h2 { font-size: 23px; }
.searchcard__form { min-height: 96px; }
.searchcard__form iframe { max-width: 100% !important; }

/* Таблица дешёвых билетов ТП */
.pricetable {
    background: #fff; border: 1px solid var(--line); border-radius: 16px;
    padding: 20px; box-shadow: var(--shadow-s); margin-top: 26px;
}
.pricetable h2 { font-size: 21px; margin-bottom: 14px; }
.pricetable iframe, .pricetable table { max-width: 100% !important; }

/* ---------- Подвал: дополнения ---------- */
.site-footer { position: relative; overflow: hidden; }
.footer-petals { position: absolute; inset: 0; pointer-events: none; }
.footer-petals .bl { position: absolute; width: 260px; right: -70px; top: -90px; fill: #fff; opacity: .05; }
.site-footer .container { position: relative; z-index: 2; }
.logo--foot img { display: block; height: 26px; width: auto; opacity: .95; }
.footer-about { margin-top: 14px; max-width: 340px; }
.footer-addr { margin-top: 12px; font-style: normal; font-size: 13.5px; color: rgba(255,255,255,.55); }
.footer-addr a { color: rgba(255,255,255,.72); }

/* ---------- Маршрутная страница ---------- */
.route-top { display: grid; grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: 34px; align-items: start; }
.pass--big { position: sticky; top: 92px; }
.pass--big .pass__iata .code { font-size: 31px; }
.pass__bot--stats { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.pass__stat b { display: block; font: 800 16px/1.2 var(--font-h); color: var(--navy); }
.pass__stat small { color: var(--muted); font-size: 12px; }

.card--link { display: block; position: relative; transition: .18s; }
.card--link:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--blush-2); }
.card--link h3 { color: var(--navy); }
.card--link .card__go { position: absolute; right: 18px; bottom: 14px; color: var(--plum); font-size: 18px; }

/* ---------- Карта представительства ---------- */
.ymap {
    position: relative; margin: 16px 0 24px;
    border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
    box-shadow: var(--shadow-s); background: var(--sand);
    /* width обязательно задать явно: иначе min-height задаёт ширину через aspect-ratio */
    width: 100%; aspect-ratio: 16 / 9; min-height: 240px;
}
.ymap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Проза внутренних страниц ---------- */
.article { max-width: 860px; }
.article h2 { margin: 30px 0 12px; }
.article h2:first-child { margin-top: 0; }
.article h3 { margin: 22px 0 8px; }
.article p { margin-bottom: 13px; color: #303A50; }
.article ul, .article ol { margin: 0 0 15px 0; padding-left: 0; list-style: none; }
.article li { position: relative; padding-left: 22px; margin-bottom: 7px; color: #303A50; }
.article ul li::before { content: ''; position: absolute; left: 2px; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--petal); }
.article ol { counter-reset: n; }
.article ol li { counter-increment: n; }
.article ol li::before { content: counter(n); position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border-radius: 50%; background: var(--blush-2); color: var(--plum-d); font: 700 11px/18px var(--font-h); text-align: center; }
.article .tbl { margin: 18px 0 22px; }
.note {
    background: var(--blush); border-left: 3px solid var(--plum); border-radius: 0 10px 10px 0;
    padding: 14px 16px; margin: 18px 0; font-size: 15px; color: #3A445C;
}
.note b { color: var(--plum-d); }

/* ---------- Адаптив ---------- */
.cta-short { display: none; }
@media (max-width: 1240px) {
    .hero__in { gap: 30px; }
    .nav a { padding: 9px 8px; font-size: 13.5px; }
    .header-in { gap: 12px; }
    .cta-long { display: none; }
    .cta-short { display: inline; }
}
@media (max-width: 1140px) {
    .nav { display: none; }
    .burger { display: block; margin-left: auto; }
}
@media (max-width: 1020px) {
    .hero__in { grid-template-columns: minmax(0,1fr); padding-bottom: 34px; }
    .route-top { grid-template-columns: minmax(0,1fr); gap: 24px; }
    .pass--big { position: static; max-width: 420px; }
    .searchcard { order: -1; }
    .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 900px) {
    /* на мобильных за CTA отвечает липкая нижняя панель */
    .header-in > .btn { display: none; }
    .logo__img { height: 23px; }
}
@media (max-width: 980px) {
    .topbar__i--hide-m { display: none; }
}
@media (max-width: 860px) {
    .fleet-row { grid-template-columns: minmax(0,1fr); gap: 18px; direction: ltr; }
    .fleet-row__pic svg { max-height: 220px; }
}
@media (max-width: 760px) {
    .section { padding: 52px 0; }
    .btn { white-space: normal; text-align: center; max-width: 100%; }
    .topbar__i--hide-s { display: none; }
    .page-hero { padding: 24px 0 30px; }
    .to-top { bottom: 76px; right: 12px; }
    .grid-2, .grid-3 { grid-template-columns: minmax(0,1fr); }
    .tpmock { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .tpmock .f--wide { grid-column: span 2; }
    .tpmock .go { grid-column: span 2; }
    .topbar__in { height: auto; padding: 8px 0; flex-wrap: wrap; gap: 10px 18px; }
    .mobile-cta { display: flex; }
    body { padding-bottom: 68px; }
}
@media (max-width: 520px) {
    .grid-4 { grid-template-columns: minmax(0,1fr); }
    .footer-grid { grid-template-columns: minmax(0,1fr); }
    .hero__in { padding: 34px 20px 30px; }
}
