/* ============ PROLANE EXPO — hand-crafted styles ============ */
:root {
  --blue-deep: #0B3D66;
  --blue: #14507E;
  --blue-soft: #EAF0F6;
  --orange: #F1681F;
  --orange-deep: #E04A12;
  --ink: #1A2B3C;
  --ink-soft: #51636F;
  --line: #E3E9EF;
  --bg: #FFFFFF;
  --bg-alt: #F6F9FB;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 61, 102, .08);
  --shadow-lg: 0 18px 50px rgba(11, 61, 102, .14);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.7; }
img { max-width: 100%; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(11, 61, 102, .06); }
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 46px; height: 46px; object-fit: contain; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.nav-brand-cn { font-weight: 700; font-size: 17px; color: var(--blue-deep); }
.nav-brand-en { font-size: 11px; letter-spacing: .18em; color: var(--orange); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 15px; color: var(--ink-soft); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--blue-deep); }
.nav-links a.nav-ai {
  color: var(--orange-deep); font-weight: 600;
  border: 1.5px solid var(--orange); border-radius: 999px;
  padding: 3px 12px 3px 6px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 5px;
  transition: background .2s, color .2s, box-shadow .2s;
}
.nav-links a.nav-ai .nav-ai-icon { width: 22px; height: 22px; object-fit: contain; vertical-align: middle; }
.nav-links a.nav-ai:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff; box-shadow: 0 4px 14px rgba(240, 104, 31, .35);
}
.nav-links a.nav-ai:hover .nav-ai-icon { filter: brightness(0) invert(1); }
.nav-links a.nav-cta {
  color: #fff; background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  padding: 8px 20px; border-radius: 999px; font-weight: 600;
}
.lang-toggle {
  border: 1.5px solid var(--blue); color: var(--blue); background: transparent;
  font-family: var(--font); font-size: 13px; font-weight: 700;
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer; transition: all .2s;
}
.lang-toggle:hover { background: var(--blue); color: #fff; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2.5px; background: var(--blue-deep); margin: 5px 0; border-radius: 2px; transition: .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero { position: relative; padding: 170px 0 110px; overflow: hidden; color: #fff; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(241, 104, 31, .35), transparent 60%),
    radial-gradient(ellipse 700px 500px at -10% 110%, rgba(38, 108, 168, .5), transparent 60%),
    linear-gradient(140deg, #0A3357 0%, var(--blue-deep) 45%, #14507E 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000 30%, transparent 75%);
}
.hero-inner { position: relative; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.hero-eyebrow {
  display: inline-block; font-size: 14px; letter-spacing: .1em; font-weight: 600;
  color: #FFD9BD; background: rgba(241, 104, 31, .18); border: 1px solid rgba(241, 104, 31, .45);
  padding: 6px 18px; border-radius: 999px; margin-bottom: 26px;
}
.hero-title { font-size: clamp(34px, 5.2vw, 58px); font-weight: 800; line-height: 1.22; letter-spacing: .01em; }
.hero-sub { max-width: 640px; margin: 24px 0 36px; font-size: 17px; color: rgba(255, 255, 255, .82); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 34px; border-radius: 999px;
  font-size: 16px; font-weight: 600; cursor: pointer; border: none;
  font-family: var(--font); transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep)); color: #fff;
  box-shadow: 0 8px 24px rgba(224, 74, 18, .35);
}
.btn-primary:hover { box-shadow: 0 12px 30px rgba(224, 74, 18, .45); }
.btn-ghost {
  background: rgba(255, 255, 255, .1); color: #fff; border: 1.5px solid rgba(255, 255, 255, .5);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .2); }
.btn-block { width: 100%; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 64px; padding-top: 34px; border-top: 1px solid rgba(255, 255, 255, .18);
}
.stat { text-align: left; }
.stat-num { font-size: 40px; font-weight: 800; line-height: 1.1; color: #FFB98A; }
.stat-label { display: block; margin-top: 6px; font-size: 14px; color: rgba(255, 255, 255, .75); }

/* ============ SECTIONS ============ */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-eyebrow { font-size: 13px; letter-spacing: .28em; font-weight: 700; color: var(--orange); margin-bottom: 12px; }
.section-title { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; color: var(--blue-deep); line-height: 1.3; }
.section-sub { margin-top: 14px; color: var(--ink-soft); font-size: 16.5px; max-width: 640px; }
.section-body { margin-top: 18px; color: var(--ink-soft); font-size: 16px; }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 64px; align-items: center; }
.about-points { margin-top: 28px; display: grid; gap: 14px; }
.about-point { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--ink); }
.dot { width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--orange-deep)); flex-shrink: 0; }
.about-card { perspective: 1000px; }
.about-card-inner {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 44px 38px; text-align: center; box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--orange);
}
.about-logo { width: 120px; height: 120px; object-fit: contain; margin-bottom: 18px; }
.about-card-inner h3 { font-size: 18px; color: var(--blue-deep); font-weight: 700; }
.about-card-en { font-size: 12.5px; color: var(--ink-soft); margin-top: 6px; letter-spacing: .04em; }
.about-divider { height: 1px; background: var(--line); margin: 24px 0; }
.about-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 14.5px; text-align: left; }
.about-row span { color: var(--ink-soft); }
.about-row b { color: var(--ink); font-weight: 600; text-align: right; }

/* ============ SERVICES ============ */
.services-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(241, 104, 31, .4); }
.service-icon { font-size: 34px; margin-bottom: 16px; }
.service-card h3 { font-size: 19px; color: var(--blue-deep); font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; color: var(--ink-soft); }

/* ============ LEADPILOT ============ */
.lp-head { display: flex; align-items: center; gap: 22px; }
.lp-logo { width: 88px; height: 88px; object-fit: contain; border-radius: 20px; background: #fff; border: 1px solid var(--line); padding: 10px; box-shadow: var(--shadow); flex-shrink: 0; }
.lp-features { margin-top: 46px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.lp-feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .25s, box-shadow .25s;
}
.lp-feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.lp-fnum { font-size: 13px; font-weight: 800; color: var(--orange); letter-spacing: .08em; margin-bottom: 10px; }
.lp-feature h3 { font-size: 18px; color: var(--blue-deep); font-weight: 700; margin-bottom: 8px; }
.lp-feature p { font-size: 14px; color: var(--ink-soft); }
.lp-stats { margin-top: 40px; display: flex; gap: 18px; flex-wrap: wrap; }
.lp-stat {
  flex: 1; min-width: 180px; background: var(--blue-deep); border-radius: var(--radius);
  padding: 24px 26px; color: #fff; display: flex; flex-direction: column; gap: 4px;
}
.lp-stat b { font-size: 34px; font-weight: 800; color: #FFB98A; line-height: 1.1; }
.lp-stat span { font-size: 13.5px; opacity: .85; }
.lp-cta-row { margin-top: 40px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.lp-cta {
  display: inline-block; color: #fff; font-weight: 700; font-size: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  padding: 14px 34px; border-radius: 999px; text-decoration: none;
  transition: box-shadow .2s, transform .2s;
}
.lp-cta:hover { box-shadow: 0 6px 20px rgba(240, 104, 31, .4); transform: translateY(-2px); }
.lp-note { font-size: 13.5px; color: var(--ink-soft); }
@media (max-width: 900px) {
  .lp-features { grid-template-columns: repeat(2, 1fr); }
  .lp-head { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .lp-features { grid-template-columns: 1fr; }
}

/* ============ EXHIBITIONS ============ */
.ex-controls { margin-top: 44px; display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.ex-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.ex-tab {
  padding: 9px 22px; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink-soft); font-size: 14.5px; font-weight: 600;
  cursor: pointer; font-family: var(--font); transition: all .2s;
}
.ex-tab:hover { border-color: var(--blue); color: var(--blue); }
.ex-tab.active { background: var(--blue-deep); border-color: var(--blue-deep); color: #fff; }
.ex-tools { display: flex; gap: 12px; }
.ex-select, .ex-search {
  padding: 10px 16px; border-radius: 10px; border: 1.5px solid var(--line);
  background: #fff; font-family: var(--font); font-size: 14.5px; color: var(--ink); outline: none;
  transition: border-color .2s;
}
.ex-select { cursor: pointer; }
.ex-search { width: 230px; }
.ex-select:focus, .ex-search:focus { border-color: var(--orange); }
.ex-count { margin: 26px 0 18px; font-size: 14px; color: var(--ink-soft); font-weight: 600; }
.ex-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ex-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .22s, box-shadow .22s;
  cursor: pointer; outline: none;
}
.ex-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ex-card:focus-visible { border-color: var(--orange); }
.ex-card-more {
  margin-top: auto; padding-top: 10px; font-size: 13px; font-weight: 700;
  color: var(--orange-deep); display: flex; align-items: center; gap: 6px;
}
.ex-card:hover .ex-arrow { transform: translateX(4px); }
.ex-arrow { transition: transform .2s; display: inline-block; }
.ex-card-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.ex-badge { font-size: 12px; font-weight: 700; padding: 3px 12px; border-radius: 999px; }
.ex-badge-hw { background: #FDEEE2; color: var(--orange-deep); }
.ex-badge-ap { background: var(--blue-soft); color: var(--blue); }
.ex-badge-cv { background: #E8F3EC; color: #1E7A46; }
.ex-badge-tr { background: #F3EDFB; color: #6B3FA0; }
.ex-market { font-size: 12px; color: var(--ink-soft); font-weight: 600; }
.ex-name { font-size: 16.5px; font-weight: 700; color: var(--ink); line-height: 1.5; min-height: 50px; }
.ex-meta { display: flex; flex-direction: column; gap: 6px; padding-top: 10px; border-top: 1px dashed var(--line); }
.ex-meta-row { display: flex; justify-content: space-between; font-size: 13.5px; }
.ex-meta-k { color: var(--ink-soft); }
.ex-meta-row b { color: var(--blue-deep); font-weight: 600; }
.ex-note { font-size: 12.5px; color: var(--ink-soft); background: var(--bg-alt); border-radius: 8px; padding: 5px 12px; align-self: flex-start; }
.ex-empty { text-align: center; padding: 60px 0; color: var(--ink-soft); }

/* ============ PROCESS ============ */
.process-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.process-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 22px; position: relative; transition: transform .22s, box-shadow .22s;
}
.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.process-num {
  font-size: 15px; font-weight: 800; color: #fff; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 6px 16px rgba(224, 74, 18, .3);
}
.process-step h3 { font-size: 17px; color: var(--blue-deep); font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; color: var(--ink-soft); }

/* ============ WHY ============ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-item {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--orange);
  border-radius: 12px; padding: 26px 24px;
}
.why-item h3 { font-size: 18px; color: var(--blue-deep); font-weight: 800; margin-bottom: 8px; }
.why-item p { font-size: 14px; color: var(--ink-soft); }

/* ============ CONTACT ============ */
.contact-grid { margin-top: 48px; display: grid; grid-template-columns: 1fr 1.25fr; gap: 56px; align-items: flex-start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: transform .2s, box-shadow .2s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-card div { text-align: left; }
.contact-role { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 3px; }
.contact-name { font-size: 19px; font-weight: 700; color: var(--blue-deep); }
.contact-name-sm { font-size: 16px; font-weight: 700; color: var(--blue-deep); }
.contact-en { font-size: 11.5px; color: var(--ink-soft); margin-top: 4px; letter-spacing: .03em; }
.contact-tel { font-size: 15px; font-weight: 600; color: var(--orange-deep); white-space: nowrap; }
.contact-tel a { color: inherit; text-decoration: none; }
.contact-tel a:hover { text-decoration: underline; }
.contact-company { border-left: 4px solid var(--orange); display: block; }
.contact-company div { text-align: left; }

.contact-form-wrap {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 38px; box-shadow: var(--shadow-lg); border-top: 4px solid var(--blue-deep);
}
.contact-form h3, .form-success h3 { font-size: 21px; color: var(--blue-deep); font-weight: 800; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--line);
  font-family: var(--font); font-size: 14.5px; color: var(--ink); outline: none;
  transition: border-color .2s; background: #fff; resize: vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--orange); }
.form-note { margin-top: 14px; font-size: 12.5px; color: var(--ink-soft); text-align: center; }
.form-success { text-align: center; }
.success-check {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(135deg, #27A05E, #1E7A46); color: #fff;
  font-size: 28px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(30, 122, 70, .35);
}
.form-success p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 16px; }
.form-success pre {
  text-align: left; background: var(--bg-alt); border: 1px dashed var(--line);
  border-radius: 12px; padding: 20px; font-family: var(--font); font-size: 14px;
  color: var(--ink); white-space: pre-wrap; margin-bottom: 22px; line-height: 1.9;
}
.success-actions { display: flex; gap: 14px; justify-content: center; }
.success-actions .btn { padding: 12px 30px; }
.btn-ghost.dark { background: transparent; color: var(--blue-deep); border-color: var(--blue-deep); }
.btn-ghost.dark:hover { background: var(--blue-soft); }

/* ============ FOOTER ============ */
.footer { background: var(--blue-deep); color: #fff; padding: 54px 0 40px; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 56px; height: 56px; object-fit: contain; background: #fff; border-radius: 14px; padding: 5px; box-shadow: 0 4px 14px rgba(0, 0, 0, .25); }
.footer-cn { font-weight: 700; font-size: 16px; }
.footer-en { font-size: 10.5px; letter-spacing: .1em; color: rgba(255, 255, 255, .6); margin-top: 4px; }
.footer-tagline { font-size: 15px; color: #FFB98A; font-weight: 600; }
.footer-copy { font-size: 13px; color: rgba(255, 255, 255, .55); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1020px) {
  .services-grid, .ex-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .hero { padding: 130px 0 80px; }
  .services-grid, .ex-grid, .process-grid, .why-list, .form-row { grid-template-columns: 1fr; }
  .ex-tools { width: 100%; }
  .ex-search { flex: 1; width: auto; }
  .nav-burger { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 20px 24px 26px; gap: 18px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .contact-card { flex-direction: column; align-items: flex-start; }
}

/* ============ EXHIBITION DETAIL MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(11, 30, 48, .55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn .2s ease;
}
.modal-overlay[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-dialog {
  background: #fff; border-radius: 18px; width: 100%; max-width: 780px;
  max-height: 88vh; display: flex; flex-direction: column;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
  animation: slideUp .25s ease; position: relative;
  overflow: hidden;
}
@keyframes slideUp { from { transform: translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  width: 36px; height: 36px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--bg-alt); color: var(--ink-soft); font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.modal-close:hover { background: var(--orange-deep); color: #fff; }
.modal-content { overflow-y: auto; padding: 34px 38px 30px; }

.modal-head { display: flex; gap: 18px; align-items: flex-start; }
.modal-logo {
  flex-shrink: 0; min-width: 76px; height: 76px; border-radius: 18px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff; font-weight: 800; font-size: 15px; letter-spacing: .5px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 6px; line-height: 1.25;
  box-shadow: 0 8px 20px rgba(11, 61, 102, .25);
}
.modal-titles h3 { font-size: 20px; color: var(--ink); font-weight: 800; line-height: 1.4; padding-right: 30px; }
.modal-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.mbadge {
  font-size: 12px; font-weight: 600; color: var(--ink-soft);
  background: var(--bg-alt); border-radius: 999px; padding: 4px 12px;
}
.mbadge.mb-date { background: #FDEEE2; color: var(--orange-deep); }
.mbadge.mb-ind { background: var(--blue-soft); color: var(--blue); }

.modal-info {
  display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 18px;
  padding: 14px 18px; background: var(--bg-alt); border-radius: 12px;
}
.modal-info div { font-size: 13.5px; display: flex; gap: 8px; align-items: baseline; }
.modal-info span { color: var(--ink-soft); flex-shrink: 0; }
.modal-info b { color: var(--blue-deep); font-weight: 600; }
.modal-since {
  margin-top: 10px; font-size: 12.5px; color: var(--orange-deep);
  font-weight: 600; display: flex; align-items: center; gap: 6px;
}
.modal-since::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

.modal-section { margin-top: 22px; }
.modal-section h4 {
  font-size: 15px; font-weight: 800; color: var(--blue-deep); margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.modal-section h4::before { content: ''; width: 4px; height: 16px; border-radius: 2px; background: var(--orange); }
.modal-section p { font-size: 14px; color: var(--ink-soft); line-height: 1.85; text-align: justify; }

.modal-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mstat {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue));
  border-radius: 12px; padding: 16px 14px; text-align: center; color: #fff;
}
.mstat-num { font-size: 20px; font-weight: 800; line-height: 1.3; }
.mstat-label { font-size: 12px; opacity: .85; margin-top: 4px; }

.modal-brands { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-chip {
  font-size: 13px; font-weight: 600; color: var(--blue-deep);
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 5px 16px; transition: all .2s;
}
.brand-chip:hover { border-color: var(--orange); color: var(--orange-deep); transform: translateY(-2px); }
.brand-note { margin-top: 10px; font-size: 12px; color: var(--ink-soft); }

.modal-pending {
  margin-top: 22px; padding: 26px; text-align: center; font-size: 14.5px;
  color: var(--ink-soft); background: var(--bg-alt); border-radius: 12px;
  border: 1.5px dashed var(--line);
}

.modal-cta {
  margin-top: 26px; padding: 22px; border-radius: 14px;
  background: linear-gradient(135deg, #FFF6F0, #FDEEE2);
  border: 1.5px solid rgba(241, 104, 31, .25);
}
.modal-cta-title {
  font-size: 16px; font-weight: 800; color: var(--orange-deep);
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.modal-cta-title::before { content: '💬'; }
.pm-card {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  background: #fff; border: 1px solid rgba(241, 104, 31, .2); border-radius: 12px;
  padding: 12px 16px; margin-bottom: 10px; transition: all .2s; cursor: pointer;
}
.pm-card:last-child { margin-bottom: 0; }
.pm-card:hover { transform: translateX(4px); box-shadow: var(--shadow); border-color: var(--orange); }
.pm-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 800; color: #fff;
}
.pm-carrie .pm-avatar { background: linear-gradient(135deg, var(--blue-deep), var(--blue)); }
.pm-becky .pm-avatar { background: linear-gradient(135deg, var(--orange), var(--orange-deep)); }
.pm-info { flex: 1; min-width: 0; }
.pm-name { font-size: 15.5px; font-weight: 800; color: var(--ink); }
.pm-role { font-size: 12.5px; color: var(--ink-soft); margin: 2px 0 4px; }
.pm-tel { font-size: 14px; font-weight: 700; color: var(--orange-deep); white-space: nowrap; }
.pm-wechat { font-size: 12px; color: var(--ink-soft); font-weight: 400; }
.pm-qr {
  flex-shrink: 0; width: 88px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: var(--ink-soft); font-size: 11px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.pm-qr img { width: 72px; height: 72px; object-fit: contain; border-radius: 6px; }
.pm-qr:hover { border-color: var(--orange); box-shadow: 0 2px 8px rgba(230,126,34,0.15); }

@media (max-width: 720px) {
  .modal-overlay { padding: 12px; }
  .modal-content { padding: 24px 20px; }
  .modal-stats { grid-template-columns: repeat(2, 1fr); }
  .modal-head { flex-direction: column; }
  .pm-card { flex-wrap: wrap; }
  .pm-qr { width: 100%; flex-direction: row; justify-content: center; }
}
