
/* ---------- Home (country index) ---------- */
.home-hero {
  background: linear-gradient(135deg, #0a1530 0%, #070f24 60%, #1a2a52 130%);
  color: #fff; padding: 56px 24px 64px; text-align: center;
}
.home-hero-inner { max-width: 900px; margin: 0 auto; }
.home-hero h1 { font-size: 38px; margin: 0 0 10px; line-height: 1.15; font-weight: 600; letter-spacing: -0.02em; }
.home-hero-sub { font-size: 17px; opacity: .85; margin: 0 0 24px; }
.home-hero .search-form { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); box-shadow: none; }
.home-hero .search-form select,
.home-hero .search-form input { background-color: #fff; } /* keep background-image (arrow) from style.css */
.home-hero-stats {
  display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: center;
  margin-top: 22px; font-size: 14px; opacity: .9;
}
.home-hero-stats strong { font-size: 18px; color: #8ab4f8; }

.home-section { margin-top: 40px; }
.home-section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 16px;
}
.home-section-head h2 { font-size: 24px; margin: 0; }
.home-section-link { color: var(--accent); font-weight: 600; font-size: 14px; }

.chip-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 9px 16px; font-size: 14px; font-weight: 500;
  transition: border-color .15s, box-shadow .15s;
}
.chip:hover { border-color: var(--accent); box-shadow: 0 2px 8px rgba(0,117,222,.15); color: var(--accent); }
.chip-count {
  background: var(--surface-soft); border: 1px solid var(--border);
  border-radius: var(--radius-sm, 6px); padding: 1px 8px; font-size: 12px; color: var(--muted);
}
.chip:hover .chip-count { background: #eff6ff; border-color: var(--accent); color: var(--accent); }

.home-seo { max-width: 820px; }
.home-seo h2 { font-size: 22px; margin-bottom: 14px; }
.home-seo p { color: #374151; line-height: 1.7; margin: 0 0 14px; }
.home-seo a { color: var(--primary); font-weight: 500; }
.home-seo a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .home-hero { padding: 40px 16px 48px; }
  .home-hero h1 { font-size: 24px; line-height: 1.2; }
  .home-hero-sub { font-size: 15px; }
  .home-section-head { flex-direction: column; gap: 4px; }
}
