/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #fff; color: #14171F;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

/* ─── TOKENS ─── */
:root {
  --charcoal:      #14171F;
  --charcoal2:     #0B0D12;
  --bronze:        #B8843D;
  --bronze2:       #9A6E2E;
  --bronze-tint:   #F3EEE6;
  --bronze-border: #e0d5c4;
  --muted:         #454B5C;
  --muted2:        #6b7280;
}

/* ─── LAYOUT ─── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 64px; }
section { position: relative; }

/* ─── TYPOGRAPHY ─── */
.eyebrow {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 18px;
}
.sec-h {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 700;
  color: var(--charcoal); line-height: 1.25; margin-bottom: 12px;
}
.sec-h::after {
  content: ''; display: block; width: 48px; height: 3px;
  background: var(--bronze); margin-top: 16px; margin-bottom: 48px;
}
.sec-h--light { color: #fff; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px; font-family: "Noto Sans SC", sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  white-space: nowrap; text-decoration: none; cursor: pointer; border: none;
  background: var(--bronze); color: #fff; border-radius: 100px;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--bronze2); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px; font-family: "Noto Sans SC", sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  white-space: nowrap; text-decoration: none; cursor: pointer;
  background: transparent; color: var(--charcoal);
  border: 2px solid var(--bronze); border-radius: 100px;
  transition: background .2s, color .2s;
}
.btn-ghost:hover { background: var(--bronze); color: #fff; }
.btn-ghost--light { color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-ghost--light:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled { background: #fff; box-shadow: 0 1px 24px rgba(20,23,31,0.10); }
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 64px;
  height: 76px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; gap: 10px; flex-shrink: 0; }
.nav-logo-mark {
  width: 38px; height: 38px; background: var(--bronze);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-mark span { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 0.02em; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .l1 { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: 0.06em; transition: color .3s; }
.nav-logo-text .l2 { font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.6); letter-spacing: 0.10em; text-transform: uppercase; transition: color .3s; }
.nav.scrolled .nav-logo-text .l1 { color: var(--charcoal); }
.nav.scrolled .nav-logo-text .l2 { color: var(--muted2); }

/* Nav on non-hero pages (light bg from top) */
.nav--light { background: #fff; box-shadow: 0 1px 24px rgba(20,23,31,0.08); }
.nav--light .nav-logo-text .l1 { color: var(--charcoal); }
.nav--light .nav-logo-text .l2 { color: var(--muted2); }
.nav--light .nav-links a { color: var(--charcoal); }
.nav--light .nav-hamburger span { background: var(--charcoal); }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; text-decoration: none; letter-spacing: 0.02em; color: rgba(255,255,255,0.88); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--bronze); }
.nav.scrolled .nav-links a { color: var(--charcoal); }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active { color: var(--bronze); }

/* Services dropdown */
.nav-has-sub { position: relative; }
.nav-has-sub > a { display: flex; align-items: center; gap: 4px; }
.nav-sub {
  display: none; position: absolute; top: 100%; left: -16px;
  background: #fff; min-width: 180px; list-style: none;
  box-shadow: 0 8px 32px rgba(20,23,31,0.12);
  padding: 8px 0;
}
.nav-has-sub:hover .nav-sub { display: block; }
.nav-sub li a { display: block; padding: 10px 20px; font-size: 13px; color: var(--charcoal) !important; white-space: nowrap; }
.nav-sub li a:hover { color: var(--bronze) !important; background: var(--bronze-tint); }

.btn-nav {
  display: inline-flex; align-items: center; padding: 9px 22px;
  font-family: "Noto Sans SC", sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; text-decoration: none; white-space: nowrap; cursor: pointer; border: none;
  background: var(--bronze); color: #fff; border-radius: 100px; transition: background .15s;
}
.btn-nav:hover { background: var(--bronze2); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: background .2s; }
.nav.scrolled .nav-hamburger span { background: var(--charcoal); }

.nav-mobile {
  display: none; position: fixed; top: 76px; left: 0; right: 0;
  background: #fff; padding: 20px 24px 28px;
  box-shadow: 0 8px 24px rgba(20,23,31,0.12); z-index: 199;
  flex-direction: column; gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { display: block; padding: 13px 0; font-size: 15px; font-weight: 500; color: var(--charcoal); text-decoration: none; border-bottom: 1px solid #eee; }
.nav-mobile a:last-of-type { border-bottom: none; }

/* ══════════════════════════════════════════
   HERO (homepage full-height)
══════════════════════════════════════════ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--charcoal2); }
.hero-img { position: absolute; inset: 0; background-size: cover; background-position: center 35%; opacity: 0.28; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(11,13,18,0.5) 0%, rgba(11,13,18,0.2) 45%, rgba(11,13,18,0.75) 100%); }
.hero-overlay-left { position: absolute; inset: 0; background: linear-gradient(to right, rgba(11,13,18,0.75) 0%, rgba(11,13,18,0.15) 55%, transparent 100%); }
.hero-content { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; padding: 148px 64px 100px; width: 100%; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 14px; font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bronze); margin-bottom: 28px; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--bronze); }
.hero-h1 { font-size: clamp(36px, 5vw, 62px); font-weight: 700; color: #fff; line-height: 1.18; margin-bottom: 24px; max-width: 640px; }
.hero-sub { font-size: clamp(15px, 1.6vw, 18px); font-weight: 400; color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 44px; max-width: 480px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; opacity: 0.5; }
.hero-scroll span { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; }
.hero-scroll-line { width: 1px; height: 36px; background: #fff; animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity:.3; transform:scaleY(1); } 50% { opacity:1; transform:scaleY(.6); } }

/* PAGE HERO (inner pages — shorter) */
.page-hero { background: var(--charcoal2); padding: 148px 0 80px; position: relative; overflow: hidden; }
.page-hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.18; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(11,13,18,0.65); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-breadcrumb { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; margin-bottom: 16px; }
.page-hero-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.page-hero-breadcrumb a:hover { color: var(--bronze); }
.page-hero-title { font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 520px; line-height: 1.8; }

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust { background: var(--charcoal); }
.trust-inner { max-width: 1160px; margin: 0 auto; padding: 0 64px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 36px 0; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.trust-item:last-child { border-right: none; }
.trust-num { font-size: clamp(32px, 3.5vw, 46px); font-weight: 700; color: var(--bronze); line-height: 1; margin-bottom: 6px; }
.trust-label { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; }

/* ══════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════ */
.services { padding: 96px 0; background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--bronze-border); }
.svc-card { padding: 44px 32px 40px; border-right: 1px solid var(--bronze-border); display: flex; flex-direction: column; border-top: 3px solid transparent; transition: background .2s, border-top-color .2s; }
.svc-card:last-child { border-right: none; }
.svc-card:hover { background: var(--bronze-tint); border-top-color: var(--bronze); }
.svc-icon { width: 56px; height: 56px; background: var(--bronze-tint); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; flex-shrink: 0; }
.svc-icon svg { width: 24px; height: 24px; color: var(--bronze); }
.svc-num { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; color: var(--bronze); margin-bottom: 12px; text-transform: uppercase; }
.svc-title { font-size: 18px; font-weight: 700; color: var(--charcoal); margin-bottom: 14px; line-height: 1.3; }
.svc-body { font-size: 14px; color: var(--muted); line-height: 1.85; flex: 1; margin-bottom: 28px; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--bronze); text-decoration: none; letter-spacing: 0.04em; transition: gap .15s; }
.svc-link:hover { gap: 10px; }
.svc-link svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════
   ABOUT SPLIT
══════════════════════════════════════════ */
.about { padding: 96px 0; background: var(--bronze-tint); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; height: 540px; object-fit: cover; display: block; }
.about-img-wrap::before { content: ''; position: absolute; bottom: -16px; left: -16px; width: 80px; height: 80px; border-left: 3px solid var(--bronze); border-bottom: 3px solid var(--bronze); z-index: 1; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.about-stat-num { font-size: 36px; font-weight: 700; color: var(--bronze); line-height: 1; margin-bottom: 4px; }
.about-stat-lbl { font-size: 13px; color: var(--muted); }
.about-body { font-size: 15px; color: var(--muted); line-height: 1.9; margin-bottom: 28px; }
.about-feats { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.about-feat { display: flex; align-items: flex-start; gap: 14px; }
.about-feat-dot { width: 6px; height: 6px; background: var(--bronze); flex-shrink: 0; margin-top: 8px; }
.about-feat-text { font-size: 14px; color: var(--muted); line-height: 1.75; }
.about-feat-text strong { color: var(--charcoal); font-weight: 600; }

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-sec { padding: 96px 0; background: var(--charcoal2); position: relative; overflow: hidden; }
.cta-sec::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(184,132,61,0.03) 0px, rgba(184,132,61,0.03) 1px, transparent 1px, transparent 60px); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.cta-left { max-width: 560px; }
.cta-heading { font-size: clamp(28px, 4vw, 46px); font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 16px; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.8; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq { padding: 96px 0; background: #fff; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--bronze-border); }
.faq-item:first-child { border-top: 1px solid var(--bronze-border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; font-size: 15px; font-weight: 600; color: var(--charcoal); cursor: pointer; line-height: 1.5; user-select: none; background: none; border: none; text-align: left; width: 100%; transition: color .15s; }
.faq-q:hover { color: var(--bronze); }
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--bronze); transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.85; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s ease; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* FAQ full page */
.faq-page { padding: 80px 0 96px; background: #fff; }
.faq-categories { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.faq-tab { padding: 8px 20px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; background: transparent; border: 2px solid var(--bronze-border); border-radius: 100px; cursor: pointer; transition: all .15s; color: var(--muted); }
.faq-tab.active, .faq-tab:hover { border-color: var(--bronze); color: var(--charcoal); background: var(--bronze-tint); }
.faq-section-title { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze); margin: 40px 0 0; padding-bottom: 12px; border-bottom: 2px solid var(--bronze-tint); }
.faq-section-title:first-child { margin-top: 0; }

.faq-contact-card { background: var(--bronze-tint); padding: 44px 40px; border-top: 3px solid var(--bronze); }
.faq-contact-title { font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 14px; line-height: 1.3; }
.faq-contact-body { font-size: 14px; color: var(--muted); line-height: 1.85; margin-bottom: 28px; }
.faq-contact-btns { display: flex; flex-direction: column; gap: 12px; }

/* ══════════════════════════════════════════
   SERVICE PAGE
══════════════════════════════════════════ */
.svc-overview { padding: 96px 0; background: #fff; }
.svc-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.svc-overview-img { width: 100%; height: 480px; object-fit: cover; display: block; }
.svc-includes { padding: 80px 0; background: var(--bronze-tint); }
.svc-includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.svc-include-card { background: #fff; padding: 32px 28px; border-top: 3px solid var(--bronze); }
.svc-include-num { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; color: var(--bronze); margin-bottom: 12px; }
.svc-include-title { font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.svc-include-body { font-size: 14px; color: var(--muted); line-height: 1.8; }

.svc-process { padding: 80px 0; background: var(--charcoal); }
.svc-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; }
.svc-step { padding: 0 32px 0 0; border-right: 1px solid rgba(255,255,255,0.1); position: relative; }
.svc-step:last-child { border-right: none; padding-right: 0; }
.svc-step-num { font-size: 48px; font-weight: 700; color: var(--bronze); opacity: 0.3; line-height: 1; margin-bottom: 12px; }
.svc-step-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.svc-step-body { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.85; }

.svc-why { padding: 80px 0; background: #fff; }
.svc-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 0; }
.svc-why-card { padding: 36px 32px; border: 1px solid var(--bronze-border); }
.svc-why-icon { width: 48px; height: 48px; background: var(--bronze-tint); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.svc-why-icon svg { width: 20px; height: 20px; color: var(--bronze); }
.svc-why-title { font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.svc-why-body { font-size: 14px; color: var(--muted); line-height: 1.8; }

.svc-related { padding: 80px 0; background: var(--bronze-tint); }
.svc-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 0; }
.svc-related-card { background: #fff; padding: 32px 28px; border-top: 3px solid transparent; transition: border-top-color .2s; text-decoration: none; display: block; }
.svc-related-card:hover { border-top-color: var(--bronze); }
.svc-related-title { font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.svc-related-body { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.svc-related-link { font-size: 13px; font-weight: 600; color: var(--bronze); display: inline-flex; align-items: center; gap: 6px; }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-story { padding: 96px 0; background: #fff; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-story-img { width: 100%; height: 500px; object-fit: cover; display: block; }
.about-story-body { font-size: 16px; color: var(--muted); line-height: 2; margin-bottom: 20px; }
.about-values { padding: 80px 0; background: var(--bronze-tint); }
.about-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.about-value-card { background: #fff; padding: 40px 28px; border-top: 3px solid var(--bronze); }
.about-value-icon { width: 52px; height: 52px; background: var(--bronze-tint); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.about-value-icon svg { width: 22px; height: 22px; color: var(--bronze); }
.about-value-title { font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.about-value-body { font-size: 13px; color: var(--muted); line-height: 1.85; }

.about-team { padding: 80px 0; background: #fff; }
.about-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { }
.team-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; background: var(--bronze-tint); }
.team-photo-placeholder { width: 100%; aspect-ratio: 1/1; background: linear-gradient(135deg, var(--bronze-tint) 0%, #e8ddd0 100%); display: flex; align-items: center; justify-content: center; }
.team-photo-placeholder svg { width: 48px; height: 48px; color: var(--bronze); opacity: 0.4; }
.team-info { padding: 20px 0 0; }
.team-name { font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--bronze); font-weight: 500; margin-bottom: 8px; }
.team-bio { font-size: 13px; color: var(--muted); line-height: 1.75; }

.about-image-banner { width: 100%; height: 400px; object-fit: cover; display: block; }
.about-image-banner-wrap { overflow: hidden; position: relative; }
.about-image-banner-wrap::after { content: ''; position: absolute; inset: 0; background: rgba(11,13,18,0.3); }

/* ══════════════════════════════════════════
   IMAGE PLACEHOLDERS
══════════════════════════════════════════ */
.img-placeholder {
  background: linear-gradient(135deg, #e8ddd0 0%, var(--bronze-tint) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted2); font-size: 13px; letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: var(--charcoal); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; text-decoration: none; }
.footer-logo-mark { width: 34px; height: 34px; background: var(--bronze); display: flex; align-items: center; justify-content: center; }
.footer-logo-mark span { font-size: 12px; font-weight: 700; color: #fff; }
.footer-logo-name { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 0.06em; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 28px; max-width: 260px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 12px; font-weight: 600; transition: border-color .15s, color .15s; }
.footer-social a:hover { border-color: var(--bronze); color: var(--bronze); }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color .15s; }
.footer-col ul li a:hover { color: var(--bronze); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-icon { width: 16px; flex-shrink: 0; margin-top: 2px; color: var(--bronze); }
.footer-contact-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.28); letter-spacing: 0.04em; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.28); text-decoration: none; transition: color .15s; }
.footer-bottom-links a:hover { color: var(--bronze); }

/* ══════════════════════════════════════════
   LEAD MODAL
══════════════════════════════════════════ */
.modal-backdrop { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(11,13,18,0.82); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop.open { display: flex; }
.modal { background: #fff; width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto; position: relative; border-top: 4px solid var(--bronze); animation: modalIn .25s ease; }
@keyframes modalIn { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: var(--muted2); font-size: 22px; line-height: 1; padding: 0; transition: color .15s; }
.modal-close:hover { color: var(--charcoal); }
.modal-progress { display: flex; align-items: center; gap: 8px; padding: 28px 40px 0; }
.modal-dot { width: 8px; height: 8px; background: #e0d5c4; transition: background .25s, width .25s; }
.modal-dot.active { background: var(--bronze); width: 24px; }
.modal-dot.done { background: var(--bronze); opacity: 0.4; }
.modal-step-label { margin-left: auto; font-size: 11px; font-weight: 500; color: var(--muted2); letter-spacing: 0.08em; }
.modal-body { padding: 24px 40px 40px; }
.modal-step { display: none; }
.modal-step.active { display: block; }
.modal-step-title { font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; line-height: 1.3; }
.modal-step-sub { font-size: 13px; color: var(--muted2); margin-bottom: 28px; line-height: 1.6; }
.modal-cards { display: grid; gap: 10px; margin-bottom: 32px; }
.modal-cards--4 { grid-template-columns: 1fr 1fr; }
.modal-cards--3 { grid-template-columns: repeat(3, 1fr); }
.modal-cards--6 { grid-template-columns: repeat(3, 1fr); }
.modal-card { padding: 18px 16px; border: 2px solid var(--bronze-border); cursor: pointer; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; transition: border-color .15s, background .15s; user-select: none; }
.modal-card:hover { border-color: var(--bronze); background: var(--bronze-tint); }
.modal-card.selected { border-color: var(--bronze); background: var(--bronze-tint); }
.modal-card.selected .modal-card-icon { background: var(--bronze); }
.modal-card.selected .modal-card-icon svg { color: #fff; }
.modal-card-icon { width: 40px; height: 40px; background: var(--bronze-tint); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .15s; flex-shrink: 0; }
.modal-card-icon svg { width: 18px; height: 18px; color: var(--bronze); }
.modal-card-label { font-size: 13px; font-weight: 600; color: var(--charcoal); line-height: 1.3; }
.modal-card-sub { font-size: 11px; color: var(--muted2); line-height: 1.4; }
.modal-contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.modal-method { padding: 16px 12px; border: 2px solid var(--bronze-border); cursor: pointer; text-align: center; transition: border-color .15s, background .15s; }
.modal-method:hover, .modal-method.selected { border-color: var(--bronze); background: var(--bronze-tint); }
.modal-method-icon { font-size: 22px; margin-bottom: 6px; }
.modal-method-name { font-size: 13px; font-weight: 600; color: var(--charcoal); }
.modal-field { margin-bottom: 16px; }
.modal-field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted2); margin-bottom: 8px; }
.modal-field input { width: 100%; padding: 12px 16px; font-family: "Noto Sans SC", sans-serif; font-size: 14px; color: var(--charcoal); background: #fff; border: 2px solid var(--bronze-border); border-radius: 0; outline: none; transition: border-color .15s; }
.modal-field input:focus { border-color: var(--bronze); }
.wechat-panel { display: none; text-align: center; padding: 24px; background: var(--bronze-tint); margin-bottom: 16px; }
.wechat-panel.show { display: block; }
.wechat-qr-placeholder { width: 140px; height: 140px; background: #e8ddd0; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--muted2); text-align: center; line-height: 1.6; }
.wechat-id { font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.wechat-note { font-size: 12px; color: var(--muted2); line-height: 1.6; margin-bottom: 12px; }
.wechat-mobile-btn { display: none; width: 100%; padding: 13px; font-family: "Noto Sans SC", sans-serif; font-size: 14px; font-weight: 600; background: #07C160; color: #fff; border: none; border-radius: 100px; cursor: pointer; margin-top: 8px; align-items: center; justify-content: center; gap: 8px; }
@media (pointer: coarse) { .wechat-mobile-btn { display: flex; } }
.modal-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 8px; }
.modal-back { background: none; border: none; cursor: pointer; font-size: 13px; font-weight: 500; color: var(--muted2); padding: 0; transition: color .15s; display: flex; align-items: center; gap: 6px; }
.modal-back:hover { color: var(--charcoal); }
.modal-back:disabled { opacity: 0; pointer-events: none; }
.modal-back svg { width: 14px; height: 14px; }
.modal-success { display: none; text-align: center; padding: 48px 40px 56px; }
.modal-success.show { display: block; }
.modal-success-icon { width: 64px; height: 64px; background: var(--bronze-tint); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.modal-success-icon svg { width: 28px; height: 28px; color: var(--bronze); }
.modal-success h3 { font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }
.modal-success p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 8px; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-card { border-bottom: 1px solid var(--bronze-border); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); border-top: 1px solid rgba(255,255,255,0.08); }
  .trust-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); }
  .about-values-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .about-team-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .svc-includes-grid, .svc-why-grid, .svc-related-grid { grid-template-columns: 1fr 1fr; }
  .svc-process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .svc-step { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; }
  .svc-step:nth-child(even) { border-bottom: none; padding-bottom: 0; }
}
@media (max-width: 860px) {
  .nav-links, .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  .about-grid, .about-story-grid, .svc-overview-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img, .about-story-img { height: 300px; }
  .svc-overview-img { height: 280px; }
  .modal-cards--3, .modal-cards--6 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .hero-content { padding: 130px 20px 80px; }
  .trust-inner { padding: 0 20px; }
  .services, .about, .cta-sec, .faq, .faq-page, .about-story, .about-values, .about-team, .svc-overview, .svc-includes, .svc-process, .svc-why, .svc-related { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-team-grid { grid-template-columns: 1fr 1fr; }
  .svc-includes-grid, .svc-why-grid, .svc-related-grid { grid-template-columns: 1fr; }
  .svc-process-steps { grid-template-columns: 1fr; }
  .svc-step { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; }
  .cta-inner { flex-direction: column; gap: 32px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-ghost--light { width: 100%; justify-content: center; }
  .footer { padding: 48px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal-body { padding: 20px 24px 32px; }
  .modal-progress { padding: 22px 24px 0; }
  .modal-cards--4 { grid-template-columns: 1fr 1fr; }
  .modal-step-title { font-size: 19px; }
  .page-hero { padding: 120px 0 60px; }
}
