/* ==========================================================================
   China Innovation Expedition — GoingNext × ChoZan
   Implemented from Figma (node 54:2) as plain HTML + CSS.

   The design uses the typeface "Pliant" loaded via Google Fonts.
   Colour tokens below come straight from the Figma variables.
   ========================================================================== */

:root {
  --text-color: #c3c3c3; /* text color — body copy on the dark page  */
  --dark:       #efefef; /* "dark" role: panel surfaces / page text   */
  --white:      #000000; /* strongest surface / text on light panels  */
  --light:      #0a0a0a; /* "light" role: page background / soft text */
  --green:      #22c55e; /* Verde Vibrante  */
  --teal:       #0891b2; /* Teal Profundo   */
  --lime:       #4ade80; /* Verde Lima      */
  --cyan:       #22d3ee; /* Ciano Claro     */

  --surface-2:  #d8d8d8; /* inner chips / placeholders on panels */
  --placeholder:#262626; /* empty image placeholders             */

  --grad-brand: linear-gradient(90deg, var(--green) 0%, var(--teal) 100%);
  --grad-accent: linear-gradient(44.7deg, var(--cyan) 1%, var(--lime) 97%);

  --pad-x: 8%;
}

/* Sections deliberately kept in the original light treatment: re-invert the
   surface tokens locally so every var() inside them resolves as it used to. */
.china-exp-pricing,
.china-exp-companies,
.china-exp-clients,
.china-exp-cta {
  --text-color: #3c3c3c;
  --dark:       #0a0a0a;
  --white:      #ffffff;
  --light:      #efefef;
  --surface-2:  #272727;
  --placeholder:#d9d9d9;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Pliant", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: var(--text-color);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

p { margin: 0; }

.china-exp-page {
  overflow-x: clip; /* clip decorative squares horizontally without breaking position:sticky */
}

/* ---------- shared utilities ---------------------------------------------- */

.china-exp-eyebrow {
  font-size: 16px;
  font-weight: 400;
  color: var(--teal);   /* per Figma — same accent on every surface */
  letter-spacing: 0.2px;
  text-transform: uppercase;
  margin: 0;
}

.china-exp-grad-gc {                      /* green → cyan clipped text (Figma) */
  background: linear-gradient(90deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.china-exp-section {
  position: relative;
  padding: 64px var(--pad-x);
}

.china-exp-arrow { width: 17.32px; height: 17.32px; flex: 0 0 auto; }
.china-exp-arrow svg { width: 100%; height: 100%; display: block; }

/* gradient pill button (outer gradient ring + inner pill) */
.china-exp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 12px 2px 2px;
  border: 0;
  border-radius: 999px;
  background: var(--grad-brand);
  cursor: pointer;
  text-decoration: none;
  font: inherit;
}
.china-exp-btn-inner {
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16px;
  white-space: nowrap;
}
.china-exp-btn-dark .china-exp-btn-inner {
  background: var(--dark);
  background-clip: padding-box;
}
.china-exp-btn-dark .china-exp-btn-inner span {
  background: linear-gradient(90deg, #0a0a0a, #0891b2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.china-exp-btn-light .china-exp-btn-inner { background: var(--white); }
.china-exp-btn-light .china-exp-btn-inner span {
  background: linear-gradient(90deg, var(--dark), #5fdcfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.china-exp-btn .china-exp-arrow { color: #ffffff; }
.china-exp-btn .china-exp-arrow svg path { fill: currentColor; }

/* decorative squares */
.china-exp-sq        { position: absolute; }
.china-exp-sq-grad   { background: var(--grad-accent); }
.china-exp-sq-dark   { background: var(--dark); }

/* ==========================================================================
   1. HERO
   ========================================================================== */

.china-exp-hero {
  position: relative;
  background: linear-gradient(180deg,   /* per Figma */
              #efefef 6.407%,
              #22d3ee 50%,
              #4ade80 100%);
  overflow: hidden;
  padding-top: 68px; /* compensate for fixed nav */
}

.china-exp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--pad-x);
  transition: background .3s, box-shadow .3s;
}
/* Nav rides the bright sky of the skyline, then flips when it hits the dark bar */
.china-exp-nav--scrolled .china-exp-nav-brand .china-exp-goingnext,
.china-exp-nav--scrolled .china-exp-nav-brand .china-exp-chozan { filter: brightness(0) invert(1); }
.china-exp-nav--scrolled .china-exp-nav-menu a { color: var(--text-color); }
.china-exp-nav--scrolled .china-exp-nav-menu a:hover { color: var(--dark); opacity: 1; }
.china-exp-nav--scrolled .china-exp-nav-burger span { background: var(--dark); }
.china-exp-nav--scrolled .china-exp-nav-divider { background: rgba(239, 239, 239, 0.28); }

.china-exp-nav--scrolled {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.china-exp-nav-brand { display: flex; align-items: center; gap: 16px; }
.china-exp-brand-link { display: flex; align-items: center; flex-shrink: 0; line-height: 0; }
/* nav sits on the dark hero top and a near-black scrolled bar — force the
   dark-ink logos to white (the *-white asset files fall back to black in <img>) */
.china-exp-nav-brand .china-exp-goingnext { width: 167px; height: 36px; flex-shrink: 0; filter: brightness(0); }
.china-exp-nav-brand .china-exp-chozan    { width: auto; height: 44px; flex-shrink: 0; filter: brightness(0); }

.china-exp-nav-mobile-logo { width: 200px; height: auto; filter: brightness(0); } /* white-ink logo on a light panel */
.china-exp-nav-divider {
  width: 1px;
  height: 38px;
  background: rgba(10, 10, 10, 0.3);
}

.china-exp-nav-right { display: flex; align-items: center; gap: 16px; }
.china-exp-nav-menu  { display: flex; align-items: center; }
.china-exp-nav-menu a {
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.16px;
  color: #0a0a0a;
  text-decoration: none;
  white-space: nowrap;
}
.china-exp-nav-menu a:hover { color: #0a0a0a; opacity: .7; }

.china-exp-hero-body {
  position: relative;
  height: 798px;
}
.china-exp-hero-skyline {
  position: absolute;
  inset: -68px 0 0 0;   /* full-bleed, up behind the fixed nav — per Figma */
  width: 100%;
  height: calc(100% + 68px); /* explicit: a replaced element ignores the bottom inset */
  object-fit: cover;
}

.china-exp-hero-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 769px;
  max-width: 100%;
  padding: 120px;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.china-exp-hero-card .china-exp-stack { display: flex; flex-direction: column; gap: 24px; max-width: 490px; }
.china-exp-hero-headline { display: flex; flex-direction: column; gap: 16px; }
.china-exp-hero-kicker { font-size: 32px; font-weight: 300; text-transform: uppercase; line-height: 1.1; }
.china-exp-hero-title {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.05;
  color: var(--white);
  margin: 0;
}

.china-exp-hero-cities { display: flex; align-items: center; gap: 16px; }
.china-exp-hero-cities .china-exp-city { font-size: 36px; font-weight: 500; color: var(--light); white-space: nowrap; }
.china-exp-hero-cities .china-exp-train {
  width: 100px;
  height: 44px;
  border-radius: 1000px;
  background: var(--light);   /* dark pill — per Figma */
  display: flex;
  align-items: center;
  justify-content: center;
}
.china-exp-hero-cities .china-exp-train img { width: 46px; height: auto; }

.china-exp-hero-desc-group { display: flex; flex-direction: column; gap: 16px; }
.china-exp-hero-desc { font-size: 16px; font-weight: 300; line-height: 1.5; color: var(--light); }
.china-exp-hero-date { display: flex; align-items: center; gap: 8px; }
.china-exp-hero-date img { width: 28px; height: 28px; }
.china-exp-hero-date span { font-size: 20px; font-weight: 500; color: var(--white); white-space: nowrap; }

.china-exp-hero-cta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.china-exp-hero-cta-row .china-exp-saiba { font-size: 16px; font-weight: 400; color: var(--white); white-space: nowrap; text-decoration: underline; }

.china-exp-hero-card-deco {
  --sq: 40px;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.china-exp-hero-card-deco .china-exp-sq {
  position: absolute;
  width: var(--sq);
  height: var(--sq);
}
.china-exp-hero-card-deco .china-exp-a {
  top: calc(-1 * var(--sq));
  left: 0;
  background: linear-gradient(44.7deg, var(--cyan), var(--lime));
}
.china-exp-hero-card-deco .china-exp-b {
  top: calc(-2 * var(--sq));
  left: var(--sq);
  background: linear-gradient(44.7deg, var(--lime), var(--cyan));
}

/* ==========================================================================
   2. INTRO
   ========================================================================== */

.china-exp-intro { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.china-exp-intro h2 {
  margin: 0;
  width: 940px;   /* largura afinada ao texto inglês, mais longo que o original */
  max-width: 100%;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--dark);
}
.china-exp-intro h2 .china-exp-green { color: var(--teal); }
.china-exp-intro-copy { display: flex; flex-direction: column; gap: 16px; }
.china-exp-intro-copy p { width: 612px; max-width: 100%; line-height: 1.5; }
.china-exp-intro-copy .china-exp-lead { font-size: 18px; }
.china-exp-intro-copy .china-exp-punch { font-size: 24px; font-weight: 600; color: var(--dark); }

/* decorative square clusters */
.china-exp-deco-cluster { position: absolute; top: 90px; pointer-events: none; }
.china-exp-deco-cluster .china-exp-sq { width: 61.667px; height: 61.667px; }
.china-exp-deco-left  { left: 0;  width: 200px; height: 400px; }
.china-exp-deco-right { right: 0; width: 200px; height: 430px; }

/* ==========================================================================
   3. QUOTE BANNER
   ========================================================================== */

.china-exp-quote {
  position: relative;
  height: 644px;
  overflow: hidden;
  background:
    radial-gradient(75% 50% at 50% 50%,
      rgba(34, 211, 238, 0.10) 21%,
      rgba(34, 211, 238, 0.00) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.china-exp-quote-text {
  position: relative;
  z-index: 2;
  width: 1187px;
  max-width: 90%;
  text-align: center;
  font-size: 72px;
  line-height: 1.05;
  color: var(--dark);
  transform: translateY(-40px);
}
.china-exp-quote-text .china-exp-l1 { font-weight: 400; }
.china-exp-quote-text .china-exp-l2 { font-weight: 500; }

.china-exp-quote .china-exp-float { position: absolute; z-index: 1; transform: translateY(var(--py, 0px)); will-change: transform; }
.china-exp-quote .china-exp-float img { width: 100%; height: 100%; object-fit: cover; display: block; }
.china-exp-q-img-3  { top: 48px;   left: 88px;   width: 195px; height: 128px; }
.china-exp-q-img-1  { top: 360px;  left: 32px;   width: 219px; height: 142px; }
.china-exp-q-img-2a { top: 56px;   right: 72px;  width: 284px; height: 184px; }
.china-exp-q-img-2b { top: 380px;  right: 48px;  width: 278px; height: 181px; }

.china-exp-quote-link {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  top: 427px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cyan);
  color: var(--text-color);
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
}
.china-exp-quote-link img { width: 17.32px; height: 17.32px; }

/* ==========================================================================
   4. WHY CHINA + STATS
   ========================================================================== */

.china-exp-why { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.china-exp-why-head { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.china-exp-why-head h2 {
  margin: 0;
  width: 834px;
  max-width: 100%;
  font-size: 56px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.1;
}
.china-exp-why-head .china-exp-why-copy { display: flex; flex-direction: column; gap: 16px; width: 1000px; max-width: 100%; }
.china-exp-why-head .china-exp-why-copy p { font-size: 18px; line-height: 1.5; }

.china-exp-stat {
  display: flex;
  gap: 80px;
  align-items: center;
  width: 755px;
  max-width: 100%;
}
.china-exp-stat-img { width: 335px; min-width: 335px; height: 335px; flex: 0 0 335px; background: var(--placeholder); overflow: hidden; }
.china-exp-stat-text { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 16px; }
.china-exp-stat-text .china-exp-num { font-size: 56px; font-weight: 500; color: var(--dark); line-height: 1.05; white-space: nowrap; }
.china-exp-stat-text .china-exp-desc { font-size: 24px; line-height: 1.5; }
.china-exp-stat-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* fecho da secção — a leitura que se tira dos quatro números */
.china-exp-why-close {
  width: 755px;
  max-width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--dark);
}

/* ==========================================================================
   5. TWO CITIES
   ========================================================================== */

.china-exp-cities {
  background: var(--dark);
  display: flex;
  gap: 72px;
  align-items: flex-start;
  justify-content: center;
  padding: 64px var(--pad-x);
}
.china-exp-cities-intro {
  width: 550px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  position: sticky;
  top: 24px;
}
.china-exp-cities-intro h2 { margin: 0; font-size: 56px; font-weight: 500; color: var(--white); line-height: 1.1; }
.china-exp-cities-intro p { font-size: 18px; line-height: 1.5; color: var(--light); }

.china-exp-cities-cards { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 40px; }
.china-exp-city-row { display: flex; gap: 8px; height: 400px; }
.china-exp-city-card {
  flex: 1 1 0;
  min-width: 0;
  border: 1px solid var(--cyan);            /* Shenzhen — per Figma */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 24px 32px;
}
.china-exp-city-card.china-exp-cyan { border-color: var(--green); } /* Guangzhou */
.china-exp-city-card .china-exp-city-head { display: flex; align-items: center; gap: 12px; }
.china-exp-city-card .china-exp-city-head img { width: 24px; height: 40px; flex: 0 0 auto; }
.china-exp-city-card .china-exp-city-name { font-size: 36px; font-weight: 500; color: var(--teal); white-space: nowrap; }
.china-exp-city-card.china-exp-cyan .china-exp-city-name { color: var(--green); }
.china-exp-city-card p { font-size: 18px; line-height: 1.5; color: var(--light); }
.china-exp-city-photo { flex: 1 1 0; min-width: 0; max-width: 375px; }
.china-exp-city-photo img { width: 100%; height: 100%; object-fit: cover; }
.china-exp-city-row:last-child .china-exp-city-photo img { object-position: left center; } /* Figma crops Guangzhou from the left */

/* dotted stair pattern */
.china-exp-dots { position: relative; width: 32px; height: 48px; flex: 0 0 auto; }
.china-exp-dots i { position: absolute; width: 8px; height: 8px; background: var(--lime); }
.china-exp-city-card.china-exp-cyan .china-exp-dots i { background: var(--cyan); }
.china-exp-dots i:nth-child(1){ left: 16px; top: 0; }
.china-exp-dots i:nth-child(2){ left: 24px; top: 8px; }
.china-exp-dots i:nth-child(3){ left: 16px; top: 16px; }
.china-exp-dots i:nth-child(4){ left: 8px;  top: 24px; }
.china-exp-dots i:nth-child(5){ left: 16px; top: 32px; }
.china-exp-dots i:nth-child(6){ left: 0;    top: 40px; }

/* ==========================================================================
   6. AGENDA
   ========================================================================== */

.china-exp-agenda { display: flex; flex-direction: column; align-items: flex-start; gap: 56px; padding: 64px var(--pad-x); background: var(--dark); }
.china-exp-agenda-head { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.china-exp-agenda-head h2 { margin: 0; font-size: 56px; font-weight: 500; color: var(--white); }
.china-exp-agenda-head .china-exp-sub { font-size: 18px; line-height: 1.5; color: rgba(10,10,10,.60); }
.china-exp-agenda-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  border-radius: 1000px;
  padding: 8px 16px;
}
.china-exp-agenda-date img { width: 20px; height: 20px; }
.china-exp-agenda-date span { font-size: 16px; font-weight: 500; color: var(--white); }

.china-exp-agenda-hscroll { width: 100%; }
.china-exp-agenda-hscroll-inner { overflow-x: auto; } /* fallback: native swipe scroll */
.china-exp-agenda-track {
  display: flex;
  gap: 16px;
  align-items: stretch;
  padding-left: var(--pad-x);
  padding-bottom: 8px;
}
.china-exp-agenda-track::after {
  content: "";
  flex: 0 0 var(--pad-x);
  align-self: flex-start;
}

/* JS-enabled: pin the section and drive horizontal scroll from page scroll */
.china-exp-agenda.china-exp-hscroll-on .china-exp-agenda-hscroll { position: relative; }
.china-exp-agenda.china-exp-hscroll-on .china-exp-agenda-hscroll-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding-bottom: 0;
}
.china-exp-agenda.china-exp-hscroll-on .china-exp-agenda-track { padding-bottom: 0; will-change: transform; }
.china-exp-day-card {
  flex: 0 0 400px;
  background: var(--dark);
  border-bottom: 3px solid var(--green);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px;
}
.china-exp-day-card .china-exp-day-top { display: flex; flex-direction: column; gap: 24px; }
.china-exp-day-badge {
  width: 72px;
  height: 72px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
  color: var(--teal);
}
.china-exp-day-meta { display: flex; flex-direction: column; gap: 8px; }
.china-exp-day-city { display: flex; align-items: center; gap: 8px; }
.china-exp-day-city img { width: 20px; height: 20px; }
.china-exp-day-city span { font-size: 20px; font-weight: 400; color: var(--light); }
.china-exp-day-title { font-size: 20px; font-weight: 500; color: var(--white); }

.china-exp-day-list { display: flex; flex-direction: column; gap: 1px; }
.china-exp-day-item { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; }
.china-exp-day-item .china-exp-thumb { width: 56px; height: 56px; flex: 0 0 auto; background: var(--surface-2); }
.china-exp-day-item .china-exp-body { display: flex; flex-direction: column; gap: 4px; }
.china-exp-day-item .china-exp-body .china-exp-t { font-size: 16px; font-weight: 500; color: var(--white); }
.china-exp-day-item .china-exp-body .china-exp-d { font-size: 14px; font-weight: 400; color: var(--light); }

.china-exp-agenda-note { width: 100%; text-align: center; font-size: 15px; color: rgba(10,10,10,.60); padding: 0 var(--pad-x); }

/* ---- Dynamic program tabs (replaces horizontal scroll cards) ---- */
.china-exp-ptabs {
  position: relative;
  display: flex;
  width: 100%;
  border-bottom: 1px solid rgba(239,239,239,.14);
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.china-exp-ptabs::-webkit-scrollbar { display: none; }

.china-exp-ptab {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 16px 28px 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--light);
  transition: color .2s;
  font-family: inherit;
}
.china-exp-ptab:hover { color: var(--white); }
.china-exp-ptab.active { color: var(--white); }

.china-exp-ptab-label {
  font-size: 16px;
  font-weight: 500;
  color: #0a0a0a;
  letter-spacing: .10em;
  text-transform: uppercase;
  line-height: 1;
}
.china-exp-ptab-city {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

/* Sliding ink bar */
.china-exp-ptab-ink {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--grad-brand);
  transition: left .32s cubic-bezier(.4,0,.2,1), width .32s cubic-bezier(.4,0,.2,1);
  border-radius: 2px 2px 0 0;
  pointer-events: none;
}

/* Day panels container */
.china-exp-pdays { position: relative; min-height: 320px; width: 100%; }

.china-exp-pday {
  display: none;
  grid-template-columns: 260px 1fr;
  gap: 72px;
  align-items: start;
}
.china-exp-pday.active { display: grid; }

/* Slide-in animation when a panel becomes active */
@keyframes china-exp-pday-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.china-exp-pday.active { animation: china-exp-pday-in .35s cubic-bezier(.4,0,.2,1) both; }

/* Left intro column */
.china-exp-pday-intro {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.china-exp-pday-num {
  font-size: 160px;
  font-weight: 300;
  line-height: .85;
  font-variant-numeric: tabular-nums;
  color: var(--teal);
  letter-spacing: -.03em;
  user-select: none;
}

.china-exp-pday-label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--teal) 0%, var(--green) 100%); /* teal → verde */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.china-exp-pday-theme {
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin: 0;
}

/* Right items column */
.china-exp-pitems {
  list-style: none;
  padding: 0;
  margin: 0;
}

.china-exp-pitem {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(10,10,10,.09);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .38s ease, transform .38s ease;
  transition-delay: calc(var(--i, 0) * 65ms + 80ms);
}
.china-exp-pitem:first-child { padding-top: 0; }

/* Items become visible when panel is active */
.china-exp-pday.active .china-exp-pitem {
  opacity: 1;
  transform: translateY(0);
}

.china-exp-pitem-num {
  flex: 0 0 32px;
  font-size: 16px;
  font-weight: 300;
  color: var(--teal);
  padding-top: 4px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

.china-exp-pitem-title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.china-exp-pitem-desc {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--light);
  line-height: 1.65;
}

/* Arrow SVG in transit tabs */
.china-exp-ptab-arr {
  display: inline-block;
  vertical-align: middle;
  color: var(--teal);
  position: relative;
  top: -1px;
}

/* Right wrapper: items list + photo gallery side-by-side */
.china-exp-pday-right { display: flex; gap: 36px; align-items: flex-start; min-width: 0; }
.china-exp-pday-right .china-exp-pitems { flex: 1 1 0; min-width: 0; }

/* Photo gallery column */
.china-exp-pday-gallery {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.china-exp-pday-photo { margin: 0; }
.china-exp-pday-photo-img {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 6px;
  background: rgba(10,10,10,.05);
  border: 1px solid rgba(10,10,10,.10);
  overflow: hidden;
  display: block;
}
.china-exp-pday-photo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.china-exp-pday-photo figcaption {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(10,10,10,.60);
  margin-top: 6px;
}
.china-exp-pday-photo figcaption::before {
  content: '';
  flex: 0 0 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

/* Gallery responsive */
@media (max-width: 1100px) {
  .china-exp-pday-gallery { flex: 0 0 200px; }
}
@media (max-width: 720px) {
  .china-exp-pday-right { flex-direction: column; }
  .china-exp-pday-gallery { flex: none; width: 100%; flex-direction: row; gap: 8px; overflow-x: auto; scrollbar-width: none; }
  .china-exp-pday-gallery::-webkit-scrollbar { display: none; }
  .china-exp-pday-photo { flex: 0 0 140px; }
}

/* ==========================================================================
   7. PRICING / O QUE INCLUI
   ========================================================================== */
.china-exp-pricing {
  background: var(--light);
  padding: 80px var(--pad-x);
  position: relative;
  overflow: hidden;
}

/* Subtle tier comparison inside card */
.china-exp-pricing-compare {
  border-top: 1px solid rgba(10,10,10,.08);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.china-exp-compare-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10,10,10,.45);
}
.china-exp-compare-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  column-gap: 12px;
  row-gap: 7px;
}
.china-exp-compare-items li { display: contents; }
.china-exp-compare-items li > span:first-child { font-size: 15px; font-weight: 600; color: rgba(10,10,10,.7); white-space: nowrap; }
.china-exp-compare-items li > span:nth-child(2) { font-size: 13px; color: rgba(10,10,10,.42); }
.china-exp-compare-items strong { font-size: 15px; font-weight: 600; color: rgba(10,10,10,.7); white-space: nowrap; font-variant-numeric: tabular-nums; }

/* condição do escalão em vigor */
.china-exp-pricing-note { font-size: 13px; color: rgba(10,10,10,.45); }
.china-exp-compare-items span strong {
  font-weight: 600;
  color: rgba(10,10,10,.70);
}

/* Price row: main price + struck-through Last Call */
.china-exp-pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.china-exp-pricing-lastcall {
  font-size: 34px;
  font-weight: 400;
  color: #8c8c8c;
  text-decoration: line-through;
  letter-spacing: -.01em;
  line-height: 1;
}

/* Orange pulsing dot */
@keyframes china-exp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.china-exp-dot-pulse {
  color: #f97316 !important;
  animation: china-exp-pulse 1.8s ease-in-out infinite;
}

/* Main two-column row */
.china-exp-pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  width: 100%;
}

/* Left column */
.china-exp-pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.china-exp-pricing-title {
  font-size: 48px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -.01em;
}

.china-exp-pricing-eyebrow { margin-bottom: 16px; font-size: 16px; }

.china-exp-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.china-exp-pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.china-exp-pricing-list li img { width: 22px; height: 22px; flex-shrink: 0; }
.china-exp-pricing-list li span {
  font-size: 17px;
  font-weight: 400;
  color: #3c3c3c;
  line-height: 1.5;
}

.china-exp-pricing-disclaimer {
  font-size: 16px;
  font-weight: 600;
  color: rgba(10,10,10,.55);
  line-height: 1.5;
  margin: 0;
}

/* Right: white card */
.china-exp-pricing-card {
  background: #ffffff;
  border: 1px solid rgba(10,10,10,.12);
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.china-exp-pricing-card-head { display: flex; flex-direction: column; gap: 16px; }
.china-exp-pricing-card .china-exp-eyebrow { font-size: 15px; margin: 0; }

.china-exp-pricing-product { display: flex; flex-direction: column; gap: 2px; }
.china-exp-pricing-product-name {
  font-size: 40px;
  font-weight: 500;
  color: var(--dark);
  margin: 0;
  line-height: 1.2;
}
.china-exp-pricing-cohort {
  font-size: 40px;
  font-weight: 500;
  color: var(--teal);
  margin: 0;
  line-height: 1.2;
}
.china-exp-pricing-desc {
  font-size: 16px;
  font-weight: 400;
  color: #3c3c3c;
  line-height: 1.6;
  margin: 0;
}

.china-exp-pricing-amount { display: flex; flex-direction: column; gap: 6px; }
.china-exp-pricing-price {
  font-size: 52px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
  margin: 0;
  letter-spacing: -.02em;
}
.china-exp-pricing-usd {
  font-size: 14px;
  color: #8c8c8c;
  margin: 0;
}
.china-exp-pricing-seats {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.china-exp-pricing-dot {
  color: var(--teal);
  font-size: 10px;
  line-height: 1;
}

.china-exp-pricing-limit {
  font-size: 18px;
  color: #8c8c8c;
  text-align: center;
  margin: 0;
}

.china-exp-pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--grad-brand);
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,0.15);
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: .01em;
  transition: opacity .2s;
  font-family: inherit;
}
.china-exp-pricing-cta:hover { opacity: .85; }
.china-exp-pricing-cta img {
  width: 16px;
  height: 16px;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.china-exp-pricing-cta:hover img { transform: translateX(5px); }

/* Corner decoration */
.china-exp-pricing-deco-corner {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 32px;
  height: 32px;
  background: var(--grad-brand);
  display: block;
}

/* Corner decoration (gradient square at card top-left) */
.china-exp-pricing-deco-corner {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 32px;
  height: 32px;
  background: var(--grad-brand);
  display: block;
}

/* Floating gradient square — left edge aligned to card column */
/* Pricing responsive */
@media (max-width: 1100px) {
  .china-exp-pricing-row { grid-template-columns: 1fr; gap: 48px; }
  .china-exp-pricing-title { font-size: 38px; }
}
@media (max-width: 720px) {
  .china-exp-pricing { padding: 48px var(--pad-x); }
  .china-exp-pricing-title { font-size: 30px; }
  .china-exp-pricing-card { padding: 40px 28px; }
  .china-exp-pricing-price { font-size: 40px; }
  .china-exp-pricing-product-name, .china-exp-pricing-cohort { font-size: 24px; }
}
@media (max-width: 480px) {
  .china-exp-pricing-title { font-size: 26px; }
  .china-exp-compare-items { column-gap: 8px; }
}

/* ==========================================================================
   8. HOSTS
   ========================================================================== */

.china-exp-hosts {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  padding: 64px var(--pad-x);
}
.china-exp-host-row { width: 100%; display: flex; gap: 72px; align-items: center; justify-content: center; }
.china-exp-host-portrait { position: relative; flex: 0 0 auto; }
.china-exp-host-portrait img { height: 560px; width: auto; }
.china-exp-host-portrait .china-exp-sq { width: 104px; height: 104px; }

.china-exp-host-text { width: 500px; max-width: 100%; display: flex; flex-direction: column; gap: 16px; }
.china-exp-host-name { font-size: 56px; font-weight: 500; color: var(--white); line-height: 1.05; }
.china-exp-host-role { font-size: 24px; font-weight: 400; color: var(--light); line-height: 1.5; }
.china-exp-host-bio  { font-size: 16px; font-weight: 400; color: var(--light); line-height: 1.5; }
.china-exp-host-name-group { display: flex; flex-direction: column; gap: 8px; }

/* ==========================================================================
   Mobile menu
   ========================================================================== */

.china-exp-nav-burger {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.china-exp-nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0a0a0a;
  border-radius: 1px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .2s ease;
}

.china-exp-nav-burger.china-exp-is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.china-exp-nav-burger.china-exp-is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.china-exp-nav-burger.china-exp-is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* overlay */
.china-exp-nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  padding: 0 var(--pad-x) 48px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .32s ease, visibility .32s ease, transform .32s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}

.china-exp-nav-mobile.china-exp-is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.china-exp-nav-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  flex: 0 0 auto;
  border-bottom: 1px solid rgba(10,10,10,0.09);
}

/* reuse nav-brand styles — colours invert in dark overlay */
.china-exp-nav-mobile-head .china-exp-nav-brand .china-exp-nav-divider { background: rgba(10,10,10,0.22); }

.china-exp-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background .2s ease;
}
.china-exp-nav-close:hover { background: rgba(10,10,10,0.09); }

/* links */
.china-exp-nav-mobile-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.china-exp-nav-mobile-links a {
  display: block;
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(10,10,10,0.09);
  opacity: 0;
  transform: translateY(18px);
  transition: color .2s ease,
              opacity .4s cubic-bezier(.16,1,.3,1),
              transform .4s cubic-bezier(.16,1,.3,1);
}
.china-exp-nav-mobile-links a:first-child { border-top: 1px solid rgba(10,10,10,0.09); }
.china-exp-nav-mobile-links a:hover { color: var(--teal); }

/* staggered entrance */
.china-exp-nav-mobile.china-exp-is-open .china-exp-nav-mobile-links a { opacity: 1; transform: translateY(0); }
.china-exp-nav-mobile.china-exp-is-open .china-exp-nav-mobile-links a:nth-child(1) { transition-delay: .06s; }
.china-exp-nav-mobile.china-exp-is-open .china-exp-nav-mobile-links a:nth-child(2) { transition-delay: .11s; }
.china-exp-nav-mobile.china-exp-is-open .china-exp-nav-mobile-links a:nth-child(3) { transition-delay: .16s; }
.china-exp-nav-mobile.china-exp-is-open .china-exp-nav-mobile-links a:nth-child(4) { transition-delay: .21s; }
.china-exp-nav-mobile.china-exp-is-open .china-exp-nav-mobile-links a:nth-child(5) { transition-delay: .26s; }
.china-exp-nav-mobile.china-exp-is-open .china-exp-nav-mobile-links a:nth-child(6) { transition-delay: .31s; }

/* CTA */
.china-exp-nav-mobile-cta {
  flex: 0 0 auto;
  padding-top: 32px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s ease .36s, transform .4s cubic-bezier(.16,1,.3,1) .36s;
}
.china-exp-nav-mobile.china-exp-is-open .china-exp-nav-mobile-cta { opacity: 1; transform: translateY(0); }


/* ==========================================================================
   8. CLIENTS
   ========================================================================== */

.china-exp-clients {
  background: #efefef;
  padding: 64px var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  overflow: hidden;
}

.china-exp-clients-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.china-exp-clients-head h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 500;
  color: var(--dark);
  max-width: 760px;
  line-height: 1.15;
}

.china-exp-clients-img {
  width: 80%;
  overflow: hidden;
}

.china-exp-clients-img img {
  width: 100%;
  height: auto;
  display: block;
}

.china-exp-testimonial {
  background: var(--dark);
  padding: 80px var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.china-exp-testimonial-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin: 0;
}

.china-exp-testimonial-quote {
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
  margin: 0;
  max-width: 1024px;
}

.china-exp-testimonial-attr {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-family: 'Courier New', Courier, monospace;
  margin: 0;
  letter-spacing: .04em;
}

/* ==========================================================================
   5b. FEATURES — Quatro experiências
   ========================================================================== */

.china-exp-features {
  background: var(--dark);
  padding: 64px var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.china-exp-features-head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  width: 100%;
  align-self: center;
  text-align: center;
}

.china-exp-features-title-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.china-exp-features-head h2 {
  font-size: 56px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
}

.china-exp-features-sub {
  font-size: 18px;
  color: var(--light);
  line-height: 1.5;
  margin: 0;
}

.china-exp-features-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.china-exp-feat-card {
  border: 1px solid rgba(10,10,10,.22);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  min-height: 340px;
}

.china-exp-feat-icon {
  display: block;
  flex-shrink: 0;
  width: 40px;
  height: 24px;
}

.china-exp-feat-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.china-exp-feat-desc {
  font-size: 17px;
  color: var(--light);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   9. COMPANIES — Carrossel
   ========================================================================== */

.china-exp-companies {
  background: var(--light);
  padding: 0 0 80px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.china-exp-companies-head {
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.china-exp-companies-head h2 {
  font-size: 48px;
  font-weight: 500;
  color: var(--dark);
  margin: 0;
  line-height: 1.15;
}

.china-exp-companies-carousel {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.china-exp-companies-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: companies-scroll 28s linear infinite;
}

.china-exp-companies-track:hover {
  animation-play-state: paused;
}

.china-exp-companies-track img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.75;
  transition: opacity .2s;
}

.china-exp-companies-track img:hover {
  opacity: 1;
}

@keyframes companies-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   10. FAQ — O que precisa saber
   ========================================================================== */

.china-exp-faq {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  background: var(--dark);
}

.china-exp-faq-left {
  width: 380px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: sticky;
  top: 40px;
}

.china-exp-faq-left h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
}

.china-exp-faq-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--light);
}

.china-exp-faq-right {
  flex: 1 1 0;
  min-width: 0;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Logistics grid inside FAQ right column */
.china-exp-logistic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}

.china-exp-logistic-item {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(10,10,10,.16);
  padding-top: 32px;
}

.china-exp-logistic-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.china-exp-logistic-term {
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.china-exp-logistic-desc {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(10,10,10,.72);
  margin: 0;
}

.china-exp-faq-item {
  border-top: 1px solid rgba(10,10,10,0.13);
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.china-exp-faq-item:last-child {
  border-bottom: 1px solid rgba(10,10,10,0.13);
}

.china-exp-faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
}

.china-exp-faq-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.china-exp-faq-a {
  padding-left: 32px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(10,10,10,0.72);
}

.china-exp-faq-a a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/* ==========================================================================
/* ==========================================================================
/* ==========================================================================
   7b. MORE EXPEDITIONS — dois cartões com foto de fundo (Figma 330:407)
   ========================================================================== */

.china-exp-more {
  background: #efefef;
  padding: 64px var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.china-exp-more-head { display: flex; flex-direction: column; gap: 32px; }
.china-exp-more-title { display: flex; flex-direction: column; gap: 16px; }
.china-exp-more-head h2 {
  margin: 0;
  font-size: 56px;
  line-height: 61.6px;
  font-weight: 500;
  color: #000000;
}
.china-exp-more-head h2 span { color: var(--teal); }
.china-exp-more-sub { font-size: 18px; line-height: 27px; color: #0a0a0a; }

.china-exp-more-cards { display: flex; gap: 8px; align-items: stretch; }

.china-exp-more-card {
  position: relative;
  flex: 1 1 0;            /* reparte a largura enquanto estão em linha */
  min-width: 0;
  min-height: 675px;      /* garantida, mas cresce se o conteúdo precisar */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 32px;
  padding: 32px;
  overflow: hidden;
}

/* foto de fundo + véu escuro, para o texto assentar em baixo */
.china-exp-more-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.china-exp-more-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.27) 20.765%, rgba(0,0,0,.9) 100%);
}
.china-exp-more-card--custom::after {
  background: linear-gradient(180deg, rgba(0,0,0,.27) 49.154%, rgba(0,0,0,.9) 100%);
}
.china-exp-more-card:hover .china-exp-more-bg { transform: scale(1.05); }

/* o conteúdo tem de ficar acima do véu */
.china-exp-more-copy,
.china-exp-more-card .china-exp-btn { position: relative; z-index: 1; }

.china-exp-more-copy { display: flex; flex-direction: column; gap: 16px; }
.china-exp-more-copy .china-exp-more-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 500;
  color: var(--lime);
}
.china-exp-more-card--custom .china-exp-more-copy .china-exp-more-label { color: var(--cyan); }
.china-exp-more-copy .china-exp-more-label img { width: 14px; height: 24px; flex: 0 0 auto; }
.china-exp-more-copy h3 { margin: 0; font-size: 40px; font-weight: 500; line-height: 1.1; color: #ffffff; }
.china-exp-more-copy p { font-size: 16px; line-height: 1.5; color: #ffffff; }

.china-exp-more-card .china-exp-btn { align-self: flex-start; }

@media (max-width: 1100px) {
  .china-exp-more { gap: 40px; }
  .china-exp-more-head h2 { font-size: 40px; line-height: 44px; }
  .china-exp-more-cards { flex-direction: column; }
  .china-exp-more-card { flex: 0 0 auto; min-height: 480px; }
  .china-exp-more-copy h3 { font-size: 32px; }
}
@media (max-width: 720px) {
  .china-exp-more-head { gap: 24px; }
  .china-exp-more-head h2 { font-size: 28px; line-height: 32px; }
  .china-exp-more-sub { font-size: 16px; line-height: 24px; }
  .china-exp-more-card { min-height: 440px; padding: 24px; gap: 24px; }
  .china-exp-more-copy h3 { font-size: 26px; }
  .china-exp-more-label { font-size: 17px; }
}

/* ==========================================================================
   10. CTA FECHAMENTO
   ========================================================================== */

.china-exp-cta {
  background: #efefef;
  padding: 24px 24px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.china-exp-cta-card {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(180deg, #c4eaf0 0%, #b7f0cc 100%);
  overflow: hidden;
  border-radius: 4px;
  min-height: 520px;
  padding: 24px;
  gap: 24px;
}

.china-exp-cta-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 32px 40px;
}

.china-exp-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #b4f6cc;
  border-radius: 8px;
  padding: 10px 14px;
  width: fit-content;
  font-size: 14px;
  color: var(--dark);
}

.china-exp-cta-badge img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.china-exp-cta-heading {
  font-size: 48px;
  font-weight: 500;
  color: var(--dark);
  margin: 0;
  line-height: 1.1;
}

.china-exp-cta-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #3c3c3c;
  margin: 0;
  max-width: 480px;
}

.china-exp-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.china-exp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 14px 2px 2px;
  background: linear-gradient(90deg, var(--green) 0%, #0891b2 100%);
  border-radius: 999px;
  text-decoration: none;
  transition: opacity .2s;
}

.china-exp-cta-btn:hover { opacity: .85; }

.china-exp-cta-btn-inner {
  display: block;
  background: var(--dark);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .01em;
  white-space: nowrap;
}

.china-exp-cta-btn img {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.china-exp-cta-link {
  font-size: 16px;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(10,10,10,.3);
  padding-bottom: 2px;
  transition: border-color .2s;
}

.china-exp-cta-link:hover { border-color: var(--dark); }

.china-exp-cta-right {
  position: relative;
  overflow: hidden;
}

.china-exp-cta-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.china-exp-cta-logos {
  display: flex;
  align-items: center;
  gap: 28px;
}

.china-exp-cta-logo-gn { height: 32px; width: 148px; flex-shrink: 0; }
.china-exp-cta-logo-cz { height: 44px; width: auto; flex-shrink: 0; }

.china-exp-cta-sep {
  display: block;
  width: 1px;
  height: 52px;
  background: rgba(10,10,10,.2);
}

.china-exp-cta-desc {
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 17px;
  line-height: 1.6;
  color: #3c3c3c;
}

/* photo credits — CC BY / CC BY-SA attribution */
.china-exp-credits {
  max-width: 900px;
  margin: 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.62);
}
.china-exp-credits a { color: inherit; text-decoration: underline; }
.china-exp-credits a:hover { color: var(--dark); }

.china-exp-cta-desc a {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* ---- Tablet (≤ 1100px) --------------------------------------------------- */
@media (max-width: 1100px) {

  /* nav — hamburger replaces menu from tablet up */
  .china-exp-nav-burger { display: flex; }
  .china-exp-nav-menu { display: none; }
  .china-exp-nav-right .china-exp-btn { display: none; }

  /* hero */
  .china-exp-hero-body { height: auto; }
  .china-exp-hero-skyline { position: relative; inset: auto; width: 100%; height: 320px; }
  .china-exp-hero-card { position: relative; width: 100%; padding: 48px; }
  .china-exp-hero-card .china-exp-stack { max-width: 100%; }
  .china-exp-hero-title { font-size: 40px; }

  /* intro / why */
  .china-exp-intro h2, .china-exp-why-head h2 { font-size: 40px; }
  .china-exp-deco-cluster { display: none; }

  /* quote */
  .china-exp-quote { height: auto; padding-top: 72px; padding-bottom: 72px; flex-direction: column; align-items: center; gap: 32px; }
  .china-exp-quote-text { font-size: 44px; transform: none; width: 100%; }
  .china-exp-quote .china-exp-float { display: none; }
  .china-exp-quote-link { position: static; transform: none; white-space: normal; flex-wrap: wrap; justify-content: center; }

  /* intro / why — fix overflow in flex containers */
  .china-exp-intro-copy { width: 100%; }
  .china-exp-why-head { width: 100%; grid-template-columns: 1fr; gap: 24px; }
  .china-exp-why-head .china-exp-why-copy { width: 100%; }

  /* stats */
  .china-exp-stat, .china-exp-stat:nth-child(n) { flex-direction: column; text-align: center; align-items: center; gap: 32px; }
  .china-exp-stat-text { width: 100%; max-width: 500px; align-items: center; }
  .china-exp-stat-img { width: 100%; max-width: 480px; height: 260px; order: -1; }

  /* cities */
  .china-exp-cities { flex-direction: column; padding: 64px var(--pad-x); }
  .china-exp-cities-intro { width: 100%; position: static; }
  .china-exp-city-row { flex-direction: column; height: auto; }
  .china-exp-city-photo { max-width: 100%; height: 260px; order: -1; }

  /* hosts */
  .china-exp-host-row { flex-direction: column; align-items: flex-start; }
  .china-exp-host-row:nth-child(2) .china-exp-host-portrait { order: -1; }
  .china-exp-host-portrait img { width: 100%; max-width: 480px; height: auto; }
  .china-exp-host-text { width: 100%; max-width: 600px; }

  /* faq */
  .china-exp-faq { flex-direction: column; gap: 40px; }
  .china-exp-faq-left { width: 100%; position: static; }
  .china-exp-faq-left h2 { font-size: 40px; }
  .china-exp-logistic-grid { gap: 36px 40px; }

  /* features */
  .china-exp-features { padding: 56px var(--pad-x); }
  .china-exp-features-head h2 { font-size: 38px; }
  .china-exp-features-cards { grid-template-columns: 1fr 1fr; }
  .china-exp-feat-card { min-height: auto; }
  .china-exp-hero-card-deco { display: none; }

  /* cta */
  .china-exp-cta-card { grid-template-columns: 1fr; min-height: auto; }
  .china-exp-cta-right { display: none; }
  .china-exp-cta-heading { font-size: 38px; }
  .china-exp-cta-left { padding: 40px; }
}

/* ---- Mobile (≤ 720px) ---------------------------------------------------- */
@media (max-width: 720px) {

  :root { --pad-x: 5%; }

  /* nav */
  .china-exp-nav-brand .china-exp-goingnext { height: 26px; width: 122px; }
  .china-exp-nav-brand .china-exp-chozan { height: 34px; max-width: 108px; }
  .china-exp-clients-img { width: 100%; }

  /* section padding */
  .china-exp-section { padding-top: 32px; padding-bottom: 48px; }

  /* hero */
  .china-exp-hero-skyline { height: 220px; }
  .china-exp-hero-card { padding: 28px; gap: 16px; }
  .china-exp-hero-card .china-exp-stack { gap: 16px; }
  .china-exp-hero-headline { gap: 6px; }
  .china-exp-hero-cities { gap: 10px; }
  .china-exp-hero-desc-group { gap: 8px; }
  .china-exp-hero-title { font-size: 32px; }
  .china-exp-hero-kicker { font-size: 20px; }
  .china-exp-hero-cities .china-exp-city { font-size: 26px; }
  .china-exp-hero-cities .china-exp-train { width: 80px; }
  .china-exp-hero-date span { font-size: 16px; }
  .china-exp-hero-cta-row { flex-direction: column; align-items: flex-start; gap: 12px; }

  .china-exp-intro h2, .china-exp-why-head h2 { font-size: 28px; }
  .china-exp-intro h2 br { display: none; }   /* deixar fluir: a quebra fixa piora o rag em ecrã estreito */
  .china-exp-intro-copy .china-exp-lead { font-size: 16px; }
  .china-exp-intro-copy .china-exp-punch { font-size: 20px; }
  .china-exp-why-head .china-exp-why-copy p { font-size: 16px; }

  /* quote */
  .china-exp-quote { flex-direction: column; gap: 28px; }
  .china-exp-quote-text { font-size: 28px; width: 100%; max-width: 100%; }
  .china-exp-quote-link { white-space: normal; width: 100%; justify-content: center; text-align: center; margin-top: 0; font-size: 12px; }

  /* stats */
  .china-exp-stat-text .china-exp-num { font-size: 40px; }
  .china-exp-stat-text .china-exp-desc { font-size: 18px; }
  .china-exp-why-close { font-size: 18px; }
  .china-exp-stat-img { height: 200px; }

  /* cities */
  .china-exp-cities-intro h2 { font-size: 28px; }
  .china-exp-cities-intro p { font-size: 16px; }
  .china-exp-city-card .china-exp-city-name { font-size: 28px; }
  .china-exp-city-card p { font-size: 16px; }

  /* agenda: desativa sticky e usa swipe horizontal no track */
  .china-exp-agenda.china-exp-hscroll-on .china-exp-agenda-hscroll { height: auto !important; }
  .china-exp-agenda.china-exp-hscroll-on .china-exp-agenda-hscroll-inner {
    position: static;
    height: auto;
    overflow: visible;
    flex-direction: column;
    gap: 24px;
  }
  .china-exp-agenda.china-exp-hscroll-on .china-exp-agenda-track {
    transform: none !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
  }
  .china-exp-agenda.china-exp-hscroll-on .china-exp-agenda-track .china-exp-day-card { scroll-snap-align: start; }
  .china-exp-agenda-head h2 { font-size: 28px; }

  /* dynamic program tabs — tablet */
  .china-exp-pday { grid-template-columns: 1fr; gap: 40px; }
  .china-exp-pday-intro { position: static; flex-direction: row; align-items: flex-end; gap: 20px; }
  .china-exp-pday-num { font-size: 108px; }
  .china-exp-pday-theme { font-size: 22px; }
  .china-exp-ptab { padding: 12px 20px 18px; }
  .china-exp-ptab-city { font-size: 14px; }

  /* quote: mostrar imagens menores nos cantos sem sobrepor o texto */
  .china-exp-quote { padding-top: 100px; padding-bottom: 100px; }
  .china-exp-quote .china-exp-float { display: block; }
  .china-exp-q-img-3  { width: 80px;  height: 52px;  top: 14px;  left: 6px;   right: auto; bottom: auto; }
  .china-exp-q-img-1  { width: 88px;  height: 58px;  top: auto;  bottom: 14px; left: 6px;  right: auto; }
  .china-exp-q-img-2a { width: 88px;  height: 58px;  top: 14px;  right: 6px;  left: auto; bottom: auto; }
  .china-exp-q-img-2b { width: 80px;  height: 52px;  top: auto;  bottom: 14px; right: 6px; left: auto; }

  /* hosts */
  .china-exp-host-row { gap: 20px; }
  .china-exp-host-name { font-size: 36px; }
  .china-exp-host-role { font-size: 18px; }
  .china-exp-host-bio { font-size: 15px; }

  /* faq */
  .china-exp-faq-left h2 { font-size: 28px; }
  .china-exp-faq-sub { font-size: 16px; }
  .china-exp-logistic-grid { grid-template-columns: 1fr; gap: 32px; }
  .china-exp-logistic-desc { font-size: 15px; }

  /* features */
  .china-exp-features-cards { grid-template-columns: 1fr; }
  .china-exp-features-head h2 { font-size: 28px; }
  .china-exp-features-sub { font-size: 15px; }
  .china-exp-feat-card { padding: 24px 20px; }
  .china-exp-feat-title { font-size: 20px; }
  .china-exp-feat-desc { font-size: 15px; }

  /* companies */
  .china-exp-companies { gap: 32px; padding-bottom: 56px; }
  .china-exp-companies-head h2 { font-size: 26px; }
  .china-exp-companies-track { gap: 48px; }
  .china-exp-companies-track img { height: 26px; }

  /* testimonial */
  .china-exp-testimonial { padding: 56px var(--pad-x); gap: 24px; }

  /* cta */
  .china-exp-cta { padding: 16px 16px 56px; }
  .china-exp-cta-heading { font-size: 28px; }
  .china-exp-cta-left { padding: 28px 24px; gap: 28px; }
  .china-exp-cta-sub { font-size: 15px; }
}

/* ---- Small phones (≤ 480px) ---------------------------------------------- */
@media (max-width: 480px) {

  :root { --pad-x: 20px; }

  /* nav */
  .china-exp-nav { padding: 10px var(--pad-x); }
  .china-exp-nav-brand { gap: 10px; }
  .china-exp-nav-brand .china-exp-goingnext { height: 22px; width: 100px; }
  .china-exp-nav-brand .china-exp-chozan { height: 29px; max-width: 91px; }
  .china-exp-nav-divider { height: 28px; }
  .china-exp-btn-inner { font-size: 14px; padding: 10px 14px; }

  /* hero */
  .china-exp-hero-card { padding: 24px; }
  .china-exp-hero-title { font-size: 32px; }
  .china-exp-hero-kicker { font-size: 17px; }
  .china-exp-hero-cities .china-exp-city { font-size: 20px; }
  .china-exp-hero-cities .china-exp-train { width: 64px; height: 36px; }
  .china-exp-hero-date span { font-size: 14px; }

  /* shared headings — h1=32px, h2=28px */
  .china-exp-intro h2, .china-exp-why-head h2, .china-exp-cities-intro h2,
  .china-exp-agenda-head h2, .china-exp-faq-left h2,
  .china-exp-features-head h2,
  .china-exp-clients-head h2, .china-exp-cta-heading { font-size: 28px; }
  .china-exp-hero-title { font-size: 32px; }

  /* stats */
  .china-exp-stat-text .china-exp-num { font-size: 32px; }

  /* agenda cards */
  .china-exp-day-card { flex: 0 0 300px; }

  /* hosts */
  .china-exp-host-name { font-size: 28px; }

  /* dynamic program tabs — small phones */
  .china-exp-ptab { padding: 10px 14px 16px; }
  .china-exp-ptab-city { font-size: 12px; }
  .china-exp-pday-num { font-size: 80px; }
  .china-exp-pday-theme { font-size: 18px; }
  .china-exp-pitem-title { font-size: 15px; }

  /* features */
  .china-exp-features-head h2 { font-size: 24px; }

  /* footer/cta — show hero image stacked below content */
  .china-exp-cta-right { display: block; height: 240px; }

  /* cta */
  .china-exp-cta-heading { font-size: 28px; }
}

/* ==========================================================================
   Motion
   (the source design used Motion / motion.react — reproduced here with CSS
   scroll-reveal + entrance + micro-interactions, gated by reduced-motion)
   ========================================================================== */

/* ==========================================================================
   SCROLL-REVEAL VARIANTS (class set by motion.js, china-exp-in toggled by observer)
   ========================================================================== */

/* Conservative: rise from bottom */
.china-exp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1),
              transform .7s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}
.china-exp-reveal.china-exp-in { opacity: 1; transform: none; }

/* Fade only (for elements whose transform must be preserved) */
.china-exp-reveal-fade { opacity: 0; transition: opacity .85s ease; }
.china-exp-reveal-fade.china-exp-in { opacity: 1; }

/* Scale: emerges from slightly smaller + lower */
.china-exp-reveal-scale {
  opacity: 0;
  transform: scale(.93) translateY(18px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1),
              transform .8s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}
.china-exp-reveal-scale.china-exp-in { opacity: 1; transform: none; }

/* Slide from right */
.china-exp-reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .75s cubic-bezier(.16, 1, .3, 1),
              transform .75s cubic-bezier(.16, 1, .3, 1);
}
.china-exp-reveal-right.china-exp-in { opacity: 1; transform: none; }

/* Blur: testimonial quote — fog clears as it rises */
.china-exp-reveal-blur {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(14px);
  transition: opacity 1.1s ease,
              filter 1.1s ease,
              transform 1.1s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, filter, transform;
}
.china-exp-reveal-blur.china-exp-in { opacity: 1; filter: blur(0); transform: none; }

/* Spin: CTA badge rotates into place */
.china-exp-reveal-spin { opacity: 0; }
.china-exp-reveal-spin.china-exp-in {
  animation: badgeSpin .75s cubic-bezier(.34, 1.56, .64, 1) both;
}

/* ==========================================================================
   KEYFRAMES
   ========================================================================== */

@keyframes riseIn    { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes kenburns  { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes floaty    { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* Hero decorative squares: spring pop-in */
@keyframes squarePop {
  0%   { opacity: 0; transform: scale(0) rotate(-20deg); }
  65%  { opacity: 1; transform: scale(1.18) rotate(4deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* CTA badge: spin entrance */
@keyframes badgeSpin {
  from { opacity: 0; transform: rotate(-120deg) scale(.4); }
  to   { opacity: 1; transform: rotate(0) scale(1); }
}

/* ==========================================================================
   HERO ENTRANCE
   ========================================================================== */

.china-exp-nav { animation: fadeIn .9s ease both; }
.china-exp-hero-card .china-exp-hero-headline    { animation: riseIn .8s cubic-bezier(.16,1,.3,1) both; animation-delay: .15s; }
.china-exp-hero-card .china-exp-hero-cities      { animation: riseIn .8s cubic-bezier(.16,1,.3,1) both; animation-delay: .30s; }
.china-exp-hero-card .china-exp-hero-desc-group  { animation: riseIn .8s cubic-bezier(.16,1,.3,1) both; animation-delay: .45s; }
.china-exp-hero-card .china-exp-hero-cta-row     { animation: riseIn .8s cubic-bezier(.16,1,.3,1) both; animation-delay: .60s; }

/* Decorative squares pop in after the card content settles */
.china-exp-hero-card-deco .china-exp-a { animation: squarePop .55s cubic-bezier(.34,1.56,.64,1) both; animation-delay: 1s; }
.china-exp-hero-card-deco .china-exp-b { animation: squarePop .55s cubic-bezier(.34,1.56,.64,1) both; animation-delay: 1.15s; }

.china-exp-deco-cluster .china-exp-sq-grad { animation: floaty 7s ease-in-out infinite; }

/* ==========================================================================
   QUOTE IMAGES — rotate + scale entrance
   ========================================================================== */

.china-exp-quote .china-exp-float img.china-exp-q-anim {
  opacity: 0;
  transform: scale(var(--s0, .3)) rotate(var(--r0, -10deg));
  transform-origin: center;
  transition: transform 1s cubic-bezier(.16, 1, .3, 1), opacity .7s ease;
}
.china-exp-quote.china-exp-in .china-exp-float img.china-exp-q-anim { opacity: 1; transform: scale(1) rotate(0deg); }
.china-exp-quote .china-exp-float:nth-of-type(2) img.china-exp-q-anim { transition-delay: .08s; }
.china-exp-quote .china-exp-float:nth-of-type(3) img.china-exp-q-anim { transition-delay: .16s; }
.china-exp-quote .china-exp-float:nth-of-type(4) img.china-exp-q-anim { transition-delay: .24s; }

/* ==========================================================================
   MICRO-INTERACTIONS
   ========================================================================== */

.china-exp-btn { transition: transform .25s ease, box-shadow .25s ease, filter .25s ease; }
.china-exp-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(34, 211, 238, .55); filter: saturate(1.05); }
.china-exp-btn .china-exp-arrow { transition: transform .35s cubic-bezier(.16,1,.3,1); }
.china-exp-btn:hover .china-exp-arrow { transform: rotate(45deg); }

.china-exp-nav-menu a { transition: color .2s ease; }

.china-exp-day-card { transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease; }
.china-exp-day-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -24px rgba(0, 0, 0, .85); }

.china-exp-feat-card { transition: border-color .3s ease; }
.china-exp-feat-card:hover { border-color: rgba(10,10,10,.55); }

.china-exp-city-photo img { transition: transform .6s cubic-bezier(.16,1,.3,1); }
.china-exp-city-row:hover .china-exp-city-photo img { transform: scale(1.05); }

.china-exp-stat-img { transition: transform .4s ease; }
.china-exp-stat:hover .china-exp-stat-img { transform: translateY(-4px); }

.china-exp-host-portrait img { transition: transform .6s cubic-bezier(.16,1,.3,1); }
.china-exp-host-portrait:hover img { transform: scale(1.03); }

.china-exp-quote-link { transition: gap .25s ease, color .25s ease; }
.china-exp-quote-link:hover { gap: 18px; color: var(--teal); }
.china-exp-quote-link img { transition: transform .25s ease; }
.china-exp-quote-link:hover img { transform: translate(3px, -3px); }

.china-exp-saiba { position: relative; }
.china-exp-saiba::after {
  content: "";
  position: absolute; left: 0; bottom: -3px;
  height: 1px; width: 0; background: currentColor;
  transition: width .25s ease;
}
.china-exp-saiba:hover::after { width: 100%; }

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .china-exp-reveal,
  .china-exp-reveal-scale,
  .china-exp-reveal-right,
  .china-exp-reveal-blur,
  .china-exp-reveal-spin { opacity: 1 !important; filter: none !important; transform: none !important; transition: none !important; }
  .china-exp-reveal-fade { opacity: 1 !important; transition: none !important; }
  .china-exp-nav,
  .china-exp-hero-skyline,
  .china-exp-hero-card .china-exp-hero-headline,
  .china-exp-hero-card .china-exp-hero-cities,
  .china-exp-hero-card .china-exp-hero-desc-group,
  .china-exp-hero-card .china-exp-hero-cta-row,
  .china-exp-hero-card-deco .china-exp-sq,
  .china-exp-deco-cluster .china-exp-sq-grad { animation: none !important; }
  html { scroll-behavior: auto; }
}



