/* ═══════════════════════════════════════════════════════════════
   Auto-Zagranica.pl — Design System 2.0
   Palette: dark-green (#0A2D24) + teal (#1dbd90) — Localrent brand
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --navy:          #0A2D24;
  --navy-mid:      #163D30;
  --navy-light:    #1F5242;
  --orange:        #1dbd90;
  --orange-dark:   #17a07a;
  --orange-glow:   rgba(29,189,144,.18);
  --text:          #0F172A;
  --text-2:        #475569;
  --text-3:        #94A3B8;
  --surface:       #F8FAFC;
  --surface-2:     #F1F5F9;
  --white:         #FFFFFF;
  --border:        #E2E8F0;
  --border-2:      #CBD5E1;
  --green:         #10B981;
  --green-bg:      #ECFDF5;
  --r-sm:          6px;
  --r:             10px;
  --r-lg:          16px;
  --r-xl:          24px;
  --shadow-xs:     0 1px 3px rgba(10,45,36,.06), 0 1px 2px rgba(10,45,36,.04);
  --shadow-sm:     0 2px 8px rgba(10,45,36,.08), 0 1px 4px rgba(10,45,36,.05);
  --shadow:        0 4px 16px rgba(10,45,36,.10), 0 2px 8px rgba(10,45,36,.06);
  --shadow-lg:     0 12px 40px rgba(10,45,36,.14), 0 4px 16px rgba(10,45,36,.08);
  --shadow-xl:     0 24px 64px rgba(10,45,36,.18);
  --w:             1200px;
  --ease:          cubic-bezier(.4,0,.2,1);
  --ease-out:      cubic-bezier(0,.55,.45,1);
  /* aliases */
  --muted:         #475569;
  --bg:            #F8FAFC;
  --radius:        10px;
  --radius-lg:     16px;
  --primary:       var(--navy);
  --accent:        var(--orange);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }

/* ── Layout ──────────────────────────────────────────────────── */
.container {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 24px;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.flex   { display: flex; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.items-center { align-items: center; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.text-orange { color: var(--orange); }
.text-muted  { color: var(--text-2); }
.text-small  { font-size: 13px; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10,45,36,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-container {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.4px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links li a {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--r-sm);
  transition: color .15s var(--ease), background .15s var(--ease);
}
.nav-links li a:hover {
  color: var(--white);
  background: rgba(255,255,255,.09);
}

/* Standalone breadcrumb bar (below nav) */
.breadcrumb-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 11px 24px;
}
.breadcrumb-bar .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: var(--w);
  margin: 0 auto;
  font-size: 13px;
  color: var(--text-3);
}
.breadcrumb-bar .breadcrumb a { color: var(--text-3); transition: color .15s; }
.breadcrumb-bar .breadcrumb a:hover { color: var(--navy-light); }
.breadcrumb-bar .breadcrumb .current { color: var(--text); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(29,189,144,.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 5% 80%, rgba(29,189,144,.08) 0%, transparent 50%),
    linear-gradient(145deg, #061510 0%, #0A2D24 45%, #0c3028 100%);
  color: var(--white);
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}

/* Decorative grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Bottom wave */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--white);
  clip-path: ellipse(58% 100% at 50% 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero label (flag + country > city) */
.hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

/* Breadcrumb inside hero */
.hero-inner .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.hero-inner .breadcrumb a {
  color: rgba(255,255,255,.55);
  transition: color .15s;
}
.hero-inner .breadcrumb a:hover { color: rgba(255,255,255,.9); }
.hero-inner .breadcrumb span { color: rgba(255,255,255,.85); }

.hero h1 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  max-width: 720px;
}
.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.72);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.6;
}

/* Trust bar inside hero */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* ═══════════════════════════════════════════════════════════════
   GEO LEAD
   ═══════════════════════════════════════════════════════════════ */
.geo-section { padding: 36px 0 0; }
.geo-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 24px 28px;
  max-width: 820px;
}

/* ═══════════════════════════════════════════════════════════════
   WIDGET
   ═══════════════════════════════════════════════════════════════ */
.widget-section { padding: 40px 0; }
.widget-hero    { padding: 48px 0; }
.widget-mid     { padding: 0 0 48px; }
.widget-cta {
  background: linear-gradient(145deg, #061510, #0A2D24);
  padding: 64px 0;
  margin-top: 64px;
}
.widget-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}
.widget-cta h2 { color: var(--white); }
.widget-cta p  { color: rgba(255,255,255,.7); margin-bottom: 28px; font-size: 16px; }
.cta-container { text-align: center; }

.cta-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 100px;
  transition: background .18s var(--ease), transform .18s var(--ease), box-shadow .18s;
  box-shadow: 0 4px 20px rgba(29,189,144,.35);
}
.cta-btn-large:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(29,189,144,.45);
}

/* CTA section (full-width) */
.cta-section {
  background: linear-gradient(145deg, #061510, #0A2D24);
  padding: 72px 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin-bottom: 12px; }
.cta-section p  { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 32px; }
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 100px;
  transition: background .18s, transform .18s, box-shadow .18s;
  box-shadow: 0 4px 20px rgba(29,189,144,.35);
}
.btn-cta:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(29,189,144,.45); }

/* ═══════════════════════════════════════════════════════════════
   SECTIONS (generic)
   ═══════════════════════════════════════════════════════════════ */
.section { padding: 64px 0; }
.section-alt { background: var(--surface); }

.info-section,
.prices-section,
.routes-section,
.practical-section,
.special-pages-section,
.faq-section,
.related-section,
.cities-section,
.intro-section,
.steps-section,
.explainer-section,
.cars-section,
.destinations-section,
.countries-section,
.usp-section {
  padding: 56px 0;
}

.info-section:nth-child(even),
.prices-section { background: var(--surface); }

.info-section h2,
.prices-section h2,
.routes-section h2,
.practical-section h2,
.special-pages-section h2,
.faq-section h2,
.cities-section h2,
.steps-section h2,
.explainer-section h2,
.cars-section h2,
.destinations-section h2,
.countries-section h2,
.usp-section h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 28px;
  color: var(--text);
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
}
.section-sub { color: var(--text-2); font-size: 16px; margin-bottom: 36px; }

.intro-section { padding: 48px 0 0; }
.intro-section .geo-lead { max-width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   INFO TABLE
   ═══════════════════════════════════════════════════════════════ */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.info-table thead tr {
  background: var(--navy);
  color: var(--white);
}
.info-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.info-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .1s;
}
.info-table tbody tr:last-child { border-bottom: none; }
.info-table tbody tr:hover { background: var(--surface); }
.info-table td {
  padding: 13px 18px;
  vertical-align: middle;
}
.info-table td:first-child {
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  width: 38%;
}
.info-table td:last-child { font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   PRICES TABLE
   ═══════════════════════════════════════════════════════════════ */
.prices-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.prices-table thead tr {
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  color: var(--white);
}
.prices-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
}
.prices-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .1s;
}
.prices-table tbody tr:hover { background: var(--surface); }
.prices-table tbody tr:last-child { border-bottom: none; }
.prices-table td { padding: 14px 18px; }
.prices-table td:first-child { font-weight: 700; }
.prices-table td:nth-child(2) { color: var(--green); font-weight: 700; }
.prices-table td:nth-child(3) { color: var(--orange); font-weight: 700; }
.prices-note { font-size: 13px; color: var(--text-3); margin-top: 10px; }

/* ═══════════════════════════════════════════════════════════════
   ROUTE CARDS
   ═══════════════════════════════════════════════════════════════ */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.route-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  transition: border-color .18s, box-shadow .18s, transform .18s var(--ease);
}
.route-card:hover {
  border-color: var(--navy-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.route-dest { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.route-details { font-size: 13px; color: var(--text-2); display: flex; align-items: center; gap: 4px; }
.route-details::before { content: '→'; color: var(--orange); }

/* ═══════════════════════════════════════════════════════════════
   PRACTICAL TIPS
   ═══════════════════════════════════════════════════════════════ */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tip-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: box-shadow .18s;
}
.tip-block:hover { box-shadow: var(--shadow); }
.tip-block h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tip-block h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 18px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.tip-block p { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   SPECIAL PAGE OPTIONS
   ═══════════════════════════════════════════════════════════════ */
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.option-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .18s, box-shadow .18s, transform .2s var(--ease);
  text-decoration: none;
  color: inherit;
}
.option-card:hover {
  border-color: var(--navy-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.option-icon { font-size: 28px; }
.option-card h3 { font-size: 16px; font-weight: 700; color: var(--text); }
.option-card p { font-size: 14px; color: var(--text-2); line-height: 1.65; flex: 1; }
.option-cta { font-size: 14px; font-weight: 700; color: var(--navy-light); display: flex; align-items: center; gap: 4px; margin-top: 4px; }

/* USP card (alias) */
.usp-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .18s, box-shadow .18s, transform .2s;
}
.usp-card:hover { border-color: var(--navy-light); box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* Warn box */
.warn-box {
  background: #F0FDF9;
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
  color: #065F46;
}
.warn-box strong { color: var(--orange-dark); }

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: color .15s;
}
.faq-q:hover { color: var(--navy-light); }
.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform .2s var(--ease), color .15s;
  line-height: 1;
}
.faq-q[aria-expanded="true"] { color: var(--navy); }
.faq-q[aria-expanded="true"]::after { content: '−'; color: var(--orange); }
.faq-a { font-size: 15px; color: var(--text-2); line-height: 1.75; padding-bottom: 20px; }

/* ═══════════════════════════════════════════════════════════════
   CHIPS & BADGES
   ═══════════════════════════════════════════════════════════════ */
.related-chips, .related-list { display: flex; flex-wrap: wrap; gap: 10px; }
.city-chip, .related-chip {
  display: inline-block;
  padding: 9px 18px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s, background .15s, color .15s, transform .15s;
}
.city-chip:hover, .related-chip:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600;
  padding: 5px 12px; border-radius: 100px;
}
.badge-green { background: var(--green-bg); color: #166534; border: 1px solid #BBF7D0; }
.badge-blue  { background: #F0FDF9; color: var(--navy-light); border: 1px solid #99F6E4; }

.badge-special {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange-glow); border: 1px solid rgba(29,189,144,.35);
  color: var(--orange-dark); font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   CITY CARDS (on country page)
   ═══════════════════════════════════════════════════════════════ */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.city-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  transition: border-color .18s, box-shadow .18s, transform .2s var(--ease);
}
.city-card:hover {
  border-color: var(--navy-light);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.city-card-name, .city-name { font-size: 17px; font-weight: 700; color: var(--text); }
.city-card-airport, .city-airport { font-size: 13px; color: var(--text-3); }
.city-card-price, .city-price { font-size: 14px; font-weight: 700; color: var(--orange); margin-top: 4px; }
.city-card-cta { font-size: 13px; color: var(--navy-light); font-weight: 600; margin-top: 6px; }

/* ═══════════════════════════════════════════════════════════════
   DESTINATION CARDS (homepage)
   ═══════════════════════════════════════════════════════════════ */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.dest-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  transition: border-color .18s, box-shadow .2s, transform .2s var(--ease);
  position: relative;
  overflow: hidden;
}
.dest-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #34D399);
  opacity: 0;
  transition: opacity .18s;
}
.dest-card:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.dest-card:hover::before { opacity: 1; }
.dest-flag, .dest-price { font-size: 13px; font-weight: 700; color: var(--orange); margin-bottom: 4px; }
.dest-name { font-size: 20px; font-weight: 800; color: var(--text); letter-spacing: -0.3px; }
.dest-country { font-size: 13px; color: var(--text-3); text-transform: capitalize; }

/* ═══════════════════════════════════════════════════════════════
   COUNTRIES GRID (homepage)
   ═══════════════════════════════════════════════════════════════ */
.countries-section { background: var(--surface); }
.countries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.country-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
  min-width: 0;
}
.country-card:hover {
  border-color: var(--navy-light);
  background: #F0FDF9;
}
.country-flag { font-size: 24px; flex-shrink: 0; }
.country-name { font-size: 14px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.country-price { font-size: 12px; color: var(--orange); font-weight: 600; white-space: nowrap; flex-shrink: 0; margin-left: auto; }

/* ═══════════════════════════════════════════════════════════════
   USP SECTION
   ═══════════════════════════════════════════════════════════════ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.usp-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  transition: box-shadow .18s;
}
.usp-item:hover { box-shadow: var(--shadow); }
.usp-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.usp-item h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.usp-item p  { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   AIRPORT: Steps
   ═══════════════════════════════════════════════════════════════ */
.steps-list {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
}
.steps-list li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
}
.steps-list li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}
.steps-list li strong { color: var(--text); }
.steps-list li { font-size: 15px; color: var(--text-2); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   NO DEPOSIT: Comparison
   ═══════════════════════════════════════════════════════════════ */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
}
.compare-col {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
}
.compare-col--highlight {
  border-color: var(--green);
  background: var(--green-bg);
}
.compare-col h3 { font-size: 17px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.compare-col ul { display: flex; flex-direction: column; gap: 10px; }
.compare-col li {
  font-size: 14px; color: var(--text-2);
  padding-left: 22px; position: relative; line-height: 1.5;
}
.compare-col li::before { content: '•'; position: absolute; left: 6px; color: var(--text-3); }
.compare-col--highlight li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════
   ARTICLE / BLOG
   ═══════════════════════════════════════════════════════════════ */
.article-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.article-body { font-size: 16px; line-height: 1.8; color: #334155; }
.article-body h2 { font-size: 24px; font-weight: 800; color: var(--text); margin: 40px 0 16px; letter-spacing: -0.3px; }
.article-body h3 { font-size: 19px; font-weight: 700; color: var(--text); margin: 32px 0 12px; }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 20px 20px; }
.article-body li { margin-bottom: 7px; }
.article-body a { color: var(--navy-light); text-decoration: underline; text-underline-offset: 2px; }
.article-sidebar { position: sticky; top: 80px; }
.toc-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; }
.toc-box h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-3); margin-bottom: 14px; }
.toc-box ol { margin-left: 16px; display: flex; flex-direction: column; gap: 8px; }
.toc-box li a { font-size: 14px; color: var(--navy-light); }
.tip-box {
  background: #F0FDF9; border-left: 4px solid var(--navy-light);
  border-radius: 0 var(--r) var(--r) 0; padding: 16px 20px; margin: 24px 0; font-size: 15px;
}
.tip-box strong { color: var(--navy); }

/* ═══════════════════════════════════════════════════════════════
   STATS / TEAM / CAR CARDS
   ═══════════════════════════════════════════════════════════════ */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
  text-align: center; padding: 32px 20px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
  transition: box-shadow .18s;
}
.stat-card:hover { box-shadow: var(--shadow); }
.stat-num { font-size: 40px; font-weight: 800; color: var(--navy); letter-spacing: -1px; }
.stat-label { font-size: 14px; color: var(--text-2); margin-top: 6px; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 32px 24px; text-align: center; }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--navy); color: var(--white); font-size: 24px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.team-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 14px; color: var(--orange); font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 14px; color: var(--text-2); line-height: 1.65; }

.car-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.car-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 28px 24px; transition: box-shadow .18s, transform .2s; }
.car-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.car-icon { font-size: 36px; margin-bottom: 14px; }
.car-name { font-size: 19px; font-weight: 800; margin-bottom: 4px; }
.car-price { font-size: 14px; color: var(--text-3); margin-bottom: 12px; }
.car-price strong { color: var(--orange); font-size: 16px; }
.car-features { font-size: 14px; color: var(--text-2); display: flex; flex-direction: column; gap: 6px; }
.car-features li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.car-btn { display: block; text-align: center; background: var(--navy); color: var(--white); border-radius: var(--r); padding: 12px; font-weight: 700; font-size: 14px; margin-top: 20px; transition: background .15s; }
.car-btn:hover { background: var(--navy-light); }

/* Author */
.author-chip { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 600; }
.author-bio { font-size: 12px; color: var(--text-3); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(145deg, #061510, #0A2D24);
  color: rgba(255,255,255,.65);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col strong,
.footer-col h4 {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: .3px;
}
.footer-col p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.5); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a,
.footer-col a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-col ul a:hover,
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .countries-grid { grid-template-columns: repeat(4, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero { padding: 56px 0 72px; }
  .hero h1 { font-size: 32px; }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .options-grid { grid-template-columns: 1fr 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
  .tips-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stats-grid, .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-container { height: 56px; }
  .nav-links { display: none; }
  .hero { padding: 40px 0 60px; }
  .hero::after { height: 40px; }
  .hero h1 { font-size: 26px; letter-spacing: -0.3px; }
  .hero-sub { font-size: 15px; }
  .trust-bar span { font-size: 12px; padding: 6px 11px; }
  .routes-grid,
  .options-grid,
  .cities-grid,
  .destinations-grid,
  .usp-grid,
  .car-grid { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .info-table td:first-child { width: 45%; font-size: 12px; }
  .widget-cta { padding: 48px 0; }
  .cta-btn-large { font-size: 15px; padding: 14px 28px; }
  .faq-q { font-size: 15px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
