/* Mobile Header & Navigation */
.m-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.m-header-inner {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
.m-left, .m-right {
  display: flex;
  align-items: center;
}
.m-logo {
  font-weight: 700;
  font-size: 16px;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}
.m-menu-toggle {
  background: transparent;
  border: none;
  padding: 8px;
  font-size: 24px;
  color: #111827;
  cursor: pointer;
}
.m-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.m-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.m-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: #fff;
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.m-menu-drawer.active {
  transform: translateX(0);
}
.m-menu-header {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}
.m-menu-title {
  font-weight: 700;
  font-size: 16px;
}
.m-menu-close {
  background: transparent;
  border: none;
  font-size: 20px;
  padding: 8px;
  color: #6b7280;
}
.m-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.m-menu-item {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  color: #1f2937;
  border-bottom: 1px solid #f3f4f6;
  font-weight: 500;
}
.m-menu-group {
  margin-top: 16px;
}
.m-menu-group-title {
  font-size: 12px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-weight: 600;
}
.m-menu-group .m-menu-item {
  padding: 10px 0 10px 12px;
  font-size: 14px;
  color: #4b5563;
  border-bottom: 0;
}
.m-menu-footer {
  padding: 16px;
  border-top: 1px solid var(--line);
}
.m-menu-footer .btn {
  width: 100%;
}

/* Mobile Typography & Spacing Updates */
.m-hero {
  padding: 40px 0 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(230,57,70,0.05) 0%, rgba(255,255,255,0) 100%);
}
.m-hero h1 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.m-hero p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  padding: 0 16px;
  margin-bottom: 24px;
}
.m-hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
}
.m-hero-actions .btn {
  flex: 1;
  height: 44px;
  font-size: 15px;
}

/* Card Improvements */
.m-feature-item, .m-solution, .m-price {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 16px;
}
.m-feature-item h3, .m-solution h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #111827;
}
.m-feature-item p, .m-solution p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}
/* Reveal Animations for injected PC blocks on mobile */
.feature-card, .solution-card, .app-item, .price-card, .case-card {
  transform: translateY(8px);
  opacity: 0;
  transition: transform .6s cubic-bezier(.22,.61,.36,1), opacity .6s ease;
}
.feature-card.reveal, .solution-card.reveal, .app-item.reveal, .price-card.reveal, .case-card.reveal {
  transform: translateY(0);
  opacity: 1;
}

header.site-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  margin: 0 !important;
  padding: 0 !important;
}
body.page-solution {
  padding-top: 56px;
  margin-top: 0;
}

html, body {
  margin: 0 !important;
}

.site-header .container {
  padding: 0 16px;
}

.page-solution .hero-sign {
  color: var(--brand);
}

.page-solution .hero-sign .iconfont {
  color: var(--brand);
}

.page-solution .qr { display: none; }
.page-solution .case-card .case-cta { margin-top: 10px; }

.page-solution .cases .btn.solid.xs {
  height: 36px;
  padding: 0 14px;
  font-size: 13px;
  border-radius: 10px;
}

/* Ensure bottom bar fully visible on mobile pages */
body {
  padding-bottom: calc(56px + env(safe-area-inset-bottom));
}

.page-solution section h2 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 16px;
}
.page-solution .hero {
  padding: 64px 0 24px;
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}
.page-solution .hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.page-solution .hero h1 { font-size: 24px; line-height: 1.25; }
.page-solution .hero p { font-size: 14px; color: #4b5563; }
.page-solution .hero-actions { display: inline-flex; gap: 10px; }
.page-solution .hero-actions .btn { height: 42px; font-size: 14px; }
.page-solution .visual-placeholder { height: 220px; border-radius: 12px; }

.page-solution .solutions { padding: 24px 0; }
.page-solution .solution-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.page-solution .solution-card { padding: 14px; border-radius: 14px; border: 1px solid #e5e7eb; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.page-solution .solution-card h3 { font-size: 16px; }
.page-solution .solution-card ul { margin: 10px 0 0; padding-left: 18px; }
.page-solution .solution-card ul li { line-height: 1.6; color: #4b5563; }

.page-solution .cases { padding: 24px 0; }
.page-solution .cases-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.page-solution .case-cover { height: 160px; }

/* Cases page mobile overrides */
.page-cases .hero {
  padding: 64px 0 24px;
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}
.page-cases .hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: center;
}
.page-cases .hero h1 { font-size: 24px; }
.page-cases .hero p { font-size: 14px; color: #4b5563; }
.page-cases .hero-actions .btn { height: 42px; font-size: 14px; }
.page-cases .cases { padding: 24px 0; }
.page-cases .cases-filter { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.page-cases .cases-filter .btn { height: 36px; font-size: 13px; }
.page-cases .cases-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.page-cases .case-card { border: 1px solid #e5e7eb; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.page-cases .case-cover { height: 160px; background-size: cover; background-position: center; }
.page-cases .case-meta { padding: 12px 14px; }
.page-cases .case-meta h3 { font-size: 16px; margin: 0 0 6px; color: #111827; }
.page-cases .case-meta p { margin: 0; color: #6b7280; }
.page-cases .qr { display: none; }
.page-cases .case-cta { margin: 10px 14px 14px; }

/* Hide industry filter on mobile cases page */
.page-cases .cases-filter { display: none !important; }

/* Remove dark footer block on mobile cases page */
.page-cases .site-footer {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  min-height: 0 !important;
}
.page-cases .site-footer .m-footer-inner { display: none !important; }

/* Compare page (mobile) – hide heavy visuals and footer block */
.page-compare .site-footer {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  min-height: 0 !important;
}
.page-compare .site-footer .m-footer-inner { display: none !important; }
.page-compare .hero-visual,
.page-compare .visual-placeholder { display: none !important; }
/* Home page sections mobile overrides */
.page-home section h2 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
}
.page-home .hero {
  padding: 72px 0 24px;
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}
.page-home .hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: center;
}
.page-home .hero h1 { font-size: 28px; line-height: 1.25; }
.page-home .hero p { font-size: 14px; color: #4b5563; }
.page-home .hero-actions { display: flex; gap: 10px; justify-content: center; }
.page-home .hero-actions .btn { flex: 1; height: 42px; font-size: 14px; }
.page-home .visual-placeholder { height: 220px; border-radius: 12px; background-size: contain !important; }

.page-home .features { padding: 24px 0; }
.page-home .feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.page-home .feature-card {
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.page-home .feature-card .icon { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; background: #f3f4f6; color: #e63946; margin: 0 auto 8px; }
.page-home .feature-card h3 { font-size: 16px; margin: 6px 0; text-align: center; }
.page-home .feature-card p { font-size: 13px; color: #6b7280; text-align: center; }

.page-home .solutions { padding: 24px 0; }
.page-home .solution-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.page-home .solution-card { padding: 14px; border-radius: 14px; border: 1px solid #e5e7eb; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.page-home .solution-card h3 { font-size: 16px; display: flex; align-items: center; gap: 8px; }
.page-home .solution-card .title-icon { width: 24px; height: 24px; border-radius: 6px; display: grid; place-items: center; }
.page-home .solution-card ul { margin: 10px 0 0; padding-left: 18px; }
.page-home .solution-card ul li { line-height: 1.6; color: #4b5563; }

.page-home .market { padding: 24px 0; }
.page-home .market-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.page-home .market-bar h2 { flex: 1; margin: 0; font-size: 22px; line-height: 1.3; font-weight: 700; }
.page-home .market-bar .btn { display: none !important; }
.page-home .apps { grid-template-columns: 1fr 1fr; gap: 12px; }
.page-home .app-item { border-radius: 16px; overflow: hidden; }
.page-home .app-thumb { height: 100px; }
.page-home .app-info h3 { font-size: 15px; }
.page-home .app-info p { font-size: 12px; }
.page-home .market-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}
.page-home .market-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e5e7eb;
  transition: all 0.3s;
}
.page-home .market-dot.active {
  background: var(--brand);
  width: 16px;
  border-radius: 3px;
}

.page-home .pricing { padding: 24px 0; }
.page-home .pricing h2 { text-align:left; }
.page-home .pricing-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }

.page-home .price-card { padding: 16px; border-radius: 14px; border: 1px solid #e5e7eb; }
.page-home .price-card .price { font-size: 18px; }
.page-home .price-card .btn { width: 100%; }

.page-home .cases { padding: 24px 0; }
.page-home .cases-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.page-home .case-card { border: 1px solid #e5e7eb; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.page-home .case-cover { height: 160px; background-size: cover; background-position: center; }
.page-home .case-meta { padding: 12px 14px; }
.page-home .case-meta h3 { font-size: 16px; margin: 0 0 6px; color: #111827; }
.page-home .case-meta p { margin: 0; color: #6b7280; }
.page-home .qr { display: none; }
.page-home .case-cta { margin: 10px 14px 14px; }
.page-home .qr .qr-inner { width: 100px; height: 100px; }

/* Bottom Bar */
.m-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 990;
  padding-bottom: env(safe-area-inset-bottom);
}
.m-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #6b7280;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 10px;
  transition: all .2s ease;
}
.m-bar-item .iconfont {
  font-size: 20px;
  color: var(--brand);
}
.m-bar-item svg {
  width: 20px;
  height: 20px;
  fill: var(--brand);
  display: block;
}
.m-bar-item.active {
  color: var(--brand);
  background: rgba(230,57,70,0.06);
  box-shadow: 0 6px 20px rgba(230,57,70,0.10);
}
.m-bottom-bar .m-bar-item:hover {
  background: rgba(0,0,0,0.04);
}

/* Footer Update */
.m-footer {
  padding: 32px 0 80px; /* Extra padding for bottom bar */
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  color: #6b7280;
}
.page-home .site-footer,
.page-plugin .site-footer,
.page-service .site-footer,
.page-about .site-footer,
.page-solution .site-footer,
.page-version .site-footer {
  padding: 0;
  background: transparent;
  border: 0;
  min-height: 0;
}
.page-home .site-footer .m-footer-inner,
.page-plugin .site-footer .m-footer-inner,
.page-service .site-footer .m-footer-inner,
.page-about .site-footer .m-footer-inner,
.page-solution .site-footer .m-footer-inner,
.page-version .site-footer .m-footer-inner {
  display: none;
}
.m-footer-contact h4 {
  color: #111827;
  margin-bottom: 12px;
  font-size: 16px;
}
.m-footer-contact p {
  margin: 4px 0;
  font-size: 13px;
}
.m-footer-links {
  margin: 24px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.m-footer-links a {
  font-size: 13px;
  color: #4b5563;
}
.m-footer-copyright {
  font-size: 12px;
  color: #9ca3af;
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
  margin-top: 16px;
}

/* Comparison Modal */
.compare-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.compare-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.compare-modal {
  background: #fff;
  width: 95%;
  max-width: 1000px;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s;
}
.compare-modal-overlay.active .compare-modal {
  transform: translateY(0);
}
.compare-header {
  padding: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.compare-header h3 {
  margin: 0;
  font-size: 18px;
  color: #111;
}
.compare-close {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 0 8px;
}
.compare-body {
  padding: 16px;
  overflow: auto;
}
.compare-footer {
  padding: 12px 16px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
  background: #fff;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
  font-size: 13px;
}
.compare-table th, .compare-table td {
  border: 1px solid #eee;
  padding: 10px;
  text-align: center;
  color: #333;
}
.compare-table th {
  background: #f9f9f9;
  font-weight: 600;
}
.compare-table tr td:first-child,
.compare-table tr th:first-child {
  text-align: left;
  font-weight: 600;
  background: #f9f9f9;
  width: 100px;
  position: sticky;
  left: 0;
  z-index: 10;
}
.compare-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1900;
  transition: transform 0.3s;
  border: 1px solid #eee;
  width: 90%;
  max-width: 400px;
  justify-content: space-between;
}
.compare-bar.active {
  transform: translateX(-50%) translateY(0);
}
.compare-count {
  font-weight: 600;
  color: #E63946;
  font-size: 14px;
  white-space: nowrap;
}
.compare-items {
  display: none; /* Hide items on mobile to save space */
}
.compare-bar .btn {
  height: 32px;
  padding: 0 12px;
  font-size: 13px;
}
.m-footer {
  padding: 20px 0 40px;
  background: #0e1117;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  color: var(--muted);
}
.page-plugin .plugin-hero {
  padding: 32px 0 16px;
  text-align: center;
  background: linear-gradient(135deg, #f9fafb 0%, #edf2f7 100%);
}
.page-plugin .plugin-hero h1 {
  font-size: 24px;
  margin: 0 0 12px;
  color: #111827;
}
.page-plugin .plugin-hero p {
  font-size: 14px;
  color: #6b7280;
  max-width: 90%;
  margin: 0 auto 16px;
}
.page-plugin .hero-actions .btn {
  width: 100%;
}
.page-plugin .plugin-features {
  padding: 20px 0;
  background: #fff;
}
.page-plugin .feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}
.page-plugin .feature-item {
  padding: 14px;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
}
.page-plugin .feature-icon {
  width: 40px;
  height: 40px;
  background: #e2e8f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.page-plugin .feature-icon i {
  font-size: 20px;
  color: #2d3748;
}
.page-plugin .feature-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #1a202c;
}
.page-plugin .feature-item p {
  color: #6b7280;
  line-height: 1.6;
}
.page-plugin .cases {
  padding: 20px 0;
  background: #fff;
}
.page-plugin .cases h2 {
  font-size: 22px;
  margin-bottom: 12px;
}
.page-plugin .cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.page-plugin .case-card {
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.page-plugin .case-cover {
  height: 160px;
  background: #f4f5f7 center no-repeat;
  background-size: cover;
}
.page-plugin .case-meta {
  padding: 12px 14px;
  background: #ffffff;
}
.page-plugin .case-meta h3 {
  font-size: 16px;
  margin: 0 0 6px;
  color: #111827;
}
.page-plugin .case-meta p {
  margin: 0;
  color: #6b7280;
}
.contact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.contact-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.contact-modal {
  background: #fff;
  width: 94%;
  max-width: 560px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  overflow: hidden;
  transform: translateY(12px);
  transition: transform 0.3s;
}
.contact-modal-overlay.active .contact-modal {
  transform: translateY(0);
}
.contact-header {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.contact-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #111827;
}
.contact-close {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
}
.contact-body {
  padding: 20px;
}
.contact-card {
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  overflow: hidden;
}
.card-top {
  padding: 12px 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
}
.card-body {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  justify-items: center;
}
.qr-box {
  width: 160px;
  height: 160px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}
.qr-box img {
  width: 150px;
  height: 150px;
  display: block;
}
.desc {
  color: #6b7280;
  margin-top: 6px;
}
.contact-list {
  margin-top: 16px;
  display: grid;
  gap: 6px;
}
.contact-list .name {
  font-weight: 700;
  color: #111827;
}
.contact-list .phone {
  color: var(--brand);
  font-weight: 700;
}
.contact-footer {
  padding: 14px 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  display: flex;
  justify-content: flex-end;
}
.contact-footer .btn {
  min-width: 140px;
}
.contact-fab {
  position: fixed;
  right: 12px;
  bottom: 100px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.contact-fab .fab-main {
  width: 56px;
  height: 140px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: 0 12px 30px rgba(230,57,70,0.35);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.contact-fab .fab-main .iconfont {
  font-size: 22px;
}
.contact-fab .fab-main span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 2px;
  font-weight: 700;
}
.contact-fab .fab-mini {
  width: 56px;
  height: 56px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,0,0,0.08);
  color: #111827;
  cursor: pointer;
}
.contact-fab .fab-mini.up .iconfont {
  transform: rotate(-90deg);
}
.contact-fab .panel {
  position: absolute;
  right: 68px;
  bottom: 0;
  width: 92vw;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all .25s;
}
.contact-fab .panel.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.contact-fab .panel .panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.6);
}
.contact-fab .panel .panel-body {
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  justify-items: center;
}
.contact-fab .panel .qr-box {
  width: 150px;
  height: 150px;
  border-radius: 14px;
  background: #ffffff;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.contact-fab .panel .qr-box img {
  width: 142px;
  height: 142px;
  display: block;
}
.contact-fab .panel .contact-list {
  display: grid;
  gap: 6px;
  width: 100%;
}
.contact-fab .panel .name {
  font-weight: 700;
  color: #111827;
}
.contact-fab .panel .phone {
  color: var(--brand);
  font-weight: 700;
}
.page-about .feature {
  padding: 24px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.page-about .solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.page-about .solution-card {
  padding: 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.page-about .solution-card h3 {
  margin-bottom: 8px;
}
.page-about .solution-card ul {
  margin-top: 4px;
}
.page-about .solution-card ul li {
  line-height: 1.7;
}
.page-about .feature + .feature {
  padding-top: 24px;
}
.page-about .cases {
  padding: 24px 0;
}
.page-about .cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.page-about .contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.page-service .service {
  padding: 24px 0;
  background: linear-gradient(180deg, rgba(230,57,70,0.05) 0%, rgba(255,255,255,0) 100%);
}
.page-service .service h2 {
  font-size: 22px;
  margin-bottom: 12px;
}
.page-service .solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.page-service .solution-card {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.page-service .solution-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #111827;
}
.page-service .solution-card ul {
  margin: 0;
  padding-left: 18px;
  color: #4b5563;
}
.page-service .solution-card ul li {
  line-height: 1.6;
}
