/* ============================================================
   唐诚维易 VESAAS · 全球财税合规化服务平台
   Premium multi-page design system · hand-crafted CSS · no build
   Light theme locked · single accent: VESAAS azure #289EFC
   Advanced UX: glass pill nav · double-bezel cards · magnetic CTA · GSAP-ready
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --brand: #1581d8;
  --brand-bright: #289efc;
  --brand-cyan: #36c5f0;
  --brand-ice: #7fe3ff;
  --brand-deep: #0a4e8c;

  --navy: #061d37;
  --navy-2: #0b3b6e;
  --ink: #0e1b2e;
  --body: #41546b;
  --muted: #6b7c92;
  --line: #e6edf5;
  --line-2: #d3dded;

  --bg: #ffffff;
  --bg-soft: #f4f8fc;
  --bg-mist: #eef5fd;
  --tint: #e7f2fe;

  --shadow-soft: 0 18px 50px -20px rgba(13, 44, 84, .22);
  --shadow-card: 0 30px 70px -34px rgba(13, 44, 84, .42);
  --shadow-brand: 0 18px 40px -12px rgba(21, 129, 216, .55);
  --glow: 0 0 0 1px rgba(255, 255, 255, .06), 0 24px 60px -22px rgba(8, 30, 60, .6);

  --r-sm: 14px;
  --r: 20px;
  --r-lg: 30px;
  --r-pill: 999px;

  --maxw: 1240px;
  --ease: cubic-bezier(.32, .72, 0, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --ff-display: "Space Grotesk", "Sora", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --ff-sans: "Sora", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Hiragino Sans GB", sans-serif;
  --ff-num: "Space Grotesk", "Sora", "SF Pro Display", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
main { overflow-x: hidden; width: 100%; max-width: 100%; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: rgba(40, 158, 252, .22); }

/* fixed grain overlay (premium film texture) */
.grain {
  position: fixed; inset: 0; z-index: 4; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 26px; }
.section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--mist { background: linear-gradient(180deg, var(--bg-mist), var(--bg)); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-display);
  font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brand); padding: 7px 15px; border-radius: var(--r-pill);
  background: var(--tint); box-shadow: inset 0 0 0 1px rgba(21, 129, 216, .14);
}
.eyebrow i { font-size: 15px; }
.eyebrow--light { color: var(--brand-ice); background: rgba(127, 227, 255, .1); box-shadow: inset 0 0 0 1px rgba(127, 227, 255, .2); }

.s-head { max-width: 820px; margin-bottom: clamp(40px, 6vw, 72px); }
.s-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(30px, 4.6vw, 52px); line-height: 1.1; letter-spacing: -.02em; font-weight: 700;
  margin-top: 22px; color: var(--ink);
}
.s-head p { margin-top: 20px; font-size: clamp(16px, 1.6vw, 18px); color: var(--muted); max-width: 62ch; }
.s-head--center { margin-inline: auto; text-align: center; }
.dark h2, .dark .s-head h2 { color: #fff; }
.dark .s-head p { color: rgba(255, 255, 255, .72); }

/* ---------- Buttons (magnetic + button-in-button) ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  height: 54px; padding: 0 10px 0 26px; border-radius: var(--r-pill);
  font-family: var(--ff-display); font-weight: 600; font-size: 15.5px; letter-spacing: .01em;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .4s var(--ease), color .4s var(--ease);
  will-change: transform;
}
.btn__ic {
  width: 38px; height: 38px; border-radius: var(--r-pill); display: grid; place-items: center;
  font-size: 18px; flex: none;
  transition: transform .5s var(--ease), background .4s var(--ease);
}
.btn--primary { background: linear-gradient(120deg, var(--brand), var(--brand-bright)); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary .btn__ic { background: rgba(255, 255, 255, .18); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 24px 50px -14px rgba(21, 129, 216, .7); }
.btn--primary:hover .btn__ic { transform: translate(3px, -1px) scale(1.06); }
.btn--primary:active { transform: scale(.98); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark .btn__ic { background: rgba(255, 255, 255, .14); }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn--dark:hover .btn__ic { transform: translate(3px, -1px) scale(1.06); }

.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-2); }
.btn--ghost .btn__ic { background: var(--bg-soft); color: var(--brand); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--brand); color: var(--brand); transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--brand-deep); box-shadow: 0 18px 40px -16px rgba(0, 0, 0, .4); }
.btn--light .btn__ic { background: var(--tint); color: var(--brand); }
.btn--light:hover { transform: translateY(-2px); }
.btn--light:hover .btn__ic { transform: translate(3px, -1px) scale(1.06); }

.btn--glass { background: rgba(255, 255, 255, .1); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .28); backdrop-filter: blur(8px); }
.btn--glass .btn__ic { background: rgba(255, 255, 255, .16); }
.btn--glass:hover { background: rgba(255, 255, 255, .16); transform: translateY(-2px); }

.btn--sm { height: 46px; font-size: 14.5px; padding: 0 8px 0 20px; }
.btn--sm .btn__ic { width: 32px; height: 32px; font-size: 16px; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--brand); font-family: var(--ff-display); transition: gap .35s var(--ease); }
.link-arrow i { transition: transform .35s var(--ease); }
.link-arrow:hover { gap: 12px; }
.link-arrow:hover i { transform: translateX(2px); }

/* ---------- Double-bezel card ---------- */
.bezel {
  padding: 7px; border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, .9), rgba(244, 248, 252, .7));
  box-shadow: inset 0 0 0 1px rgba(13, 44, 84, .06), var(--shadow-soft);
}
.bezel__core {
  border-radius: calc(var(--r-lg) - 7px); background: #fff;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .8), inset 0 0 0 1px rgba(13, 44, 84, .04);
  overflow: hidden;
}
.bezel--dark { background: linear-gradient(160deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .03)); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1), var(--glow); }
.bezel--dark .bezel__core { background: linear-gradient(160deg, #0a2a4e, #08233f); box-shadow: inset 0 1px 1px rgba(255, 255, 255, .12), inset 0 0 0 1px rgba(255, 255, 255, .05); }

/* =========================================================
   HEADER — floating glass pill nav (injected by site.js)
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  background: rgba(255, 255, 255, .88); backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .5s var(--ease), background .5s var(--ease);
}
.site-header.shrink { background: rgba(255, 255, 255, .94); box-shadow: 0 10px 34px -18px rgba(8, 30, 60, .4); }
.navpill {
  display: flex; align-items: center; gap: 24px; justify-content: space-between;
  height: 76px; padding: 0; background: none; box-shadow: none; border-radius: 0;
  transition: height .5s var(--ease);
}
.site-header.shrink .navpill { height: 64px; }
.navpill__brand { display: flex; align-items: center; flex: none; }
.navpill__brand img { height: 40px; width: auto; transition: height .5s var(--ease); }
.site-header.shrink .navpill__brand img { height: 34px; }
.navpill__links { display: flex; align-items: center; gap: 6px; margin: 0 auto; }
.navpill__links a {
  position: relative; padding: 10px 20px; font-size: 15.5px; font-weight: 500; color: var(--ink);
  border-radius: var(--r-pill); transition: color .3s var(--ease), background .3s var(--ease);
}
.navpill__links a:hover { color: var(--brand); background: var(--tint); }
.navpill__links a.active { color: var(--brand); }
.navpill__links a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-cyan));
}
.navpill__right { display: flex; align-items: center; gap: 10px; flex: none; }
.burger { display: none; width: 46px; height: 46px; border-radius: var(--r-pill); background: var(--ink); position: relative; }
.burger span { position: absolute; left: 14px; right: 14px; height: 2px; background: #fff; border-radius: 2px; transition: transform .45s var(--ease), opacity .3s var(--ease); }
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 28px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* mobile fullscreen glass menu */
.mobile-nav {
  position: fixed; inset: 0; z-index: 80; padding: 100px 26px 40px;
  background: rgba(6, 29, 55, .86); backdrop-filter: blur(26px);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s;
}
body.menu-open .mobile-nav { opacity: 1; visibility: visible; transform: none; }
.mobile-nav a.mlink {
  font-family: var(--ff-display); color: #fff; font-size: 30px; font-weight: 600; padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.mobile-nav a.mlink span { color: var(--brand-ice); font-size: 14px; font-family: var(--ff-num); margin-right: 12px; }
body.menu-open .mobile-nav a.mlink { opacity: 1; transform: none; }
body.menu-open .mobile-nav a.mlink:nth-child(1) { transition-delay: .08s; }
body.menu-open .mobile-nav a.mlink:nth-child(2) { transition-delay: .14s; }
body.menu-open .mobile-nav a.mlink:nth-child(3) { transition-delay: .2s; }
body.menu-open .mobile-nav a.mlink:nth-child(4) { transition-delay: .26s; }
body.menu-open .mobile-nav a.mlink:nth-child(5) { transition-delay: .32s; }
body.menu-open .mobile-nav a.mlink:nth-child(6) { transition-delay: .38s; }
.mobile-nav .btn { margin-top: 34px; }
.mobile-nav__contact { margin-top: auto; color: rgba(255, 255, 255, .6); font-size: 14px; display: grid; gap: 8px; }
.mobile-nav__contact i { color: var(--brand-ice); margin-right: 8px; }

/* =========================================================
   REVEAL (handled by IntersectionObserver — offline safe)
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(6px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), filter .9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal.d1 { transition-delay: .09s; }
.reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .27s; }
.reveal.d4 { transition-delay: .36s; }
.reveal.d5 { transition-delay: .45s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; filter: none; transition: none; } }

/* =========================================================
   HERO (shared base)
   ========================================================= */
.hero {
  position: relative; overflow: hidden; color: #fff; isolation: isolate;
  padding: clamp(140px, 16vw, 200px) 0 clamp(80px, 10vw, 130px);
  background:
    radial-gradient(1150px 640px at 88% -16%, rgba(64, 204, 246, .34), transparent 56%),
    radial-gradient(760px 540px at 0% 14%, rgba(40, 158, 252, .22), transparent 52%),
    radial-gradient(1050px 900px at 58% 132%, rgba(12, 100, 174, .45), transparent 60%),
    linear-gradient(166deg, #03132a 0%, #072a55 50%, #0a4078 100%);
}
.hero::before {
  content: ""; position: absolute; inset: -25% -15% 28% -15%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(closest-side at 24% 34%, rgba(54, 197, 240, .26), transparent),
    radial-gradient(closest-side at 76% 22%, rgba(127, 227, 255, .18), transparent);
  filter: blur(44px); opacity: .85;
  animation: aurora 20s ease-in-out infinite alternate;
}
@keyframes aurora { from { transform: translate3d(-2%, 0, 0) scale(1); } to { transform: translate3d(3%, 2%, 0) scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .hero::before, .page-hero::before { animation: none; } }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero__dots {
  position: absolute; inset: 0; opacity: .55; pointer-events: none;
  background-image:
    radial-gradient(rgba(255, 255, 255, .15) 1px, transparent 1.5px),
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 30px 30px, 60px 60px, 60px 60px;
  -webkit-mask-image: radial-gradient(85% 70% at 50% 28%, #000 28%, transparent 78%);
  mask-image: radial-gradient(85% 70% at 50% 28%, #000 28%, transparent 78%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { font-family: var(--ff-display); font-weight: 700; letter-spacing: -.025em; }
.grad-ice { background: linear-gradient(100deg, var(--brand-ice), var(--brand-cyan) 55%, #ffffff); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* home hero layout */
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(40px, 5vw, 70px); align-items: center; }
.hero h1.home { font-size: clamp(36px, 5.6vw, 66px); line-height: 1.06; }
.hero__sub { margin-top: 24px; font-size: clamp(16px, 1.8vw, 19px); color: rgba(255, 255, 255, .82); max-width: 34ch; line-height: 1.7; }
.hero__cta { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust { margin-top: 30px; display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255, 255, 255, .7); }
.hero__trust i { color: var(--brand-ice); font-size: 19px; }
.hero__stats { margin-top: clamp(48px, 7vw, 72px); padding-top: 38px; border-top: 1px solid rgba(255, 255, 255, .14); display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.hero__stats .stat .n { font-family: var(--ff-num); font-size: clamp(28px, 3.4vw, 42px); font-weight: 700; letter-spacing: -.02em; line-height: 1; color: #fff; }
.hero__stats .stat .n .u { font-size: .46em; color: var(--brand-ice); margin-left: 2px; }
.hero__stats .stat .t { margin-top: 10px; font-size: 13.5px; color: rgba(255, 255, 255, .66); }

/* hero globe visual */
.hero-visual { position: relative; }
.hero-globe { position: relative; aspect-ratio: 1; max-width: 460px; margin-inline: auto; }
.hero-globe svg { width: 100%; height: 100%; overflow: visible; }
.globe-line { fill: none; stroke: rgba(127, 227, 255, .3); stroke-width: 1; }
.globe-rim { fill: none; stroke: rgba(127, 227, 255, .45); stroke-width: 1.5; }
.globe-fill { fill: url(#gcore); }
.node { fill: var(--brand-ice); }
.arc { fill: none; stroke: rgba(127, 227, 255, .55); stroke-width: 1.4; stroke-dasharray: 4 5; animation: dash 14s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -180; } }
@media (prefers-reduced-motion: reduce) { .arc { animation: none; } }
.gpin {
  position: absolute; display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  font-family: var(--ff-display); font-size: 12.5px; font-weight: 500; color: #fff;
  background: rgba(255, 255, 255, .1); backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2), 0 10px 24px -10px rgba(0, 0, 0, .5);
  padding: 7px 13px; border-radius: var(--r-pill);
  animation: floaty 6s ease-in-out infinite;
}
.gpin i { color: var(--brand-ice); font-size: 14px; }
.gpin.p1 { top: 8%; left: 2%; animation-delay: 0s; }
.gpin.p2 { top: 30%; right: -6%; animation-delay: 1.1s; }
.gpin.p3 { bottom: 20%; left: -6%; animation-delay: 2.2s; }
.gpin.p4 { bottom: 2%; right: 8%; animation-delay: 3.1s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .gpin { animation: none; } }

@media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; } .hero-visual { max-width: 400px; margin-inline: auto; order: -1; } }
@media (max-width: 620px) { .hero-visual { display: none; } .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; } .hero h1.home { font-size: clamp(33px, 9vw, 46px); } .hero__sub { max-width: none; } }

/* page hero (interior pages, shorter) */
.page-hero {
  position: relative; overflow: hidden; color: var(--ink); isolation: isolate;
  padding: clamp(140px, 15vw, 188px) 0 clamp(58px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(168deg, #ffffff 0%, #eff6ff 52%, #e4effc 100%);
}
.page-hero::before {
  content: ""; position: absolute; inset: -30% -15% 16% -15%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(closest-side at 84% 16%, rgba(54, 197, 240, .26), transparent),
    radial-gradient(closest-side at 12% 72%, rgba(40, 158, 252, .16), transparent);
  filter: blur(52px); opacity: .9;
  animation: aurora 22s ease-in-out infinite alternate;
}
.page-hero__dots {
  position: absolute; inset: 0; opacity: .7; pointer-events: none;
  background-image:
    radial-gradient(rgba(21, 129, 216, .12) 1px, transparent 1.6px),
    linear-gradient(rgba(13, 44, 84, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 44, 84, .04) 1px, transparent 1px);
  background-size: 30px 30px, 60px 60px, 60px 60px;
  -webkit-mask-image: radial-gradient(78% 85% at 74% 16%, #000, transparent 82%);
  mask-image: radial-gradient(78% 85% at 74% 16%, #000, transparent 82%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .crumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); font-family: var(--ff-display); }
.page-hero .crumb a { color: var(--muted); }
.page-hero .crumb a:hover { color: var(--brand); }
.page-hero .crumb i { font-size: 13px; color: var(--line-2); }
.page-hero h1 { font-family: var(--ff-display); font-size: clamp(34px, 5.4vw, 62px); line-height: 1.08; letter-spacing: -.025em; font-weight: 700; margin-top: 20px; max-width: 16ch; color: var(--ink); }
.page-hero p { margin-top: 20px; font-size: clamp(16px, 1.7vw, 19px); color: var(--body); max-width: 54ch; }
.page-hero__stats { margin-top: 46px; display: flex; flex-wrap: wrap; gap: 44px; }
.page-hero__stats .n { font-family: var(--ff-num); font-size: clamp(26px, 3.2vw, 38px); font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.page-hero__stats .n .u { font-size: .5em; color: var(--brand); margin-left: 2px; }
.page-hero__stats .t { font-size: 13.5px; color: var(--muted); margin-top: 6px; }

/* =========================================================
   MARQUEE (platforms / credentials)
   ========================================================= */
.marquee { overflow: hidden; padding: 26px 0; border-block: 1px solid var(--line); background: #fff; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 11px; font-family: var(--ff-display); font-weight: 600; font-size: 16px; color: var(--muted); white-space: nowrap; }
.marquee__item i { font-size: 22px; color: var(--brand); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* =========================================================
   STAT BAND
   ========================================================= */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat .n { font-family: var(--ff-num); font-size: clamp(34px, 4.4vw, 56px); font-weight: 700; letter-spacing: -.03em; line-height: 1; color: var(--ink); }
.dark .stat .n { color: #fff; }
.stat .n .u { font-size: .42em; margin-left: 3px; color: var(--brand); font-weight: 600; }
.dark .stat .n .u { color: var(--brand-ice); }
.stat .t { margin-top: 12px; font-size: 14.5px; color: var(--muted); }
.dark .stat .t { color: rgba(255, 255, 255, .66); }

/* =========================================================
   SERVICE BENTO (home)
   ========================================================= */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-flow: dense; gap: 18px; }
.scard {
  position: relative; overflow: hidden; padding: 30px; border-radius: var(--r-lg); background: #fff;
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
  display: flex; flex-direction: column; grid-column: span 2;
}
.scard:hover { transform: translateY(-6px); box-shadow: inset 0 0 0 1px transparent, var(--shadow-card); }
.scard__ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 28px; color: var(--brand); background: linear-gradient(140deg, var(--tint), #d7ecff); transition: background .5s var(--ease), color .5s var(--ease); }
.scard:hover .scard__ic { background: linear-gradient(140deg, var(--brand), var(--brand-bright)); color: #fff; }
.scard h3 { font-family: var(--ff-display); font-size: 21px; font-weight: 700; margin-top: 22px; color: var(--ink); }
.scard p { margin-top: 10px; color: var(--body); font-size: 14.5px; flex: 1; }
.scard .tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 7px; }
.scard .tags span { font-size: 12px; font-weight: 600; color: var(--brand-deep); background: var(--bg-soft); box-shadow: inset 0 0 0 1px var(--line); padding: 5px 11px; border-radius: var(--r-pill); }
.scard--lg { grid-column: span 3; }
.scard--feature { grid-column: span 3; color: #fff; background: linear-gradient(150deg, #0a2a4e, #0c4a86); box-shadow: var(--glow); }
.scard--feature .scard__ic { background: rgba(255, 255, 255, .12); color: var(--brand-ice); }
.scard--feature:hover .scard__ic { background: #fff; color: var(--brand); }
.scard--feature h3 { color: #fff; font-size: 25px; }
.scard--feature p { color: rgba(255, 255, 255, .78); }
.scard--feature .tags span { color: var(--brand-ice); background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16); }
.scard__deco { position: absolute; right: -30px; bottom: -34px; font-size: 190px; color: rgba(255, 255, 255, .05); pointer-events: none; }

/* =========================================================
   GLOBAL preview / dark split
   ========================================================= */
.dark { background: radial-gradient(1000px 560px at 86% -12%, rgba(60, 200, 244, .18), transparent 60%), radial-gradient(800px 600px at 0% 116%, rgba(12, 100, 174, .26), transparent 62%), linear-gradient(160deg, #03132a, #0a3f76); color: #fff; position: relative; overflow: hidden; }
.dark .dots-bg { position: absolute; inset: 0; opacity: .45; background-image: radial-gradient(rgba(255, 255, 255, .13) 1px, transparent 1.4px); background-size: 28px 28px; -webkit-mask-image: radial-gradient(70% 70% at 60% 40%, #000, transparent 80%); mask-image: radial-gradient(70% 70% at 60% 40%, #000, transparent 80%); }
.dark .wrap { position: relative; z-index: 2; }
.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 76px); align-items: center; }
.split--rev { grid-template-columns: 1.1fr 1fr; }

/* region cards */
.regions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.region { padding: 24px; border-radius: var(--r); background: rgba(255, 255, 255, .06); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12); transition: transform .5s var(--ease), background .5s var(--ease); }
.region:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .1); }
.region__h { display: flex; align-items: center; gap: 10px; font-family: var(--ff-display); font-weight: 600; font-size: 16px; }
.region__h i { color: var(--brand-ice); font-size: 20px; }
.region__list { margin-top: 13px; display: flex; flex-wrap: wrap; gap: 7px 0; }
.region__list span { font-size: 13px; color: rgba(255, 255, 255, .74); }
.region__list span::after { content: "·"; margin: 0 8px; color: rgba(127, 227, 255, .5); }
.region__list span:last-child::after { display: none; }

/* =========================================================
   WHY / advantages (bordered numbered)
   ========================================================= */
.adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.adv { padding: 38px 28px 38px 0; border-right: 1px solid var(--line); }
.adv:last-child { border-right: none; }
.adv .no { font-family: var(--ff-num); font-size: 14px; font-weight: 700; letter-spacing: .12em; color: var(--brand); }
.adv .ic { margin-top: 20px; width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; font-size: 28px; color: var(--brand); background: var(--tint); }
.adv h3 { font-family: var(--ff-display); font-size: 19px; font-weight: 700; margin-top: 18px; color: var(--ink); }
.adv p { margin-top: 11px; font-size: 14.5px; color: var(--body); }

/* =========================================================
   CASE cards
   ========================================================= */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case {
  display: flex; flex-direction: column; border-radius: var(--r-lg); overflow: hidden; background: #fff;
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.case:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.case__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--navy); }
.case__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.4) contrast(1.05); transition: transform .8s var(--ease); }
.case:hover .case__media img { transform: scale(1.06); }
.case__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(140deg, rgba(10, 49, 97, .55), rgba(40, 158, 252, .25)); mix-blend-mode: multiply; }
.case__flag { position: absolute; z-index: 2; left: 18px; top: 18px; display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: #fff; background: rgba(6, 29, 55, .5); backdrop-filter: blur(8px); padding: 6px 13px; border-radius: var(--r-pill); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2); }
.case__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.case__meta { display: flex; align-items: center; justify-content: space-between; }
.case__type { font-size: 12.5px; font-weight: 600; color: var(--brand); }
.case__time { font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.case h3 { font-family: var(--ff-display); font-size: 21px; font-weight: 700; margin-top: 12px; color: var(--ink); }
.case p { margin-top: 12px; font-size: 14.5px; color: var(--body); flex: 1; }
.case__result { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line-2); display: flex; gap: 9px; align-items: flex-start; font-size: 14px; font-weight: 600; color: var(--ink); }
.case__result i { color: #1aa06a; font-size: 18px; flex: none; margin-top: 1px; }

/* case detail (cases page) */
.cd { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.cd--rev { grid-template-columns: 1.05fr 1fr; }
.cd--rev .cd__media { order: 2; }
.cd__media { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-card); background: var(--navy); }
.cd__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) contrast(1.05); }
.cd__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(140deg, rgba(10, 49, 97, .5), rgba(40, 158, 252, .2)); mix-blend-mode: multiply; }
.cd__flag { position: absolute; z-index: 2; left: 20px; top: 20px; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #fff; background: rgba(6, 29, 55, .5); backdrop-filter: blur(8px); padding: 8px 15px; border-radius: var(--r-pill); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2); }
.cd__badges { position: absolute; z-index: 2; right: 20px; bottom: 20px; display: flex; gap: 8px; }
.cd__badges span { font-size: 12px; font-weight: 600; color: #fff; background: rgba(40, 158, 252, .85); padding: 6px 12px; border-radius: var(--r-pill); }
.cd__type { font-family: var(--ff-display); font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--brand); }
.cd h3 { font-family: var(--ff-display); font-size: clamp(24px, 3vw, 34px); font-weight: 700; margin-top: 12px; color: var(--ink); line-height: 1.18; }
.cd__time { margin-top: 12px; display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: var(--muted); }
.cd__steps { margin-top: 24px; display: grid; gap: 16px; }
.cd__step { display: flex; gap: 14px; }
.cd__step .ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; flex: none; color: var(--brand); background: var(--tint); }
.cd__step h4 { font-family: var(--ff-display); font-size: 15px; font-weight: 700; color: var(--ink); }
.cd__step p { font-size: 14px; color: var(--body); margin-top: 4px; }
.cd__result { margin-top: 22px; padding: 16px 20px; border-radius: var(--r); background: linear-gradient(120deg, var(--tint), #e8f7ef); display: flex; gap: 11px; align-items: center; font-weight: 600; color: var(--ink); font-size: 14.5px; }
.cd__result i { color: #1aa06a; font-size: 22px; flex: none; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.filter-pill { font-family: var(--ff-display); font-size: 14px; font-weight: 500; color: var(--body); padding: 10px 20px; border-radius: var(--r-pill); background: #fff; box-shadow: inset 0 0 0 1.5px var(--line-2); transition: all .3s var(--ease); }
.filter-pill:hover { color: var(--brand); box-shadow: inset 0 0 0 1.5px var(--brand); }
.filter-pill.active { color: #fff; background: linear-gradient(120deg, var(--brand), var(--brand-bright)); box-shadow: var(--shadow-brand); }
.case-hidden { display: none !important; }
@media (max-width: 1024px) { .cd, .cd--rev { grid-template-columns: 1fr; } .cd--rev .cd__media { order: -1; } }

/* =========================================================
   NEWS
   ========================================================= */
.news-hero {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding-top: clamp(112px, 10vw, 142px);
  padding-bottom: clamp(42px, 5vw, 64px);
}
.news-hero::before, .news-detail-hero::before { display: none; }
.news-hero h1 { max-width: 12ch; letter-spacing: 0; }
.news-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.news-card { overflow: hidden; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s var(--ease); }
.news-card:hover { background: #f8fbfe; }
.news-card a { display: flex; flex-direction: column; height: 100%; }
.news-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; }
.news-card__media::after { content: ""; position: absolute; inset: 0; background: rgba(6, 29, 55, .06); }
.news-card__media span {
  position: absolute; z-index: 2; left: 16px; top: 16px; display: inline-flex; color: #fff; font-size: 12px; font-weight: 600;
  background: rgba(6, 29, 55, .74); padding: 5px 10px; border-radius: 2px;
}
.news-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.news-card time { font-family: var(--ff-num); font-size: 13px; color: var(--brand); }
.news-card h3 { font-family: var(--ff-display); font-size: 20px; line-height: 1.35; color: var(--ink); margin-top: 10px; letter-spacing: 0; }
.news-card p { margin-top: 12px; color: var(--body); font-size: 14.5px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card .link-arrow { margin-top: 20px; }

.news-section { padding-top: clamp(32px, 4.5vw, 56px); }
.news-layout { display: block; }
.news-filter { margin-bottom: 0; border-bottom: 1px solid var(--line); }
.news-tabs { display: flex; flex-wrap: wrap; gap: 0; }
.news-tab {
  position: relative; display: inline-flex; align-items: center; min-height: 48px; padding: 0 26px 0 0; margin-right: 24px;
  font-family: var(--ff-display); font-size: 15px; font-weight: 600; color: var(--muted);
}
.news-tab::after { content: ""; position: absolute; left: 0; right: 26px; bottom: -1px; height: 2px; background: transparent; }
.news-tab:hover, .news-tab.active { color: var(--brand); }
.news-tab.active::after { background: var(--brand); }
.news-list { border-bottom: 1px solid var(--line); }
.news-row { background: #fff; border-bottom: 1px solid var(--line); transition: background .25s var(--ease); }
.news-row:last-child { border-bottom: none; }
.news-row:hover { background: #f8fbfe; }
.news-row__link { display: grid; grid-template-columns: 128px minmax(0, 1fr) 190px; gap: clamp(20px, 3vw, 42px); padding: 26px 0; align-items: center; }
.news-row__image { order: 0; aspect-ratio: 4/3; background: var(--bg-soft); overflow: hidden; }
.news-row__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.news-row:hover .news-row__image img { transform: scale(1.035); }
.news-row__body { min-width: 0; }
.news-row__meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); }
.news-row__meta span { color: var(--brand); font-weight: 700; }
.news-row h2 { margin-top: 8px; font-family: var(--ff-display); font-size: clamp(20px, 2.1vw, 28px); line-height: 1.28; color: var(--ink); letter-spacing: 0; max-width: 30ch; transition: color .25s var(--ease); }
.news-row:hover h2 { color: var(--brand-deep); }
.news-row p { margin-top: 10px; color: var(--body); font-size: 15px; max-width: 68ch; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-row__foot { justify-self: end; display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-family: var(--ff-display); font-weight: 600; font-size: 14px; white-space: nowrap; }
.news-row__foot i { transition: transform .3s var(--ease); }
.news-row:hover .news-row__foot i { transform: translateX(3px); }

.news-detail-hero {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding-top: clamp(112px, 10vw, 142px);
  padding-bottom: clamp(38px, 5vw, 62px);
}
.news-detail-hero h1 { max-width: 23ch; font-size: clamp(30px, 4.4vw, 54px); letter-spacing: 0; }
.news-detail-meta { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); }
.news-detail-meta span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; }
.news-detail-meta span + span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--line-2); margin-right: 4px; }
.news-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(32px, 5vw, 72px); align-items: start; }
.news-article { min-width: 0; padding-right: clamp(20px, 4vw, 56px); border-right: 1px solid var(--line); }
.news-article__content { color: var(--body); font-size: 16.5px; line-height: 1.9; max-width: 760px; }
.news-article__content h1, .news-article__content h2, .news-article__content h3, .news-article__content h4 {
  font-family: var(--ff-display); color: var(--ink); line-height: 1.3; margin: 1.8em 0 .7em; letter-spacing: 0;
}
.news-article__content p { margin: 1em 0; }
.news-article__content strong, .news-article__content b { color: var(--ink); }
.news-article__content img { max-width: 100%; height: auto !important; margin: 28px auto; border-radius: 0; box-shadow: none; }
.news-article__content table { width: 100% !important; border-collapse: collapse; margin: 24px 0; display: block; overflow-x: auto; }
.news-article__content td, .news-article__content th { border: 1px solid var(--line-2); padding: 10px; }
.news-pager { margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 760px; }
.news-pager a { padding: 0; background: transparent; transition: color .3s var(--ease); }
.news-pager a:hover b { color: var(--brand); }
.news-pager a.next { text-align: right; }
.news-pager span { display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 6px; }
.news-pager b { display: block; font-family: var(--ff-display); color: var(--ink); font-size: 15px; line-height: 1.35; transition: color .3s var(--ease); }
.news-aside { position: sticky; top: 104px; display: grid; gap: 18px; }
.news-aside__list { display: grid; border-top: 1px solid var(--line); }
.news-aside__list a { padding: 18px 0; border-bottom: 1px solid var(--line); background: transparent; transition: color .3s var(--ease); }
.news-aside__list a:hover strong { color: var(--brand); }
.news-aside__list time { display: block; font-family: var(--ff-num); font-size: 12.5px; color: var(--brand); margin-bottom: 7px; }
.news-aside__list strong { display: block; font-family: var(--ff-display); color: var(--ink); font-size: 15px; line-height: 1.42; transition: color .3s var(--ease); }

/* =========================================================
   CTA band
   ========================================================= */
.cta {
  position: relative; overflow: hidden; color: #fff; border-radius: clamp(24px, 4vw, 40px);
  padding: clamp(48px, 7vw, 84px); margin: 0 auto;
  background: linear-gradient(135deg, #0a3361, var(--brand) 62%, var(--brand-bright));
}
.cta__dots { position: absolute; inset: 0; opacity: .4; background-image: radial-gradient(rgba(255, 255, 255, .18) 1px, transparent 1.4px); background-size: 28px 28px; -webkit-mask-image: radial-gradient(60% 90% at 85% 15%, #000, transparent 72%); mask-image: radial-gradient(60% 90% at 85% 15%, #000, transparent 72%); }
.cta__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr auto; gap: 36px; align-items: center; }
.cta h2 { font-family: var(--ff-display); font-size: clamp(28px, 4vw, 46px); line-height: 1.12; letter-spacing: -.02em; font-weight: 700; }
.cta p { margin-top: 16px; font-size: 18px; color: rgba(255, 255, 255, .86); max-width: 46ch; }
.cta__actions { display: flex; flex-direction: column; gap: 14px; }

/* =========================================================
   FOOTER (injected by site.js)
   ========================================================= */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, .7); padding: 80px 0 32px; position: relative; overflow: hidden; }
.site-footer .dots-bg { position: absolute; inset: 0; opacity: .3; background-image: radial-gradient(rgba(255, 255, 255, .12) 1px, transparent 1.4px); background-size: 30px 30px; -webkit-mask-image: radial-gradient(60% 60% at 80% 0%, #000, transparent 70%); mask-image: radial-gradient(60% 60% at 80% 0%, #000, transparent 70%); }
.site-footer .wrap { position: relative; z-index: 2; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.foot-brand img { height: 42px; margin-bottom: 18px; }
.foot-brand p { font-size: 14px; line-height: 1.7; max-width: 32ch; color: rgba(255, 255, 255, .62); }
.foot-brand .socials { display: flex; gap: 10px; margin-top: 20px; }
.foot-brand .socials a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-size: 18px; color: #fff; background: rgba(255, 255, 255, .08); transition: background .4s var(--ease), transform .4s var(--ease); }
.foot-brand .socials a:hover { background: var(--brand); transform: translateY(-3px); }
.foot-col h4 { font-family: var(--ff-display); color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 18px; }
.foot-col a { display: block; font-size: 14px; padding: 6px 0; color: rgba(255, 255, 255, .66); transition: color .3s var(--ease), padding-left .3s var(--ease); }
.foot-col a:hover { color: var(--brand-ice); padding-left: 5px; }
.foot-contact li { font-size: 14px; display: flex; gap: 10px; padding: 6px 0; align-items: flex-start; color: rgba(255, 255, 255, .72); }
.foot-contact i { color: var(--brand-ice); font-size: 17px; margin-top: 2px; flex: none; }
.foot-bottom { padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255, 255, 255, .48); }
.foot-bottom .links { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-bottom .links a:hover { color: var(--brand-ice); }

/* =========================================================
   SERVICES PAGE — pinned scroll-telling
   ========================================================= */
.svc-stage { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.svc-sticky { position: sticky; top: 120px; }
.svc-sticky .idx { font-family: var(--ff-num); font-size: 15px; font-weight: 700; color: var(--brand); letter-spacing: .12em; }
.svc-sticky h2 { font-family: var(--ff-display); font-size: clamp(28px, 3.6vw, 44px); line-height: 1.12; font-weight: 700; margin-top: 16px; color: var(--ink); }
.svc-sticky p { margin-top: 18px; color: var(--body); font-size: 16px; max-width: 44ch; }
.svc-sticky .meta { margin-top: 26px; display: flex; gap: 30px; }
.svc-sticky .meta .n { font-family: var(--ff-num); font-size: 30px; font-weight: 700; color: var(--ink); }
.svc-sticky .meta .t { font-size: 13px; color: var(--muted); margin-top: 4px; }
.svc-list { display: grid; gap: 20px; }
.svc-block {
  padding: 32px; border-radius: var(--r-lg); background: #fff; box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.svc-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.svc-block__h { display: flex; align-items: center; gap: 16px; }
.svc-block__ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; font-size: 27px; color: #fff; background: linear-gradient(140deg, var(--brand), var(--brand-bright)); flex: none; box-shadow: var(--shadow-brand); }
.svc-block__h h3 { font-family: var(--ff-display); font-size: 22px; font-weight: 700; color: var(--ink); }
.svc-block__h .sub { font-size: 13.5px; color: var(--muted); margin-top: 3px; }
.svc-block p.desc { margin-top: 16px; color: var(--body); font-size: 14.5px; }
.svc-block .chips { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.svc-block .chips span { font-size: 12.5px; font-weight: 600; color: var(--brand-deep); background: var(--bg-soft); box-shadow: inset 0 0 0 1px var(--line); padding: 6px 12px; border-radius: var(--r-pill); }

/* process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 28px; border-radius: var(--r); background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--ff-num); font-size: 38px; font-weight: 700; color: var(--tint); position: absolute; right: 20px; top: 14px; }
.step .ic { font-size: 30px; color: var(--brand); }
.step h4 { font-family: var(--ff-display); font-size: 17px; font-weight: 700; margin-top: 16px; color: var(--ink); }
.step p { margin-top: 8px; font-size: 13.5px; color: var(--body); }

/* =========================================================
   GLOBAL PAGE — world map
   ========================================================= */
.worldmap { position: relative; }
.worldmap svg { width: 100%; height: auto; }
.map-dot { fill: rgba(127, 227, 255, .25); }
.map-pin { fill: var(--brand-bright); }
.map-pin-core { fill: #fff; }
.pin-pulse { transform-box: fill-box; transform-origin: center; animation: pulse 2.6s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 70% { transform: scale(3.2); opacity: 0; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .pin-pulse { animation: none; } }
.map-legend { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 8px; }
.map-legend span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255, 255, 255, .74); }
.map-legend i.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

/* =========================================================
   ABOUT PAGE — timeline + scrub statement
   ========================================================= */
.statement { font-family: var(--ff-display); font-weight: 700; font-size: clamp(26px, 3.6vw, 46px); line-height: 1.32; letter-spacing: -.01em; max-width: 22ch; }
.statement .w { color: var(--line-2); transition: color .4s var(--ease); }
.statement .w.lit { color: var(--ink); }
.dark .statement .w { color: rgba(255, 255, 255, .22); }
.dark .statement .w.lit { color: #fff; }

.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--brand), var(--brand-cyan), transparent); }
.tl { position: relative; padding: 0 0 38px 60px; }
.tl:last-child { padding-bottom: 0; }
.tl__dot { position: absolute; left: 10px; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px var(--tint), inset 0 0 0 4px var(--brand); }
.tl .yr { font-family: var(--ff-num); font-size: 22px; font-weight: 700; color: var(--brand); }
.tl h4 { font-family: var(--ff-display); font-size: 18px; font-weight: 700; margin-top: 6px; color: var(--ink); }
.tl p { margin-top: 8px; font-size: 14.5px; color: var(--body); max-width: 52ch; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card { padding: 30px; border-radius: var(--r-lg); background: #fff; box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft); text-align: center; }
.team-card .ring { width: 92px; height: 92px; margin: 0 auto; border-radius: 50%; display: grid; place-items: center; font-family: var(--ff-num); font-size: 30px; font-weight: 700; color: #fff; background: linear-gradient(140deg, var(--brand), var(--brand-bright)); box-shadow: var(--shadow-brand); }
.team-card h4 { font-family: var(--ff-display); font-size: 18px; font-weight: 700; margin-top: 18px; color: var(--ink); }
.team-card p { margin-top: 8px; font-size: 14px; color: var(--body); }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.channel-stack { display: grid; gap: 14px; margin-top: 8px; }
.channel { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: var(--r); background: #fff; box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft); transition: transform .5s var(--ease); }
.channel:hover { transform: translateX(5px); }
.channel .ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; font-size: 23px; color: var(--brand); background: var(--tint); flex: none; }
.channel b { font-family: var(--ff-display); font-size: 17px; color: var(--ink); }
.channel .sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.field { margin-top: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field input, .field select, .field textarea { width: 100%; height: 50px; padding: 0 16px; border-radius: 13px; font-family: inherit; font-size: 15px; color: var(--ink); background: var(--bg-soft); border: 1.5px solid var(--line-2); transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease); }
.field textarea { height: 110px; padding: 13px 16px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9aa9bb; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px rgba(40, 158, 252, .14); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { margin-top: 16px; font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.form-note i { color: var(--brand); }
.form-ok { margin-top: 16px; padding: 14px 16px; border-radius: 13px; background: #e8f7ef; color: #137a4d; font-size: 14px; font-weight: 600; display: none; align-items: center; gap: 9px; }
.form-ok.show { display: flex; }

/* FAQ accordion */
.faq { display: grid; gap: 12px; }
.faq__item { border-radius: var(--r); background: #fff; box-shadow: inset 0 0 0 1px var(--line); overflow: hidden; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; font-family: var(--ff-display); font-weight: 600; font-size: 16.5px; color: var(--ink); text-align: left; }
.faq__q i { font-size: 22px; color: var(--brand); transition: transform .4s var(--ease); flex: none; }
.faq__item.open .faq__q i { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq__a p { padding: 0 24px 22px; color: var(--body); font-size: 14.5px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .split, .split--rev, .contact-grid, .svc-stage, .news-layout, .news-detail-layout { grid-template-columns: 1fr; }
  .svc-sticky { position: static; }
  .news-filter, .news-aside { position: static; }
  .news-article { border-right: none; padding-right: 0; }
  .cta__inner { grid-template-columns: 1fr; }
  .statband { grid-template-columns: repeat(4, 1fr); }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .scard, .scard--lg, .scard--feature { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .navpill__links { display: none; }
  .navpill__right .btn { display: none; }
  .burger { display: block; }
  .adv-grid { grid-template-columns: 1fr 1fr; }
  .adv { border-right: none; }
  .adv:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 24px; }
  .case-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .news-card-grid { grid-template-columns: 1fr 1fr; }
  .news-row__link { grid-template-columns: 1fr; }
  .news-row__image { order: -1; aspect-ratio: 16/9; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .wrap { padding-inline: 18px; }
  .statband { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; }
  .bento { grid-template-columns: 1fr; }
  .scard, .scard--lg, .scard--feature { grid-column: span 1; }
  .regions { grid-template-columns: 1fr; }
  .adv-grid, .case-grid, .team-grid, .steps, .news-card-grid { grid-template-columns: 1fr; }
  .adv { border-bottom: 1px solid var(--line); padding: 26px 0; }
  .adv:nth-child(odd) { border-right: none; padding-right: 0; }
  .adv:last-child { border-bottom: none; }
  .field-row { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; gap: 30px; }
  .page-hero__stats { gap: 28px; }
  .news-row__link { padding: 24px 0; gap: 18px; }
  .news-row h2 { max-width: none; }
  .news-row__meta, .news-row__foot, .news-pager { grid-template-columns: 1fr; flex-direction: column; align-items: flex-start; }
  .news-pager a.next { text-align: left; }
  .news-article__content { font-size: 15px; line-height: 1.84; }
  .btn { width: 100%; justify-content: space-between; }
  .marquee__item { font-size: 15px; }
}

/* Online customer service */
.online-service {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 75;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 8px 16px 8px 9px;
  border-radius: var(--r-pill);
  color: #fff;
  background: linear-gradient(120deg, #19b36b, #1581d8);
  box-shadow: 0 16px 36px -18px rgba(6, 29, 55, .6);
  font-family: var(--ff-display);
  font-size: 14.5px;
  font-weight: 700;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.online-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px -18px rgba(6, 29, 55, .7);
}
.online-service__ic {
  width: 38px;
  height: 38px;
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .18);
  font-size: 20px;
}
.online-service__text { white-space: nowrap; }

@media (max-width: 620px) {
  .online-service {
    right: 16px;
    bottom: 18px;
    min-height: 50px;
    padding: 7px;
  }
  .online-service__text { display: none; }
  .online-service__ic { width: 36px; height: 36px; }
}
