/* ============================================================
   Transavia Russia — style.css
   Design System: CSS Custom Properties + BEM-like naming
   ============================================================ */

/* ── 1. Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ── 2. CSS Variables ── */
:root {
  /* Brand colours — inspired by Transavia palette */
  --c-green:        #00A664;
  --c-green-dark:   #007A49;
  --c-green-light:  #E6F7EF;
  --c-green-mid:    #00C278;

  --c-navy:         #0F2137;
  --c-navy-mid:     #1C3450;
  --c-blue-soft:    #EAF2FF;

  --c-accent:       #FF6B35;
  --c-accent-hover: #E85A24;

  --c-white:   #FFFFFF;
  --c-bg:      #F7F9FC;
  --c-surface: #FFFFFF;

  --c-text:        #1A2B3C;
  --c-text-muted:  #5A6A7A;
  --c-text-light:  #8A9BAC;
  --c-border:      #DDE4EA;
  --c-border-soft: #EEF2F6;

  /* Typography */
  --font-base: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-display: 'Montserrat', 'Inter', sans-serif;

  /* Spacing scale */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(15,33,55,.06);
  --shadow-sm: 0 2px 8px rgba(15,33,55,.08);
  --shadow-md: 0 4px 20px rgba(15,33,55,.10);
  --shadow-lg: 0 8px 40px rgba(15,33,55,.12);
  --shadow-xl: 0 16px 60px rgba(15,33,55,.15);

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   250ms ease;
  --t-slow:   400ms ease;

  /* Container */
  --container: 1180px;
  --container-pad: clamp(16px, 4vw, 40px);

  /* Header */
  --header-h: 72px;
}

/* ── 3. Typography ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700;800&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--c-navy);
  font-weight: 700;
}
h1 { font-size: clamp(28px, 5vw, 52px); }
h2 { font-size: clamp(22px, 3.5vw, 38px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: clamp(16px, 2vw, 20px); }
h5 { font-size: 17px; }
h6 { font-size: 15px; }

p { margin-bottom: var(--sp-4); color: var(--c-text); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--c-text-muted);
  line-height: 1.7;
}

.text-muted { color: var(--c-text-muted); }
.text-small { font-size: 14px; }
.text-xs    { font-size: 12px; }
.text-center { text-align: center; }
.text-white  { color: var(--c-white) !important; }
.text-green  { color: var(--c-green); }

strong, b { font-weight: 600; }

/* ── 4. Layout ── */
.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-20);
}
.section--sm {
  padding-top: var(--sp-12);
  padding-bottom: var(--sp-12);
}
.section--lg {
  padding-top: clamp(60px, 8vw, 120px);
  padding-bottom: clamp(60px, 8vw, 120px);
}
.section--gray  { background: var(--c-bg); }
.section--white { background: var(--c-white); }
.section--dark  { background: var(--c-navy); }
.section--green { background: var(--c-green); }

.grid {
  display: grid;
  gap: var(--sp-6);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap-2 { gap: var(--sp-2); }
.flex-gap-4 { gap: var(--sp-4); }
.flex-gap-6 { gap: var(--sp-6); }

/* ── 5. Section Titles ── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-green);
  background: var(--c-green-light);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}
.section-title {
  margin-bottom: var(--sp-4);
}
.section-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--c-text-muted);
  max-width: 640px;
  line-height: 1.7;
}
.section-head {
  margin-bottom: var(--sp-10);
}
.section-head--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── 6. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 13px 28px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: background var(--t-base), color var(--t-base), transform var(--t-fast), box-shadow var(--t-base), border-color var(--t-base);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--c-green);
  color: var(--c-white);
  border-color: var(--c-green);
  box-shadow: 0 4px 16px rgba(0,166,100,.30);
}
.btn-primary:hover {
  background: var(--c-green-dark);
  border-color: var(--c-green-dark);
  box-shadow: 0 6px 24px rgba(0,166,100,.40);
  color: var(--c-white);
}

.btn-secondary {
  background: transparent;
  color: var(--c-green);
  border-color: var(--c-green);
}
.btn-secondary:hover {
  background: var(--c-green);
  color: var(--c-white);
}

.btn-white {
  background: var(--c-white);
  color: var(--c-green-dark);
  border-color: var(--c-white);
  box-shadow: 0 4px 16px rgba(255,255,255,.25);
}
.btn-white:hover {
  background: var(--c-green-light);
  color: var(--c-green-dark);
}

.btn-outline-white {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--c-white);
}

.btn-accent {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: var(--c-accent);
  box-shadow: 0 4px 16px rgba(255,107,53,.30);
}
.btn-accent:hover {
  background: var(--c-accent-hover);
  border-color: var(--c-accent-hover);
  color: var(--c-white);
}

.btn-sm { padding: 9px 20px; font-size: 14px; }
.btn-lg { padding: 17px 40px; font-size: 17px; }
.btn-xl { padding: 20px 52px; font-size: 18px; }

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--r-md);
}

/* ── 7. Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border-soft);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}
.header-logo img {
  height: 40px;
  width: auto;
}
.header-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--c-green);
  letter-spacing: -0.5px;
}
.header-logo-text span {
  color: var(--c-navy);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
  justify-content: center;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-text);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--c-green);
  background: var(--c-green-light);
}
.nav-link svg { flex-shrink: 0; transition: transform var(--t-fast); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--c-white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border-soft);
  padding: var(--sp-2) 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base), transform var(--t-base);
  transform: translateX(-50%) translateY(-6px);
  pointer-events: none;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--c-text);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-dropdown a:hover {
  background: var(--c-green-light);
  color: var(--c-green);
}
.nav-dropdown-divider {
  height: 1px;
  background: var(--c-border-soft);
  margin: 4px 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

/* Mobile hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.burger:hover { background: var(--c-bg); }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  bottom: 0;
  background: var(--c-white);
  z-index: 999;
  overflow-y: auto;
  padding: var(--sp-6);
  flex-direction: column;
  gap: var(--sp-2);
  transform: translateX(100%);
  transition: transform var(--t-slow);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--c-text);
  border-radius: var(--r-md);
  border-bottom: 1px solid var(--c-border-soft);
  transition: background var(--t-fast), color var(--t-fast);
}
.mobile-menu-link:hover {
  background: var(--c-green-light);
  color: var(--c-green);
}
.mobile-menu-sub {
  padding-left: var(--sp-4);
  border-left: 2px solid var(--c-green-light);
  margin-top: var(--sp-2);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.mobile-menu-sub a {
  display: block;
  padding: 10px 12px;
  font-size: 15px;
  color: var(--c-text-muted);
  border-radius: var(--r-sm);
}
.mobile-menu-sub a:hover { color: var(--c-green); }
.mobile-menu-cta {
  margin-top: var(--sp-6);
}

/* ── 8. Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 60px;
  overflow: hidden;
  background: var(--c-navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/fon.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,25,45,.78) 0%,
    rgba(10,25,45,.55) 50%,
    rgba(0,100,60,.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--r-full);
  padding: 6px 16px;
  color: rgba(255,255,255,.90);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: var(--sp-6);
}
.hero-title {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: var(--sp-5);
}
.hero-title .accent { color: var(--c-green-mid); }
.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255,255,255,.80);
  margin-bottom: var(--sp-8);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
}
.hero-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--c-white);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  font-weight: 400;
}

/* Hero page (inner pages) */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
  padding: calc(var(--header-h) + 48px) 0 56px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/img/fon.png');
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero-title {
  color: var(--c-white);
  margin-bottom: var(--sp-4);
}
.page-hero-subtitle {
  color: rgba(255,255,255,.75);
  font-size: 18px;
  max-width: 580px;
}

/* ── 9. Widget ── */
.widget-section {
  background: var(--c-white);
  padding: var(--sp-8) 0;
  border-bottom: 1px solid var(--c-border-soft);
}
.widget-wrap {
  background: var(--c-white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: 80px;
}
.widget-heading {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-4);
}

/* ── 10. Cards ── */
/* Route cards */
.route-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
}
.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.route-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-navy-mid) 0%, var(--c-green-dark) 100%);
}
.route-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.route-card:hover .route-card-img img { transform: scale(1.06); }
.route-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--c-green);
  color: var(--c-white);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.route-card-body {
  padding: var(--sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.route-card-from-to {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-navy);
}
.route-card-from-to span {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: var(--c-text-muted);
  font-weight: 400;
}
.route-card-arrow {
  color: var(--c-green);
}
.route-card-info {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
  flex-wrap: wrap;
}
.route-card-meta {
  font-size: 13px;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.route-card-meta svg { color: var(--c-green); flex-shrink: 0; }
.route-card-price {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.route-card-price-from { font-size: 13px; color: var(--c-text-light); }
.route-card-price-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-green-dark);
  font-family: var(--font-display);
}

/* Service cards */
.service-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border-soft);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-green-light);
}
.service-card-icon {
  width: 64px;
  height: 64px;
  background: var(--c-green-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  color: var(--c-green);
}
.service-card-title {
  font-size: 17px;
  margin-bottom: var(--sp-2);
}
.service-card-text {
  font-size: 14px;
  color: var(--c-text-muted);
  margin: 0;
}

/* Advantage cards */
.adv-card {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.adv-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--c-green-light);
  color: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.adv-card-title {
  font-size: 17px;
  margin-bottom: var(--sp-2);
}
.adv-card-text {
  font-size: 14px;
  color: var(--c-text-muted);
  margin: 0;
}

/* Info cards */
.info-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  border: 1px solid var(--c-border-soft);
  box-shadow: var(--shadow-xs);
}
.info-card h3 {
  font-size: 17px;
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.info-card h3 svg { color: var(--c-green); flex-shrink: 0; }

/* Step cards */
.step-card {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--c-green);
  color: var(--c-white);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.step-body h3 { font-size: 18px; margin-bottom: var(--sp-2); }
.step-body p  { font-size: 15px; color: var(--c-text-muted); margin: 0; }

/* ── 11. Breadcrumbs ── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: var(--sp-4);
}
.breadcrumb a {
  color: rgba(255,255,255,.75);
  transition: color var(--t-fast);
}
.breadcrumb a:hover { color: var(--c-white); }
.breadcrumb-sep { font-size: 12px; opacity: .5; }
.breadcrumb-current { color: var(--c-white); }

/* ── 12. FAQ Accordion ── */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--t-base);
}
.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: var(--c-green);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--c-navy);
  transition: background var(--t-fast);
  user-select: none;
}
.faq-question:hover { background: var(--c-bg); }
.faq-item.open .faq-question { background: var(--c-green-light); color: var(--c-green-dark); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  background: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t-base), background var(--t-base);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--c-green);
  color: var(--c-white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* ── 13. Tables ── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.data-table {
  width: 100%;
  min-width: 480px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.data-table th {
  background: var(--c-navy);
  color: var(--c-white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 14px 18px;
  text-align: left;
}
.data-table td {
  padding: 13px 18px;
  font-size: 14px;
  border-bottom: 1px solid var(--c-border-soft);
  color: var(--c-text);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--c-bg); }
.data-table tr:hover td { background: var(--c-green-light); }

/* ── 14. Baggage Visualizer ── */
.baggage-box {
  border: 2px dashed var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  text-align: center;
  transition: border-color var(--t-base);
}
.baggage-box:hover { border-color: var(--c-green); }
.baggage-box-icon {
  font-size: 56px;
  margin-bottom: var(--sp-4);
}
.baggage-dims {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin: var(--sp-4) 0;
}
.baggage-dim {
  background: var(--c-navy);
  color: var(--c-white);
  border-radius: var(--r-sm);
  padding: 6px 14px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-display);
}

/* ── 15. CTA Blocks ── */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-green-dark) 100%);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 80px);
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(0,194,120,.10);
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner-title {
  font-size: clamp(24px, 4vw, 40px);
  color: var(--c-white);
  margin-bottom: var(--sp-4);
}
.cta-banner-text {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin: 0 auto var(--sp-8);
}
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: center; }

/* ── 16. Quick Links ── */
.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.quick-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-6) var(--sp-4);
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border-soft);
  text-align: center;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  text-decoration: none;
}
.quick-link-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-green);
}
.quick-link-icon {
  width: 56px;
  height: 56px;
  background: var(--c-green-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-green);
  transition: background var(--t-base);
}
.quick-link-item:hover .quick-link-icon { background: var(--c-green); color: var(--c-white); }
.quick-link-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-navy);
  transition: color var(--t-base);
}
.quick-link-item:hover .quick-link-label { color: var(--c-green); }

/* ── 17. Trust bar ── */
.trust-bar {
  background: var(--c-navy);
  padding: var(--sp-5) 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,.80);
  font-size: 14px;
}
.trust-item svg { color: var(--c-green-mid); flex-shrink: 0; }

/* ── 18. Alert / Notice boxes ── */
.notice {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  background: var(--c-blue-soft);
  border-left: 4px solid var(--c-green);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-4) var(--sp-5);
  font-size: 15px;
  color: var(--c-text);
}
.notice svg { color: var(--c-green); flex-shrink: 0; margin-top: 2px; }
.notice--warn {
  background: #FFF8EC;
  border-color: var(--c-accent);
}
.notice--warn svg { color: var(--c-accent); }

/* ── 19. Tags / Badges ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  background: var(--c-green-light);
  color: var(--c-green-dark);
}
.tag-gray {
  background: var(--c-bg);
  color: var(--c-text-muted);
}
.tag-navy {
  background: var(--c-navy);
  color: var(--c-white);
}

/* ── 20. Related block ── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.related-card {
  background: var(--c-white);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  border: 1px solid var(--c-border-soft);
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  transition: box-shadow var(--t-base);
}
.related-card:hover { box-shadow: var(--shadow-md); }
.related-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--c-green-light);
  color: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.related-card h4 { font-size: 15px; margin-bottom: 4px; }
.related-card p  { font-size: 13px; color: var(--c-text-muted); margin: 0; }
.related-card a.arrow-link {
  font-size: 13px;
  color: var(--c-green);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
}
.related-card a.arrow-link:hover { color: var(--c-green-dark); }

/* ── 21. Footer ── */
.site-footer {
  background: var(--c-navy);
  color: rgba(255,255,255,.75);
  padding-top: var(--sp-16);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  text-decoration: none;
}
.footer-logo img { height: 36px; }
.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--c-green-mid);
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.60);
  margin-bottom: var(--sp-5);
}
.footer-socials {
  display: flex;
  gap: var(--sp-2);
}
.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.60);
  transition: background var(--t-fast), color var(--t-fast);
}
.footer-social-link:hover { background: var(--c-green); color: var(--c-white); }

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-white);
  margin-bottom: var(--sp-5);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.60);
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--c-green-mid); }
.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-green);
  flex-shrink: 0;
}

.footer-bottom {
  padding: var(--sp-5) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  justify-content: space-between;
}
.footer-bottom-left { font-size: 13px; color: rgba(255,255,255,.45); }
.footer-bottom-right {
  display: flex;
  gap: var(--sp-5);
}
.footer-bottom-right a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: color var(--t-fast);
}
.footer-bottom-right a:hover { color: rgba(255,255,255,.75); }

.footer-disclaimer {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: var(--sp-4) 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
}

/* ── 22. About section ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about-img-block {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(135deg, var(--c-navy-mid), var(--c-green-dark));
}
.about-img-block img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
}
.about-counter-bar {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  gap: var(--sp-6);
}
.about-counter-item { text-align: center; flex: 1; }
.about-counter-val {
  font-size: 24px;
  font-weight: 800;
  color: var(--c-navy);
  font-family: var(--font-display);
  line-height: 1;
}
.about-counter-label { font-size: 12px; color: var(--c-text-muted); margin-top: 4px; }

/* ── 23. Fleet section ── */
.fleet-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border-soft);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.fleet-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.fleet-card-img {
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, #0F2137 0%, #00523A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.fleet-card-body { padding: var(--sp-5); }
.fleet-card-name { font-size: 20px; margin-bottom: 2px; }
.fleet-card-type { font-size: 13px; color: var(--c-text-muted); margin-bottom: var(--sp-4); }
.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
.fleet-spec { display: flex; flex-direction: column; gap: 2px; }
.fleet-spec-label { font-size: 11px; color: var(--c-text-light); text-transform: uppercase; letter-spacing: .5px; }
.fleet-spec-val { font-size: 15px; font-weight: 600; color: var(--c-navy); }

/* ── 24. Page nav (anchor menu) ── */
.page-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border-soft);
  box-shadow: var(--shadow-xs);
}
.page-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.page-nav-inner::-webkit-scrollbar { display: none; }
.page-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color var(--t-fast), border-color var(--t-fast);
  text-decoration: none;
}
.page-nav-link:hover,
.page-nav-link.active {
  color: var(--c-green);
  border-bottom-color: var(--c-green);
}

/* ── 25. Contacts page ── */
.contact-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  border: 1px solid var(--c-border-soft);
  box-shadow: var(--shadow-sm);
}
.contact-method {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--c-border-soft);
}
.contact-method:last-child { border-bottom: none; }
.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--c-green-light);
  color: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-label { font-size: 12px; color: var(--c-text-light); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.contact-method-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-method-value a { color: var(--c-green); }
.contact-method-value a:hover { color: var(--c-green-dark); }
.contact-method-note { font-size: 13px; color: var(--c-text-muted); margin-top: 2px; }

/* ── 26. Utilities ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mt-10 { margin-top: var(--sp-10); }
.w-100 { width: 100%; }
.d-none { display: none !important; }

/* highlight-list */
.highlight-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.highlight-list li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: 15px;
  color: var(--c-text);
}
.highlight-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-green);
  color: var(--c-white);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: cover;
  margin-top: 2px;
}

/* ── 27. Numbered list ── */
.numbered-list { display: flex; flex-direction: column; gap: var(--sp-4); counter-reset: nl; }
.numbered-list li {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  counter-increment: nl;
}
.numbered-list li::before {
  content: counter(nl);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-navy);
  color: var(--c-white);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── 28. Promo strip ── */
.promo-strip {
  background: linear-gradient(90deg, var(--c-green-dark), var(--c-green));
  padding: var(--sp-4) 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-white);
  position: relative;
  z-index: 1001;
}
.promo-strip a { color: var(--c-white); text-decoration: underline; }

/* ── 29. 404 ── */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-10);
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.error-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/img/fon.png');
  background-size: cover;
  opacity: .08;
}
.error-content { position: relative; z-index: 1; }
.error-code {
  font-size: clamp(80px, 20vw, 180px);
  font-weight: 800;
  color: var(--c-green);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: var(--sp-4);
  opacity: .9;
}
.error-title {
  font-size: clamp(22px, 4vw, 36px);
  color: var(--c-white);
  margin-bottom: var(--sp-4);
}
.error-text {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin: 0 auto var(--sp-8);
}

/* ── 30. Responsive ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .footer-grid .footer-brand + * { grid-column: auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .quick-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .header-nav { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }

  .about-split { grid-template-columns: 1fr; }
  .about-img-block { min-height: 280px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .section { padding-top: var(--sp-12); padding-bottom: var(--sp-12); }
  .section--lg { padding-top: 56px; padding-bottom: 56px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .quick-links { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: var(--sp-6); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-banner { padding: var(--sp-8) var(--sp-5); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: var(--sp-5); }
  .fleet-specs { grid-template-columns: 1fr 1fr; }
  .about-counter-bar { flex-wrap: wrap; gap: var(--sp-4); }
  .header-actions .btn { display: none; }
}

@media (max-width: 400px) {
  .quick-links { grid-template-columns: 1fr; }
}
