:root { --container: 1280px; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0;
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #111827;
  background: #ffffff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 48px, var(--container)); margin: 0 auto; }
.top-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
}
.top-nav-inner {
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
}
.top-brand { display: flex; align-items: center; margin-left: 16px; }
.top-brand img { width: auto; height: 28px; }
.fs-menu { display: flex; align-items: center; gap: 32px; }
.fs-menu a {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
}
.fs-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 16px;
}
.fs-btn-light, .fs-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 14px;
  transition: all .3s ease;
}
.fs-btn-light {
  border: 1px solid #e2e8f0;
  color: #334155;
  background: #ffffff;
}
.fs-btn-primary {
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
}
.contact-shell {
  overflow: hidden;
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 72%);
  padding: 40px 0 0;
}
.hero {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  padding: 64px 40px 80px;
  text-align: center;
}
.hero-orb {
  position: absolute;
  right: 14%;
  top: 56px;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: rgba(79, 124, 255, 0.08);
}
.hero-question {
  position: absolute;
  right: 14.8%;
  top: 96px;
  width: 66px;
  height: 66px;
  border-radius: 999px;
  border: 1px solid rgba(79, 124, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(79, 124, 255, 0.22);
  font-size: 44px;
  font-weight: 600;
}
.hero-dots {
  position: absolute;
  right: 12%;
  top: 164px;
  width: 74px;
  height: 74px;
  background: radial-gradient(circle, #4f7cff 1px, transparent 1.5px);
  background-size: 8px 8px;
  opacity: 0.78;
}
.hero h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.search {
  width: min(680px, 100%);
  margin: 28px auto 0;
  padding: 18px 40px;
  border: 1px solid #d9e1f2;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(79, 124, 255, 0.06);
  text-align: left;
  color: #9ca3af;
  font-size: 18px;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #4f7cff;
  font-size: 16px;
  font-weight: 500;
}
.hero-link span { font-size: 24px; line-height: 1; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 32px auto 0;
}
.contact-card {
  border: 1px solid #eef2ff;
  border-radius: 20px;
  background: #ffffff;
  padding: 24px 32px;
}
.contact-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
}
.icon-shell { display: flex; justify-content: center; }
.contact-card h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.contact-card p.desc {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 2;
  color: #64748b;
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
  color: #4f7cff;
  font-size: 16px;
  font-weight: 600;
}
.service-time {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.8;
  color: #9ca3af;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: #4f7cff;
  font-size: 18px;
  font-weight: 600;
}
.info-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 16px;
}
.info-column {
  padding: 32px 40px 16px;
}
.info-column + .info-column { border-left: 1px solid #e5e7eb; }
.info-column h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.info-column ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.info-column li {
  display: flex;
  gap: 12px;
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.95;
  color: #64748b;
}
.info-column li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  margin-top: 14px;
  border-radius: 999px;
  background: #4f7cff;
}
.info-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #4f7cff;
  font-size: 16px;
  font-weight: 500;
}
.info-cta span { font-size: 24px; line-height: 1; }
.cta-panel {
  margin-top: 72px;
  background: #eaf2ff;
  padding: 88px 24px 92px;
  text-align: center;
}
.cta-panel h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.cta-panel p.desc {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
}
.cta-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 44px;
  margin-top: 24px;
  color: #64748b;
  font-size: 16px;
}
.cta-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-points i {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid #4f7cff;
  border-radius: 999px;
  color: #4f7cff;
  font-style: normal;
  font-size: 12px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 42px;
}
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 500;
}
.cta-primary {
  background: linear-gradient(90deg, #7c5cff 0%, #4f7cff 100%);
  color: #ffffff;
}
.cta-secondary {
  border: 1px solid #4f7cff;
  background: #ffffff;
  color: #4f7cff;
}
.footer {
  position: relative;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: #25282f;
  color: #ffffff;
}
.footer-company-banner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  transform: translateY(-50%);
}
.footer-company-banner span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: #25282f;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 1fr 0.9fr;
  gap: 48px 28px;
  align-items: start;
}
.footer h4 { margin: 0; font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.96); }
.footer-list { display: grid; gap: 16px; margin-top: 24px; }
.footer-list a, .footer-list span { font-size: 15px; color: rgba(255,255,255,0.62); }
.footer-actions { display: grid; gap: 16px; justify-items: start; }
.footer-pill-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: #4f7cff;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}
.footer-bottom {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.footer-brand-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}
.footer-brand img { width: auto; height: 26px; }
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-social {
  padding: 0;
  border: 0;
  font: inherit;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
}
.footer-social > img { width: 22px; height: 22px; object-fit: contain; }
.footer-qr {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%);
  display: none;
  width: 148px;
  height: 148px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15,23,42,0.16);
  z-index: 10;
}
.footer-qr img {
  width: 132px;
  height: 132px;
  border-radius: 12px;
  object-fit: cover;
}
.footer-social:hover .footer-qr { display: flex; }
.footer-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: rgba(255,255,255,0.58);
  font-size: 14px;
}
.footer-meta-row svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-locale { position: relative; }
.footer-locale-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.58);
  font-size: 14px;
}
.footer-locale-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  display: none;
  min-width: 124px;
  padding: 8px;
  border-radius: 16px;
  background: #ffffff;
  color: #1f2937;
  box-shadow: 0 14px 30px rgba(15,23,42,0.18);
}
.footer-locale.open .footer-locale-menu { display: block; }
.footer-locale-item {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  text-align: left;
  font-size: 14px;
}
.footer-locale-item.active { color: #4f7cff; }
.footer-locale-item:hover { background: #f5f7ff; }
.footer-legal {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.42);
}
@media (max-width: 1100px) {
  .contact-cards, .info-columns, .footer-grid { grid-template-columns: 1fr; }
  .info-column + .info-column { border-left: 0; border-top: 1px solid #e5e7eb; }
  .footer-brand-row { flex-direction: column; align-items: flex-start; }
  .footer-meta-row { justify-content: flex-start; }
}
@media (max-width: 820px) {
  .fs-menu { display: none; }
  .contact-card-inner { grid-template-columns: 1fr; }
  .hero h1, .cta-panel h2 { font-size: 36px; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .top-nav-inner { padding: 0 8px; }
  .top-brand { margin-left: 0; }
  .fs-actions { margin-right: 0; }
  .hero { padding: 48px 20px 56px; }
  .search { padding: 16px 22px; font-size: 16px; }
  .contact-card, .info-column { padding: 24px 20px; }
  .cta-panel { padding: 64px 20px 72px; }
}

.footer-actions-spaced { margin-top: 16px; }
.footer-contact-line { display: inline-flex; align-items: center; gap: 8px; }
.footer-record-link { display: inline-flex; align-items: center; gap: 6px; }
