﻿/* ============================================================
   LICHENG logistics website - global stylesheet
   ============================================================ */

:root {
  --navy-950: #061524;
  --navy-900: #0B2A4A;
  --navy-800: #123A63;
  --navy-700: #1D5EA8;
  --teal: #10B5A0;
  --teal-dark: #0C8F7F;
  --teal-soft: rgba(16, 181, 160, .12);
  --amber: #FFB52E;
  --amber-dark: #F0A31C;
  --bg: #F6F8FC;
  --white: #fff;
  --ink: #17233A;
  --muted: #5B6B82;
  --line: #E3E9F2;
  --radius: 16px;
  --shadow-sm: 0 2px 10px rgba(11, 42, 74, .06);
  --shadow-md: 0 12px 32px rgba(11, 42, 74, .10);
  --shadow-lg: 0 24px 60px rgba(11, 42, 74, .16);
  --font: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ---------- 顶部信息条---------- */
.topbar {
  background: var(--navy-950);
  color: #C7D5E8;
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
}
.topbar-contacts { display: flex; gap: 22px; flex-wrap: wrap; margin-left: auto; }
.topbar-contacts a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.topbar-contacts a:hover { color: var(--amber); }
.topbar-contacts svg { width: 14px; height: 14px; fill: var(--teal); }
.topbar-tag { display: inline-flex; align-items: center; gap: 8px; }
.topbar-tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(16,181,160,.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,181,160,.25); }
  50% { box-shadow: 0 0 0 6px rgba(16,181,160,.08); }
}

/* ---------- 导航栏---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 46px; height: 46px; flex: none; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.brand-mark svg, .brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.3; }
.brand-text strong { font-size: 19px; color: var(--navy-900); letter-spacing: .5px; }
.brand-text em { font-style: normal; font-size: 11.5px; color: var(--muted); letter-spacing: .5px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  white-space: nowrap;
  padding: 9px 13px;
  font-size: 14.5px;
  font-weight: 500;
  color: #33445E;
  border-radius: 9px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--navy-800); background: var(--teal-soft); }
.nav-links a.active { color: var(--teal-dark); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--navy-900); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.btn:active { transform: scale(.97); }
.btn-amber { background: linear-gradient(135deg, #FFC14D, var(--amber)); color: var(--navy-950); box-shadow: 0 8px 22px rgba(255,181,46,.35); }
.btn-amber:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,181,46,.45); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-outline { border-color: var(--teal); color: var(--teal-dark); background: #fff; }
.btn-outline:hover { background: var(--teal-soft); }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(150deg, var(--navy-900) 0%, var(--navy-800) 55%, #0D3158 100%);
  color: #fff;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid { width: 100%; height: 100%; }
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .45; }
.glow-a { width: 420px; height: 420px; background: var(--teal); top: -140px; right: 8%; }
.glow-b { width: 360px; height: 360px; background: var(--amber); bottom: -160px; left: -80px; opacity: .22; }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 76px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(16,181,160,.14);
  border: 1px solid rgba(16,181,160,.4);
  color: #7FE3D5;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .4px;
}
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); animation: pulse 2s infinite; }

.hero h1 {
  margin-top: 22px;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: .5px;
}
.hero h1 em { font-style: normal; color: var(--amber); position: relative; }
.hero-sub { margin-top: 20px; max-width: 520px; color: #B9C9DE; font-size: 16.5px; }

.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.14);
  max-width: 560px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat strong { font-size: 27px; font-weight: 800; color: #fff; }
.stat strong span { color: var(--amber); font-size: 18px; }
.stat span { font-size: 12.5px; color: #9FB4CF; }

.hero-visual { position: relative; }
.hero-route {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- 合作平台栏---------- */
.platforms { background: var(--white); border-bottom: 1px solid var(--line); padding: 22px 0; }
.platforms-label { text-align: center; font-size: 12.5px; color: var(--muted); letter-spacing: 2px; margin-bottom: 12px; }
.platforms-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
}
.platforms-row span {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #A8B6C8;
  transition: color .2s;
  cursor: default;
}
.platforms-row span:hover { color: var(--navy-800); }

/* ---------- 通用区块 ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--white); }
.section-dark {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: #fff;
}

.section-head { max-width: 700px; margin: 0 auto 52px; text-align: center; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.section-head.light .eyebrow { color: #7FE3D5; }
.section-head h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--navy-900); line-height: 1.3; }
.section-head.light h2 { color: #fff; }
.section-head h2 em { font-style: normal; color: var(--teal); }
.section-head.light h2 em { color: var(--amber); }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 15.5px; }
.section-head.light p { color: #B9C9DE; }

/* ---------- 卡片 ---------- */
.cards { display: grid; gap: 24px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(16,181,160,.4); }

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 15px;
  margin-bottom: 18px;
}
.card-icon svg { width: 30px; height: 30px; fill: currentColor; }
.card-icon.teal { background: var(--teal-soft); color: var(--teal-dark); }
.card-icon.navy { background: rgba(11,42,74,.09); color: var(--navy-900); }
.card-icon.amber { background: rgba(255,181,46,.16); color: #C77E00; }
.card-icon.blue { background: rgba(29,94,168,.12); color: var(--navy-700); }

.feature h3 { font-size: 19px; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; }
.feature p { font-size: 14.5px; color: var(--muted); }

/* ---------- 服务卡片 ---------- */
.service { position: relative; overflow: hidden; }
.service-no {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 44px;
  font-weight: 800;
  color: rgba(11,42,74,.06);
  line-height: 1;
  transition: color .3s;
}
.service:hover .service-no { color: rgba(16,181,160,.16); }
.service-ico {
  width: 52px;
  height: 52px;
  padding: 12px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  fill: #fff;
  transition: transform .3s;
}
.service:hover .service-ico { transform: scale(1.08) rotate(-4deg); }
.service h3 { font-size: 19px; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; }
.service p { font-size: 14.5px; color: var(--muted); }

/* ---------- 价格卡片 ---------- */
.price { display: flex; flex-direction: column; gap: 0; padding: 0; overflow: hidden; }
.price-top { padding: 28px 28px 8px; }
.price-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--navy-700);
  background: rgba(29,94,168,.1);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.price h3 { font-size: 22px; font-weight: 800; color: var(--navy-900); }
.price-top p { font-size: 13.5px; color: var(--muted); margin-top: 4px; }

.price-amount { margin: 16px 24px; padding: 14px 16px; border: 1.5px dashed rgba(16,181,160,.5); border-radius: 12px; background: rgba(16,181,160,.06); display: flex; align-items: center; justify-content: center; }
.price-amount strong { font-size: 30px; color: var(--navy-900); font-weight: 800; letter-spacing: .5px; }
.price-amount strong em { font-style: normal; }
.price-amount span { font-size: 13.5px; color: var(--muted); }

.price-list { padding: 20px 28px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.price-list li { font-size: 14.5px; color: #42536E; padding-left: 26px; position: relative; }
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}
.price .btn { margin: 6px 28px 28px; }

.price.featured {
  border: 2px solid var(--amber);
  box-shadow: 0 20px 48px rgba(255,181,46,.22);
  transform: translateY(-10px);
}
.price.featured:hover { transform: translateY(-16px); }
.price.featured .price-tag { background: rgba(255,181,46,.2); color: #C77E00; }

/* ---------- 流程 ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 10px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 9%;
  right: 9%;
  height: 3px;
  border-radius: 2px;
  background: repeating-linear-gradient(90deg, rgba(127,227,213,.5) 0 10px, transparent 10px 20px);
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 0 0 7px rgba(16,181,160,.18);
  margin-bottom: 18px;
}
.step h3 { font-size: 17.5px; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 13.5px; color: #B9C9DE; max-width: 180px; margin: 0 auto; }

/* ---------- 客户评价 ---------- */
.review .stars { color: var(--amber); font-size: 16px; letter-spacing: 3px; margin-bottom: 12px; }
.review-text { font-size: 15px; color: #42536E; line-height: 1.8; margin-bottom: 22px; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  flex: none;
}
.avatar.teal { background: var(--teal-dark); }
.avatar.amber { background: linear-gradient(135deg, #F0A31C, #D98A0B); }
.review-author div { display: flex; flex-direction: column; line-height: 1.4; }
.review-author strong { font-size: 15px; color: var(--navy-900); }
.review-author span { font-size: 12.5px; color: var(--muted); }

/* ---------- 报价区块 ---------- */
.quote-section { background: linear-gradient(150deg, var(--navy-900), var(--navy-800)); position: relative; overflow: hidden; }
.quote-section::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--teal);
  opacity: .14;
  filter: blur(100px);
  top: -140px;
  left: -120px;
}
.quote-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.quote-copy .eyebrow {
  color: #7FE3D5;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 3px;
}
.quote-copy h2 { color: #fff; font-size: clamp(26px, 3vw, 36px); font-weight: 800; line-height: 1.35; margin-top: 14px; }
.quote-copy > p { color: #B9C9DE; margin-top: 16px; font-size: 15.5px; }
.quote-points { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.quote-points li { display: flex; align-items: center; gap: 11px; color: #DDE7F4; font-size: 15px; }
.quote-points svg { width: 22px; height: 22px; fill: var(--teal); flex: none; }

.quote-form {
  background: #fff;
  border-radius: 20px;
  padding: 34px 32px;
  box-shadow: var(--shadow-lg);
}
.quote-form h3 { font-size: 21px; font-weight: 800; color: var(--navy-900); margin-bottom: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-grid label { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; font-weight: 600; color: #42536E; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea {
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  background: #FBFCFE;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-grid textarea { resize: vertical; min-height: 76px; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-soft);
}
.quote-form .btn { margin-top: 20px; }
.form-note { margin-top: 13px; font-size: 12px; color: var(--muted); text-align: center; }

/* ---------- 联系方式卡片 ---------- */
.contact-cards .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 34px 26px;
}
.contact-cards .card-icon {
  margin: 0 0 2px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.contact-cards .card-icon svg { width: 32px; height: 32px; }
.contact h3 { font-size: 18px; font-weight: 700; color: var(--navy-900); }
.contact p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.contact-cards .card p { margin: 4px 0 0; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.contact-cards .card p a { font-size: 16px; font-weight: 600; color: var(--navy-900); }
.contact a:hover { color: var(--teal-dark); }
.card-icon.whatsapp { background: rgba(37, 211, 102, .16); color: #128C7E; }
.card-icon.wechat { background: rgba(7, 193, 96, .16); color: #07C160; }
.card-icons { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 0 2px; }
.card-icons .card-icon { margin: 0; }
.contact-cards .card:last-child p { align-items: flex-start; text-align: left; }

/* ---------- 页脚 ---------- */
.footer { background: var(--navy-950); color: #9FB4CF; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.brand-light .brand-mark { background: #fff; }
.brand-light .brand-text strong { color: #fff; }
.brand-light .brand-text em { color: #7FE3D5; }
.footer .brand-text strong { font-size: 14px; line-height: 1.5; }
.footer-brand > p { margin-top: 18px; font-size: 14px; line-height: 1.8; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; line-height: 2.2; transition: color .2s; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; }
.footer-bottom p { font-size: 13px; text-align: center; color: #6E84A0; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 90px);
  background: var(--navy-900);
  color: #fff;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: transform .35s, opacity .35s;
  z-index: 200;
  border-left: 4px solid var(--teal);
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ---------- 滚动显现动画 ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- 响应式---------- */

@media (max-width: 1280px) {
  .nav-links { gap: 2px; }
  .nav-links a { padding: 9px 10px; font-size: 13.5px; }
}

@media (max-width: 1024px) {
  .nav-links { gap: 0; }
  .nav-links a { padding: 9px 4px; font-size: 12.5px; }
  .navbar .brand-text em { font-size: 10.5px; letter-spacing: 0; }
  .nav-actions .btn { padding: 11px 15px; font-size: 13.5px; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 52px; }
  .hero-visual { max-width: 620px; margin: 0 auto; width: 100%; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar-contacts a span { display: none; }
  .topbar-tag { display: none; }
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 14px 5%;
    gap: 2px;
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform .3s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 12px; font-size: 15.5px; }
  .nav-toggle { display: flex; }
  .nav-actions .btn { display: none; }
  .section { padding: 64px 0; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .cards-3, .cards-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .quote-wrap { grid-template-columns: 1fr; gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .price.featured { transform: none; }
  .price.featured:hover { transform: translateY(-6px); }
}

/* ---------- 联系方式卡片（自适应网格）---------- */
.contact-cards { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }


/* ---------- География доставки (единый блок) ---------- */
.geo-panel { max-width: 880px; margin-inline: auto; padding: 42px 44px; text-align: center; }
.geo-countries { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px; margin-bottom: 30px; }
.geo-chip {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 13px 28px 13px 16px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--line);
  font-size: 22px; font-weight: 700; color: var(--navy-900);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.geo-chip:hover { transform: translateY(-2px); border-color: var(--teal); box-shadow: var(--shadow-md); }
.geo-chip .flag { width: 32px; height: 22px; border-radius: 5px; flex: none; box-shadow: inset 0 0 0 1px rgba(0,0,0,.07); }
.flag-kz { background-color: #00AEC7; background-image: radial-gradient(circle at 50% 50%, #FCD116 0 5px, rgba(0,0,0,0) 6px); }
.flag-kg { background-color: #EF3340; background-image: radial-gradient(circle at 50% 50%, #FFE600 0 4px, rgba(0,0,0,0) 5px); }
.flag-by { background: linear-gradient(180deg, #CE1720 0 60%, #009B3A 60% 100%); }
.geo-body { max-width: 660px; margin-inline: auto; }
.geo-body p { font-size: 18.5px; color: var(--navy-700); line-height: 1.85; margin-bottom: 22px; }
.geo-features { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 14px; text-align: left; max-width: 500px; margin-inline: auto; }
.geo-features li { position: relative; padding-left: 34px; font-size: 18.5px; color: var(--navy-700); line-height: 1.6; }
.geo-features li::before {
  content: "";
  position: absolute; left: 3px; top: 7px;
  width: 10px; height: 17px;
  border: solid var(--teal-dark);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

