﻿:root {
  color-scheme: dark;
  --primary: #C9A96E;
  --primary-dim: #A88A4E;
  --secondary: #1B3A5C;
  --secondary-light: #264A73;
  --bg: #0D1117;
  --bg-elevated: #161B22;
  --bg-card: #1C2333;
  --bg-muted: #21262D;
  --text: #E6EDF3;
  --text-dim: #8B949E;
  --text-muted: #6E7681;
  --border: #30363D;
  --border-light: #21262D;
  --gold-glow: rgba(201, 169, 110, 0.15);
  --navy-glow: rgba(27, 58, 92, 0.3);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 10px 26px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.25);
  --radius: 10px;
  --radius-sm: 6px;
  --font-heading: "Microsoft YaHei", "PingFang SC", "Noto Serif SC", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #0D1117;
  font-weight: 700;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dim); }
img { max-width: 100%; height: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 5vw, 80px);
  background: rgba(13, 17, 23, 0.88);
  border-bottom: 1px solid rgba(48, 54, 61, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  background: rgba(13, 17, 23, 0.96);
  border-bottom-color: var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  text-decoration: none;
  color: var(--text);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), #A88A4E);
  color: #0D1117;
  font-size: 15px;
  font-family: var(--font-heading);
  font-weight: 900;
}
.brand-text {
  font-size: 17px;
  font-family: var(--font-heading);
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
  font-size: 14px;
}
nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
nav a:hover { background: var(--bg-muted); color: var(--primary); }
.mobile-main-nav { display: none; }

/* Hero */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(48px, 7vw, 100px) clamp(18px, 6vw, 80px) clamp(40px, 5vw, 60px);
  background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(27, 58, 92, 0.25), transparent 60%),
              radial-gradient(ellipse 50% 50% at 80% 20%, rgba(201, 169, 110, 0.08), transparent 60%);
  overflow: hidden;
}
.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 17, 23, 0.96), rgba(13, 17, 23, 0.78) 56%, rgba(13, 17, 23, 0.46)),
    url("images_opt/zy-alphard-gba-hzmb-hero.jpg") center / cover no-repeat;
  opacity: 0.34;
  content: "";
}

.eyebrow, .section-kicker {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3, h4, p { margin-top: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
}
h1 .highlight {
  background: linear-gradient(135deg, var(--primary), #E8C97A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: clamp(27px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.lead {
  max-width: 710px;
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1.7;
}

/* Buttons */
.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  text-align: center;
  white-space: normal;
}
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.button.primary {
  background: linear-gradient(135deg, var(--primary), #B8953A);
  color: #0D1117;
  border-color: var(--primary);
}
.button.primary:hover { box-shadow: 0 8px 28px var(--gold-glow); }

.button.secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.button.secondary:hover { border-color: var(--primary); color: var(--primary); }

.button.phone {
  background: var(--secondary-light);
  color: #fff;
  border-color: var(--secondary-light);
}
.button.phone:hover { background: var(--secondary); }

.button.outline {
  background: transparent;
  border-color: var(--border);
  color: var(--primary);
  font-size: 14px;
  min-height: 42px;
  padding: 10px 20px;
}
.button.outline:hover { border-color: var(--primary); background: var(--gold-glow); }

/* WeChat QR */
.wechat-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 460px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(13, 17, 23, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.wechat-card img {
  display: block;
  width: 132px;
  height: 132px;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
}
.wechat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 18px;
}
.wechat-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
}

/* Trust list */
.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 36px 0 0;
  padding: 0;
}
.trust-list div {
  min-height: 96px;
  padding: 18px;
  background: rgba(28, 35, 51, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.trust-list dt { color: var(--text-muted); font-size: 13px; }
.trust-list dd { margin: 4px 0 0; font-weight: 700; color: var(--primary); }

/* Hero visual */
.hero-visual { position: relative; min-height: 520px; }
.hero-visual::before {
  position: absolute;
  inset: 24px -14px -14px 24px;
  z-index: -1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-glow), rgba(27, 58, 92, 0.2));
  content: "";
}
.main-photo {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 42%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: heroPhotoDrift 14s ease-in-out infinite alternate;
}
.route-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 8px;
  width: min(328px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(22, 27, 34, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.route-card strong { color: var(--primary); }
.route-card span {
  position: relative;
  padding-left: 18px;
  color: var(--text-dim);
  font-size: 14px;
}
.route-card span::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}
.route-card span:first-of-type::before { animation: routePinPulse 2.4s ease-in-out infinite; }

@keyframes heroPhotoDrift {
  from { transform: scale(1); }
  to { transform: scale(1.025); }
}
@keyframes routePinPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.34); }
  50% { box-shadow: 0 0 0 10px rgba(201, 169, 110, 0); }
}

/* Sections */
.section {
  padding: clamp(60px, 7vw, 100px) clamp(18px, 6vw, 80px);
}
.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}
.section-heading > p:not(.section-kicker) {
  color: var(--text-dim);
  font-size: 17px;
}

/* Core Edge */
.edge { border-top: 1px solid var(--border-light); }
.edge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.edge-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: border-color 0.3s, transform 0.3s;
}
.edge-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.edge-icon { font-size: 36px; display: block; margin-bottom: 16px; }
.edge-card h3 { font-size: 20px; }
.edge-card p { color: var(--text-dim); margin-bottom: 0; font-size: 15px; }

/* Services */
.experience {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.experience-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}
.experience-feature,
.experience-tile {
  position: relative;
  min-height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0A0E14;
  box-shadow: var(--shadow-card);
}
.experience-feature img,
.experience-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.experience-feature:hover img,
.experience-tile:hover img { transform: scale(1.035); }
.experience-feature::after,
.experience-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(10, 14, 20, 0.82));
  content: "";
}
.experience-feature { min-height: 590px; }
.experience-side {
  display: grid;
  gap: 18px;
}
.experience-tile { min-height: 286px; }
.experience-copy,
.experience-tile div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: clamp(20px, 3vw, 34px);
}
.experience-copy {
  max-width: 660px;
}
.experience-copy span,
.experience-tile span {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}
.experience-copy h3 {
  max-width: 580px;
  margin-bottom: 8px;
  font-size: clamp(25px, 3vw, 36px);
  color: #fff;
}
.experience-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(230, 237, 243, 0.82);
}
.experience-tile h3 {
  max-width: 390px;
  margin: 0;
  color: #fff;
  font-size: 22px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-grid article {
  min-height: 260px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: border-color 0.3s;
}
.service-grid article:hover { border-color: var(--primary); }
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  background: rgba(201, 169, 110, 0.12);
  color: var(--primary);
  font-weight: 900;
  font-size: 17px;
}
.service-grid article p { color: var(--text-dim); margin-bottom: 0; font-size: 15px; }
.service-grid article .article-link {
  display: inline-flex;
  margin-top: 16px;
}

/* Routes */
.split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.split::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 27, 34, 0.96), rgba(22, 27, 34, 0.72)),
    url("images_opt/zy-alphard-macau-day-tour.jpg") center 44% / cover no-repeat;
  opacity: 0.22;
  content: "";
}
.split > * { position: relative; }
.split p { color: var(--text-dim); font-size: 17px; }
.route-list {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.route-list::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 23px;
  width: 1px;
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.92), rgba(201, 169, 110, 0.08));
  content: "";
}
.route-list li {
  position: relative;
  padding: 16px 18px 16px 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.route-list li::before {
  position: absolute;
  top: 22px;
  left: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.route-list li:hover {
  border-color: rgba(201, 169, 110, 0.72);
  background: rgba(28, 35, 51, 0.96);
  transform: translateX(4px);
}
.route-list li:hover::before {
  box-shadow: 0 0 0 6px rgba(201, 169, 110, 0.12);
  transform: scale(1.35);
}

/* Pricing */
.pricing {
  position: relative;
  background: linear-gradient(180deg, #0A0E14, var(--bg) 40%);
  overflow: hidden;
}
.pricing::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 20, 0.9), rgba(13, 17, 23, 0.94)),
    url("images_opt/zy-alphard-gba-hzmb-hero.jpg") center / cover no-repeat;
  opacity: 0.16;
  content: "";
}
.pricing > * { position: relative; }
.pricing .section-heading { max-width: 920px; }
.pricing .section-kicker { color: var(--primary); }
.pricing .section-heading p:not(.section-kicker) { color: var(--text-dim); }
.price-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(16px, 3vw, 28px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.05), transparent 46%);
}
.price-group {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
}
.price-group h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 24px;
}
.price-group h3::after {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  content: "";
}
.price-list { display: grid; gap: 9px; margin: 0; }
.price-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--border-light);
}
.price-list div:last-child { padding-bottom: 0; border-bottom: 0; }
.price-list dt { color: var(--text-dim); font-weight: 600; }
.price-list dd {
  margin: 0;
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
}
.price-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.price-benefits span {
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(201, 169, 110, 0.08);
  color: var(--primary);
  font-weight: 700;
  text-align: center;
}
.pricing-note {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

/* Cases */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.case-grid article {
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.3s;
}
.case-grid article:hover { border-color: var(--primary); }
.case-photo {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center 35%;
}
.case-grid article h3 { padding: 18px 20px 0; }
.case-grid article p { padding: 0 20px 20px; margin: 0; color: var(--text-dim); font-size: 14px; }

/* About */
.about {
  position: relative;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.about::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 27, 34, 0.95), rgba(22, 27, 34, 0.76)),
    url("images_opt/zy-alphard-family-disney-transfer.jpg") center / cover no-repeat;
  opacity: 0.18;
  content: "";
}
.about > * { position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.about-story p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.85;
}
.about-story strong { color: var(--primary); }
.about-highlights {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.about-highlights div {
  padding: 16px 18px;
  border-left: 3px solid var(--primary);
  background: rgba(201, 169, 110, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  color: var(--text-dim);
}
.about-highlights div strong { display: block; margin-bottom: 4px; font-size: 14px; }

/* Store */
.store-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.store-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.store-card h3 { font-size: 17px; }
.store-card p { margin: 0; color: var(--text-dim); font-size: 15px; }
.store-card a { color: var(--primary); }

/* Articles */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.article-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.3s;
}
.article-card:hover { border-color: var(--primary); }
.article-card img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.article-card-body { padding: 20px; }
.article-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(201, 169, 110, 0.15);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.article-card-body h3 { font-size: 18px; margin-bottom: 8px; }
.article-card-body p { color: var(--text-dim); font-size: 14px; margin-bottom: 12px; }
.article-link { font-size: 14px; font-weight: 700; }
.articles-more { margin-top: 28px; text-align: center; }

/* Solutions and reviews */
.solutions-preview {
  background:
    linear-gradient(180deg, rgba(22, 27, 34, 0.96), rgba(13, 17, 23, 1)),
    url("images_opt/zy-alphard-gba-hzmb-hero.jpg") center / cover no-repeat;
}
.solution-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.solution-card,
.review-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(28, 35, 51, 0.92);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s, transform 0.2s;
}
.solution-card:hover,
.review-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.edge-card,
.service-grid article,
.article-card,
.case-grid article,
.solution-card,
.review-card,
.store-card,
.price-group {
  will-change: transform;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}
.edge-card:hover,
.service-grid article:hover,
.article-card:hover,
.case-grid article:hover,
.solution-card:hover,
.review-card:hover,
.store-card:hover,
.price-group:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}
.solution-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(201, 169, 110, 0.14);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}
.solution-card h3,
.review-card h3 {
  font-size: 19px;
}
.solution-card p,
.review-card p {
  color: var(--text-dim);
  font-size: 14px;
}
.review-rating {
  display: inline-flex;
  gap: 2px;
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 0;
}
.review-source {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(201, 169, 110, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}
.review-meta {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 12px;
}
.review-note {
  max-width: 980px;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 13px;
}
.reviews-section {
  background: var(--bg-elevated);
}
.review-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #A88A4E);
  color: #0D1117;
  font-weight: 900;
}
.review-head strong,
.review-head small {
  display: block;
}
.review-head small {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 12px;
}
.faq-category-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  max-width: 1040px;
  margin-bottom: 20px;
}
.faq-category-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}
.faq-category-grid a:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.page-hero {
  padding: clamp(58px, 7vw, 96px) clamp(18px, 6vw, 80px);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(13, 17, 23, 0.95), rgba(13, 17, 23, 0.7)),
    url("images_opt/zy-alphard-business-hkg-airport.jpg") center / cover no-repeat;
}
.page-hero-inner {
  max-width: 900px;
}
.page-hero .lead {
  max-width: 760px;
  color: var(--text-dim);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 14px;
}
.breadcrumb a { color: var(--primary); }
.content-panel {
  max-width: 1060px;
  margin: 0 auto;
}
.solution-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
}
.solution-detail + .solution-detail {
  margin-top: 18px;
}
.solution-detail h2 {
  font-size: clamp(24px, 3vw, 34px);
}
.solution-detail p,
.solution-detail li {
  color: var(--text-dim);
  font-size: 15px;
}
.solution-detail ul {
  margin: 0;
  padding-left: 20px;
}
.solution-steps {
  display: grid;
  gap: 10px;
}
.solution-steps span {
  padding: 12px 14px;
  border-left: 3px solid var(--primary);
  border-radius: 0 6px 6px 0;
  background: rgba(201, 169, 110, 0.08);
  color: var(--text);
  font-size: 14px;
}
.faq-page-list {
  display: grid;
  gap: 16px;
}
.faq-group {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
}
.faq-group h2 {
  font-size: 24px;
  margin-bottom: 14px;
}
.faq-group .faq-list {
  max-width: none;
}
.review-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.review-proof {
  min-height: 150px;
  margin-bottom: 16px;
  border: 1px dashed rgba(201, 169, 110, 0.45);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(27, 58, 92, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  padding: 16px;
}
.review-proof strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 18px;
}
.review-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 0 auto 28px;
}
.review-proof-card {
  padding: 18px;
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 8px;
  background: rgba(18, 25, 36, 0.78);
}
.review-proof-card b {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 24px;
  font-family: var(--font-heading);
}
.review-proof-card span {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
}
.admin-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: calc(100vh - 72px);
}
.admin-sidebar {
  padding: 24px;
  border-right: 1px solid var(--border);
  background: #0A0E14;
}
.admin-sidebar a,
.admin-tab {
  display: flex;
  width: 100%;
  margin-bottom: 8px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--text-dim);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.admin-tab.active,
.admin-sidebar a:hover,
.admin-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.admin-main {
  padding: clamp(22px, 5vw, 48px);
}
.admin-card {
  max-width: 980px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
}
.admin-card + .admin-card {
  margin-top: 18px;
}
.admin-editor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.admin-login {
  max-width: 420px;
  margin: 8vh auto;
}
.admin-note {
  color: var(--text-muted);
  font-size: 13px;
}

/* News */
.news,
.industry-news {
  position: relative;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.industry-news {
  background: var(--bg);
}
.news::before,
.industry-news::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 27, 34, 0.92), rgba(22, 27, 34, 0.98)),
    url("images_opt/zy-alphard-family-disney-transfer.jpg") center / cover no-repeat;
  opacity: 0.14;
  content: "";
}
.industry-news::before {
  background:
    linear-gradient(180deg, rgba(13, 17, 23, 0.92), rgba(13, 17, 23, 0.98)),
    url("images_opt/zy-alphard-gba-hzmb-hero.jpg") center / cover no-repeat;
}
.news > *,
.industry-news > * { position: relative; }
.news-list { display: grid; gap: 14px; }
.news-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  transition: border-color 0.3s;
}
.news-item:hover { border-color: var(--primary); }
.news-date {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  padding-top: 3px;
}
.news-item h3 { font-size: 17px; margin-bottom: 6px; }
.news-item h3 a { color: var(--text); }
.news-item h3 a:hover { color: var(--primary); }
.news-item p { color: var(--text-dim); font-size: 14px; margin: 0; }

/* Official statement */
.official-statement {
  background: var(--bg);
}
.statement-panel {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(22, 27, 34, 0.96), rgba(13, 17, 23, 0.98));
  box-shadow: var(--shadow-card);
}
.statement-panel .section-heading {
  margin-bottom: 22px;
}
.statement-panel .section-heading p:not(.section-kicker) {
  max-width: 900px;
}
.statement-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 1.35em;
  color: var(--text-dim);
  line-height: 1.85;
}
.statement-list li::marker {
  color: var(--primary);
  font-weight: 800;
}
.statement-list a {
  color: var(--primary);
  font-weight: 700;
}
.statement-signature {
  display: grid;
  gap: 8px;
  justify-items: end;
  margin-top: 28px;
  color: var(--text);
}
.statement-signature strong {
  font-family: var(--font-heading);
  font-size: 18px;
}
.statement-signature time {
  color: var(--text-dim);
  font-weight: 700;
}

/* FAQ */
.faq { background: linear-gradient(180deg, var(--bg-elevated), var(--bg)); }
.faq-list { display: grid; gap: 10px; max-width: 920px; }
details {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  transition: border-color 0.3s;
}
details:hover { border-color: var(--primary); }
details[open] { border-color: var(--primary); }
summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::marker { display: none; content: ""; }
details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.75;
}

/* CTA */
.cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: clamp(60px, 7vw, 100px) clamp(18px, 6vw, 80px);
  background: linear-gradient(135deg, var(--secondary), #0D1F33);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.cta::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 31, 51, 0.9), rgba(13, 17, 23, 0.7)),
    url("images_opt/zy-alphard-business-hkg-airport.jpg") center 58% / cover no-repeat;
  opacity: 0.24;
  content: "";
}
.cta > * { position: relative; }
.cta .section-kicker { color: var(--primary); }
.cta h2 { color: #fff; max-width: 720px; }
.cta-actions { flex-direction: column; }
.cta-note {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

/* Booking */
.booking-hero {
  position: relative;
  padding: clamp(58px, 7vw, 104px) clamp(18px, 6vw, 80px);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(13, 17, 23, 0.96), rgba(13, 17, 23, 0.78)),
    url("images_opt/zy-alphard-airport-luggage-transfer.jpg") center 58% / cover no-repeat;
}
.booking-hero-inner {
  max-width: 900px;
}
.booking-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
}
.booking-hero .lead {
  max-width: 720px;
  color: var(--text-dim);
}
.booking-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.booking-section {
  background: var(--bg);
}
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.booking-form-panel,
.booking-info-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}
.booking-form-panel {
  padding: clamp(20px, 4vw, 34px);
}
.compact-heading {
  margin-bottom: 24px;
}
.compact-heading h2 {
  font-size: clamp(25px, 3vw, 36px);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field {
  display: grid;
  gap: 8px;
  min-width: 0;
}
.field.full {
  grid-column: 1 / -1;
}
.field-label {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 700;
}
.field-label em {
  color: var(--primary);
  font-style: normal;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #0F1520;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  outline: none;
  padding: 10px 12px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field textarea {
  min-height: 94px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  background: #111927;
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.contact-method {
  margin: 0;
  padding: 0;
  border: 0;
}
.contact-choice {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.contact-choice label {
  min-width: 0;
}
.contact-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.contact-choice span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #0F1520;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.contact-choice input:checked + span {
  border-color: var(--primary);
  background: rgba(201, 169, 110, 0.18);
  color: var(--primary);
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.booking-result {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.booking-result[hidden] {
  display: none;
}
.booking-output {
  min-height: 270px;
  white-space: pre-wrap;
}
.booking-status {
  margin: 12px 0 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}
.booking-aside {
  display: grid;
  gap: 14px;
}
.booking-info-card {
  padding: 20px;
}
.booking-info-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 17px;
}
.booking-info-card p {
  margin: 0 0 8px;
  color: var(--text-dim);
  font-size: 14px;
}
.booking-info-card img {
  display: block;
  width: min(190px, 100%);
  margin: 8px auto 12px;
  border-radius: 8px;
  background: #fff;
}
.booking-info-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-dim);
  font-size: 14px;
}
.booking-info-card li + li {
  margin-top: 6px;
}

/* Footer */
footer {
  padding: 48px clamp(18px, 6vw, 80px) 32px;
  background: #0A0E14;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
  margin-bottom: 32px;
}
.footer-brand strong { font-size: 18px; font-family: var(--font-heading); color: var(--primary); }
.footer-brand p { color: var(--text-muted); font-size: 14px; margin-top: 8px; }
.footer-links, .footer-contact { display: grid; gap: 8px; }
.footer-links strong, .footer-contact strong { font-size: 14px; color: var(--text-dim); margin-bottom: 4px; }
.footer-links a { color: var(--text-muted); font-size: 14px; }
.footer-links a:hover { color: var(--primary); }
.footer-contact p { color: var(--text-muted); font-size: 14px; margin: 0; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
}
.footer-bottom p { margin: 0; }

/* Scroll reveal */
.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 8px;
}
.floating-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(201, 169, 110, 0.42);
  border-radius: var(--radius-sm);
  background: rgba(13, 17, 23, 0.92);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.floating-contact a:first-child {
  background: var(--primary);
  color: #0D1117;
}
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 82px;
  z-index: 121;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 46px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 999px;
  background: rgba(13, 17, 23, 0.94);
  color: var(--primary);
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.back-to-top span {
  font-size: 22px;
  line-height: 1;
}
.back-to-top em {
  font-style: normal;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #0D1117;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Responsive */
@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experience-gallery { grid-template-columns: 1fr; }
  .experience-feature { min-height: 470px; }
  .experience-side { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .store-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solution-grid, .review-grid, .review-page-grid { grid-template-columns: 1fr; }
  .faq-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-board, .price-benefits { grid-template-columns: 1fr; }
  .about-grid, .split { grid-template-columns: 1fr; }
  .solution-detail { grid-template-columns: 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { border-right: 0; border-bottom: 1px solid var(--border); }
  .admin-editor-grid { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; overflow: visible; }
  .edge-grid { grid-template-columns: 1fr; }
  .service-grid, .case-grid, .store-grid, .article-grid { grid-template-columns: 1fr; }
  .faq-category-grid { grid-template-columns: 1fr; }
  .experience-feature, .experience-tile { min-height: 360px; }
  .experience-side { grid-template-columns: 1fr; }
  .experience-copy h3, .experience-tile h3 { font-size: 22px; }
  .trust-list { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 1fr; gap: 8px; }
  .hero-visual { min-height: 0; height: auto; }
  .main-photo { min-height: 340px; height: 340px; }
  .route-card { position: static; width: 100%; margin-top: 12px; }
  .edge-card:hover,
  .service-grid article:hover,
  .article-card:hover,
  .case-grid article:hover,
  .solution-card:hover,
  .review-card:hover,
  .store-card:hover,
  .price-group:hover,
  .route-list li:hover {
    transform: none;
  }
  .edge { padding-top: 72px; }
  .hero-actions, .cta-actions, .booking-hero-actions, .button { width: 100%; }
  .booking-hero { padding-top: 48px; padding-bottom: 54px; }
  .booking-form-panel { padding: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: 1; }
  .contact-choice { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-choice span { font-size: 13px; padding: 0 6px; }
  .form-actions { display: grid; grid-template-columns: 1fr; }
  .booking-output { min-height: 230px; }
  .wechat-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    max-width: none;
  }
  .wechat-card img {
    width: 112px;
    height: 112px;
  }
  .wechat-card strong { font-size: 16px; }
  .wechat-card p { font-size: 13px; }
  .floating-contact {
    right: 0;
    bottom: 0;
    left: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 8px;
    background: rgba(13, 17, 23, 0.96);
    border-top: 1px solid var(--border);
  }
  .floating-contact a { box-shadow: none; }
  .back-to-top {
    right: 14px;
    bottom: 84px;
    min-height: 40px;
    padding: 7px 10px;
  }
  .back-to-top span { font-size: 20px; }
  .back-to-top em { font-size: 11px; }
  body { padding-bottom: 92px; }
  h1 { font-size: 36px; }
  .site-header {
    position: sticky;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-height: auto;
    padding: 12px 16px 14px;
  }
  .site-header .brand {
    width: 100%;
  }
  .site-header .brand-mark {
    width: 42px;
    height: 42px;
  }
  .site-header nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    gap: 6px;
    overflow: visible;
    padding: 0;
  }
  .site-header nav::-webkit-scrollbar {
    display: none;
  }
  .site-header nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    min-height: 38px;
    padding: 7px 4px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(13, 17, 23, 0.62);
    color: var(--text-dim);
    font-size: 12px;
    line-height: 1.1;
    white-space: nowrap;
  }
  .site-header .desktop-main-nav {
    display: none !important;
  }
  .site-header .mobile-main-nav {
    display: grid !important;
  }
  .review-proof-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-note { grid-column: 1; }
  .price-list div { grid-template-columns: 1fr; gap: 2px; }
}

.icp-record a { color: var(--text-dim); text-decoration: none; }
.icp-record a:hover { color: var(--primary); }
