/* ==========================================================================
   Vanda Asia Advisors: site styles
   ========================================================================== */

:root {
  /* Brand colours sampled from the Vanda logo */
  --ink: #0b2545;
  --ink-2: #163a63;
  --ink-soft: #46586f;
  --muted: #6b7a8c;
  --line: #dfe6ed;
  --paper: #f7fafc;
  --paper-2: #eaf1f7;
  --white: #ffffff;
  --orchid: #0072bf;        /* primary brand blue */
  --orchid-dark: #00549d;   /* deep blue from the V */
  --orchid-tint: #e4f2fb;
  --gold: #00b3ed;          /* bright cyan accent from the logo */
  --gold-tint: #e1f6fd;
  --teal: #0086cd;
  --whatsapp: #1fa855;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-cjk: "Noto Serif SC", "Songti SC", serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(23, 25, 58, .06), 0 12px 32px -12px rgba(23, 25, 58, .18);
  --shadow-lg: 0 2px 4px rgba(23, 25, 58, .06), 0 30px 60px -20px rgba(23, 25, 58, .28);
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Chinese pages: typography + language switcher ---------- */
html[lang="zh-Hans"] {
  --font-display: "Noto Serif SC", "Songti SC", Georgia, serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}
html[lang="zh-Hant"] {
  --font-display: "Noto Serif TC", "Songti TC", Georgia, serif;
  --font-body: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
}
html[lang^="zh"] body { line-height: 1.75; }
html[lang^="zh"] h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.25; letter-spacing: 0; }
html[lang^="zh"] h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.3; letter-spacing: 0; }
html[lang^="zh"] .eyebrow { letter-spacing: .12em; }
html[lang^="zh"] .hero h1 em { font-style: normal; }
html[lang^="zh"] .btn { font-weight: 700; letter-spacing: .02em; }

.lang-switch { display: flex; align-items: center; gap: 2px; }
.lang-switch a {
  text-decoration: none; font-size: .82rem; font-weight: 700; color: var(--muted);
  padding: .35em .6em; border-radius: 8px; white-space: nowrap;
}
.lang-switch a:hover { color: var(--orchid); background: var(--orchid-tint); }
.lang-switch a[aria-current="true"] { background: var(--orchid-tint); color: var(--orchid-dark); }
@media (max-width: 1080px) {
  .nav .lang-switch { padding: 14px 0 0; border-top: 1px solid var(--line); margin-top: 8px; }
  .nav .lang-switch a { font-size: 1rem; padding: .5em .7em; }
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
@media (max-width: 600px) { .wrap { padding: 0 16px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orchid);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 40em; }
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow::before { display: none; }
.skip { position: absolute; left: -999px; top: 0; }
.skip:focus { left: 12px; top: 12px; z-index: 100; background: var(--white); padding: 8px 14px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--orchid); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .9em 1.5em; border-radius: 999px; border: 2px solid transparent;
  background: var(--bg); color: var(--fg);
  font: 700 .98rem/1.1 var(--font-body); text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); background: var(--orchid-dark); box-shadow: 0 10px 24px -10px rgba(0, 114, 191, .6); }
.btn-ghost { --bg: transparent; --fg: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; box-shadow: none; }
.btn-light { --bg: #fff; --fg: var(--ink); }
.btn-light:hover { background: var(--gold-tint); }
.btn-wa { --bg: var(--whatsapp); }
.btn-wa:hover { background: #178a45; box-shadow: 0 10px 24px -10px rgba(31, 168, 85, .6); }
.btn-sm { padding: .65em 1.1em; font-size: .9rem; }
.btn-block { width: 100%; }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 243, .88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-header.scrolled { border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { height: 34px; width: auto; }
.brand-name {
  font-family: var(--font-body); font-weight: 700; font-size: .82rem; line-height: 1.15;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2);
  padding-left: 12px; border-left: 1px solid var(--line);
}
.brand-name small { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .18em; color: var(--muted); margin-top: 3px; }
@media (max-width: 420px) { .brand-name { display: none; } .brand-logo { height: 30px; } }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a:not(.btn) { text-decoration: none; font-weight: 600; font-size: .95rem; color: var(--ink-soft); white-space: nowrap; }
html[lang^="zh"] .nav { gap: 22px; }
.nav a:not(.btn):hover { color: var(--orchid); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 8px 16px 20px;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: all .2s ease;
  }
  .nav.open { transform: none; opacity: 1; visibility: visible; box-shadow: var(--shadow); }
  .nav a:not(.btn) { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav .btn { margin-top: 16px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 8vw, 96px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 60% at 90% 10%, rgba(0, 179, 237, .14), transparent 70%),
    radial-gradient(50% 50% at 0% 100%, rgba(0, 84, 157, .10), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero h1 em { font-style: italic; color: var(--orchid); }
.hero .lede { margin: 1.25rem 0 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.quick-start { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow); max-width: 560px; }
.quick-start p { font-size: .85rem; font-weight: 700; color: var(--muted); margin: 0 0 12px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: .5em 1em; border-radius: 999px; border: 1.5px solid var(--line);
  text-decoration: none; font-weight: 600; font-size: .92rem; background: var(--paper);
  transition: all .15s ease;
}
.chip-link:hover { border-color: var(--orchid); color: var(--orchid); background: var(--orchid-tint); }
.trust-line { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 22px; padding: 0; list-style: none; font-size: .9rem; color: var(--ink-soft); }
.trust-line li { display: flex; align-items: center; gap: 8px; }
.trust-line svg { width: 18px; height: 18px; color: var(--teal); }

.route-card {
  position: relative; background: var(--ink); color: #fff;
  border-radius: 28px; padding: 28px; box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.route-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 60% at 70% 20%, rgba(158, 47, 111, .35), transparent 70%);
}
.route-card-head { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: baseline; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 700; }
.route-map { position: relative; z-index: 1; width: 100%; height: auto; margin-top: 8px; }
.route-map .dot-grid { fill: rgba(255,255,255,.12); }
.route-map .arc { fill: none; stroke: var(--gold); stroke-width: 2; stroke-dasharray: 6 7; animation: dash 30s linear infinite; }
.route-map .arc.soft { stroke: rgba(255,255,255,.35); }
.route-map .city circle.core { fill: #fff; }
.route-map .city circle.pulse { fill: none; stroke: var(--gold); stroke-width: 2; transform-box: fill-box; transform-origin: center; animation: pulse 2.6s ease-out infinite; }
.route-map .city.major circle.core { fill: var(--gold); }
.route-map text { fill: #fff; font-family: var(--font-body); font-size: 13px; font-weight: 700; }
.route-map text.cjk { font-family: var(--font-cjk); font-size: 11px; fill: rgba(255,255,255,.55); font-weight: 600; }
@keyframes dash { to { stroke-dashoffset: -400; } }
@keyframes pulse { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(2.6); opacity: 0; } }
.route-card-foot { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 6px; }
.route-card-foot div { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 10px 12px; }
.route-card-foot b { display: block; font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.route-card-foot span { font-size: .75rem; color: rgba(255,255,255,.65); }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .route-card { max-width: 520px; }
}

/* ---------- Value strip ---------- */
.value-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.value-item { padding: 28px 24px; display: flex; gap: 14px; align-items: flex-start; }
.value-item + .value-item { border-left: 1px solid var(--line); }
.value-item .icon { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--orchid-tint); color: var(--orchid); display: grid; place-items: center; }
.value-item .icon svg { width: 22px; height: 22px; }
.value-item h4 { font-family: var(--font-body); font-size: .98rem; font-weight: 700; margin: 0 0 2px; letter-spacing: 0; }
.value-item p { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.45; }
@media (max-width: 960px) {
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-item:nth-child(3) { border-left: 0; }
  .value-item:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .value-grid { grid-template-columns: 1fr; }
  .value-item + .value-item { border-left: 0; border-top: 1px solid var(--line); }
  .value-item { padding: 20px 0; }
}

/* ---------- Destinations ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dest-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dest-visual {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  display: flex; align-items: flex-end; padding: 22px; color: #fff;
  background-size: cover; background-position: center;
}
.dest-visual::before { content: ""; position: absolute; inset: 0; background: var(--grad); }
/* When you add a photo: style="--photo:url('images/singapore.jpg')" on .dest-visual */
.dest-visual::after { content: ""; position: absolute; inset: 0; background: var(--photo, none) center/cover; mix-blend-mode: luminosity; opacity: .35; }
.dest-visual .cjk { position: absolute; top: 10px; right: 14px; z-index: 1; font-family: var(--font-cjk); font-weight: 600; font-size: clamp(3.4rem, 6vw, 4.6rem); line-height: 1; color: rgba(255,255,255,.2); writing-mode: vertical-rl; letter-spacing: .05em; }
.dest-visual h3 { position: relative; z-index: 1; font-size: 1.9rem; margin: 0; }
.dest-visual .tag { position: relative; z-index: 1; display: block; font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .8; margin-bottom: 4px; }
.dest-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.dest-body p { color: var(--ink-soft); font-size: .95rem; }
.tick-list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 8px; font-size: .92rem; }
.tick-list li { display: flex; gap: 10px; align-items: flex-start; }
.tick-list li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%; background: var(--gold-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%230072bf' stroke-width='3'%3E%3Cpath d='M5 10.5l3 3 7-7'/%3E%3C/svg%3E") center/12px no-repeat; }
.dest-body .btn { margin-top: auto; align-self: flex-start; }
.grad-sg { --grad: linear-gradient(155deg, #4ec8f2 0%, #0086cd 55%, #0b2545 100%); }
.grad-hk { --grad: linear-gradient(155deg, #00b3ed 0%, #006ba3 55%, #052b3f 100%); }
.grad-cn { --grad: linear-gradient(155deg, #2f74d8 0%, #133b8a 55%, #0a1c3f 100%); }
@media (max-width: 960px) { .dest-grid { grid-template-columns: 1fr; max-width: 560px; } .dest-visual { aspect-ratio: 16 / 9; } }

/* ---------- Itineraries ---------- */
.bg-alt { background: var(--paper-2); }
.itin-toolbar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-btn { font: 600 .9rem var(--font-body); padding: .55em 1.1em; border-radius: 999px; border: 1.5px solid var(--line); background: var(--white); color: var(--ink-soft); cursor: pointer; }
.filter-btn[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.itin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.itin-card { background: var(--white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--line); display: flex; flex-direction: column; transition: border-color .2s ease, transform .2s ease; }
.itin-card:hover { border-color: var(--orchid); transform: translateY(-3px); }
.itin-card[hidden] { display: none; }
.itin-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.pill { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .35em .8em; border-radius: 999px; background: var(--orchid-tint); color: var(--orchid-dark); }
.pill.biz { background: #e3eff0; color: var(--teal); }
.pill.fam { background: var(--gold-tint); color: #8a6224; }
.days { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--muted); }
.itin-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.route { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 6px; font-size: .85rem; font-weight: 700; color: var(--teal); margin-bottom: 12px; }
.route span + span::before { content: "→"; margin-right: 6px; color: var(--gold); }
.itin-card p { font-size: .92rem; color: var(--ink-soft); flex: 1; }
.itin-card .link-cta { font-weight: 700; color: var(--orchid); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; }
.itin-card .link-cta:hover { gap: 10px; }
.itin-note { margin-top: 28px; font-size: .92rem; color: var(--muted); }
@media (max-width: 960px) { .itin-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .itin-grid { grid-template-columns: 1fr; } }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc { padding: 28px 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.svc .icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--ink); color: var(--gold); margin-bottom: 18px; }
.svc .icon svg { width: 24px; height: 24px; }
.svc h3 { font-size: 1.2rem; }
.svc p { font-size: .92rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 960px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; position: relative; }
.step-item { position: relative; }
.step-item::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--font-display); font-size: 2.8rem; font-weight: 600; color: var(--orchid); line-height: 1; margin-bottom: 14px;
}
.step-item h3 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; }
.step-item p { font-size: .94rem; color: var(--ink-soft); }
.steps-cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.steps-cta small { color: var(--muted); }
@media (max-width: 960px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Lead magnet ---------- */
.magnet { background: var(--ink); color: #fff; border-radius: 28px; padding: clamp(28px, 5vw, 56px); display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; overflow: hidden; }
.magnet::before { content: ""; position: absolute; width: 480px; height: 480px; right: -160px; top: -200px; border-radius: 50%; background: radial-gradient(circle, rgba(200,150,62,.28), transparent 70%); }
.magnet > * { position: relative; }
.magnet .eyebrow { color: var(--gold); }
.magnet h2 { color: #fff; }
.magnet p { color: rgba(255,255,255,.75); }
.magnet .tick-list li { color: rgba(255,255,255,.9); }
.guide-book { display: flex; gap: 20px; align-items: center; margin-bottom: 18px; }
.book {
  flex: none; width: 92px; height: 124px; border-radius: 4px 10px 10px 4px;
  background: linear-gradient(135deg, var(--gold), var(--orchid-dark));
  box-shadow: inset 6px 0 0 rgba(0,0,0,.2), 0 16px 30px -10px rgba(0,0,0,.6);
  display: flex; flex-direction: column; justify-content: space-between; padding: 12px 10px 10px 16px;
  font-family: var(--font-display); font-size: .72rem; line-height: 1.15; color: #fff;
}
.book b { font-size: .95rem; font-weight: 600; }
.book span { font-family: var(--font-cjk); font-size: 1.4rem; color: rgba(255,255,255,.4); }
.form-card { background: #fff; color: var(--ink); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: 1.35rem; }
@media (max-width: 860px) { .magnet { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Forms ---------- */
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label, .field .label { font-size: .85rem; font-weight: 700; color: var(--ink-2); }
.field .hint { font-weight: 500; color: var(--muted); }
.input, select.input, textarea.input {
  width: 100%; font: 500 1rem var(--font-body); color: var(--ink);
  padding: .8em 1em; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: var(--paper); transition: border-color .15s ease, box-shadow .15s ease;
  appearance: none; -webkit-appearance: none;
}
select.input { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%236d6f89' stroke-width='2'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }
textarea.input { min-height: 110px; resize: vertical; }
.input:focus { outline: none; border-color: var(--orchid); box-shadow: 0 0 0 4px var(--orchid-tint); background: #fff; }
.input.invalid { border-color: #c0392b; box-shadow: 0 0 0 4px #fbe5e2; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
@media (max-width: 560px) { .row-2 { grid-template-columns: 1fr; } }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .8rem; color: var(--muted); line-height: 1.45; margin: 6px 0 16px; }
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--orchid); flex: none; }
.consent a { color: var(--orchid); }
.form-error { display: none; color: #b03a2e; font-size: .88rem; font-weight: 600; margin: 0 0 12px; }
.form-error.show { display: block; }
.form-note { font-size: .78rem; color: var(--muted); text-align: center; margin: 12px 0 0; }
.hp { position: absolute !important; left: -5000px !important; }

/* Choice chips (checkbox / radio) */
.choices { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.choice input + span {
  display: flex; flex-direction: column; gap: 2px; height: 100%;
  padding: 16px 18px; border-radius: 14px; border: 1.5px solid var(--line); background: #fff;
  font-weight: 700; transition: all .15s ease; cursor: pointer;
}
.choice small { font-weight: 500; font-size: .82rem; color: var(--muted); }
.choice .cjk { font-family: var(--font-cjk); font-weight: 600; color: var(--gold); font-size: .9rem; min-height: 1.3em; }
.choice input:hover + span { border-color: var(--ink-soft); }
.choice input:checked + span { border-color: var(--orchid); background: var(--orchid-tint); box-shadow: inset 0 0 0 1px var(--orchid); }
.choice input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 2px; }
.choices.compact { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
.choices.compact input + span { padding: 12px 14px; font-size: .95rem; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); display: flex; flex-direction: column; }
.quote .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.quote blockquote { margin: 0 0 20px; font-family: var(--font-display); font-size: 1.12rem; line-height: 1.45; flex: 1; }
.quote figcaption { display: flex; align-items: center; gap: 12px; font-size: .9rem; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--gold); display: grid; place-items: center; font-weight: 700; }
.quote figcaption b { display: block; }
.quote figcaption span { color: var(--muted); font-size: .82rem; }
@media (max-width: 960px) { .quotes { grid-template-columns: 1fr; max-width: 620px; } }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 0 22px; }
.faq-list details[open] { border-color: var(--ink-soft); }
.faq-list summary { list-style: none; cursor: pointer; padding: 18px 0; font-weight: 700; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; flex: none; font-size: 1.5rem; font-weight: 400; color: var(--orchid); transition: transform .2s ease; line-height: 1; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--ink-soft); font-size: .95rem; padding-bottom: 4px; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, #0086cd 0%, #00427e 100%); color: #fff; border-radius: 28px; padding: clamp(32px, 6vw, 64px); text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: "新加坡 · 香港 · 中国"; position: absolute; left: 50%; bottom: -24px; transform: translateX(-50%); font-family: var(--font-cjk); font-size: clamp(3rem, 9vw, 7rem); white-space: nowrap; color: rgba(255,255,255,.07); pointer-events: none; }
.cta-band h2 { color: #fff; max-width: 720px; margin: 0 auto .4em; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 28px; }
.cta-band .actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 64px 0 28px; margin-top: clamp(64px, 9vw, 112px); font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer .brand-name { color: #fff; border-left-color: rgba(255,255,255,.25); }
.site-footer .brand-name small { color: rgba(255,255,255,.55); }
.site-footer .brand-logo { filter: brightness(0) invert(1); opacity: .95; }
.site-footer h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .8rem; color: rgba(255,255,255,.5); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Floating WhatsApp ---------- */
/* Bottom-LEFT on purpose: Netlify's "Powered by Netlify" badge sits bottom-right. */
.wa-float {
  position: fixed; left: 20px; bottom: 20px; z-index: 60;
  display: flex; align-items: center; gap: 10px;
  background: var(--whatsapp); color: #fff; text-decoration: none; font-weight: 700; font-size: .92rem;
  padding: 12px 18px 12px 14px; border-radius: 999px; box-shadow: 0 12px 30px -8px rgba(31,168,85,.6);
  transition: transform .2s ease;
}
.wa-float:hover { transform: translateY(-2px) scale(1.02); }
.wa-float svg { width: 26px; height: 26px; }
@media (max-width: 560px) { .wa-float span { display: none; } .wa-float { padding: 14px; left: 16px; bottom: 16px; } }

/* ---------- Planner page ---------- */
.planner-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; padding: 40px 0 0; }
.planner { background: #fff; border-radius: 24px; box-shadow: var(--shadow); border: 1px solid var(--line); overflow: hidden; }
.planner-progress { height: 6px; background: var(--paper-2); }
.planner-progress div { height: 100%; width: 20%; background: linear-gradient(90deg, var(--orchid), var(--gold)); transition: width .35s ease; }
.planner-body { padding: clamp(24px, 4vw, 44px); }
.step-count { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.planner fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.planner fieldset[hidden] { display: none; }
.planner legend { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; line-height: 1.2; margin-bottom: 6px; padding: 0; }
.planner .sub { color: var(--muted); margin-bottom: 24px; }
.planner .group-label { font-weight: 700; font-size: .9rem; margin: 26px 0 12px; }
.planner-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.planner-nav .btn[hidden] { display: none; }
.aside-card { background: var(--ink); color: rgba(255,255,255,.8); border-radius: 20px; padding: 26px; position: sticky; top: 100px; }
.aside-card h3 { color: #fff; font-size: 1.25rem; }
.aside-card .tick-list li { color: rgba(255,255,255,.88); }
.aside-card hr { border: 0; border-top: 1px solid rgba(255,255,255,.15); margin: 22px 0; }
.aside-card small { display: block; margin-bottom: 12px; }
.summary-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: .88rem; }
.summary-list li { display: flex; justify-content: space-between; gap: 12px; }
.summary-list li span:first-child { color: rgba(255,255,255,.5); }
.summary-list li span:last-child { color: #fff; font-weight: 600; text-align: right; }
@media (max-width: 960px) { .planner-wrap { grid-template-columns: 1fr; } .aside-card { position: static; } }

/* ---------- Thank you & simple pages ---------- */
.page-hero { padding: 64px 0 24px; }
.ty-card { background: #fff; border-radius: 28px; padding: clamp(28px, 5vw, 56px); box-shadow: var(--shadow); border: 1px solid var(--line); max-width: 760px; margin: 0 auto; text-align: center; }
.ty-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--orchid-tint); color: var(--orchid); display: grid; place-items: center; margin: 0 auto 20px; }
.ty-icon svg { width: 36px; height: 36px; }
.ref { display: inline-block; font-family: ui-monospace, Consolas, monospace; background: var(--paper-2); padding: .3em .8em; border-radius: 8px; font-size: .9rem; margin-bottom: 20px; }
.next-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; text-align: left; }
.next-step { border: 1px solid var(--line); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.next-step h3 { font-size: 1.1rem; margin: 0; }
.next-step p { font-size: .9rem; color: var(--ink-soft); margin: 0 0 8px; flex: 1; }
.demo-banner { background: var(--gold-tint); border: 1px dashed var(--gold); color: #6f4f1c; font-size: .85rem; padding: 10px 14px; border-radius: 10px; margin: 0 auto 20px; max-width: 760px; text-align: center; }
@media (max-width: 640px) { .next-steps { grid-template-columns: 1fr; } }
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin-top: 2em; }
.prose p, .prose li { color: var(--ink-soft); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .route-map .arc, .route-map .city circle.pulse { animation: none; }
}
