/* 嘉商汇官网静态页 — 按 1440 设计稿还原，供后端后续套模板 */
:root {
  --blue: #0967ee;
  --blue-hover: #0756c8;
  --blue-deep: #0765ef;
  --blue-soft: #f3f7fd;
  --blue-chip: #e8f2fe;
  --text: #101828;
  --text-2: #454c5b;
  --text-3: #818995;
  --gold: #d8a91d;
  --yellow: #fdb604;
  --cream: #fef9ed;
  --line: #e6eaf0;
  --white: #ffffff;
  --header-h: 72px;
  --container: 1200px;
  --shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
  --radius: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  min-width: 1440px;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 14px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font-family: inherit; }

.container {
  width: var(--container);
  margin: 0 auto;
}

section[id],
footer[id] {
  scroll-margin-top: 88px;
}

.section { padding: 72px 0 80px; }
.section-soft { background: var(--blue-soft); }

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
  line-height: 1.3;
}

.section-desc {
  margin-top: 12px;
  text-align: center;
  color: var(--text-3);
  font-size: 14px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #f0f2f5;
  backdrop-filter: blur(10px);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

.site-header.is-scrolled { box-shadow: 0 4px 16px rgba(16, 24, 40, 0.08); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  width: auto;
  height: 40px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand:hover img { transform: scale(1.04); }

.brand span {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  position: relative;
  font-size: 15px;
  color: var(--text-2);
  padding: 24px 0;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav a:hover { color: var(--blue); }
.nav a:hover::after { transform: scaleX(1); }

.nav a.is-active {
  color: var(--blue);
  font-weight: 600;
}

.nav a.is-active::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-ghost {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}

.btn-ghost:hover {
  background: #f3f8ff;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.28) 50%, transparent 80%);
  transform: translateX(-140%);
  transition: transform 0.55s ease;
}

.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(9, 103, 238, 0.28);
}

.btn-primary:hover::after { transform: translateX(140%); }

.btn-primary:active,
.btn-ghost:active { transform: translateY(0); }

.btn-lg {
  height: 44px;
  padding: 0 28px;
  font-size: 15px;
  border-radius: 6px;
}

.btn-xl {
  height: 48px;
  padding: 0 36px;
  font-size: 16px;
  border-radius: 6px;
}

/* ===== Hero ===== */
.hero {
  padding: 48px 0 64px;
  background: #fefefe;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-visual {
  width: 540px;
  flex-shrink: 0;
  position: relative;
  animation: fade-in-left 0.9s ease both;
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9, 103, 238, 0.16) 0%, transparent 70%);
  animation: glow-pulse 3.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-visual-inner {
  position: relative;
  z-index: 1;
  animation: float-y 6s ease-in-out infinite;
}

.hero-visual img {
  width: 100%;
  height: auto;
}

.hero-copy { flex: 1; padding-left: 48px; }

.hero-copy > * { animation: fade-up 0.7s ease both; }
.hero-kicker { animation-delay: 0.12s; }
.hero-title { animation-delay: 0.22s; }
.hero-lead { animation-delay: 0.34s; }
.hero-actions { animation-delay: 0.46s; }

.hero-kicker {
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 1px;
  color: #1a2332;
}

.hero-title em {
  font-style: normal;
  color: var(--blue);
}

.hero-lead {
  margin-top: 18px;
  color: var(--text-3);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

/* ===== Stats ===== */
.stats { padding: 56px 0 72px; }

.stats .section-title { margin-bottom: 8px; }

.gold-banner {
  margin: 22px auto 28px;
  min-height: 88px;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #fffdf5;
  border: 1px solid #f0d078;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(200, 150, 30, 0.06);
  position: relative;
  overflow: hidden;
}

.gold-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: shine-sweep 4.5s ease-in-out 1.2s infinite;
  pointer-events: none;
}

.gold-banner .deco {
  width: 160px;
  height: 12px;
  flex-shrink: 0;
  object-fit: contain;
}

.gold-banner .banner-text {
  font-size: 34px;
  font-weight: 700;
  color: #1a1f2c;
  letter-spacing: 0.5px;
  line-height: 1;
  white-space: nowrap;
}

.gold-banner .banner-text em {
  font-style: normal;
  color: #1a1f2c;
  margin-right: 0;
}

.gold-banner .banner-tag {
  height: 46px;
  padding: 0 18px;
  background: linear-gradient(180deg, #0a66e8 0%, #0558d6 48%, #033d9a 100%);
  color: #fff;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(5, 70, 180, 0.28);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px 24px;
  box-shadow: var(--shadow);
  min-height: 168px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}

.stat-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.stat-name {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 700;
}

.stat-desc {
  margin-top: 8px;
  color: var(--text-3);
  font-size: 13px;
  line-height: 1.65;
}

/* ===== Platform ===== */
.platform { padding: 80px 0; }

.platform-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.platform-copy { width: 460px; flex-shrink: 0; }

.platform-copy h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
}

.platform-copy .lead {
  margin-top: 16px;
  color: var(--text-3);
  font-size: 14px;
  line-height: 1.8;
}

.feature-list { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }

.feature-item {
  display: flex;
  gap: 16px;
  align-items: center;
  transition: transform 0.3s ease;
}

.feature-item:hover { transform: translateX(6px); }

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.feature-item:hover .feature-icon { transform: scale(1.06); }

.feature-icon img { width: 44px; height: 44px; object-fit: contain; display: block; }

.feature-item h3 { font-size: 16px; font-weight: 700; line-height: 1.4; }

.feature-item p { margin-top: 4px; color: var(--text-3); font-size: 13px; line-height: 1.5; }

.platform-visual { flex: 1; }

.platform-visual img {
  width: 100%;
  animation: float-y 7s ease-in-out infinite;
}

/* ===== Process ===== */
.process { padding: 72px 0 80px; }

.process-badge {
  margin: 20px auto 0;
  width: 340px;
  height: 60px;
  background: url("../static/seven.png") center / 100% 100% no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
  position: relative;
  overflow: hidden;
  filter: drop-shadow(0 0 10px rgba(9, 103, 238, 0.35));
}

.process-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: shine-sweep 3.8s ease-in-out 0.8s infinite;
  pointer-events: none;
}

.process-badge em {
  font-style: normal;
  color: #fdb604;
  margin: 0 4px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(253, 182, 4, 0.55);
  display: inline-block;
  animation: badge-em-pulse 1.8s ease-in-out infinite;
}

.process-board {
  margin-top: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 18px 150px;
  text-align: center;
  position: relative;
  border-right: 1px solid #eef1f5;
  transition: background 0.3s ease;
  z-index: 1;
}

.process-step:hover { background: #f7faff; }

.process-step:nth-child(5) { border-right: none; }

.process-num {
  color: var(--blue);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
}

.process-step h3 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.process-step p {
  margin-top: 10px;
  color: var(--text-3);
  font-size: 13px;
  line-height: 1.7;
  width: 100%;
}

.process-step .step-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.process-step .step-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* 前 3 个图标在曲线上方水平对齐，后 2 个在曲线下方水平对齐 */
.process-step:nth-child(1) .step-icon,
.process-step:nth-child(2) .step-icon,
.process-step:nth-child(3) .step-icon { bottom: 88px; }

.process-step:nth-child(4) .step-icon,
.process-step:nth-child(5) .step-icon { bottom: 24px; }

.process-curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36px;
  height: 120px;
  pointer-events: none;
  z-index: 2;
}

.process-curve path {
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
}

.process-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36px;
  height: 120px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  pointer-events: none;
  opacity: 0;
  z-index: 3;
}

.process-board.is-in .process-dots {
  opacity: 1;
  transition: opacity 0.4s ease 0.2s;
}

.process-dots span {
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(253, 182, 4, 0.28);
  animation: dot-pulse 1.8s ease-in-out infinite;
  /* 与曲线路径各列中心点对齐：y → margin-bottom = 115 - y */
}

.process-dots span:nth-child(1) { margin-bottom: 12px; }
.process-dots span:nth-child(2) { margin-bottom: 22px; animation-delay: 0.15s; }
.process-dots span:nth-child(3) { margin-bottom: 40px; animation-delay: 0.3s; }
.process-dots span:nth-child(4) { margin-bottom: 62px; animation-delay: 0.45s; }
.process-dots span:nth-child(5) { margin-bottom: 72px; animation-delay: 0.6s; }

/* ===== Features / tabs ===== */
.features { padding: 72px 0 40px; }

.feature-panel {
  display: flex;
  gap: 36px;
  align-items: center;
}

.feature-left {
  width: 540px;
  flex-shrink: 0;
}

.features .section-title {
  text-align: left;
  line-height: 1.3;
  margin-bottom: 18px;
}

.feature-tabs {
  width: 100%;
  background: transparent;
}

.tab-bar {
  display: flex;
  gap: 0;
  background: var(--white);
  border: 1px solid #dfe5ef;
  border-radius: 2px;
  overflow: hidden;
}

.tab-btn {
  flex: 1;
  height: 46px;
  border: none;
  border-right: 1px solid #dfe5ef;
  background: var(--white);
  color: #4a5565;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.tab-btn:last-child { border-right: none; }

.tab-btn.is-active {
  background: var(--blue);
  color: #fff;
  z-index: 1;
}

.tab-body {
  margin-top: 12px;
  border: 1px solid #dfe5ef;
  border-radius: 2px;
  padding: 36px 36px 32px;
  min-height: 268px;
  background: var(--white);
}

.tab-body.is-fresh li {
  animation: fade-in-left 0.45s ease both;
}

.tab-body.is-fresh li:nth-child(1) { animation-delay: 0.02s; }
.tab-body.is-fresh li:nth-child(2) { animation-delay: 0.08s; }
.tab-body.is-fresh li:nth-child(3) { animation-delay: 0.14s; }
.tab-body.is-fresh li:nth-child(4) { animation-delay: 0.2s; }

.tab-body li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.tab-body li:last-child { margin-bottom: 0; }

.tab-body li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 0;
  flex-shrink: 0;
  background: url("../static/icon-check.svg") center / contain no-repeat;
}

.feature-diagram {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
}

.feature-diagram img {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
}

/* ===== Service bar ===== */
.service { padding: 48px 0 72px; }

.service-bar {
  margin-top: 36px;
  background: #fcbe04;
  border-radius: 12px;
  padding: 36px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 6px;
  transition: transform 0.3s ease;
}

.service-item:hover { transform: translateY(-3px); }

.service-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  transition: transform 0.35s ease;
}

.service-item:hover img { transform: scale(1.1) rotate(-6deg); }

.service-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #3d2c00;
  line-height: 1.3;
}

.service-item p {
  margin-top: 6px;
  font-size: 12px;
  color: #5a4308;
  line-height: 1.6;
}

/* ===== Clients ===== */
.clients { padding: 24px 0 80px; }

.client-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.client-card {
  height: 148px;
  border: 1px solid #e8edf3;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--white);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.client-card:hover {
  border-color: #c5d4ea;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(16, 24, 40, 0.06);
}

.client-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.35s ease;
}

.client-card:hover img { transform: scale(1.1); }

.client-card span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  padding: 0 8px;
  line-height: 1.4;
}

/* ===== CTA ===== */
.cta {
  padding: 56px 0 64px;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-copy h2 {
  font-size: 30px;
  font-weight: 700;
}

.cta-copy p {
  margin: 14px 0 28px;
  color: var(--text-3);
  font-size: 14px;
  line-height: 1.8;
  max-width: 420px;
}

.cta-visual { width: 640px; flex-shrink: 0; }

.cta-visual img {
  width: 100%;
  animation: float-y 6s ease-in-out infinite;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--white);
  border-top: 1px solid #f0f2f5;
  padding: 48px 0 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 40px;
}

.footer-brand { width: 220px; flex-shrink: 0; }

.footer-brand .brand { margin-bottom: 12px; }

.footer-brand p {
  color: var(--text-3);
  font-size: 13px;
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: var(--text-3);
  font-size: 13px;
  line-height: 2.1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
  color: var(--blue);
  transform: translateX(4px);
}

.footer-contact { width: 220px; flex-shrink: 0; }

.footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
}

.phone-icon {
  width: 18px;
  height: 18px;
  color: #e24b4b;
  fill: #e24b4b;
  flex-shrink: 0;
}

.footer-hours {
  margin-top: 6px;
  color: var(--text-3);
  font-size: 12px;
}

.footer-qr {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-qr img {
  width: 72px;
  height: 72px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.footer-qr p {
  color: var(--text-3);
  font-size: 12px;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid #eef1f5;
  background: #f5f6f8;
  margin-top: 0;
  padding: 14px 0 16px;
  text-align: center;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.8;
}

.footer-bottom i {
  font-style: normal;
  margin: 0 10px;
  color: #c5cad3;
}

.footer-bottom a:hover { color: var(--blue); }

.footer-bottom .beian-gongan {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  vertical-align: middle;
}

.footer-bottom .beian-gongan img {
  width: 16px;
  height: 16px;
}

/* ===== Booking page ===== */
.page-booking { background: #f6f8fb; }

.booking-hero {
  background: var(--white);
  padding: 28px 0 36px;
}

.breadcrumb {
  color: var(--text-3);
  font-size: 13px;
  margin-bottom: 18px;
}

.breadcrumb a:hover { color: var(--blue); }

.booking-hero h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}

.booking-hero .sub {
  margin-top: 10px;
  text-align: center;
  color: var(--text-3);
  font-size: 14px;
}

.booking-hero h1 { animation: fade-up 0.6s ease both; }

.booking-hero .sub { animation: fade-up 0.6s 0.1s ease both; }

.booking-hero .bar {
  width: 48px;
  height: 4px;
  background: var(--blue);
  border-radius: 2px;
  margin: 16px auto 0;
  transform-origin: center;
  animation: grow-x 0.55s 0.22s ease both;
}

.booking-wrap { padding: 24px 0 40px; }

.booking-card {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(16, 24, 40, 0.08);
  overflow: hidden;
  animation: fade-up 0.7s 0.12s ease both;
}

.booking-aside {
  width: 400px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #0766f0 0%, #0653d0 100%);
  color: #fff;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
}

.booking-aside h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.35;
}

.booking-aside .aside-lead {
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.92;
  line-height: 1.7;
}

.aside-list {
  margin-top: 22px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aside-item {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 0;
}

.aside-no {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.aside-item h3 { font-size: 15px; font-weight: 700; }

.aside-item p { margin-top: 4px; font-size: 12px; opacity: 0.82; line-height: 1.6; }

.aside-guarantee {
  flex: 0 0 auto;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.aside-guarantee h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.guarantee-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  text-align: center;
}

.guarantee-row strong { display: block; font-size: 14px; font-weight: 700; }

.guarantee-row span { display: block; margin-top: 6px; font-size: 12px; opacity: 0.82; }

.aside-orbit {
  flex: 0 0 auto;
  width: 100%;
  margin-top: 14px;
  padding: 8px 0 12px;
  display: grid;
  place-items: center;
}

.orbit-stage {
  position: relative;
  width: 168px;
  height: 168px;
  max-width: 100%;
  aspect-ratio: 1;
}

.orbit-halo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44%;
  height: 44%;
  margin: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.06),
    0 0 0 20px rgba(255, 255, 255, 0.04);
}

.orbit-ring {
  position: absolute;
  left: 13%;
  top: 13%;
  right: 13%;
  bottom: 13%;
  border: 1.5px dashed rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40%;
  height: 40%;
  margin: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(6, 70, 190, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.orbit-core span {
  font-size: 10px;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.orbit-core strong {
  margin-top: 2px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.orbit-node {
  position: absolute;
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.orbit-node i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 5px #fff, inset 0 0 0 9px #0967ee;
  display: block;
}

.orbit-node em {
  font-style: normal;
  font-size: 11px;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

.orbit-node.is-top {
  left: 50%;
  top: -2px;
  transform: translateX(-50%);
}

.orbit-node.is-right {
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
}

.orbit-node.is-bottom {
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
}

.orbit-node.is-left {
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
}

.booking-form {
  flex: 1;
  padding: 32px 36px 28px;
}

.form-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.form-head h2 { font-size: 20px; font-weight: 700; }

.form-head .hint {
  margin-top: 6px;
  color: var(--text-3);
  font-size: 12px;
}

.safe-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  background: #e9f8ee;
  color: #1f9d55;
  border-radius: 14px;
  font-size: 12px;
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 10px;
}

.field label i {
  font-style: normal;
  color: #e24b4b;
}

.field input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #d9dee7;
  border-radius: 6px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(9, 103, 238, 0.12);
}

.agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 4px 0 12px;
  color: var(--text-3);
  font-size: 13px;
  line-height: 1.6;
}

.agree input { margin-top: 3px; }
.agree a { color: var(--blue); }

.btn-submit {
  width: 100%;
  height: 48px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.26) 50%, transparent 80%);
  transform: translateX(-140%);
  transition: transform 0.55s ease;
}

.btn-submit:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(9, 103, 238, 0.28);
}

.btn-submit:hover::after { transform: translateX(140%); }

.btn-submit .arrow {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.btn-submit:hover .arrow { transform: translateX(4px); }

.form-error {
  color: #d4380d;
  font-size: 12px;
  margin: -8px 0 12px;
  min-height: 16px;
}

.form-error.is-shake { animation: shake 0.4s ease; }

.success-panel {
  display: none;
  flex: 1;
  padding: 80px 48px;
  text-align: center;
}

.success-panel.is-show {
  display: block;
  animation: fade-up 0.5s ease both;
}

.booking-form.is-hide { display: none; }

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #e9f8ee;
  color: #1f9d55;
  font-size: 32px;
  line-height: 64px;
}

.success-panel.is-show .success-icon { animation: pop-bounce 0.55s ease; }

.success-panel h2 { font-size: 24px; }
.success-panel p { margin-top: 12px; color: var(--text-3); }

/* backend comment helper — no visual */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* ===== Motion: scroll reveal ===== */
.js-reveal:not(.is-in) {
  opacity: 0;
  transform: translateY(32px);
}

.js-reveal.is-in { animation: fade-up 0.85s ease both; }

.js-reveal.platform-copy.is-in,
.js-reveal.cta-copy.is-in { animation-name: fade-in-left; }

.js-reveal.platform-visual.is-in,
.js-reveal.cta-visual.is-in { animation-name: fade-in-right; }

.js-reveal.process-badge.is-in { animation-name: pop-bounce; animation-duration: 0.7s; }

.js-reveal.process-board:not(.is-in) {
  opacity: 1;
  transform: none;
}

.process-board.is-in .process-curve path {
  animation: draw-line 1.6s ease forwards;
}

.js-reveal.is-done {
  animation: none;
  opacity: 1;
  transform: none;
}

/* ===== Keyframes ===== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in-left {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fade-in-right {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.45; transform: translate(-50%, -50%) scale(0.92); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes shine-sweep {
  0% { transform: translateX(-120%); }
  35%, 100% { transform: translateX(120%); }
}

@keyframes badge-em-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

@keyframes dot-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 3px rgba(253, 182, 4, 0.22); }
  50% { transform: scale(1.25); box-shadow: 0 0 0 6px rgba(253, 182, 4, 0.08); }
}

@keyframes grow-x {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes aside-shift {
  0%, 100% { background-position: 50% 0; }
  50% { background-position: 50% 100%; }
}

@keyframes pop-bounce {
  0% { transform: scale(0.6); opacity: 0; }
  70% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

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

  .js-reveal:not(.is-in) {
    opacity: 1;
    transform: none;
  }

  .process-curve path { stroke-dashoffset: 0; }
}
