/* ==================================================================
   MY Escort — 全站样式
   参考 myjbescort.com 风格：黑底 + 霓虹色（青 #5CE1E6 / 品红 #FF00E6 / 绿 #00FF2D）
   字体：Poppins（主）Junge / Itim / Julius Sans One / Inter（装饰）
   ================================================================== */

:root {
  --primary: #5CE1E6;
  --secondary: #54595F;
  --text-muted: #7A7A7A;
  --accent: #61CE70;
  --neon-pink: #FF00E6;
  --neon-green: #00FF2D;
  --bg: #000000;
  --bg-soft: #050505;
  --bg-card: #0e0e0e;
  --line: #222222;
  --white: #ffffff;
  --content: 1300px;
  --font-main: "Poppins", "Segoe UI", sans-serif;
  --font-deco: "Junge", serif;
  --font-step-num: "Itim", cursive;
  --font-step-title: "Julius Sans One", sans-serif;
  --font-step-text: "Inter", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

.container { max-width: var(--content); margin: 0 auto; padding: 0 20px; }

/* ============================ 通用组件 ============================ */

.section { padding: 60px 0; }

.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: #ccc;
  font-size: 15px;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* 分隔线（居中文字 + 两侧横线，主色） */
.divider { display: flex; align-items: center; gap: 24px; padding: 40px 0; }
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary));
}
.divider::after { background: linear-gradient(90deg, var(--primary), transparent); }
.divider span {
  color: var(--primary);
  font-weight: 200;
  font-size: 20px;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* 按钮 */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn i { font-size: 15px; }

.btn-phone { background: #111; color: var(--white); border-color: var(--primary); }
.btn-phone:hover { box-shadow: 0 0 14px rgba(92, 225, 230, .45); }
.btn-wa { background: #25D366; color: #06281a; }
.btn-wa:hover { box-shadow: 0 0 14px rgba(37, 211, 102, .5); }
.btn-tg { background: #229ED9; color: #fff; }
.btn-tg:hover { box-shadow: 0 0 14px rgba(34, 158, 217, .5); }
.btn-primary { background: var(--primary); color: #00222a; font-weight: 700; }
.btn-primary:hover { box-shadow: 0 0 16px rgba(92, 225, 230, .55); }

/* App 下载按钮（全站主 CTA） */
.btn-app {
  background: linear-gradient(135deg, #5CE1E6 0%, #1fb6bc 100%);
  color: #00222a;
  font-weight: 700;
  padding: 13px 30px;
  font-size: 15px;
  box-shadow: 0 0 18px rgba(92, 225, 230, .55);
}
.btn-app:hover {
  box-shadow: 0 0 30px rgba(92, 225, 230, .9);
  transform: translateY(-2px);
}

/* 霓虹按钮（Editor Pick / Find Your Location） */
.btn-neon {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  background: #060606;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 10px;
  font-size: 17px; font-weight: 600;
  box-shadow: 0 0 12px rgba(92, 225, 230, .55), inset 0 0 12px rgba(92, 225, 230, .25);
  transition: all .2s ease;
}
.btn-neon:hover {
  box-shadow: 0 0 24px rgba(92, 225, 230, .9), inset 0 0 18px rgba(92, 225, 230, .4);
  text-shadow: 0 0 8px rgba(92, 225, 230, .8);
}

/* 图片占位（图片未上传时自动显示） */
.img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(160deg, #1c1c1c 0%, #2b2b2b 60%, #1a1a1a 100%);
  color: #666;
  font-size: 13px; font-weight: 500; letter-spacing: 1px;
}
.img-ph i { font-size: 30px; color: #444; }
.img-ph .ph-name { font-size: 18px; color: #888; font-weight: 600; }
.img-ph-light { background: linear-gradient(160deg, #e8e8e8, #f5f5f5); color: #999; }
.img-ph-light i { color: #bbb; }
.img-ph-light .ph-name { color: #777; }

/* ============================ Header ============================ */

#site-header {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease;
}
#site-header.solid, body.page-sub #site-header { background: #000; }
#site-header.solid { box-shadow: 0 2px 14px rgba(0, 0, 0, .6); }

.header-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 20px;
}

/* 汉堡按钮 */
.burger {
  width: 46px; height: 46px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: transparent; border: none;
}
.burger span {
  display: block; width: 26px; height: 3px; border-radius: 2px;
  background: var(--primary);
  transition: transform .2s ease, opacity .2s ease;
}
.burger:hover span { background: #fff; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* logo */
.logo { flex: 1; display: flex; align-items: center; justify-content: center; }
.logo img { max-height: 56px; width: auto; }
.logo-text {
  font-size: 30px; font-weight: 700; letter-spacing: 1px;
  color: var(--white);
  text-shadow: 2px 2px 0 #000, 4px 4px 0 #555;
}
.logo-text b { color: var(--primary); font-weight: 700; }

.header-right { width: 46px; }

/* Off-canvas 菜单（移动端 + 桌面汉堡共用） */
.offcanvas {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw);
  background: #030303;
  border-left: 1px solid var(--line);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .28s ease;
  overflow-y: auto;
  padding: 24px 0 60px;
}
.offcanvas.open { transform: translateX(0); }
.offcanvas .oc-logo {
  padding: 0 24px 18px;
  font-size: 22px; font-weight: 700;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.offcanvas .oc-logo b { color: var(--primary); }
.oc-item > .oc-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
  font-size: 15px; font-weight: 500;
  color: #eee;
  cursor: pointer;
  transition: color .15s ease, background .15s ease;
}
.oc-item > .oc-link:hover { color: var(--primary); background: #0d0d0d; }
.oc-item > .oc-link i { font-size: 12px; color: #666; transition: transform .2s ease; }
.oc-item.expanded > .oc-link i { transform: rotate(180deg); color: var(--primary); }
.oc-sub { display: none; background: #090909; }
.oc-item.expanded .oc-sub { display: block; }
.oc-sub a {
  display: block; padding: 10px 24px 10px 40px;
  font-size: 13.5px; color: #aaa;
}
.oc-sub a:hover { color: var(--primary); }
.oc-mask {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(0, 0, 0, .65);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.oc-mask.show { opacity: 1; pointer-events: auto; }

/* ============================ Hero（首页） ============================ */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(92, 225, 230, .10), transparent 45%),
    radial-gradient(ellipse at 80% 70%, rgba(255, 0, 230, .10), transparent 45%),
    #000;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.8) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 90px 20px 60px; }

.hero h1 {
  font-size: 68px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.15;
  text-shadow: 2px 2px 0 #000, 4px 4px 0 #555;
}
.hero h1 b { color: var(--primary); }
.hero h2 {
  margin-top: 18px;
  font-size: 26px;
  font-weight: 400;
  color: #f2f2f2;
  max-width: 860px;
  margin-left: auto; margin-right: auto;
}
.hero-cta {
  margin-top: 34px;
  display: flex; flex-direction: column; gap: 16px;
  align-items: center;
}
.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
.hero-cta-row .btn { padding: 9px 16px; font-size: 12.5px; }
.hero-cta-row .btn i { font-size: 13px; }

/* ============================ 区域下拉按钮组 ============================ */

.areas-section { padding: 44px 0 10px; }
.areas-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.dd { position: relative; }
.dd-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: #101010;
  color: #fff;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  font-size: 13.5px; font-weight: 500;
  transition: all .15s ease;
}
.dd-btn i { font-size: 10px; color: var(--primary); transition: transform .2s ease; }
.dd-btn:hover { border-color: var(--primary); box-shadow: 0 0 10px rgba(92,225,230,.35); }
.dd.open .dd-btn { border-color: var(--primary); }
.dd.open .dd-btn i { transform: rotate(180deg); }
.dd-panel {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 200px;
  background: #0a0a0a;
  border: 1px solid #262626;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,.7);
  display: none;
  z-index: 60;
  overflow: hidden;
}
.dd.open .dd-panel { display: block; }
.dd-panel a {
  display: block; padding: 11px 18px;
  font-size: 13px; color: #ccc;
  border-bottom: 1px solid #161616;
  transition: all .12s ease;
}
.dd-panel a:last-child { border-bottom: none; }
.dd-panel a:hover { color: var(--primary); background: #121212; padding-left: 22px; }

/* ============================ 女孩卡片网格 ============================ */

.grid-section { padding: 30px 0 60px; }

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

.girl-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.girl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(92, 225, 230, .25);
}
.gc-photo { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #eee; }
.gc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.girl-card:hover .gc-photo img { transform: scale(1.05); }

.gc-body { padding: 12px 14px 16px; }
.gc-area {
  font-size: 11.5px; color: #888; font-weight: 500;
  letter-spacing: .4px;
  margin-bottom: 4px;
  display: block;
}
.gc-area:hover { color: var(--neon-pink); }
.gc-title {
  font-size: 24px; font-weight: 500; color: #000; line-height: 1.2;
  margin-bottom: 4px;
}
.gc-nat { font-size: 14.5px; color: #333; margin-bottom: 8px; }
.gc-price { font-size: 16px; font-weight: 700; color: var(--neon-pink); }

/* 区域页标题条 */
.page-band { padding: 54px 0 30px; text-align: center; }
.page-band h1 { font-size: 38px; font-weight: 600; }
.page-band h1 b { color: var(--primary); }
.page-band p { color: #aaa; margin-top: 8px; font-size: 15px; }

/* 空状态 */
.empty-state {
  text-align: center; padding: 70px 20px;
  color: #888;
}
.empty-state i { font-size: 44px; color: #333; margin-bottom: 16px; display: block; }
.empty-state h3 { color: #ddd; font-size: 20px; margin-bottom: 8px; }

/* ============================ Who are we ============================ */

.about-wrap {
  display: grid; grid-template-columns: 1fr;
  gap: 40px; align-items: center;
}
.about-copy h2 { font-size: 32px; font-weight: 500; margin-bottom: 10px; }
.about-copy h2 b { color: var(--primary); }
.about-copy h3 { font-size: 18px; font-weight: 400; color: #ccc; margin-bottom: 22px; }
.about-copy p { color: #b9b9b9; font-size: 15px; margin-bottom: 16px; }
.about-copy .btn { margin-top: 10px; }
.about-logo {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.about-logo img { max-height: 240px; width: auto; margin: 0 auto; }

/* ============================ Why Choose Us ============================ */

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.why-item {
  border: 1px solid #262626;
  border-radius: 14px;
  padding: 30px 24px;
  background: linear-gradient(180deg, #0b0b0b, #070707);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.why-item:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(92, 225, 230, .22);
}
.why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 18px;
  background: rgba(92, 225, 230, .06);
}
.why-item h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.why-item p { font-size: 14.5px; color: #a9a9a9; line-height: 1.7; }

/* ============================ How to book ============================ */

.book-wrap {
  display: flex; flex-direction: column;
  gap: 48px; align-items: center;
}

/* 预约流程照片（静态并排显示） */
.book-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; width: 100%; }
.book-photo {
  border-radius: 14px; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
}
.book-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.book-photo .img-ph { width: 100%; height: 100%; }

/* 三步流程 */
.steps { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 900px; }
.step { display: flex; gap: 20px; }
.step-line { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 80px; height: 80px; flex: none;
  border-radius: 50%;
  background: #000;
  border: 1.5px solid #333;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-step-num);
  font-size: 26px;
  transition: all .25s ease;
}
.step:hover .step-num { border-color: var(--primary); color: var(--primary); box-shadow: 0 0 16px rgba(92,225,230,.35); }
.step-connector { width: 1.5px; flex: 1; background: #2a2a2a; margin: 6px 0; }
.step:last-child .step-connector { display: none; }
.step-body { padding-bottom: 26px; }
.step-body h3 {
  font-family: var(--font-step-title);
  font-size: 19px; font-weight: 400;
  color: var(--white);
  margin: 10px 0 10px;
  letter-spacing: .5px;
}
.step-body p {
  font-family: var(--font-step-text);
  font-size: 14px; color: #a5a5a5; line-height: 1.75;
  max-width: 460px;
}

/* ============================ FAQ ============================ */

.faq-list { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 6px;
  background: none; border: none;
  color: #fff;
  font-size: 15.5px; font-weight: 500;
  text-align: left;
  transition: color .15s ease;
}
.faq-q:hover { color: var(--primary); }
.faq-q i { font-size: 13px; color: var(--primary); transition: transform .25s ease; flex: none; }
.faq-item.open .faq-q { color: var(--primary); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a p { padding: 0 6px 20px; color: #a8a8a8; font-size: 14.5px; line-height: 1.8; }

/* 表单通用（SEO 表单） */
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 13.5px; color: #bbb; margin-bottom: 7px; }
.form-row select, .form-row input, .form-row textarea {
  width: 100%;
  background: #101010;
  border: 1px solid #2c2c2c;
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color .15s ease;
}
.form-row select:focus, .form-row input:focus, .form-row textarea:focus { border-color: var(--primary); }
.form-row textarea { min-height: 100px; resize: vertical; }
.form-row .req { color: var(--neon-pink); }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: #999; margin-bottom: 18px; }
.form-check input { margin-top: 3px; accent-color: var(--primary); }
.form-msg { margin-top: 12px; font-size: 14px; color: var(--accent); display: none; }
.form-msg.show { display: block; }

/* ============================ Footer ============================ */

#site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

/* SEO 表单块 */
.seo-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 54px 20px 40px;
}
.seo-block i { font-size: 30px; color: var(--primary); margin-bottom: 16px; }
.seo-block h2 { font-size: 24px; font-weight: 500; margin-bottom: 12px; }
.seo-block p { color: #999; font-size: 14.5px; margin-bottom: 26px; }
.seo-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; text-align: left; }
.seo-form .form-row { margin-bottom: 0; }
.seo-form .form-row.full { grid-column: 1 / -1; }
.seo-form .btn { grid-column: 1 / -1; justify-self: center; }

/* 地图 */
.map-wrap { padding: 0 20px; max-width: var(--content); margin: 0 auto; }
.map-wrap iframe {
  width: 100%; height: 320px;
  border: 1px solid var(--line);
  border-radius: 12px;
  filter: grayscale(.35) contrast(1.05);
  display: block;
}

/* Footer 霓虹按钮 */
.footer-neon { text-align: center; padding: 44px 20px 10px; }

/* Footer 区域下拉 */
.footer-areas { padding: 26px 0 40px; }

/* Editor Pick 轮播 */
.picks-section { padding: 10px 0 50px; }
.picks-head { text-align: center; margin-bottom: 30px; }

.picks-swiper { padding: 10px 4px 40px; }
.picks-swiper.fallback { overflow-x: auto; scroll-snap-type: x mandatory; }
.picks-swiper.fallback { -webkit-overflow-scrolling: touch; }
.picks-swiper.fallback .swiper-wrapper {
  display: flex; gap: 16px;
}
.picks-swiper.fallback .swiper-slide { flex: 0 0 280px; scroll-snap-align: start; width: auto; }
.picks-swiper.fallback .swiper-pagination { display: none; }

/* 霓虹卡片 */
.neon-card {
  background: #0a0a0a;
  border: 1px solid rgba(92, 225, 230, .3);
  box-shadow: inset 0 0 20px 0 rgba(92, 225, 230, .16);
  border-radius: 10px;
  padding: 14px 12px 18px;
  text-align: center;
  transition: box-shadow .2s ease, transform .2s ease;
  display: block;
}
.neon-card:hover {
  box-shadow: inset 0 0 26px 0 rgba(92, 225, 230, .3), 0 0 18px rgba(92, 225, 230, .25);
  transform: translateY(-4px);
}
.nc-photo {
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #141414;
}
.nc-photo img { width: 100%; height: 100%; object-fit: cover; }
.nc-title {
  color: var(--neon-pink);
  font-size: 22px; font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 0 12px rgba(255, 0, 230, .45);
  margin-bottom: 8px;
  word-break: break-word;
}
.nc-nat { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.nc-price { color: var(--neon-green); font-size: 17px; font-weight: 700; text-shadow: 0 0 10px rgba(0, 255, 45, .4); }

/* Footer 底部信息 */
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 36px 20px;
}
.footer-bottom-inner {
  max-width: var(--content); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  text-align: center;
}
.footer-logo img { max-height: 48px; width: auto; }
.footer-logo .logo-text { font-size: 24px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid #2c2c2c;
  display: flex; align-items: center; justify-content: center;
  color: #ccc; font-size: 17px;
  transition: all .18s ease;
}
.footer-social a:hover {
  color: var(--primary); border-color: var(--primary);
  box-shadow: 0 0 12px rgba(92, 225, 230, .4);
  transform: translateY(-3px);
}
.copyright { color: #777; font-size: 13px; line-height: 1.8; }
.copyright b { color: #aaa; }

/* 移动端底部吸附栏 */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 120;
  background: #050505;
  border-top: 1px solid #222;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  padding: 8px 2px calc(8px + env(safe-area-inset-bottom));
}
.mobile-bar a, .mobile-bar button {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: none; border: none;
  color: #ccc;
  font-size: 10px; font-weight: 500;
  padding: 4px 2px;
}
.mobile-bar i { font-size: 17px; color: var(--primary); }
.mobile-bar a:hover, .mobile-bar button:hover { color: #fff; }
.mobile-bar .mb-app {
  background: linear-gradient(135deg, rgba(92, 225, 230, .18), rgba(92, 225, 230, .06));
  border-radius: 10px;
  color: var(--primary);
  font-weight: 700;
}
.mobile-bar .mb-app:hover { color: #fff; }

/* 返回顶部 */
.scroll-top {
  position: fixed; right: 22px; bottom: 96px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #00222a;
  border: none;
  font-size: 17px;
  z-index: 110;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 0 16px rgba(92, 225, 230, .5);
}
.scroll-top.show { display: flex; }

/* ============================ 个人详情页 ============================ */

.profile-wrap {
  display: grid; grid-template-columns: 480px 1fr;
  gap: 48px; align-items: start;
  padding: 44px 0 20px;
}
.profile-photo {
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  position: sticky; top: 90px;
}
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }

/* 画廊（多张照片时启用） */
.profile-col { display: flex; flex-direction: column; gap: 10px; }
.profile-col.no-sticky .profile-photo { position: relative; }
.gal-frame { display: block; width: 100%; height: 100%; }
.gal-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.gal-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(92,225,230,.45); background: rgba(10,10,14,.6);
  color: var(--primary); font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .15s ease, background .15s ease;
  z-index: 2;
}
.profile-photo:hover .gal-nav { opacity: 1; }
.gal-nav:hover { background: rgba(92,225,230,.2); }
.gal-prev { left: 12px; }
.gal-next { right: 12px; }
.gal-counter {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  font: 500 12px/1.2 Poppins, sans-serif; color: #fff;
  background: rgba(10,10,14,.65); border: 1px solid rgba(92,225,230,.35);
  border-radius: 12px; padding: 5px 10px;
}
.gallery-thumbs {
  display: flex; gap: 6px; overflow-x: auto;
  padding: 4px 2px 6px; scrollbar-width: thin;
}
.gallery-thumbs img {
  flex: 0 0 auto; width: 66px; height: 88px; object-fit: cover;
  border-radius: 6px; border: 2px solid transparent; opacity: .5;
  cursor: pointer; transition: opacity .15s ease, border-color .15s ease;
}
.gallery-thumbs img:hover { opacity: .85; }
.gallery-thumbs img.active { opacity: 1; border-color: var(--primary); }
@media (max-width: 640px) {
  .gal-nav { opacity: 1; width: 34px; height: 34px; }
}

.profile-info .p-area {
  display: inline-block;
  font-size: 13px; color: var(--primary); font-weight: 500;
  border: 1px solid rgba(92,225,230,.4);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 16px;
  transition: all .15s ease;
}
.profile-info .p-area:hover { background: rgba(92,225,230,.12); }
.profile-info h1 { font-size: 40px; font-weight: 600; line-height: 1.2; margin-bottom: 10px; }
.profile-info h1 b { color: var(--primary); }
.p-meta { color: #ccc; font-size: 16px; margin-bottom: 20px; }
.p-price {
  font-size: 30px; font-weight: 700;
  color: var(--neon-green);
  text-shadow: 0 0 14px rgba(0, 255, 45, .35);
  margin-bottom: 24px;
}
.p-desc { color: #b3b3b3; font-size: 15px; line-height: 1.85; margin-bottom: 30px; max-width: 640px; }
.p-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* 详情页 App 引导卡 */
.app-cta {
  display: flex; align-items: center; gap: 18px;
  margin-top: 30px;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(92, 225, 230, .10), rgba(92, 225, 230, .03));
  border: 1px solid rgba(92, 225, 230, .35);
  border-radius: 14px;
  box-shadow: 0 0 22px rgba(92, 225, 230, .12);
}
.app-cta-icon { font-size: 40px; color: var(--primary); flex: none; text-shadow: 0 0 14px rgba(92,225,230,.6); }
.app-cta-copy { flex: 1; min-width: 0; }
.app-cta-copy h3 { font-size: 19px; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.app-cta-copy p { font-size: 14px; color: #a9c9cc; line-height: 1.6; margin: 0; }

/* App 下载横幅（首页网格下方） */
.app-banner-section { padding: 8px 0 26px; }
.app-banner {
  display: flex; align-items: center; gap: 22px;
  padding: 26px 30px;
  background: linear-gradient(135deg, #0a1112, #070b0c);
  border: 1px solid rgba(92, 225, 230, .4);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(92, 225, 230, .15);
}
.ab-icon { font-size: 52px; color: var(--primary); flex: none; text-shadow: 0 0 18px rgba(92,225,230,.7); }
.ab-copy { flex: 1; min-width: 0; }
.ab-copy h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.ab-copy p { font-size: 14.5px; color: #a9c9cc; line-height: 1.6; margin: 0; }

.more-section { padding: 50px 0 70px; }
.more-title { font-size: 26px; font-weight: 500; margin-bottom: 26px; }
.more-title b { color: var(--primary); }

/* ============================ 响应式 ============================ */

@media (max-width: 1024px) {
  .girls-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap { grid-template-columns: 1fr; }
  .about-logo { min-height: 220px; }
  .book-photos { gap: 12px; }
  .profile-wrap { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .profile-photo { position: relative; max-width: 480px; margin: 0 auto; }
  .hero h1 { font-size: 52px; }
  .hero h2 { font-size: 22px; }
}

@media (max-width: 767px) {
  .section { padding: 44px 0; }
  .section-title { font-size: 24px; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 38px; }
  .hero h2 { font-size: 18px; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { padding: 10px 14px; font-size: 12.5px; }
  .hero-cta > .btn-app { padding: 12px 28px; font-size: 14.5px; }

  .girls-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .gc-body { padding: 8px 8px 10px; }
  .gc-title { font-size: 14px; }
  .gc-nat { font-size: 11px; margin-bottom: 4px; }
  .gc-price { font-size: 12px; }
  .gc-area { font-size: 9.5px; }

  .areas-grid { gap: 8px; }
  .dd-btn { padding: 10px 12px; font-size: 12px; }

  .why-grid { grid-template-columns: 1fr; }
  .book-photos { grid-template-columns: 1fr; gap: 12px; }
  .book-photo { aspect-ratio: 4 / 3; }
  .step-num { width: 64px; height: 64px; font-size: 21px; }

  .page-band h1 { font-size: 28px; }
  .profile-info h1 { font-size: 30px; }
  .p-price { font-size: 24px; }

  .seo-form { grid-template-columns: 1fr; }

  .mobile-bar { display: grid; }
  .mobile-bar a, .mobile-bar button { font-size: 9px; }
  .scroll-top { bottom: 84px; right: 14px; }
  #site-footer { padding-bottom: 64px; }

  .app-banner { flex-direction: column; text-align: center; padding: 24px 18px; gap: 14px; }
  .ab-icon { font-size: 42px; }
  .ab-copy h3 { font-size: 19px; }
  .app-cta { flex-wrap: wrap; }
  .app-cta .btn-app { width: 100%; }

  .nc-title { font-size: 16px; }
  .nc-nat { font-size: 13px; }
  .nc-price { font-size: 14px; }
}
