/* =========================================================
   Vaster Holding Group — Design System
   Design philosophy: 极简 · 大留白 · 产品中心 · 精致克制
   ========================================================= */

:root {
  /* Palette */
  --c-bg:        #ffffff;
  --c-bg-soft:   #f5f5f7;
  --c-bg-sec:   #fbfbfd;
  --c-ink:      #0a0a0a;
  --c-ink-2:    #1d1d1f;
  --c-mute:     #6e6e73;
  --c-mute-2:   #86868b;
  --c-line:     #d2d2d7;
  --c-line-soft:#e5e5ea;
  --c-brand:    #1D3B7A;
  --c-brand-2:  #4EB3E6;
  --c-accent:   #F58E4A;
  --c-accent-2: #E85D2F;

  /* Gradients */
  --g-brand:  linear-gradient(135deg, #4EB3E6 0%, #1D3B7A 100%);
  --g-accent: linear-gradient(135deg, #F58E4A 0%, #E85D2F 100%);
  --g-hero:   linear-gradient(180deg, #0b1a3a 0%, #16305e 55%, #1d3b7a 100%);

  /* Type */
  --f-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
            "Helvetica Neue", "PingFang SC", "Hiragino Sans GB",
            "Microsoft Yahei", "Noto Sans SC", Arial, sans-serif;

  /* Scale */
  --fs-hero:  clamp(48px, 8vw, 112px);
  --fs-h2:    clamp(36px, 5.2vw, 72px);
  --fs-h3:    clamp(26px, 3vw, 40px);
  --fs-h4:    clamp(20px, 1.8vw, 28px);
  --fs-lead:  clamp(19px, 1.4vw, 24px);
  --fs-body:  17px;
  --fs-small: 14px;

  /* Layout */
  --nav-h: 56px;
  --pad-x: clamp(20px, 4vw, 64px);
  --gap:   clamp(20px, 2vw, 32px);
  --rad-s: 12px;
  --rad-m: 20px;
  --rad-l: 28px;

  /* Motion */
  --ease:   cubic-bezier(.22,.7,.15,1);
  --dur-1:  .35s;
  --dur-2:  .6s;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-sans);
  font-size: var(--fs-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }

img, svg, video { display:block; max-width:100%; height:auto; }

a { color: inherit; text-decoration: none; transition: color var(--dur-1) var(--ease); }
a:hover { color: var(--c-brand-2); }

button { font: inherit; cursor: pointer; }

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.nav-inner {
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0; }
.nav-logo img { height: 34px; width: auto; object-fit: contain; }
.nav-logo .brand-text {
  font-size: 21px; font-weight: 600; letter-spacing: -.02em; color: var(--c-ink);
}
.nav-links {
  display: flex; align-items: center; gap: 30px;
  list-style: none; margin:0; padding:0;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 14px; color: var(--c-ink-2); letter-spacing: .01em;
  opacity: .86;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.is-active { color: var(--c-brand); opacity: 1; }
.nav-item--has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 190px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 24px 60px -36px rgba(10,10,10,.45);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  white-space: nowrap;
}
.nav-dropdown a:hover {
  background: rgba(245,142,74,.10);
  color: var(--c-brand);
}
.nav-lang {
  font-size: 13px; padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--c-line); color: var(--c-mute);
}
.nav-mobile-toggle { display: none; background:none; border:none; padding:6px; color: var(--c-ink); }
.nav-mobile-toggle svg { width: 22px; height: 22px; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
  .nav-lang { display: none; }
}
.nav-drawer {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 90;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  padding: 40px var(--pad-x);
  display: none; flex-direction: column; gap: 22px;
}
.nav-drawer.is-open { display: flex; }
.nav-drawer a { font-size: 24px; font-weight: 600; color: var(--c-ink); }
.nav-drawer .drawer-sub-link {
  margin-left: 18px;
  font-size: 16px;
  font-weight: 500;
  color: var(--c-mute);
}

/* =========================================================
   Section shell
   ========================================================= */
main { padding-top: var(--nav-h); }
section { position: relative; }
.container {
  max-width: 1280px; margin: 0 auto; padding: 0 var(--pad-x);
}
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 var(--pad-x); }

.section {
  padding: clamp(80px, 12vw, 160px) 0;
}
.section-sm { padding: clamp(60px, 8vw, 100px) 0; }
.section-dark { background: var(--c-ink); color: #fff; }
.section-soft { background: var(--c-bg-soft); }
.section-brand-dark { background: #0b1a3a; color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  color: var(--c-brand-2);
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow-accent { color: var(--c-accent); }

h1, h2, h3, h4 {
  color: inherit; margin: 0 0 .4em;
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1.06;
}
.h-hero { font-size: var(--fs-hero); font-weight: 800; letter-spacing: -.04em; line-height: 1.03; }
.h-2 { font-size: var(--fs-h2); font-weight: 700; }
.h-3 { font-size: var(--fs-h3); }
.h-4 { font-size: var(--fs-h4); }
.lead {
  font-size: var(--fs-lead);
  color: var(--c-mute);
  max-width: 720px;
  line-height: 1.4;
  font-weight: 400;
}
.section-dark .lead, .section-brand-dark .lead { color: rgba(255,255,255,.72); }

.gradient-text {
  background: var(--g-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.gradient-text-accent {
  background: var(--g-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CTA button */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  transition: transform var(--dur-1) var(--ease), background var(--dur-1) var(--ease), color var(--dur-1) var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--c-ink); color:#fff; }
.btn-primary:hover { background: var(--c-brand); color:#fff; }
.btn-ghost { background: transparent; color: var(--c-ink); border: 1px solid var(--c-line); }
.btn-ghost:hover { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.section-dark .btn-ghost, .section-brand-dark .btn-ghost { color:#fff; border-color: rgba(255,255,255,.4); }
.section-dark .btn-ghost:hover, .section-brand-dark .btn-ghost:hover { background:#fff; color: var(--c-ink); }
.btn-link {
  padding: 0; background: transparent; color: var(--c-brand-2); font-weight: 500;
  border-radius: 0;
}
.btn-link:hover { color: var(--c-brand); transform: none; }
.btn-link .arr { transition: transform var(--dur-1) var(--ease); display: inline-block; }
.btn-link:hover .arr { transform: translateX(4px); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  max-height: 960px;
  padding: 12vh var(--pad-x) 0;
  background: url('../assets/hero-bg-user.png') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  display: flex; align-items: flex-start;
}
@media (max-height: 720px) { .hero { max-height: none; } }

.hero-skyline {
  position: absolute; left: 0; right: 0; bottom: 8%;
  height: 46%;
  background-image: url('../assets/pages/hero-skyline-strip.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: .55;
  mix-blend-mode: screen;
  filter: brightness(1.2) saturate(1.3) contrast(1.1);
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 25%, #000 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 25%, #000 82%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; width: 100%;
}
.hero .eyebrow { color: rgba(255,255,255,.72); }
.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 800; letter-spacing: -.04em;
  line-height: 1.02;
  max-width: 14ch;
}
.hero .lead {
  color: rgba(255,255,255,.82);
  margin-top: 28px;
  max-width: 620px;
  font-size: var(--fs-lead);
}
.hero-actions { margin-top: 44px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-primary { background:#fff; color: var(--c-ink); }
.hero-actions .btn-primary:hover { background: var(--c-brand-2); color:#fff; }
.hero-actions .btn-ghost { background:#fff; color: var(--c-ink); border-color: #fff; }
.hero-actions .btn-ghost:hover { background: var(--c-brand-2); color:#fff; border-color: var(--c-brand-2); }

.hero-scroll-hint {
  position: absolute; right: var(--pad-x); bottom: 40px;
  color: rgba(255,255,255,.7);
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  text-align: right;
  z-index: 3;
}
.hero-scroll-hint span {
  display: inline-block; width: 1px; height: 42px; background: rgba(255,255,255,.55);
  margin-top: 12px;
  animation: hint 2.2s var(--ease) infinite;
  transform-origin: top;
}
@keyframes hint { 0%,100%{transform: scaleY(.5); opacity:.4;} 50%{transform:scaleY(1); opacity:1;} }

.hero-cities {
  position: absolute; left: var(--pad-x); right: var(--pad-x); bottom: 40px;
  z-index: 3;
  display: flex; gap: 22px; flex-wrap: wrap;
  color: rgba(255,255,255,.72);
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
}
.hero-cities .k { color: rgba(255,255,255,.5); font-weight: 500; margin-right: 8px; }
.hero-cities span:not(:last-child)::after { content:""; display:inline-block; width: 22px; }

/* =========================================================
   Stat strip
   ========================================================= */
.stats {
  padding: clamp(70px, 10vw, 120px) var(--pad-x);
  background: var(--c-bg);
}
.stats-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat { text-align: center; }
.stat .k {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800; letter-spacing: -.04em;
  background: var(--g-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  white-space: nowrap;
}
.stat .lbl {
  margin-top: 12px;
  font-size: 15px; color: var(--c-mute);
  letter-spacing: .01em;
  word-break: keep-all;
  overflow-wrap: normal;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* =========================================================
   Feature Card Grid — business cards
   ========================================================= */
.grid { display: grid; gap: var(--gap); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1100px) {
  .grid-6 { grid-template-columns: repeat(4, 1fr); }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  position: relative;
  border-radius: var(--rad-l);
  background: var(--c-bg-soft);
  overflow: hidden;
  transition: transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
  will-change: transform;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -20px rgba(10,10,10,.18);
}
.card-body { padding: clamp(28px, 3vw, 44px); }
.card-title { font-size: var(--fs-h3); font-weight: 700; letter-spacing: -.02em; }
.card-sub { color: var(--c-mute); margin-top: 12px; font-size: var(--fs-body); line-height: 1.5; }
.card-media {
  aspect-ratio: 16/10;
  background: #ddd;
  background-size: cover;
  background-position: center;
}
.card--dark { background: var(--c-ink); color: #fff; }
.card--dark .card-sub { color: rgba(255,255,255,.7); }
.card--brand { background: var(--g-brand); color: #fff; }
.card--brand .card-sub { color: rgba(255,255,255,.85); }
.card--accent { background: var(--g-accent); color:#fff; }
.card--white { background: #fff; box-shadow: 0 0 0 1px var(--c-line-soft); }
.card--soft { background: var(--c-bg-sec); }

.card-tag {
  display: inline-block; font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; opacity: .7;
  margin-bottom: 14px;
}

/* Feature card with media on top */
.feature-card { display: flex; flex-direction: column; min-height: 460px; }
.feature-card .card-body { flex:1; display: flex; flex-direction: column; justify-content: flex-end; }
.feature-card .card-media { flex: 1 1 auto; min-height: 260px; }

/* Text-only feature cards (no media): keep width, remove redundant height, wrap text */
.feature-card.text-only { min-height: auto; }
.feature-card.text-only .card-body { flex: 0 0 auto; display: block; }
.feature-card.text-only .card-title,
.feature-card.text-only .card-sub { overflow-wrap: anywhere; }

/* Big showcase card */
.showcase {
  border-radius: var(--rad-l);
  padding: clamp(48px, 7vw, 110px);
  background: var(--c-bg-soft);
  overflow: hidden;
  position: relative;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: 1fr; }
}
.showcase-media {
  border-radius: var(--rad-m);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #ccc center/cover;
}
.showcase-media img { width: 100%; height: 100%; object-fit: cover; display:block; }

/* Section header */
.section-head {
  max-width: 1200px; margin: 0 auto var(--gap);
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end;
}
.section-head h2 { margin: 0; }
@media (max-width: 780px) { .section-head { grid-template-columns: 1fr; } }

/* =========================================================
   Leadership avatars — Apple style team grid
   ========================================================= */
.leaders {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .leaders { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .leaders { grid-template-columns: 1fr; } }
.leader {
  background: var(--c-bg-soft);
  border-radius: var(--rad-m);
  padding: 28px;
  transition: transform var(--dur-2) var(--ease);
}
.leader:hover { transform: translateY(-3px); }
.leader-photo {
  aspect-ratio: 1; border-radius: 16px; overflow: hidden;
  background: #d1d1d6;
}
.leader-photo img { width: 100%; height: 100%; object-fit: cover; }
.leader h4 { font-size: 20px; font-weight: 700; margin: 20px 0 4px; }
.leader .role { font-size: 12px; color: var(--c-mute); line-height: 1.55; }
.leader .en { color: var(--c-brand-2); font-size: 13px; margin-bottom: 6px; }

/* =========================================================
   Global map / cities
   ========================================================= */
.globe-block {
  display: grid;
  /* Enlarge map container by 0.5x (1.5×) while keeping overall width */
  grid-template-columns: 1.23fr .77fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .globe-block { grid-template-columns: 1fr; } }
.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.city {
  padding: 22px 26px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--rad-s);
  color:#fff;
  transition: background var(--dur-1) var(--ease), transform var(--dur-1) var(--ease);
}
.city:hover { background: rgba(255,255,255,.10); transform: translateY(-2px); }
.city .name { font-size: 20px; font-weight: 600; letter-spacing: -.01em; }
.city .role { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 4px; letter-spacing: .08em; text-transform: uppercase; }
.map-svg { width: 100%; height: auto; }

/* =========================================================
   Media / logo wall / certs grid
   ========================================================= */
.cert-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px;
}
@media (max-width: 900px) { .cert-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
.cert {
  background: transparent; border: 0;
  padding: 0;
  text-align: center;
  transition: transform var(--dur-1) var(--ease);
}
.cert:hover { transform: translateY(-3px); }
.cert img { aspect-ratio: 3/4; object-fit: cover; width: 100%; border-radius: 8px; box-shadow: 0 6px 20px -10px rgba(0,0,0,.15); }
.cert p { font-size: 12px; color: var(--c-mute); margin: 12px 2px 0; line-height: 1.4; }

/* Honor/quote card */
.quote-card {
  padding: clamp(40px, 5vw, 72px);
  border-radius: var(--rad-l);
  background: var(--g-brand);
  color:#fff;
}
.quote-card q {
  display: block; font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.35; font-weight: 500; letter-spacing: -.01em;
  quotes: none;
}
.quote-card q::before, .quote-card q::after { content:""; }
.quote-card .attr { margin-top: 24px; font-size: 14px; opacity: .78; letter-spacing: .1em; text-transform: uppercase; }

/* activity gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }
.gallery figure { margin:0; }
.gallery img { aspect-ratio: 4/3; object-fit: cover; width: 100%; border-radius: 14px; transition: transform var(--dur-2) var(--ease); }
.gallery figure:hover img { transform: scale(1.03); }
.gallery figcaption { font-size: 12px; color: var(--c-mute); margin-top: 10px; line-height: 1.5; }

/* Media logo wall */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  align-items: stretch;
}
@media (max-width: 900px) { .logo-wall { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .logo-wall { grid-template-columns: 1fr; } }
.logo-wall .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(29,59,122,.12);
  border-radius: 12px;
  box-shadow: 0 14px 40px -28px rgba(10,10,10,.35);
  color: var(--c-brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease);
}
.logo-wall .logo-item:hover { transform: translateY(-1px); box-shadow: 0 18px 50px -30px rgba(10,10,10,.45); }
.logo-wall .logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(29,59,122,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-wall .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo-wall .logo-text { line-height: 1.2; text-align: center; }

/* =========================================================
   Partners panel (screenshot layout)
   ========================================================= */
.partners-panel {
  border-radius: 18px;
  padding: clamp(22px, 3.2vw, 40px);
}
.partners-top {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.partners-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 40px);
}
.partners-metrics > div {
  text-align: center;
}
.metric-num {
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--c-brand);
  line-height: 1.05;
}
.metric-label {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(10,10,10,.55);
}
.partners-title h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--c-brand);
}
.partners-title small {
  font-size: 14px;
  font-weight: 500;
  color: rgba(10,10,10,.55);
  margin-left: 8px;
}
.partners-rows {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.partners-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: center;
}
.partner-cat {
  color: var(--c-brand);
  font-weight: 800;
  letter-spacing: .02em;
}
.partner-cards {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}
.partner-card {
  background: #fff;
  border: 1px solid rgba(29,59,122,.12);
  border-radius: 10px;
  min-height: 56px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(29,59,122,.85);
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 10px 24px -18px rgba(10,10,10,.35);
}
.partner-card .logo-icon {
  width: 100%;
  height: 51px;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.partner-card .logo-icon img { width: 100%; height: 100%; object-fit: contain; display:block; }
.partner-card .logo-text {
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.partner-card .logo-text:empty { display: none; }
@media (max-width: 1200px) { .partner-cards { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
@media (max-width: 900px)  { .partners-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); } .partner-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 640px)  { .partners-row { grid-template-columns: 1fr; } .partner-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* =========================================================
   Split hero (biz pages)
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 68vh;
}
.split .split-left {
  padding: clamp(60px, 8vw, 110px) clamp(30px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
}
.split .split-right {
  background: #ccc center/cover;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; }
  .split .split-right { min-height: 320px; } }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  /* Footer background image (keep aspect ratio, no stretching) */
  background: #0a0a0a url('../assets/crops/footer-bg.png') center/cover no-repeat;
  color: rgba(255,255,255,.72);
  padding: clamp(38px, 4vw, 64px) var(--pad-x) clamp(20px, 2vw, 30px);
  min-height: clamp(350px, 38vw, 660px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  width: 100%;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-inner { grid-template-columns: 1fr; } }
@media (max-width: 900px) {
  .footer { min-height: auto; }
}
.footer h5 {
  color: #fff; font-size: 13px; margin: 0 0 18px;
  letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
}
.footer ul { list-style:none; padding:0; margin:0; }
.footer li { margin-bottom: 10px; font-size: 14px; }
.footer a { color: rgba(255,255,255,.72); }
.footer a:hover { color: #fff; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 34ch; }
.footer-brand .brand-logo { display:flex; align-items:center; gap: 0; margin-bottom: 20px; }
.footer-brand .brand-logo img { height: 44px; width: auto; object-fit: contain; }
.footer-brand .brand-logo span { font-size: 22px; font-weight: 700; color:#fff; letter-spacing:-.02em; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 60px; padding-top: 26px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,.5);
}

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d-1 { transition-delay: .06s; }
.reveal.d-2 { transition-delay: .14s; }
.reveal.d-3 { transition-delay: .22s; }
.reveal.d-4 { transition-delay: .30s; }
.reveal.d-5 { transition-delay: .38s; }

/* =========================================================
   Utility
   ========================================================= */
.txt-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0 !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-64 { margin-top: 64px; }
.mb-0 { margin-bottom: 0 !important; }
.max-720 { max-width: 720px; }
.max-820 { max-width: 820px; }
.max-960 { max-width: 960px; }

hr.rule { border: none; height: 1px; background: var(--c-line-soft); margin: 24px 0; }

/* Prevent horizontal scroll from oversized bg */
html, body { max-width: 100%; }

/* Print — not needed but graceful */
@media print { .nav, .footer { display: none; } }

/* Ensure content is visible without JS/observer (SEO + print + no-JS) */
.no-anim .reveal, @media print { }
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .nav, .footer, .nav-drawer, .hero-scroll-hint { display: none !important; }
}

/* If IntersectionObserver hasn't run for 2s, fallback to visible */
