/* Fonts loaded via <link> in HTML for performance */

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

:root {
  --yellow: #FFD600;
  --yellow-dark: #F0C000;
  --black: #1A1A1A;
  --dark: #222222;
  --gray: #6B7280;
  --light: #F9F9F9;
  --white: #FFFFFF;
  --red: #C0392B;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ── HEADER ── */
header {
  background: var(--black);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -1px;
}
.logo span { color: var(--white); }
nav a {
  color: var(--white);
  margin-left: 24px;
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}
nav a:hover { opacity: 1; }

/* ── HERO ── */
.hero {
  background: var(--yellow);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '🚕';
  position: absolute;
  font-size: 200px;
  opacity: 0.08;
  right: -30px;
  top: -20px;
  transform: rotate(-15deg);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 36px;
  opacity: 0.8;
}
.search-box {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.search-box input {
  flex: 1;
  padding: 18px 24px;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
  color: var(--black);
}
.search-box button {
  background: var(--black);
  color: var(--yellow);
  border: none;
  padding: 18px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.search-box button:hover { background: #333; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--black);
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 20px 24px;
  flex-wrap: wrap;
}
.stat { text-align: center; color: var(--white); }
.stat strong { display: block; font-size: 1.6rem; font-weight: 900; color: var(--yellow); }
.stat span { font-size: 0.8rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── SECTION ── */
.section { padding: 60px 24px; max-width: 1200px; margin: 0 auto; }
.section-title {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--black);
}
.section-sub {
  color: var(--gray);
  margin-bottom: 36px;
  font-size: 0.95rem;
}

/* ── CITY GRID ── */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.city-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
  content-visibility: auto;
  contain-intrinsic-size: 0 130px;
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--yellow);
}
.city-card .city-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--black);
}
.city-card .city-region {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 12px;
}
.city-card .city-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}
.city-card .city-price span {
  color: var(--red);
  font-weight: 900;
}
.city-card .city-arrow {
  display: inline-block;
  margin-top: 12px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}

/* ── HOW IT WORKS ── */
.how-section { background: var(--light); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 16px;
  color: var(--black);
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--gray); }

/* ── CTA BUTTON ── */
.btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(255,214,0,0.4);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,214,0,0.5);
}
.btn-dark {
  background: var(--black);
  color: var(--yellow);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-dark:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.btn-lg { font-size: 1.2rem; padding: 22px 52px; }

/* ── CITY PAGE HERO ── */
.city-hero {
  background: linear-gradient(135deg, var(--yellow) 0%, #FFB800 100%);
  padding: 60px 24px 50px;
  text-align: center;
}
.city-hero .breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 16px;
  opacity: 0.7;
}
.city-hero .breadcrumb a { font-weight: 600; }
.city-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 12px;
}
.city-hero .subtitle {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 32px;
  opacity: 0.85;
}
.price-badge {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  font-weight: 900;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 1rem;
  margin-bottom: 28px;
}

/* ── ROUTES TABLE ── */
.routes-section { padding: 50px 24px; max-width: 800px; margin: 0 auto; }
.routes-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.routes-table th {
  background: var(--black);
  color: var(--yellow);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.routes-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}
.routes-table tr:last-child td { border-bottom: none; }
.routes-table tr:hover td { background: var(--light); }
.price-col { font-weight: 700; color: var(--red); }

/* ── FAQ ── */
.faq { max-width: 720px; margin: 0 auto; padding: 50px 24px; }
.faq-item { border-bottom: 1px solid #eee; padding: 20px 0; }
.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--yellow); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 12px; color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--black);
  text-align: center;
  padding: 60px 24px;
}
.cta-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-block p { color: #aaa; margin-bottom: 32px; font-size: 0.95rem; }

/* ── FOOTER ── */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 24px;
  font-size: 0.8rem;
}
footer a { color: var(--yellow); text-decoration: underline; }

/* ── DISTRICT TABS ── */
.tabs-wrap {
  background: var(--white);
  border-bottom: 2px solid #f0f0f0;
  position: sticky;
  top: 64px;
  z-index: 90;
}
.tabs {
  display: flex;
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 50px;
  border: 2px solid #e5e5e5;
  background: var(--white);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.tab-btn:hover {
  border-color: var(--yellow);
  color: var(--black);
}
.tab-btn.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

/* ── SEARCH HIGHLIGHT ── */
.city-card.hidden { display: none; }

/* ── STICKY PILL BUTTON (city pages) ── */
.sticky-pill {
  position: fixed;
  top: 76px;
  left: 50%;
  transform: translateX(-50%) translateY(-16px);
  z-index: 89;
  background: var(--yellow);
  color: var(--black);
  font-family: inherit;
  font-weight: 900;
  font-size: 1.05rem;
  padding: 16px 40px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 6px 28px rgba(0,0,0,0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sticky-pill.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.sticky-pill:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.28);
}
@media (max-width: 600px) {
  .sticky-pill {
    font-size: 0.9rem;
    padding: 13px 24px;
    top: 72px;
    width: calc(100% - 32px);
    text-align: center;
    left: 16px;
    transform: translateY(-16px);
  }
  .sticky-pill.visible { transform: translateY(0); }
}

/* ── BLOG GRID ── */
.blog-hero {
  background: linear-gradient(135deg, var(--yellow) 0%, #FFC200 100%);
  padding: 70px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '📰';
  position: absolute;
  font-size: 220px;
  opacity: 0.07;
  right: -30px;
  top: -30px;
}
.blog-hero-inner { position: relative; }
.blog-hero-tag {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.blog-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.15;
}
.blog-hero p {
  font-size: 1.05rem;
  color: var(--dark);
  opacity: 0.8;
  margin-bottom: 24px;
}
.blog-hero-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  opacity: 0.75;
}
.blog-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 16px;
}

/* Featured article */
.featured-article {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  border: 2px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 8px;
}
.featured-article:hover {
  border-color: var(--yellow);
  box-shadow: 0 12px 48px rgba(0,0,0,0.14);
}
.featured-emoji-wrap {
  background: linear-gradient(135deg, var(--yellow) 0%, #FFB800 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 240px;
}
.featured-emoji { font-size: 6rem; line-height: 1; position: relative; z-index: 1; }
.featured-shimmer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.4) 0%, transparent 60%);
}
.featured-body {
  padding: 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.8rem;
  color: var(--gray);
}
.tag-pill {
  background: var(--light);
  color: var(--gray);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}
.featured-title {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 12px;
}
.featured-excerpt {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  .featured-article { grid-template-columns: 1fr; }
  .featured-emoji-wrap { min-height: 150px; }
  .featured-emoji { font-size: 4rem; }
  .featured-body { padding: 24px 20px; }
}

/* v2 article cards */
.article-card-v2 { flex-direction: row; }
.article-card-emoji-v2 {
  width: 90px;
  min-width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  line-height: 1;
}
.emoji-color-1 { background: linear-gradient(135deg, #FFD600, #FFA800); }
.emoji-color-2 { background: linear-gradient(135deg, #FF6B6B, #FF4040); }
.emoji-color-3 { background: linear-gradient(135deg, #4ECDC4, #2196F3); }
.emoji-color-4 { background: linear-gradient(135deg, #A8E063, #56AB2F); }
.article-card-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
@media (max-width: 480px) {
  .article-card-v2 { flex-direction: column; }
  .article-card-emoji-v2 { width: 100%; min-width: unset; height: 80px; }
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.article-card {
  background: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--yellow);
}
.article-card-emoji {
  background: var(--yellow);
  text-align: center;
  font-size: 3rem;
  padding: 24px;
  line-height: 1;
}
.article-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-card-date {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 8px;
}
.article-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
  line-height: 1.4;
}
.article-card-excerpt {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.article-card-link {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 50px;
  align-self: flex-start;
}

/* ── ARTICLE PAGE ── */
.article-hero {
  background: linear-gradient(135deg, var(--yellow) 0%, #FFB800 100%);
  padding: 50px 24px 40px;
  text-align: center;
}
.article-hero .breadcrumb a { font-weight: 600; }
.article-emoji {
  font-size: 4rem;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.article-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--black);
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.2;
}
.article-meta {
  font-size: 0.82rem;
  color: #4A3B00;
}
.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 56px;
}
.article-content h2 {
  font-size: 1.35rem;
  font-weight: 900;
  margin: 36px 0 12px;
  color: var(--black);
}
.article-content p {
  margin-bottom: 16px;
  line-height: 1.85;
  color: #333;
}
.article-content ul {
  margin: 0 0 16px 20px;
  line-height: 1.85;
  color: #333;
}
.article-content li { margin-bottom: 8px; }
.article-content a:not(.btn):not(.kp-item) { color: var(--black); text-decoration: underline; font-weight: 600; }
.article-tip {
  background: #fff8cc;
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── TARIFFS TABLE ── */
.tariffs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 16px;
}
.tariffs-table th {
  background: var(--black);
  color: var(--yellow);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tariffs-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}
.tariffs-table tr:last-child td { border-bottom: none; }
.tariffs-table tr:hover td { background: var(--light); }
.tariff-price { font-weight: 700; color: var(--red); white-space: nowrap; }
.tariff-name { font-weight: 700; }

/* ── TIPS BLOCK ── */
.tips-block {
  background: var(--light);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.tips-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e8e8e8;
  font-size: 0.92rem;
  line-height: 1.6;
}
.tips-list li:last-child { border-bottom: none; }
.tip-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── ARTICLE VISUAL BLOCKS ── */

/* Key points bar */
.article-keypoints {
  background: var(--black);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 0 0 32px;
}
.kp-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow);
  margin-bottom: 14px;
}
.kp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.kp-item {
  background: #2a2a2a;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  line-height: 1.4;
  display: block;
  transition: background 0.15s, transform 0.15s;
  cursor: pointer;
}
.kp-item:hover {
  background: #3a3a3a;
  transform: translateY(-1px);
  color: var(--yellow);
}

/* Infographic 2-column */
.article-infographic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
.infog-col {
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.infog-red { background: #fff0f0; }
.infog-green { background: #f0fff4; }
.infog-yellow { background: #fffde7; }
.infog-icon { font-size: 2rem; margin-bottom: 8px; }
.infog-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); margin-bottom: 6px; }
.infog-value { font-size: 1rem; font-weight: 900; color: var(--black); margin-bottom: 6px; line-height: 1.3; }
.infog-note { font-size: 0.78rem; color: var(--gray); }

/* Highlight box */
.article-highlight-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
  font-size: 0.92rem;
  line-height: 1.65;
}
.ahb-emoji { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }

/* Step card */
.article-step-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 2px solid #f0f0f0;
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 12px 0;
  font-size: 0.92rem;
  line-height: 1.65;
  transition: border-color 0.2s;
}
.article-step-card:hover { border-color: var(--yellow); }
.asc-num {
  width: 36px;
  height: 36px;
  background: var(--yellow);
  color: var(--black);
  font-size: 1rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Summary box */
.article-summary-box {
  background: var(--light);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.asb-title {
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--black);
  margin-bottom: 12px;
}
.asb-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.asb-list li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: #333;
  border-bottom: 1px solid #e8e8e8;
  line-height: 1.6;
}
.asb-list li:last-child { border-bottom: none; }
.asb-list a { color: var(--black); text-decoration: underline; font-weight: 700; }

/* Price comparison table in articles */
.article-price-table {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 20px 0;
}
.apt-row {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 0;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.88rem;
  align-items: center;
}
.apt-row:last-child { border-bottom: none; }
.apt-header {
  background: var(--black);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 20px;
}
.apt-row:not(.apt-header):hover { background: var(--light); }
.apt-price { font-weight: 700; color: var(--red); }
.apt-row a { color: var(--black); font-weight: 600; text-decoration: underline; }

/* ── TOPIC TAGS ── */
.topic-tag {
  display: inline-block;
  background: var(--light);
  border: 2px solid #e5e5e5;
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
}

/* ── ARTICLE BOTTOM CTA ── */
.article-bottom-cta {
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 28px 28px;
  margin-top: 40px;
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width: 600px) {
  .article-bottom-cta { padding: 20px 16px; }
  .featured-title { font-size: 1.15rem; }
  .blog-hero-stats { flex-direction: column; gap: 8px; }
  .blog-hero h1 { font-size: 1.8rem; }
}

/* ── BLOG PREVIEW on HOMEPAGE ── */
.blog-preview {
  background: var(--light);
  padding: 60px 24px;
}
.blog-preview-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  /* Layout */
  header { padding: 0 16px; }
  nav a { margin-left: 12px; font-size: 0.8rem; }
  .section { padding: 36px 16px; }
  .hero { padding: 44px 16px 36px; }
  .stats-bar { gap: 20px; padding: 16px; }
  .stat strong { font-size: 1.3rem; }
  .city-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .btn-lg { font-size: 1rem; padding: 18px 28px; }
  .section-title { font-size: 1.4rem; }
  .cta-block { padding: 44px 16px; }

  /* City page */
  .city-hero { padding: 40px 16px 36px; }
  .faq { padding: 36px 16px; }
  .routes-section { padding: 36px 16px; }
  .routes-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tariffs-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; font-size: 0.82rem; }
  .tariffs-table th, .tariffs-table td { padding: 10px 12px; white-space: nowrap; }
  .tips-block { padding: 20px 16px; }
  .steps { grid-template-columns: 1fr; gap: 12px; }
  .step { padding: 20px 16px; }

  /* Article & Blog */
  .article-content { padding: 28px 16px 40px; }
  .article-hero { padding: 36px 16px 28px; }
  .article-hero h1 { font-size: 1.35rem; }
  .article-content h2 { font-size: 1.15rem; margin: 24px 0 10px; }
  .article-bottom-cta { padding: 20px 16px; }

  .article-keypoints { padding: 16px; }
  .kp-grid { grid-template-columns: 1fr; gap: 8px; }
  .kp-item { font-size: 0.8rem; padding: 8px 12px; }

  .article-infographic { grid-template-columns: 1fr; gap: 10px; }
  .infog-col { padding: 16px; }

  .article-highlight-box { flex-direction: column; gap: 8px; padding: 16px; }
  .ahb-emoji { font-size: 1.5rem; }

  .article-step-card { padding: 12px 14px; gap: 12px; }
  .asc-num { width: 28px; height: 28px; font-size: 0.85rem; }

  .article-summary-box { padding: 14px 16px; }
  .article-tip { padding: 12px 14px; font-size: 0.85rem; }

  .article-price-table { overflow-x: auto; display: block; -webkit-overflow-scrolling: touch; }
  .apt-row { font-size: 0.8rem; padding: 10px 12px; }
  .apt-header { padding: 10px 12px; }

  /* Blog */
  .blog-hero { padding: 48px 16px 40px; }
  .blog-hero h1 { font-size: 1.8rem; }
  .blog-hero-stats { flex-direction: column; gap: 6px; }
  .blog-grid { grid-template-columns: 1fr; }
  .featured-body { padding: 20px 16px; }
  .featured-title { font-size: 1.15rem; }
  .article-card-v2 { flex-direction: row; }
  .article-card-emoji-v2 { width: 76px; min-width: 76px; font-size: 2rem; }
  .article-card-body { padding: 14px; }

  .how-section .section { padding: 36px 16px; }
  .blog-preview { padding: 36px 16px; }
}
