
/* ============================================================
   Canton Concierge — Premium B2B Landing Page
   Design system: black/white/gray + deep navy, generous
   whitespace, boutique-consulting aesthetic (McKinsey/Deloitte).
   ============================================================ */

:root {
  --navy:    #0B2440;
  --navy-light: #14365C;
  --navy-dark:  #081B30;
  --ink:     #15181C;
  --steel:   #3E6D9C;
  --slate:   #5A6672;
  --mist:    #F5F4F2;
  --line:    #E4E8EC;
  --white:   #FFFFFF;
  --max:     80rem; /* 1280px */
  --gold:    #C9A24B;
  --gold-soft: rgba(201,162,75,0.16);
  --gold-line: rgba(201,162,75,0.35);
  --serif: 'Playfair Display', Georgia, Cambria, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --brass: #C9A24B;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 6rem; }

body {
  margin: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Layout helpers ---------- */
.section { padding: 2.5rem 0; }
@media (min-width: 768px) { .section { padding: 3rem 0; } }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid var(--navy);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(11,36,64,0.25);
}

/* .btn-book — primary entry CTA ("Find Your China Support Plan"), matches the solid white nav bar (white surface, navy text + border) */
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid var(--navy);
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.btn-book:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(11,36,64,0.22);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid var(--navy);
  transition: background .25s ease, color .25s ease;
  cursor: pointer;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* WhatsApp action button (brand green) — used for Chat on WhatsApp CTAs */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid #25D366;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.btn-wa:hover { background: #1ebe5a; transform: translateY(-1px); box-shadow: 0 12px 30px rgba(37,211,102,0.4); }
.btn-wa svg { flex: none; }

/* ---------- Nav (solid white consulting bar) ---------- */
#nav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
#nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 6px 22px rgba(11,36,64,0.08);
}
#nav.scrolled [data-nav-logo],
#nav.scrolled [data-nav-links] { color: var(--navy); }

/* ---------- Anchor offset for fixed navbar ----------
   The nav is fixed and h-20 (80px) tall on every breakpoint.
   The clearance is handled globally on the scroll root via
   `html { scroll-padding-top: 6rem }` (80px + 16px breathing room),
   so every in-page anchor (Services / How It Works / Why Us / About)
   lands just below the bar. #contact is a <div>, not a <section>,
   and uses its own existing layout, so it is untouched. */

/* ---------- Hero (dark, real exhibition background) ---------- */
.hero-bg {
  position: relative;
  overflow: hidden;
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-color: var(--navy-dark);
  background-image: url('assets/hero-ship.webp');
  background-size: cover; background-position: 50% 50%;
  transform: scale(1.06);
  animation: heroZoom 28s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-overlay {
  background: linear-gradient(105deg, rgba(8,27,48,0.92) 0%, rgba(8,27,48,0.74) 46%, rgba(8,27,48,0.42) 100%);
}
.scroll-hint { animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ---------- Hero brand bar + 9-language rotating greeting ---------- */
.hero-brandbar { display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap; }
.hero-brand { margin: 0; }
.hero-greet {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92); line-height: 1;
}
.hero-greet-sep { color: var(--gold); font-weight: 700; }
.hero-greet-words {
  position: relative; display: inline-block;
  height: 1.3em; vertical-align: middle;
}
.hero-greet-item {
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%) translateY(0.7em);
  opacity: 0; white-space: nowrap;
  transition: opacity .55s ease, transform .55s ease;
}
.hero-greet-item.is-on {
  opacity: 1;
  transform: translateY(-50%);
}

/* On-dark solid CTA (used in the dark hero) */
.btn-solid-light {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; color: var(--navy);
  font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 1.6rem; border-radius: 4px;
  text-decoration: none; border: 1px solid #fff; cursor: pointer;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn-solid-light:hover { background: var(--mist); transform: translateY(-1px); box-shadow: 0 12px 30px rgba(0,0,0,0.32); }

/* Hero business scenes (Trade Shows / Supplier Meetings / Factory Visits) */
.hero-scenes { display: flex; flex-wrap: wrap; align-items: center; margin-top: 2.1rem; }
.hero-scene {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: #fff; font-weight: 600; font-size: 1.05rem;
  padding: 0 1.3rem; white-space: nowrap;
}
.hero-scene:first-child { padding-left: 0; }
.hero-scene .dot { background: var(--gold); width: 8px; height: 8px; box-shadow: 0 0 0 3px rgba(201,162,75,0.22); }
.hero-scene-sep { width: 1px; height: 1.4rem; background: rgba(255,255,255,0.28); flex: none; }
@media (max-width: 640px) {
  .hero-scene { font-size: 0.95rem; padding: 0 0.85rem; }
  .hero-scene-sep { display: none; }
  .hero-scenes { gap: 0.35rem 0; }
}

/* ============================================================
   TASK 2026-07-25 — visual density + content upgrades
   ============================================================ */

/* Hero industry tags (small outline pills under CTA) */
.hero-ind { margin-top: 2.25rem; }
.hero-ind-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.85rem;
}
.hero-ind-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; max-width: 42rem; }
.hero-ind-tag {
  display: inline-flex; align-items: center;
  font-size: 0.82rem; font-weight: 500; color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  padding: 0.45rem 0.95rem; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
@media (max-width: 640px) { .hero-ind-tag { font-size: 0.78rem; padding: 0.4rem 0.8rem; } }

/* Team heading accent + service category labels */
.team-accent { color: var(--gold); }
.srv-cat {
  font-family: 'Inter', sans-serif; font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel);
  margin: 0 0 0.4rem;
}
.srv-cat-wrap { margin-top: 2.75rem; }
.srv-cat-wrap:first-child { margin-top: 0; }

.hero-fig { margin: 0; }
.hero-fig img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-fig figcaption { margin-top: 0.6rem; font-size: 0.8rem; color: var(--slate); font-weight: 400; }

/* ---------- Hero trust badges (large, legible) ---------- */
.hero-badges { display: flex; flex-wrap: wrap; gap: .7rem 1rem; margin-top: 2.25rem; max-width: 46rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(201,162,75,0.65);
  color: #fff; font-size: 1rem; font-weight: 600; line-height: 1.3;
  padding: .7rem 1.15rem; border-radius: 999px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero-badge .dot { background: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,0.22); }
@media (max-width: 640px) { .hero-badge { font-size: .9rem; padding: .6rem .95rem; } }

/* ---------- Problem numbers (Why section) ---------- */
.num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--steel);
  line-height: 1;
  margin-bottom: 0.4rem;
}

/* ---------- Ticks ---------- */
.tick {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink);
}
.tick::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border-right: 2px solid var(--steel);
  border-bottom: 2px solid var(--steel);
  transform: translateY(-50%) rotate(45deg);
}

/* light tick for the dark featured pricing card */
.tick-light { position: relative; padding-left: 1.4rem; color: rgba(255,255,255,0.9); }
.tick-light::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: translateY(-50%) rotate(45deg);
}

/* ---------- Scenarios ---------- */
.badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--steel);
  background: var(--mist);
  border: 1px solid var(--line);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

/* ---------- Industry tags & Lead magnet ---------- */
.ind-tags { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.ind-tag {
  display: inline-flex; align-items: center;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.01em;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.5rem 1rem;
  border-radius: 999px;
}
.lead-magnet {
  max-width: 46rem;
  margin: 3.5rem auto 0;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .lead-magnet { padding: 2.75rem 2.5rem; }
}
.lead-body { max-width: 26rem; margin: 1.75rem auto 0; text-align: left; }
.lead-kicker {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--steel); margin-bottom: 0.85rem;
}
.lead-list { margin: 0; }
.lead-list li { margin-bottom: 0.65rem; font-size: 0.95rem; color: var(--ink); }
.lead-list li:last-child { margin-bottom: 0; }

/* ---------- Industry Experience: supply-chain capability grid ---------- */
.ind-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ind-grid { grid-template-columns: repeat(4, 1fr); } }
.ind-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 1.4rem 1.25rem; transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.ind-card:hover { border-color: var(--navy); box-shadow: 0 14px 36px rgba(11,36,64,0.08); transform: translateY(-2px); }
.ind-card-name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.12rem; color: var(--navy); font-weight: 600; line-height: 1.25; }
.ind-card-hub { margin-top: 0.7rem; font-size: 0.82rem; font-weight: 600; color: var(--steel); display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.ind-card-pin { color: var(--gold); font-size: 0.72rem; line-height: 1; }
.ind-card-zone {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.05em; color: var(--slate);
  background: var(--mist); border: 1px solid var(--line); padding: 0.12rem 0.5rem; border-radius: 999px;
}
.ind-card-adv { margin-top: 0.7rem; font-size: 0.86rem; color: var(--slate); font-weight: 300; line-height: 1.55; }
/* Knowledge-asset CTA band */
.ind-cta {
  margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between;
  background: var(--navy); color: #fff; border-radius: 14px; padding: 1.75rem 2rem;
}
.ind-cta h3 { color: #fff; }
.ind-cta p { color: rgba(255,255,255,0.78); }
.ind-cta .eyebrow { color: var(--gold); }
.ind-cta a { flex: none; }

/* ---------- Buyer Profiles (needs, not testimonials) ---------- */
.bpf-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .bpf-grid { grid-template-columns: repeat(3, 1fr); } }
.bpf-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.75rem; }
.bpf-card .badge { display: inline-block; }
.bpf-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.2rem; color: var(--navy); font-weight: 600; }
.bpf-intro { margin-top: 0.6rem; font-size: 0.9rem; color: var(--slate); font-weight: 300; line-height: 1.5; }
.bpf-needs { margin: 1rem 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.bpf-needs li { position: relative; padding-left: 1.4rem; font-size: 0.9rem; color: var(--ink); font-weight: 300; line-height: 1.5; }
.bpf-needs li::before {
  content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px;
  border-right: 2px solid var(--steel); border-bottom: 2px solid var(--steel);
  transform: translateY(-50%) rotate(45deg);
}

/* ---------- Pricing (price-card system) ---------- */
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(11,36,64,0.10); }
.price-card-featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 22px 54px rgba(11,36,64,0.28);
}
.price-card-featured .price-name,
.price-card-featured .price-tagline,
.price-card-featured .price-amount { color: #fff; }
.price-card-featured .price-per { color: rgba(255,255,255,0.7); }
.price-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem; font-weight: 600; color: var(--navy);
}
.price-tagline { color: var(--slate); font-size: 0.9rem; font-weight: 300; margin-top: 0.4rem; }
.price-amount {
  font-family: 'Playfair Display', Georgia, serif; font-weight: 700;
  font-size: 1.95rem; color: var(--navy); margin: 1rem 0 0.4rem; line-height: 1;
  letter-spacing: -0.01em;
}
.price-cur { font-size: 1.2rem; vertical-align: super; margin-right: 0.1rem; }
.price-per { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 400; color: var(--slate); margin-left: 0.25rem; }
.price-feats { list-style: none; padding: 0; margin: 1.25rem 0 0; display: flex; flex-direction: column; gap: 0.65rem; }
.price-feats li { position: relative; padding-left: 1.5rem; font-size: 0.9rem; color: var(--slate); font-weight: 300; line-height: 1.5; }
.price-feats li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--steel); font-weight: 700; }
.price-card-featured .price-feats li { color: rgba(255,255,255,0.85); }
.price-card-featured .price-feats li::before { color: rgba(255,255,255,0.9); }
.price-badge {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: var(--steel); color: #fff; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 0.35rem 0.9rem;
  border-radius: 999px; white-space: nowrap; box-shadow: 0 6px 16px rgba(11,36,64,0.3);
}
/* Exhibition Support — "Most Booked" recommendation accent (gold, no price emphasis) */
.price-card-most {
  border: 2px solid var(--gold);
  box-shadow: 0 18px 44px rgba(201,162,75,0.18);
}
.price-card-most:hover { box-shadow: 0 22px 50px rgba(201,162,75,0.28); }
.price-badge-gold {
  background: var(--gold); color: var(--navy); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 0.4rem 1.1rem;
  border-radius: 999px; white-space: nowrap; box-shadow: 0 8px 20px rgba(201,162,75,0.42);
}
/* International Network note (moved into About per launch review) */
.global-net {
  margin-top: 3rem;
  padding: 1.5rem 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
}
.global-net-copy { color: var(--slate); font-weight: 300; font-size: 0.95rem; line-height: 1.7; max-width: 62ch; }
/* Pricing currency + payment note (Part 八/十 of launch review) */
.price-note {
  margin: 2rem auto 0;
  max-width: 46rem;
  text-align: center;
  color: var(--slate);
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.7;
}
.price-card-featured .btn-primary { background: #fff; color: var(--navy); border-color: #fff; }
.price-card-featured .btn-primary:hover { background: rgba(255,255,255,0.9); }

/* ---------- FAQ accordion ---------- */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding-top: 0;
}
.faq.open .faq-a { max-height: 240px; }
.faq.open .faq-icon { transform: rotate(45deg); }
.faq-icon { transition: transform .3s ease; display: inline-block; }

/* ---------- Contact ---------- */
.contact-row {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color .2s ease;
}
.contact-row:hover { color: #fff; }

.field { display: flex; flex-direction: column; margin-bottom: 0.25rem; }
.field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 0.35rem;
}
.field input,
.field select,
.field textarea {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 6px;
  width: 100%;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
}
.field textarea { resize: vertical; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-hint { animation: none; }
}

/* ---------- Service inline CTA ---------- */
.service-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.service-link:hover { color: var(--steel); border-bottom-color: var(--steel); }

/* ---------- Dark outline button (used by pricing + form) ---------- */
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid var(--navy);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.btn-outline-dark:hover { background: var(--navy); color: #fff; }

/* ---------- Contact: what happens next ---------- */
.next-steps ol { list-style: none; padding: 0; margin: 0; }
.next-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem; height: 1.5rem;
  margin-right: 0.6rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ---------- Inline form validation ---------- */
.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: #c0392b;
  background: #fff;
}
.field-error {
  color: #c0392b;
  font-size: 0.78rem;
  margin-top: 0.3rem;
  display: none;
}
.field-error.show { display: block; }

/* ---------- Mobile sticky CTA (glassmorphism) ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(11,36,64,0.10);
  transform: translateY(120%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta .btn-primary { margin: 0; }
@media (min-width: 1024px) { .mobile-cta { display: none; } }

/* ---------- Mobile menu slide-down ---------- */
#mobileMenu.open { max-height: 30rem; opacity: 1; }

/* ---------- Smart-CTA hint ---------- */
.field-hint { margin-top: 0.4rem; font-size: 0.78rem; color: var(--steel); display: none; }
.field-hint.show { display: block; }

/* ---------- Copy-email badge ---------- */
.copy-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em;
  color: #fff; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.3rem 0.7rem; border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.copy-badge:hover { background: rgba(255,255,255,0.22); }
.copy-badge.copied { background: #fff; color: var(--navy); border-color: #fff; }

/* ---------- Recommended badge (featured pricing) ---------- */
/* ---------- Focus visibility (a11y) ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--steel);
  outline-offset: 2px;
}

/* ---------- Hero trust bullets ---------- */
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; display: inline-block; flex: none;
}

/* ---------- Supplier Verification feature (navy) ---------- */
.sv-feature { background: var(--navy); color: #fff; }
.sv-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex; flex-direction: column;
}
.sv-num {
  color: var(--steel);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em;
}
.sv-item h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.15rem; }
.sv-item p { color: rgba(255,255,255,0.72); font-weight: 300; margin-top: 0.4rem; font-size: 0.9rem; line-height: 1.55; }
.sv-item-cta {
  background: rgba(62,109,156,0.18);
  border-color: rgba(255,255,255,0.28);
  justify-content: center;
}
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: #fff; font-weight: 600; font-size: 0.9rem;
  padding: 0.6rem 1.1rem; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.55);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.btn-outline-light:hover { background: #fff; color: var(--navy); }

/* ---------- Solutions (intent-mapped) ---------- */
.solution {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2rem;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.solution:hover { border-color: var(--navy); box-shadow: 0 14px 36px rgba(11,36,64,0.08); transform: translateY(-2px); }
.intent {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--steel);
}
.solution h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.6rem; color: var(--navy); }
.solution > p { color: var(--slate); font-weight: 300; margin-top: 0.75rem; line-height: 1.6; }
.solution .service-link { margin-top: 1.25rem; }

/* ---------- Case studies (structured) ---------- */
.case {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 2rem; display: flex; flex-direction: column;
}
.case .badge { align-self: flex-start; }
.case-body { margin: 0; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.85rem; }
.case-row { display: grid; grid-template-columns: 110px 1fr; gap: 0.5rem 1rem; }
.case-row dt {
  color: var(--steel); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.06em; font-weight: 700; margin: 0;
}
.case-row dd { color: var(--slate); font-weight: 300; margin: 0; line-height: 1.5; }

/* ---------- Hero stat strip ---------- */
.hero-stat { border-left: 2px solid rgba(255,255,255,0.25); padding-left: 1rem; }
.hero-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem; font-weight: 700; color: #fff; line-height: 1.1;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 0.3rem; }

/* ---------- Sample report preview card ---------- */
.report-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 16px 40px rgba(11,36,64,0.10);
}
.report-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
  padding-bottom: 1.1rem; border-bottom: 1px solid var(--line);
}
.report-brand { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; letter-spacing: 0.04em; color: var(--navy); font-size: 1.05rem; }
.report-sub { font-size: 0.72rem; color: var(--slate); margin-top: 0.2rem; }
.report-badge {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--steel); border: 1px solid var(--steel); border-radius: 999px;
  padding: 0.25rem 0.6rem; flex: none; white-space: nowrap;
}
.report-score { display: flex; align-items: center; gap: 1.1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.score-ring {
  width: 78px; height: 78px; flex: none; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: conic-gradient(#22C55E 0% 88%, var(--line) 88% 100%);
  position: relative;
}
.score-ring::before { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: #fff; }
.score-num { position: relative; font-family: 'Playfair Display', Georgia, serif; font-weight: 700; font-size: 1.5rem; color: var(--navy); line-height: 1; }
.score-den { position: relative; font-size: 0.7rem; color: var(--slate); }
.score-grade { font-weight: 700; color: #15803d; font-size: 0.95rem; }
.score-label { font-size: 0.78rem; color: var(--slate); margin-top: 0.15rem; }
.report-checks { padding: 1rem 0; display: flex; flex-direction: column; gap: 0.6rem; }
.check-row { display: grid; grid-template-columns: 1.4rem 1fr auto; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--ink); }
.check-ic { width: 1.25rem; height: 1.25rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: #fff; }
.check-ic.pass { background: #22C55E; }
.check-ic.fail { background: #D97706; }
.check-val { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; padding: 0.15rem 0.5rem; border-radius: 999px; }
.check-val.pass { color: #15803d; background: rgba(34,197,94,0.12); }
.check-val.fail { color: #B45309; background: rgba(217,119,6,0.12); }
.report-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.report-ph { position: relative; aspect-ratio: 1 / 1; border-radius: 8px; background: linear-gradient(135deg, #e7edf2, #d4dde5); border: 1px solid var(--line); overflow: hidden; }
.report-ph-cap { position: absolute; left: 0; right: 0; bottom: 0; font-size: 0.62rem; color: #fff; padding: 0.3rem 0.4rem; background: linear-gradient(transparent, rgba(8,27,48,0.8)); }

/* ---------- Multi-step lead form ---------- */
.form-steps { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.form-step {
  flex: 1; text-align: center; font-size: 0.74rem; font-weight: 600; color: var(--slate);
  padding: 0.5rem 0.25rem; border-radius: 6px; background: var(--mist);
  border: 1px solid var(--line); transition: all .25s ease;
}
.form-step.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.form-panel.hidden { display: none; }
.need-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 560px) { .need-grid { grid-template-columns: repeat(3, 1fr); } }
.need-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.25rem;
  text-align: left; padding: 1rem; border-radius: 10px; border: 1px solid var(--line);
  background: #fff; cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.need-card:hover { border-color: var(--steel); }
.need-card.selected { border-color: var(--navy); background: var(--mist); box-shadow: 0 0 0 2px rgba(11,36,64,0.15); }
.need-ic { font-size: 1.4rem; }
.need-title { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.need-sub { font-size: 0.75rem; color: var(--slate); }
.nda-check { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--slate); cursor: pointer; }
.nda-check input { margin-top: 0.2rem; width: 1rem; height: 1rem; accent-color: var(--navy); flex: none; }
#formStatus { color: #15803d; }

/* ---------- (modal system removed: no modal markup in page) ---------- */

/* ---------- Footer NDA guarantee ---------- */
.nda-guarantee { font-size: 0.78rem; color: rgba(255,255,255,0.7); white-space: nowrap; }

/* ---------- Subtle paper grain (global, non-blocking) ---------- */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { body::after { display: none; } }

/* ---------- Editorial section marker (number + gold rule) ---------- */
.sec-marker {
  display: flex; align-items: center; gap: 1.1rem;
  margin-bottom: 2.25rem;
}
.sec-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem; font-weight: 700; line-height: 1;
  color: rgba(11,36,64,0.13); letter-spacing: 0.02em; flex: none;
}
.sec-rule {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-line) 35%, transparent 100%);
}
.sv-feature .sec-num, .bg-navy .sec-num { color: rgba(255,255,255,0.18); }

/* ---------- Brass-gold microcopy (bilingual EN/ZH) ---------- */
.bi-micro {
  display: block; margin-top: 0.7rem;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.03em;
  color: var(--gold);
}
.bi-micro::before { content: "·  "; color: var(--gold-line); }

/* ---------- Refined card hover (shadow + gradient border) ---------- */
.solution, .case, .price-card, .need-card {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.solution:hover, .case:hover, .price-card:hover {
  border-color: var(--gold-line);
  box-shadow: 0 18px 46px rgba(11,36,64,0.10), 0 0 0 1px var(--gold-soft);
}

/* ---------- Button arrow micro-motion ---------- */
.btn-primary svg, .btn-outline svg, .btn-outline-dark svg { transition: transform .25s ease; }
.btn-primary:hover svg, .btn-outline:hover svg, .btn-outline-dark:hover svg { transform: translateX(3px); }

/* ---------- Hero slow zoom (background feels like a living image) ---------- */
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.16); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg::before { animation: none; }
  .hero-greet-item { transition: none; }
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  z-index: 60; background: var(--gold);
  transition: width .08s linear; pointer-events: none;
}

/* ---------- Back-to-top ---------- */
.back-to-top {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 55;
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--navy); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(11,36,64,0.30);
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
}
.back-to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover { background: var(--navy-light); }
@media (max-width: 1023px) { .back-to-top { bottom: 9.5rem; } }

.report-ph {
  background: linear-gradient(135deg, #f4f6f8, #e7edf2);
  color: var(--steel);
  display: flex; align-items: center; justify-content: center;
}
.report-ph svg { width: 44%; height: 44%; opacity: 0.5; }
.report-ph img,
.report-ph-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Hero stat count-up polish ---------- */
.hero-stat-num { transition: color .3s ease; }

/* ---------- Pricing: bilingual sub + day-rate tiers + quote ---------- */
.price-name-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--steel);
  margin-top: 0.35rem;
  text-transform: none;
}
.price-card-featured .price-name-sub { color: rgba(255,255,255,0.72); }
.price-feats strong { color: var(--navy); font-weight: 600; }
.price-card-featured .price-feats strong { color: #fff; }
.price-amount-quote {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.5rem;
  line-height: 1.1;
}
.price-amount-quote small {
  font-size: 0.72rem; font-weight: 400; color: var(--slate);
  margin-top: 0.25rem; font-family: var(--sans);
}

/* ---------- Hero chips (highlight capabilities) ---------- */
.hero-chip {
  display: inline-flex; align-items: center;
  font-size: 0.9rem; font-weight: 500; color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.5rem 1rem; border-radius: 999px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
}

/* ---------- Report preview: sample note ---------- */
.report-sample-note {
  margin-top: 1rem; padding-top: 0.75rem; border-top: 1px dashed var(--line);
  font-size: 0.72rem; color: var(--slate); font-style: italic; line-height: 1.5;
}

/* ---------- How It Works cards ---------- */
.hiw-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 2rem 1.75rem; display: flex; flex-direction: column;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.hiw-card:hover { border-color: var(--navy); box-shadow: 0 16px 40px rgba(11,36,64,0.08); transform: translateY(-3px); }
.hiw-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; color: var(--steel);
}
.hiw-ic {
  margin-top: 1rem; width: 3.25rem; height: 3.25rem; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--mist); color: var(--navy);
}
.hiw-card h3 { margin-top: 1.1rem; }

/* ---------- Case studies: example scenario body ---------- */
.ex-body { margin: 1.25rem 0 0; display: flex; flex-direction: column; gap: 0.85rem; }
.ex-row { display: grid; grid-template-columns: 92px 1fr; gap: 0.5rem 1rem; }
.ex-k {
  color: var(--steel); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 700; margin: 0;
}
.ex-v { color: var(--slate); font-weight: 300; margin: 0; line-height: 1.55; font-size: 0.9rem; }

/* ---------- Team & Trust ---------- */
.team-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.founder {
  background: var(--mist); border: 1px solid var(--line); border-radius: 14px;
  padding: 2.25rem; display: flex; flex-direction: column;
}
.founder-ph {
  width: 4.5rem; height: 4.5rem; border-radius: 12px;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.net {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 2.25rem;
}
.net-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.net-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; color: var(--slate); font-weight: 300; line-height: 1.55; }
.net-ic { color: var(--steel); font-weight: 700; flex: none; line-height: 1.4; }
.lang-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.lang-pill {
  font-size: 0.78rem; font-weight: 500; color: var(--navy);
  background: var(--mist); border: 1px solid var(--line);
  padding: 0.35rem 0.8rem; border-radius: 999px;
}

/* ---------- Pricing: "starting from" label ---------- */
.price-from {
  margin-top: 1.1rem; font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--slate);
}
.price-card-featured .price-from { color: rgba(255,255,255,0.72); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 1.25rem; bottom: 5.5rem; z-index: 45;
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: #25D366; color: #fff;
  padding: 0.8rem 1.35rem; border-radius: 999px;
  box-shadow: 0 12px 30px rgba(37,211,102,0.4);
  text-decoration: none; font-weight: 700; font-size: 1rem;
  opacity: 0; transform: translateY(20px) scale(0.92); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, box-shadow .25s ease;
}
.wa-float.show { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(37,211,102,0.5); color: #fff; }
/* subtle attention pulse ring */
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
  animation: waPulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-float-txt { line-height: 1; }
@media (max-width: 1023px) { .wa-float { bottom: 5.5rem; right: 1rem; padding: 0.7rem 1.1rem; font-size: 0.92rem; } }

/* ---------- Local Execution Network: honest photo placeholders ---------- */
.net-photo-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .net-photo-grid { grid-template-columns: repeat(4, 1fr); } }
.net-photo { margin: 0; }
.net-photo figcaption {
  margin-top: 0.55rem; font-size: 0.85rem; color: var(--navy); font-weight: 500;
  display: flex; flex-direction: column; gap: 0.1rem;
}
.net-photo figcaption small {
  font-size: 0.68rem; font-weight: 400; color: var(--slate); letter-spacing: 0.04em; text-transform: uppercase;
}
.net-photo-note {
  margin-top: 1rem; font-size: 0.78rem; color: var(--slate); font-weight: 300; line-height: 1.55;
  border-left: 3px solid #C9A24B; padding-left: 0.85rem; max-width: 60ch;
}

/* ---------- Additional Local Assistance ---------- */
.add-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .add-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .add-grid { grid-template-columns: repeat(3, 1fr); } }
.add-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 1.5rem 1.25rem; transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.add-card:hover { border-color: var(--navy); box-shadow: 0 14px 36px rgba(11,36,64,0.08); transform: translateY(-2px); }
.add-ic {
  width: 2.75rem; height: 2.75rem; border-radius: 10px;
  background: var(--mist); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Pricing: reservation policy note ---------- */
.reserve-note {
  margin-top: 2.5rem; display: flex; gap: 0.85rem; align-items: flex-start;
  background: var(--mist); border: 1px solid var(--line); border-radius: 12px;
  padding: 1.25rem 1.5rem; max-width: 60rem;
}
.reserve-ic { font-size: 1.1rem; line-height: 1.4; flex: none; }
.reserve-note p { font-size: 0.9rem; color: var(--slate); font-weight: 300; line-height: 1.6; }
.reserve-note strong { color: var(--navy); font-weight: 600; }

/* ---------- Pricing: bespoke top tier (China Representative) ---------- */
.price-custom {
  margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: center; justify-content: space-between;
  background: var(--navy); color: #fff; border-radius: 14px;
  padding: 1.75rem 2rem;
  border: 1px solid var(--gold-line);
  box-shadow: 0 18px 46px rgba(11,36,64,0.16);
}
.price-custom-info { flex: 1 1 20rem; }
.price-custom-info p { color: rgba(255,255,255,0.78); }
.price-custom-info h3 { color: #fff; }
.price-custom-cta { display: flex; flex-direction: column; align-items: flex-start; }
.price-custom .price-amount { color: #fff; }
.price-custom .price-per { color: rgba(255,255,255,0.7); }
.price-custom .price-from { color: rgba(255,255,255,0.7); }
.price-custom .btn-outline-dark {
  color: #fff; border-color: rgba(255,255,255,0.5); background: transparent;
}
.price-custom .btn-outline-dark:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ---------- Contact: primary (WhatsApp) emphasis ---------- */
.contact-row-primary {
  background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.4);
  color: #eafff2;
}
.contact-row-primary:hover { background: rgba(37,211,102,0.22); color: #fff; }

/* ---------- Header logo ---------- */
.nav-logo {
  height: 2.25rem; width: auto;
  border-radius: 6px;
  background: #fff;
  padding: 0.15rem;
  flex: none;
}

/* ---------- Local Execution Network: real photos ---------- */
.net-photo-img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 12px;
  border: 1px solid rgba(11,36,64,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.net-photo:hover .net-photo-img { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(11,36,64,0.12); }

/* ---------- WhatsApp QR code ---------- */
.qr-wrap {
  margin-top: 0.75rem;
  display: inline-flex; align-items: center; gap: 1rem;
}
.qr-code {
  width: 92px; height: 92px;
  flex: none;
}
.qr-note { font-size: 0.85rem; color: rgba(255,255,255,0.72); font-weight: 300; line-height: 1.5; max-width: 18ch; }
@media (max-width: 480px) {
  .qr-wrap { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .qr-note { max-width: none; }
}

/* ============================================================
   CONVERSION LAYER — "book today" modules
   ============================================================ */

/* ---------- Booking Process (vertical timeline) ---------- */
.bp { display: flex; flex-direction: column; margin-top: 1rem; }
.bp-step { display: grid; grid-template-columns: auto 1fr; gap: 1.35rem; padding-bottom: 2rem; }
.bp-step:last-child { padding-bottom: 0; }
.bp-marker { display: flex; flex-direction: column; align-items: center; }
.bp-dot {
  width: 2.6rem; height: 2.6rem; border-radius: 50%; flex: none; z-index: 1;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', Georgia, serif; font-weight: 700; font-size: 1.1rem;
  box-shadow: 0 0 0 5px rgba(11,36,64,0.06);
}
.bp-line { width: 2px; flex: 1; min-height: 1.5rem; margin: 0.3rem 0;
  background: linear-gradient(var(--gold), var(--gold-line)); }
.bp-step:last-child .bp-line { display: none; }
.bp-body { padding-top: 0.3rem; }
.bp-body h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.22rem; color: var(--navy); font-weight: 600; }
.bp-body p { margin-top: 0.45rem; color: var(--slate); font-weight: 300; line-height: 1.6; font-size: 0.95rem; }
.bp-cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- What's Included / Not Included ---------- */
.inc-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-top: 1rem; }
@media (min-width: 768px) { .inc-grid { grid-template-columns: 1fr 1fr; } }
.inc-grid.single { grid-template-columns: 1fr; max-width: 34rem; }
.inc-col { border: 1px solid var(--line); border-radius: 14px; padding: 1.75rem; background: #fff; }
.inc-col.no { background: var(--mist); }
.inc-col h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; color: var(--navy);
  display: flex; align-items: center; gap: 0.55rem; }
.inc-list { list-style: none; padding: 0; margin: 1.1rem 0 0; display: flex; flex-direction: column; gap: 0.7rem; }
.inc-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.95rem; color: var(--ink);
  font-weight: 300; line-height: 1.5; }
.inc-yes { color: #15803d; font-weight: 700; flex: none; font-size: 1rem; }
.inc-no { color: #B45309; font-weight: 700; flex: none; font-size: 1rem; }

/* ---------- Reservation Policy ---------- */
.reserve-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: 1rem; max-width: 62rem; }
.reserve-list li { display: flex; gap: 0.9rem; align-items: flex-start; background: var(--mist);
  border: 1px solid var(--line); border-radius: 12px; padding: 1.1rem 1.35rem; }
.reserve-list .r-ic { color: var(--steel); font-weight: 700; flex: none; line-height: 1.4; }
.reserve-list .r-t { font-weight: 600; color: var(--navy); font-size: 0.96rem; }
.reserve-list .r-d { color: var(--slate); font-weight: 300; font-size: 0.9rem; margin-top: 0.2rem; line-height: 1.55; }

/* ---------- Upcoming Availability ---------- */
.avail { display: grid; gap: 1rem; grid-template-columns: 1fr; max-width: 62rem; margin-top: 1rem; }
@media (min-width: 640px) { .avail { grid-template-columns: repeat(3, 1fr); } }
.avail-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.65rem; }
.avail-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; color: var(--navy); }
.avail-status { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.78rem; font-weight: 600;
  padding: 0.3rem 0.7rem; border-radius: 999px; width: fit-content; }
.avail-status .dot { width: 7px; height: 7px; border-radius: 50%; }
.avail-status.open { color: #15803d; background: rgba(34,197,94,0.12); }
.avail-status.open .dot { background: #22C55E; }
.avail-status.limited { color: #B45309; background: rgba(217,119,6,0.12); }
.avail-status.limited .dot { background: #D97706; }
.avail-note { font-size: 0.85rem; color: var(--slate); font-weight: 300; margin-top: 0.5rem; }

/* ---------- Why Buyers Choose Us ---------- */
.reason-ic { width: 2.75rem; height: 2.75rem; border-radius: 10px; background: var(--mist); color: var(--navy);
  display: flex; align-items: center; justify-content: center; }

/* ---------- Languages Supported (bottom) ---------- */
.langs { text-align: center; max-width: 52rem; margin: 0 auto; }
.langs-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1.5rem; }
.langs-pill { font-size: 0.85rem; font-weight: 500; color: var(--navy); background: #fff;
  border: 1px solid var(--line); padding: 0.5rem 1rem; border-radius: 999px; }
.langs-note { margin-top: 1.25rem; font-size: 0.85rem; color: var(--slate); font-weight: 300; }

/* ---------- FAQ accordion (full styling) ---------- */
.faq-list { border-top: 1px solid var(--line); margin-top: 1rem; }
.faq { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: none; cursor: pointer; text-align: left;
  padding: 1.25rem 0.25rem; font-family: 'Inter', sans-serif;
  font-size: 1.02rem; font-weight: 600; color: var(--navy);
}
.faq-q:hover { color: var(--steel); }
.faq-icon { flex: none; font-size: 1.5rem; color: var(--steel); line-height: 1; transition: transform .3s ease; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; padding: 0 0.25rem; }
.faq-a-inner { padding-bottom: 1.4rem; color: var(--slate); font-weight: 300; line-height: 1.7; font-size: 0.95rem; }
.faq-a-inner a { color: var(--steel); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Dual Support Team (core trust module) ---------- */
.dual-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2rem;
  display: flex; flex-direction: column;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.dual-card:hover { border-color: var(--navy); box-shadow: 0 14px 36px rgba(11,36,64,0.08); transform: translateY(-2px); }
.dual-ic {
  width: 3rem; height: 3rem; border-radius: 10px;
  background: rgba(62,109,156,0.12); color: var(--steel);
  display: flex; align-items: center; justify-content: center;
}
.dual-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; color: var(--navy); margin-top: 1.2rem; line-height: 1.25; }
.dual-card p { margin-top: 0.6rem; color: var(--slate); font-weight: 300; font-size: 0.94rem; line-height: 1.62; }

/* Two-person role structure */
.dual-role {
  background: var(--mist); border: 1px solid var(--line); border-radius: 12px; padding: 1.6rem;
}
.dual-role-tag {
  font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--steel); margin-bottom: 0.5rem;
}
.dual-role h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 0.9rem; line-height: 1.25; }
.dual-role-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.dual-role-list li { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.92rem; color: var(--ink); font-weight: 400; line-height: 1.5; }
.dual-role-list li::before { content: "✓"; color: var(--steel); font-weight: 700; flex: none; line-height: 1.5; }

/* Buyer confidence checklist */
.confident-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; }
@media (max-width: 640px) { .confident-list { grid-template-columns: 1fr; } }
.confident-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 1rem; color: var(--ink); font-weight: 400; line-height: 1.5; }
.confident-ic {
  width: 1.6rem; height: 1.6rem; border-radius: 999px; flex: none; margin-top: 0.1rem;
  background: rgba(62,109,156,0.12); color: var(--steel);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700;
}

/* Figure captions */
.why-fig { margin: 0; }
.why-fig img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-fig figcaption, .net-photo figcaption {
  margin-top: 0.6rem; font-size: 0.8rem; color: var(--slate); font-weight: 400; letter-spacing: 0.01em;
}
.cap-note { font-size: 0.78rem; color: var(--slate); opacity: 0.85; margin-top: 0.25rem; }

/* ============================================================
   Service router ("Which service fits your China trip?")
   ============================================================ */
.router-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px)  { .router-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .router-grid { grid-template-columns: repeat(4, 1fr); } }
.router-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 1rem;
  padding: 1.75rem 1.5rem; display: flex; flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.router-card:hover { box-shadow: 0 16px 44px -20px rgba(11,36,64,.38); transform: translateY(-3px); border-color: var(--gold); }
.router-step { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel); font-weight: 600; }
.router-scenario { font-family: var(--serif); font-size: 1.22rem; color: var(--navy); margin: 0.65rem 0 0.5rem; line-height: 1.25; }
.router-desc { color: var(--slate); font-size: 0.95rem; font-weight: 300; line-height: 1.6; flex: 1; }
.router-rec { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.1rem; font-size: 0.82rem; color: var(--ink); font-weight: 400; }
.router-rec .r-tag { background: var(--mist); border: 1px solid var(--line); color: var(--steel); padding: 0.16rem 0.6rem; border-radius: 999px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.03em; white-space: nowrap; }
.router-link { margin-top: 0.9rem; color: var(--gold); font-weight: 600; font-size: 0.9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem; transition: gap .2s ease; }
.router-link:hover { gap: 0.55rem; }
.router-foot { margin-top: 2.5rem; text-align: center; }
.router-foot p { color: var(--slate); font-size: 1rem; font-weight: 300; }
.router-foot a { color: var(--navy); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

/* ---------- Nav dropdown (Services) ---------- */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 0.9rem); left: 50%; transform: translateX(-50%);
  min-width: 16rem; list-style: none; margin: 0; padding: 0.5rem;
  background: var(--navy-dark); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 0.85rem; box-shadow: 0 20px 50px -18px rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 60;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown::before { content: ""; position: absolute; top: -0.9rem; left: 0; right: 0; height: 0.9rem; }
.dropdown li a {
  display: block; padding: 0.6rem 0.85rem; border-radius: 0.5rem;
  color: rgba(255,255,255,0.82); font-size: 0.9rem; font-weight: 400; text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.dropdown li a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.dropdown-sep { height: 1px; background: rgba(255,255,255,0.10); margin: 0.4rem 0.5rem; }
@media (max-width: 1023px) { .has-dropdown .dropdown { display: none; } }

/* ============================================================
   SUBTRACTION REFACTOR — refined NASA / Apple components
   Fewer cards, more whitespace, smaller radius, lighter shadow,
   restrained palette (deep navy / white / gold accent).
   ============================================================ */

/* ---------- Global restraint: smaller radius, lighter shadow ---------- */
.price-card,
.report-card,
.dual-card,
.solution,
.case,
.add-card,
.hiw-card,
.net-photo-img,
.inc-col,
.avail-card,
.founder,
.net,
.need-card,
.price-custom,
.scn {
  border-radius: 12px;
}
.price-card:hover,
.solution:hover,
.case:hover,
.add-card:hover,
.hiw-card:hover,
.dual-card:hover {
  box-shadow: 0 10px 30px rgba(11,36,64,0.08);
  border-color: var(--line);
}

/* ---------- 2. Trust Signals (NASA metric bar) ---------- */
.trustbar { background: var(--navy); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-cell {
  padding: 2rem 1rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.trust-cell:last-child { border-right: none; }
.trust-cell + .trust-cell { border-left: 1px solid rgba(255,255,255,0.06); }
@media (min-width: 768px) { .trust-cell:nth-child(2) { border-left: 1px solid rgba(255,255,255,0.10); } }
.trust-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.6rem; font-weight: 700; line-height: 1; color: #fff;
}
.trust-num .u { color: var(--gold); }
.trust-label {
  margin-top: 0.65rem; font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.70);
}

/* ---------- 4. Services (editorial list, not cards) ---------- */
.svc-list { display: grid; }
.svc {
  display: grid; grid-template-columns: 4.5rem 1fr; gap: 1.5rem 2.5rem;
  padding: 2.75rem 0; border-top: 1px solid var(--line);
}
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem; font-weight: 700; line-height: 1; color: var(--gold);
}
.svc h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.7rem; color: var(--navy); font-weight: 600; }
.svc-value { margin-top: 0.6rem; color: var(--slate); font-weight: 300; max-width: 44rem; line-height: 1.6; }
.svc-bullets { margin-top: 1.1rem; list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem 1.75rem; }
.svc-bullets li { position: relative; padding-left: 1.1rem; color: var(--ink); font-size: 0.92rem; font-weight: 400; }
.svc-bullets li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--steel);
}
@media (min-width: 768px) {
  .svc-bullets { display: grid; grid-template-columns: repeat(3, minmax(0, max-content)); gap: 0.6rem 2.5rem; }
}

/* ---------- 5. Typical Client Scenarios ---------- */
.scn-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .scn-grid { grid-template-columns: repeat(3, 1fr); } }
.scn { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.75rem; }
.scn .badge { display: inline-block; }
.scn h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.2rem; color: var(--navy); font-weight: 600; }
.scn-row { display: grid; grid-template-columns: 78px 1fr; gap: 0.4rem 1rem; margin-top: 0.95rem; }
.scn-k { color: var(--steel); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 700; margin: 0; }
.scn-v { color: var(--slate); font-weight: 300; font-size: 0.9rem; line-height: 1.55; margin: 0; }

/* ---------- Additional Business Support (compact band) ---------- */
.addband { background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.addband-grid { display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; }
.addband-item { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--navy); font-weight: 500; font-size: 0.98rem; }
.addband-item::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }

/* ---------- Languages (compact, near footer) ---------- */
.langband { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.75rem; }
.langband-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.langband-pill {
  font-size: 0.82rem; color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.22); padding: 0.4rem 0.9rem; border-radius: 999px;
  background: rgba(255,255,255,0.04);
}

/* ---------- 8. Final CTA block (deep navy, single focal point) ---------- */
.contact-final {
  background: var(--navy); color: #fff; border-radius: 16px;
  padding: 2.5rem 2rem; box-shadow: 0 24px 60px rgba(11,36,64,0.22);
}
@media (min-width: 768px) { .contact-final { padding: 3.5rem; } }
.contact-final .contact-row { color: rgba(255,255,255,0.85); }
.contact-final .contact-row:hover { color: #fff; }
.contact-final .eyebrow { color: rgba(255,255,255,0.6); }

/* ============================================================
   RESTORED ORIGINAL — Two-Person Team benefit grid
   ============================================================ */
.benefit-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; margin-top: 2.75rem; }
@media (min-width: 768px) { .benefit-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit {
  background: var(--mist); border: 1px solid var(--line); border-radius: 12px; padding: 1.5rem;
}
.benefit-ic {
  width: 2.75rem; height: 2.75rem; border-radius: 10px;
  background: rgba(62,109,156,0.12); color: var(--steel);
  display: flex; align-items: center; justify-content: center;
}
.benefit h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); margin-top: 1rem; }
.benefit p { margin-top: 0.5rem; color: var(--slate); font-weight: 300; font-size: 0.92rem; line-height: 1.6; }

/* ============================================================
   RESTORED ORIGINAL — full service modules (funnel order)
   ============================================================ */
.srv-list { display: grid; }
.srv { display: grid; gap: 0; padding: 2.25rem 0; border-top: 1px solid var(--line); }
.srv:last-child { border-bottom: 1px solid var(--line); }
.srv h3 { font-family: var(--serif); font-size: 1.7rem; color: var(--navy); font-weight: 600; line-height: 1.2; }
.srv-desc { margin-top: 1rem; color: var(--slate); font-weight: 300; line-height: 1.7; font-size: 1.02rem; }
.srv-bullets { margin-top: 1.25rem; list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.srv-bullets li { position: relative; padding-left: 1.4rem; color: var(--ink); font-weight: 400; font-size: 0.95rem; }
.srv-bullets li::before { content: "\2713"; position: absolute; left: 0; color: var(--steel); font-weight: 700; }
.srv-media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 14px; border: 1px solid rgba(11,36,64,0.08); display: block;
  transition: transform .3s ease, box-shadow .3s ease;
}
.srv-media:hover img { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(11,36,64,0.12); }

/* ============================================================
   BOOKING WIZARD — smart appointment flow (McKinsey/PwC minimal)
   Reuses the existing token system; no new Tailwind utilities.
   ============================================================ */
.bw-overlay {
  position: fixed; inset: 0; z-index: 90;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 5vh 1rem 2rem;
  background: rgba(8,27,48,0.60);
  backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  overflow-y: auto;
}
.bw-overlay.open { opacity: 1; visibility: visible; }
.bw-modal {
  width: 100%; max-width: 760px;
  background: #fff; border-radius: 16px;
  box-shadow: 0 34px 90px rgba(8,27,48,0.48);
  display: flex; flex-direction: column;
  transform: translateY(18px); transition: transform .35s cubic-bezier(.2,.7,.2,1);
  max-height: 90vh;
}
.bw-overlay.open .bw-modal { transform: none; }

/* Header */
.bw-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: 1.6rem 1.75rem 1.15rem;
  border-bottom: 1px solid var(--line);
}
.bw-head .eyebrow { margin: 0 0 0.45rem; }
.bw-title { font-family: var(--serif); font-size: 1.55rem; color: var(--navy); font-weight: 600; line-height: 1.12; margin: 0; }
.bw-subhead { margin: 0.45rem 0 0; color: var(--slate); font-weight: 300; font-size: 0.92rem; line-height: 1.5; }
.bw-close {
  flex: none; width: 2.4rem; height: 2.4rem; border-radius: 8px;
  border: 1px solid var(--line); background: #fff; color: var(--slate);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.bw-close:hover { border-color: var(--navy); color: var(--navy); background: var(--mist); }

/* Stepper */
.bw-steps { display: flex; padding: 1.1rem 1.75rem 0.25rem; }
.bw-step {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.45rem;
  position: relative;
}
.bw-step::before {
  content: ""; position: absolute; top: 0.95rem; left: -50%; width: 100%; height: 1.5px;
  background: var(--line); z-index: 0;
}
.bw-step:first-child::before { display: none; }
.bw-step.is-done::before { background: var(--gold); }
.bw-dot {
  position: relative; z-index: 1;
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  border: 1.5px solid var(--line); background: #fff; color: var(--slate);
  font-family: var(--sans); font-weight: 600; font-size: 0.82rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.bw-step.is-active .bw-dot { border-color: var(--navy); background: var(--navy); color: #fff; }
.bw-step.is-done .bw-dot { border-color: var(--gold); background: var(--gold); color: var(--navy); }
.bw-label {
  font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--slate); font-weight: 600; white-space: nowrap;
}
.bw-step.is-active .bw-label, .bw-step.is-done .bw-label { color: var(--navy); }

/* Body */
.bw-body { padding: 1.5rem 1.75rem; overflow-y: auto; }
.bw-panel { display: none; }
.bw-panel.active { display: block; animation: bwFade .35s ease; }
@keyframes bwFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.bw-q { font-family: var(--serif); font-size: 1.35rem; color: var(--navy); font-weight: 600; margin: 0 0 0.3rem; line-height: 1.2; }
.bw-sub { color: var(--slate); font-weight: 300; font-size: 0.95rem; margin: 0 0 1.4rem; }
.bw-err { color: #b4452f; font-size: 0.78rem; margin: 0.9rem 0 0; min-height: 1rem; }

/* Option cards */
.bw-opts { display: grid; grid-template-columns: 1fr; gap: 0.7rem; }
@media (min-width: 560px) { .bw-opts { grid-template-columns: 1fr 1fr; } }
.bw-opts.cols-3 { grid-template-columns: 1fr; }
@media (min-width: 560px) { .bw-opts.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.bw-opt {
  display: flex; align-items: flex-start; gap: 0.75rem; text-align: left;
  padding: 1rem 1.1rem; border-radius: 10px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  font-family: inherit;
}
.bw-opt:hover { border-color: var(--steel); }
.bw-opt.selected { border-color: var(--navy); background: var(--mist); box-shadow: 0 0 0 2px rgba(11,36,64,0.12); }
.bw-opt.span2 { grid-column: 1 / -1; }
.bw-mark {
  flex: none; width: 1.15rem; height: 1.15rem; margin-top: 0.12rem; border-radius: 50%;
  border: 1.5px solid var(--line); background: #fff;
  display: flex; align-items: center; justify-content: center; transition: all .2s ease;
}
.bw-opt.selected .bw-mark { border-color: var(--navy); background: var(--navy); }
.bw-opt.selected .bw-mark::after { content: ""; width: 0.42rem; height: 0.42rem; border-radius: 50%; background: #fff; }
.bw-opt-body { display: flex; flex-direction: column; gap: 0.2rem; }
.bw-opt-t { font-weight: 600; color: var(--navy); font-size: 0.97rem; line-height: 1.25; }
.bw-opt-d { font-size: 0.8rem; color: var(--slate); font-weight: 300; line-height: 1.45; }

/* Date / duration fields */
.bw-fields { display: grid; gap: 1rem; }
@media (min-width: 560px) { .bw-fields { grid-template-columns: 1fr 1fr; } }
.bw-field { display: flex; flex-direction: column; }
.bw-field-wide { grid-column: 1 / -1; }
.bw-field label {
  font-size: 0.78rem; font-weight: 600; color: var(--slate);
  margin-bottom: 0.4rem; letter-spacing: 0.02em;
}
.bw-field input, .bw-field select {
  width: 100%; font-family: var(--sans); color: var(--ink);
  background: var(--mist); border: 1px solid var(--line); border-radius: 6px;
  padding: 0.7rem 0.8rem; font-size: 0.92rem;
  transition: border-color .2s ease, background .2s ease;
}
.bw-field input:focus, .bw-field select:focus { outline: none; border-color: var(--navy); background: #fff; }

/* Footer nav */
.bw-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.75rem 1.5rem; border-top: 1px solid var(--line);
}
.bw-foot.hidden { display: none; }
.bw-back {
  background: none; border: none; color: var(--slate); font-weight: 600;
  font-size: 0.9rem; cursor: pointer; padding: 0.5rem 0.25rem; font-family: inherit;
  transition: color .2s ease;
}
.bw-back:hover { color: var(--navy); }
.bw-next {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--navy); color: #fff; font-weight: 600; font-size: 0.95rem;
  padding: 0.8rem 1.7rem; border-radius: 4px; border: 1px solid var(--navy);
  cursor: pointer; font-family: inherit; margin-left: auto;
  transition: background .25s ease, transform .2s ease, box-shadow .25s ease;
}
.bw-next:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: 0 12px 30px rgba(11,36,64,0.22); }

/* Result panel */
.bw-rec-service { font-family: var(--serif); font-size: 1.5rem; color: var(--navy); font-weight: 600; line-height: 1.18; margin: 0.4rem 0 0; }
.bw-rec-why { color: var(--ink); font-weight: 300; line-height: 1.68; margin: 1rem 0 0; font-size: 0.97rem; }
.bw-rec-priceblock { margin-top: 1.4rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.bw-rec-price-label { display: block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); font-weight: 600; }
.bw-rec-price { font-family: var(--serif); font-size: 1.7rem; color: var(--navy); font-weight: 700; line-height: 1.1; margin-top: 0.25rem; }
.bw-rec-also { margin: 1rem 0 0; font-size: 0.86rem; color: var(--slate); line-height: 1.55; }
.bw-rec-also b { color: var(--navy); font-weight: 600; }

/* Multi-select (checkbox) support in wizard — square mark + check */
.bw-opt[data-bw-multi="1"] .bw-mark { border-radius: 4px; }
.bw-opt[data-bw-multi="1"].selected .bw-mark { background: var(--navy); }
.bw-opt[data-bw-multi="1"].selected .bw-mark::after {
  content: ""; width: 0.5rem; height: 0.26rem; border: 2px solid #fff; border-top: none; border-right: none;
  border-radius: 0; background: transparent; transform: rotate(-45deg); margin-top: -0.14rem;
}

/* Recommended combination list (result) */
.bw-rec-combo { margin-top: 1.15rem; display: grid; gap: 0.7rem; }
.bw-combo-item { border: 1px solid var(--line); border-radius: 10px; padding: 0.9rem 1rem; background: #fff; }
.bw-combo-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.bw-combo-name { font-weight: 600; color: var(--navy); font-size: 1rem; line-height: 1.2; }
.bw-combo-price { font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: 0.95rem; white-space: nowrap; }
.bw-combo-desc { margin: 0.35rem 0 0; font-size: 0.82rem; color: var(--slate); font-weight: 300; line-height: 1.5; }

/* Optional contact + actions */
.bw-contact { margin-top: 1.4rem; display: grid; gap: 0.8rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .bw-contact { grid-template-columns: 1fr 1fr; } }
.bw-actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.bw-send {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--navy); color: #fff; font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 1.6rem; border-radius: 4px; border: 1px solid var(--navy);
  text-decoration: none; cursor: pointer;
  transition: background .25s ease, transform .2s ease, box-shadow .25s ease;
}
.bw-send:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: 0 12px 30px rgba(11,36,64,0.22); }
.bw-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #25D366; color: #fff; font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 1.6rem; border-radius: 4px; border: 1px solid #25D366;
  text-decoration: none; cursor: pointer;
  transition: background .25s ease, transform .2s ease, box-shadow .25s ease;
}
.bw-wa:hover { background: #1ebe5a; transform: translateY(-1px); box-shadow: 0 12px 30px rgba(37,211,102,0.4); }
.bw-wa svg { flex: none; }
.bw-note { margin: 1.1rem 0 0; font-size: 0.78rem; color: var(--slate); font-weight: 300; }

@media (max-width: 560px) {
  .bw-head { padding: 1.3rem 1.2rem 1rem; }
  .bw-steps { padding: 1rem 1.2rem 0.25rem; }
  .bw-body { padding: 1.3rem 1.2rem; }
  .bw-foot { padding: 1rem 1.2rem 1.3rem; }
  .bw-label { font-size: 0.6rem; }
  .bw-title { font-size: 1.35rem; }
}

/* Wizard: privacy agreement line + submit status */
.bw-privacy { margin: 0.9rem 0 0; font-size: 0.76rem; color: var(--slate); font-weight: 300; }
.bw-privacy a { color: var(--steel); text-decoration: underline; }
.bw-status { margin: 0.9rem 0 0; font-size: 0.82rem; color: var(--navy); font-weight: 600; }
.bw-status.hidden { display: none; }

/* Cookie consent banner */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: var(--navy); color: #fff;
  box-shadow: 0 -10px 30px rgba(11, 36, 64, 0.3);
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  max-width: 72rem; margin: 0 auto; padding: 0.9rem 1.25rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.25rem;
}
.cookie-text { margin: 0; font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.85); flex: 1 1 280px; line-height: 1.5; }
.cookie-btns { display: flex; gap: 0.6rem; flex: none; }
.cookie-btn {
  font: inherit; font-size: 0.82rem; font-weight: 600; cursor: pointer;
  padding: 0.55rem 1.2rem; border-radius: 4px; border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.cookie-accept { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.cookie-accept:hover { background: #d8b85c; }
.cookie-decline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.cookie-decline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* Legal pages (privacy.html / terms.html) */
.legal-head { background: var(--navy); }
.legal-brand { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: #fff; text-decoration: none; letter-spacing: 0.02em; }
.legal-back { color: rgba(255,255,255,0.8); font-size: 0.85rem; text-decoration: none; }
.legal-back:hover { color: #fff; }
.legal-page { max-width: 760px; margin: 0 auto; padding: 4rem 1.5rem 5rem; }
.legal-page h1 { font-family: var(--serif); font-size: 2.4rem; color: var(--navy); font-weight: 700; line-height: 1.15; margin: 0 0 0.4rem; }
.legal-page h2 { font-family: var(--serif); font-size: 1.45rem; color: var(--navy); font-weight: 600; margin: 2.3rem 0 0.8rem; line-height: 1.25; }
.legal-page p { font-family: var(--sans); color: var(--slate); line-height: 1.75; margin: 0 0 1rem; }
.legal-page ul { margin: 0 0 1.1rem 1.25rem; list-style: disc; }
.legal-page li { font-family: var(--sans); color: var(--slate); line-height: 1.7; margin: 0 0 0.45rem; }
.legal-page a { color: var(--steel); text-decoration: underline; }
.legal-page code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.82em; background: var(--mist); padding: 0.1em 0.35em; border-radius: 3px; }
.legal-updated { color: var(--slate); font-size: 0.85rem; margin: 0 0 1.8rem; }
.legal-foot-nav { display: flex; gap: 1.25rem; }
.legal-foot-nav a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.85rem; }
.legal-foot-nav a:hover { color: #fff; text-decoration: underline; }

/* Trust bar — verifiable outcome examples */
.trust-proof {
  margin: 1.6rem auto 0; max-width: 52rem; text-align: center;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 300;
  color: var(--slate); line-height: 1.65;
}
.trust-proof strong { color: var(--navy); font-weight: 600; }

