/* ============================================================
   High Way Travel & Tourism · 海外旅业集团
   Corporate website stylesheet
   ============================================================ */
:root {
  --brand-900: #08213f;
  --brand-800: #0e3a7c;
  --brand-700: #154c9a;
  --brand-600: #1e5fb8;
  --brand-500: #2f7ad1;
  --brand-300: #8fb8e8;
  --brand-100: #e3edf9;
  --brand-50: #f2f7fd;
  --gold-700: #a9701a;
  --gold-600: #c98a24;
  --gold-500: #e3a93c;
  --gold-400: #f0be5c;
  --gold-100: #fbf0d8;
  --ink: #0f1b2e;
  --ink-2: #33425c;
  --muted: #6b7a93;
  --line: #e2e9f3;
  --line-2: #d3dfee;
  --bg: #f5f8fc;
  --white: #ffffff;
  --ok: #1f9d5c;
  --warn: #d98a00;
  --danger: #d64545;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(14, 58, 124, .06);
  --shadow: 0 10px 30px rgba(14, 58, 124, .10);
  --shadow-lg: 0 24px 60px rgba(9, 33, 63, .18);
  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-serif: Georgia, "Times New Roman", "Songti SC", "SimSun", serif;
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.25; font-weight: 800; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
.ic { flex: 0 0 auto; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section.tight { padding: 64px 0; }
.section.dark { background: var(--brand-900); color: #eaf1fb; }
.section.tint { background: var(--brand-50); }
.section.deep {
  background:
    radial-gradient(1000px 500px at 12% -10%, rgba(47,122,209,.35), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(227,169,60,.18), transparent 55%),
    linear-gradient(160deg, #0a2a5e, #08213f 60%);
  color: #e9f1fb;
}
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-500); border-radius: 2px; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 40px); }
.section-head p { color: var(--muted); font-size: 16.5px; margin: 0; }
.dark .section-head p, .deep .section-head p { color: #a9c2e4; }
.dark .eyebrow, .deep .eyebrow { color: var(--gold-400); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: 14.5px; letter-spacing: .01em;
  transition: .22s ease; white-space: nowrap;
}
.btn-gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: #35240a; box-shadow: 0 10px 24px rgba(201,138,36,.32); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(201,138,36,.42); }
.btn-primary { background: var(--brand-800); color: #fff; }
.btn-primary:hover { background: var(--brand-700); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { border-color: rgba(255,255,255,.42); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.btn-outline { border-color: var(--line-2); color: var(--brand-800); background: #fff; }
.btn-outline:hover { border-color: var(--brand-500); color: var(--brand-700); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn .ic { transition: transform .22s ease; }
.btn:hover .ic { transform: translateX(3px); }

/* ---------- topbar ---------- */
.topbar { background: var(--brand-900); color: #bcd2ee; font-size: 13px; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 40px; }
.topbar a:hover { color: #fff; }
.topbar .tb-left { display: flex; align-items: center; gap: 20px; }
.topbar .tb-left span { display: inline-flex; align-items: center; gap: 7px; }
.topbar .tb-right { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: inline-flex; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; overflow: hidden; }
.lang-switch a { padding: 3px 13px; font-weight: 600; font-size: 12.5px; }
.lang-switch a.on { background: var(--gold-500); color: #2a1c05; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(14,58,124,.09); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
.brand-lockup { display: flex; align-items: center; gap: 13px; }
.brand-lockup .lockup-text strong { display: block; font-size: 18px; letter-spacing: .02em; color: var(--brand-800); line-height: 1.15; }
.brand-lockup .lockup-text span { display: block; font-size: 10px; letter-spacing: .22em; color: var(--muted); font-weight: 600; text-transform: uppercase; }
.brand-mark { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.brand-mark img { display: block; width: auto; }
.brand-mark-light { background: #fff; border-radius: 12px; padding: 4px 8px; box-shadow: 0 3px 12px rgba(0,0,0,.18); }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 9px 15px; border-radius: 9px; font-weight: 600; font-size: 14.5px; color: var(--ink-2);
  transition: .18s ease; position: relative;
}
.main-nav a:hover { color: var(--brand-700); background: var(--brand-50); }
.main-nav a.on { color: var(--brand-800); }
.main-nav a.on::after { content: ""; position: absolute; left: 15px; right: 15px; bottom: 3px; height: 2.5px; border-radius: 2px; background: var(--gold-500); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-2); border-radius: 10px; padding: 8px; color: var(--brand-800); }

/* dropdown for territories */
.nav-drop { position: relative; }
.nav-drop > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-drop-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .2s ease;
}
.nav-drop:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 9px; font-size: 14px; }
.nav-drop-menu a:hover { background: var(--brand-50); }
.nav-drop-menu .flag { font-size: 17px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.03); }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(8,33,63,.94) 0%, rgba(14,58,124,.82) 42%, rgba(14,58,124,.35) 72%, rgba(8,33,63,.55) 100%),
    radial-gradient(700px 400px at 85% 20%, rgba(227,169,60,.22), transparent 65%);
}
.hero .container { position: relative; z-index: 2; padding-top: 70px; padding-bottom: 70px; }
.hero-inner { max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 16px 7px 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px; font-size: 13px; font-weight: 600; letter-spacing: .04em; margin-bottom: 26px;
}
.hero-badge b { background: var(--gold-500); color: #2a1c05; padding: 3px 10px; border-radius: 999px; font-size: 12px; }
.hero h1 { font-size: clamp(34px, 5.4vw, 66px); font-weight: 900; letter-spacing: -.02em; margin-bottom: 20px; }
.hero h1 .accent {
  display: block; font-family: var(--font-serif); font-style: italic; font-weight: 700;
  background: linear-gradient(100deg, var(--gold-400), var(--gold-500) 60%, #ffe6a8);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-size: .62em; margin-top: 6px; letter-spacing: .01em;
}
.hero p.lede { font-size: 17px; color: #d3e2f6; max-width: 600px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-motto {
  margin-top: 34px; padding-left: 18px; border-left: 3px solid var(--gold-500);
  font-family: var(--font-serif); font-size: 17px; color: #f0e2c4; letter-spacing: .04em;
}

/* stat strip */
.hero-stats { position: relative; z-index: 3; margin-top: -60px; }
.stat-strip {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(5, 1fr); overflow: hidden; border: 1px solid var(--line);
}
.stat-strip .stat { padding: 28px 22px; text-align: center; border-right: 1px solid var(--line); }
.stat-strip .stat:last-child { border-right: none; }
.stat-strip .num { font-size: 34px; font-weight: 900; color: var(--brand-800); letter-spacing: -.02em; line-height: 1; }
.stat-strip .num i { color: var(--gold-500); font-style: normal; }
.stat-strip .lbl { font-size: 13px; color: var(--muted); margin-top: 7px; font-weight: 600; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { position: relative; color: #fff; padding: 92px 0 68px; overflow: hidden; }
.page-hero .hero-bg { transform: scale(1.02); }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(8,33,63,.95), rgba(14,58,124,.78) 60%, rgba(14,58,124,.5));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 10px; }
.page-hero p { color: #c9dcf3; max-width: 680px; margin: 0; }
.crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #a9c2e4; margin-bottom: 16px; }
.crumb a:hover { color: #fff; }

/* ---------- cards: business segments ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.seg-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  transition: .25s ease; position: relative; overflow: hidden;
}
.seg-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px;
  background: linear-gradient(var(--brand-500), var(--brand-800)); transform: scaleY(0); transform-origin: top; transition: .3s ease;
}
.seg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--brand-100); }
.seg-card:hover::before { transform: scaleY(1); }
.seg-icon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--brand-50), var(--brand-100)); color: var(--brand-700); margin-bottom: 18px;
  border: 1px solid var(--brand-100);
}
.seg-card h3 { font-size: 19px; margin-bottom: 8px; }
.seg-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* advantage / feature list tiles */
.adv { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; gap: 16px; align-items: flex-start; }
.adv .seg-icon { margin-bottom: 0; width: 48px; height: 48px; }
.adv h4 { font-size: 16.5px; margin-bottom: 4px; }
.adv p { margin: 0; color: var(--muted); font-size: 14px; }

/* ---------- territory cards ---------- */
.tile {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 330px;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-sm); transition: .3s ease;
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,33,63,.06) 25%, rgba(8,33,63,.9) 100%); }
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tile:hover img { transform: scale(1.07); }
.tile-body { position: relative; z-index: 2; padding: 26px; width: 100%; }
.tile .flag-badge { position: absolute; top: 18px; left: 18px; z-index: 2; background: rgba(255,255,255,.92); color: var(--brand-800); border-radius: 999px; padding: 4px 12px; font-size: 13px; font-weight: 700; display: inline-flex; gap: 7px; align-items: center; }
.tile.hub .flag-badge { background: var(--gold-500); color: #2a1c05; }
.tile h3 { font-size: 22px; margin-bottom: 4px; }
.tile .tile-sub { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-400); font-weight: 700; }
.tile p { font-size: 14px; color: #d7e4f5; margin: 10px 0 14px; }
.tile .tile-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #cfe0f4; }
.tile .tile-meta span { display: inline-flex; align-items: center; gap: 6px; }
.tile .tile-go { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: #fff; }
.tile .tile-go .ic { transition: transform .25s; }
.tile:hover .tile-go .ic { transform: translateX(5px); }

/* ---------- group companies ---------- */
.company-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.company {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px;
  display: flex; gap: 13px; align-items: center; transition: .22s ease;
}
.company:hover { border-color: var(--brand-300); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.company .co-mark {
  width: 42px; height: 42px; border-radius: 11px; flex: 0 0 auto; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--brand-800), var(--brand-600)); color: #fff; font-weight: 800; font-size: 15px;
}
.company.platform .co-mark { background: linear-gradient(140deg, var(--gold-600), var(--gold-400)); color: #2a1c05; }
.company .co-name { font-size: 13px; font-weight: 800; letter-spacing: .01em; line-height: 1.3; }
.company .co-tag { font-size: 11.5px; color: var(--muted); }

/* ---------- timeline ---------- */
.timeline { position: relative; padding-left: 8px; }
.timeline::before { content: ""; position: absolute; left: 118px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--brand-300), var(--brand-100)); }
.tl-row { display: grid; grid-template-columns: 100px 1fr; gap: 34px; position: relative; padding-bottom: 26px; }
.tl-year { text-align: right; font-weight: 800; color: var(--brand-800); font-size: 17px; padding-top: 2px; }
.tl-row::before {
  content: ""; position: absolute; left: 113px; top: 8px; width: 12px; height: 12px; border-radius: 50%;
  background: #fff; border: 3px solid var(--gold-500); z-index: 2;
}
.tl-body { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 20px; }
.tl-body h4 { font-size: 15.5px; margin-bottom: 2px; }
.tl-body p { margin: 0; font-size: 13.5px; color: var(--muted); }
.deep .tl-body, .dark .tl-body { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.deep .tl-body p, .dark .tl-body p { color: #a9c2e4; }
.deep .tl-year, .dark .tl-year { color: var(--gold-400); }
.deep .timeline::before, .dark .timeline::before { background: rgba(255,255,255,.2); }
.deep .tl-row::before, .dark .tl-row::before { background: var(--brand-900); }

/* ---------- team / value cards ---------- */
.vcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: .25s ease; height: 100%; }
.vcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.vcard .seg-icon { margin-bottom: 16px; }
.vcard h4 { font-size: 17px; }
.vcard p { color: var(--muted); font-size: 14px; margin: 0; }
.vcard .idx { font-family: var(--font-serif); font-size: 34px; font-weight: 700; color: var(--brand-100); line-height: 1; margin-bottom: 10px; }

/* ---------- service rows ---------- */
.svc-item {
  display: flex; gap: 16px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: .22s ease; align-items: flex-start;
}
.svc-item:hover { border-color: var(--brand-300); box-shadow: var(--shadow-sm); }
.svc-item .svc-ico { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 12px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand-700); border: 1px solid var(--brand-100); }
.svc-item h4 { font-size: 16px; margin-bottom: 5px; }
.svc-item p { margin: 0; font-size: 13.8px; color: var(--muted); }

/* 属地分组标题（业务与服务 · 各属地公司服务项目） */
.svc-group-head { display: flex; align-items: center; gap: 12px; margin: 38px 0 18px; }
.section-head + .svc-group-head { margin-top: 0; }
.svc-group-name { display: flex; align-items: center; gap: 12px; min-width: 0; }
.svc-group-flag { font-size: 24px; line-height: 1; flex: 0 0 auto; }
.svc-group-name h3 { margin: 0; font-size: 20px; }
.svc-group-line { flex: 1 1 auto; height: 1px; background: var(--line-2); min-width: 16px; }
@media (max-width: 640px) {
  .svc-group-head { gap: 8px; margin: 30px 0 14px; }
  .svc-group-name h3 { font-size: 17px; }
  .svc-group-name { flex: 1 1 auto; }
  .svc-group-line { display: none; }
}

/* ---------- news ---------- */
.news-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .25s ease; display: flex; flex-direction: column; height: 100%; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.news-thumb { height: 168px; background: linear-gradient(135deg, var(--brand-800), var(--brand-600)); position: relative; display: grid; place-items: center; color: rgba(255,255,255,.5); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.news-meta { display: flex; gap: 12px; font-size: 12.5px; color: var(--muted); margin-bottom: 10px; align-items: center; }
.news-tag { background: var(--brand-50); color: var(--brand-700); padding: 3px 10px; border-radius: 999px; font-weight: 700; font-size: 11.5px; }
.news-body h3 { font-size: 17.5px; margin-bottom: 8px; }
.news-body p { color: var(--muted); font-size: 14px; flex: 1; }
.news-more { font-weight: 700; color: var(--brand-700); font-size: 13.5px; display: inline-flex; align-items: center; gap: 7px; }

/* ---------- territory product showcase ---------- */
.section-products { background: linear-gradient(180deg, #fff 0%, #f6f9fd 100%); }
.prod-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: .26s ease; display: flex; flex-direction: column; height: 100%; box-shadow: var(--shadow-sm); }
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand-300); }
.prod-top { position: relative; height: 120px; background: linear-gradient(135deg, var(--brand-800), var(--brand-600) 55%, var(--gold-600)); display: grid; place-items: center; overflow: hidden; }
.prod-top::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 15% 0%, rgba(255,255,255,.16), transparent 60%); }
.prod-ico { position: relative; width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.prod-tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(255,255,255,.92); color: var(--brand-800); font-size: 11.5px; font-weight: 800; letter-spacing: .02em; padding: 5px 11px; border-radius: 999px; box-shadow: 0 4px 12px rgba(0,0,0,.12); }
.prod-body { padding: 22px 22px 20px; display: flex; flex-direction: column; flex: 1; }
.prod-body h4 { font-size: 18px; margin: 0 0 8px; }
.prod-body > p { color: var(--ink-2); font-size: 14px; margin: 0 0 14px; line-height: 1.6; }
.prod-hl { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 8px; }
.prod-hl li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-2); }
.prod-hl li svg { color: var(--gold-600); flex: 0 0 auto; }
.prod-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px dashed var(--line); }
.prod-price { font-size: 16px; font-weight: 800; color: var(--brand-800); letter-spacing: .01em; }
.prod-cta { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; font-size: 13.5px; color: #fff; background: linear-gradient(135deg, var(--brand-700), var(--brand-600)); padding: 9px 15px; border-radius: 999px; text-decoration: none; transition: .2s ease; white-space: nowrap; }
.prod-cta:hover { filter: brightness(1.06); box-shadow: 0 8px 18px rgba(14,58,124,.28); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 52px; color: #fff;
  background: radial-gradient(600px 300px at 88% 10%, rgba(227,169,60,.28), transparent 60%), linear-gradient(120deg, #0a2a5e, #0e3a7c 55%, #154c9a); }
.cta-band h2 { font-size: clamp(24px,3vw,34px); }
.cta-band p { color: #c9dcf3; max-width: 560px; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* ---------- contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  font: inherit; font-size: 14.5px; background: #fbfdff; color: var(--ink); transition: .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 4px rgba(47,122,209,.12); background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12.5px; color: var(--muted); }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; gap: 15px; margin-bottom: 16px; }
.info-card .ic-box { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(140deg, var(--brand-50), var(--brand-100)); color: var(--brand-700); }
.info-card h4 { font-size: 15px; margin-bottom: 3px; }
.info-card p { margin: 0; font-size: 14px; color: var(--ink-2); word-break: break-word; }
.alert { padding: 13px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 18px; }
.alert-ok { background: #e8f7ee; color: #14663c; border: 1px solid #bfe8ce; }

/* ---------- footer ---------- */
.site-footer { background: var(--brand-900); color: #a9c2e4; padding: 64px 0 0; }
.site-footer .cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.site-footer h5 { color: #fff; font-size: 14px; letter-spacing: .04em; margin-bottom: 16px; text-transform: uppercase; }
.site-footer a { color: #a9c2e4; font-size: 14px; }
.site-footer a:hover { color: var(--gold-400); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.footer-about p { font-size: 14px; line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #cfe0f4; }
.social a:hover { background: var(--gold-500); color: #2a1c05; }

/* ---------- misc ---------- */
.badge-soft { display: inline-flex; align-items: center; gap: 6px; background: var(--brand-50); color: var(--brand-700); border: 1px solid var(--brand-100); padding: 5px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 700; }
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.kv { display: grid; grid-template-columns: 84px 1fr; gap: 10px 16px; font-size: 14px; }
.kv dt { color: var(--muted); font-weight: 600; }
.kv dd { margin: 0; color: var(--ink); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); height: 320px; background: linear-gradient(135deg, var(--brand-50), var(--brand-100)); display: grid; place-items: center; color: var(--brand-700); text-align: center; padding: 24px; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.divider { height: 1px; background: var(--line); margin: 0; border: 0; }
.stat-inline { display: flex; gap: 34px; flex-wrap: wrap; }
.stat-inline .s .num { font-size: 30px; font-weight: 900; color: var(--brand-800); }
.stat-inline .s .lbl { font-size: 13px; color: var(--muted); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .company-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(3, 1fr); }
  .stat-strip .stat:nth-child(3) { border-right: none; }
}
@media (max-width: 900px) {
  .main-nav, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .contact-wrap { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .site-header .container { height: 68px; }
  .section { padding: 62px 0; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .company-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip .stat { padding: 20px 14px; border-bottom: 1px solid var(--line); }
  .stat-strip .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .field-row { grid-template-columns: 1fr; }
  .timeline::before { left: 8px; }
  .tl-row { grid-template-columns: 1fr; gap: 8px; padding-left: 30px; }
  .tl-year { text-align: left; }
  .tl-row::before { left: 3px; }
  .topbar .tb-left span:not(:first-child) { display: none; }
  .site-footer .cols { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { padding: 34px 24px; }
  .hero { min-height: 560px; }
}
