/* 若水观察 页面专属样式 (ruoshui.css) */

:root {
  --bg-deep: #0a0810;
  --bg-section: #100d18;
  --accent-gold: #E7C5A0;
  --accent-rose: #D4A0A0;
  --accent-warm: #F0B775;
  --accent-purple: #B8A0D4;
  --text-white: #ffffff;
  --text-gray: #c5b8cc;
  --glass-bg: rgba(231, 197, 160, 0.04);
  --glass-border: rgba(231, 197, 160, 0.12);
  --orb-color: #E7C5A0;
}

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

body {
  background-color: rgb(13, 10, 20);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  font-family: "Noto Sans SC", sans-serif;
}

.slide { margin-bottom: 50px; }
.slide:last-of-type { margin-bottom: 0; }
#p0 { margin-top: 60px; padding-top: 30px; min-height: 560px; }

.slide {
  width: 1280px;
  min-height: 720px;
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(600px 400px at 80% 20%, rgba(231, 197, 160, 0.07) 0%, transparent 70%),
    radial-gradient(500px 500px at 20% 80%, rgba(184, 160, 212, 0.05) 0%, transparent 70%),
    linear-gradient(135deg, rgba(10, 8, 16, 0.95) 0%, rgba(16, 13, 24, 0.9) 100%);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  padding: 50px 70px;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--accent-gold) 0.4px, transparent 0.4px);
  background-size: 35px 35px;
  opacity: 0.06;
  pointer-events: none;
}

.slide::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(231, 197, 160, 0.15) 0%, rgba(231, 197, 160, 0.03) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  top: -60px;
  right: -60px;
  filter: blur(2px);
}

.slide-header {
  position: relative;
  z-index: 10;
  margin-bottom: 40px;
  width: fit-content;
}

.title-glass {
  background: rgba(231, 197, 160, 0.03);
  backdrop-filter: blur(15px);
  padding: 15px 35px;
  border-radius: 4px;
  border-left: 6px solid var(--accent-gold);
  border-right: 1px solid var(--glass-border);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.slide-header h2 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 40%, var(--accent-warm) 60%, var(--accent-rose) 80%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.content-body {
  flex: 1;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cover-content {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 40px;
  position: relative;
  z-index: 5;
}

.cover-content h1 {
  font-size: 64px;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cover-subtitle {
  font-size: 28px;
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}

.cover-sub2 {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 50px;
  font-weight: 300;
}

.cover-badge {
  background: rgba(231, 197, 160, 0.12);
  border: 1px solid var(--accent-gold);
  padding: 12px 35px;
  border-radius: 50px;
  font-size: 18px;
  color: var(--accent-gold);
}

.cover-actions {
  display: flex;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: wrap;
  justify-content: center;
}

.cover-actions .cta-btn {
  font-size: 18px;
  padding: 14px 35px;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 18px;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 60px;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Noto Sans SC", sans-serif;
  text-decoration: none;
}

.btn-outline-gold:hover {
  background: rgba(231, 197, 160, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 197, 160, 0.2);
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  background: rgba(231, 197, 160, 0.06);
}

.card i { font-size: 48px; color: var(--accent-gold); margin-bottom: 25px; }
.card h3 { font-size: 24px; color: var(--accent-warm); margin-bottom: 15px; }
.card h4 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--text-gray); line-height: 1.6; font-size: 18px; }

.list-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 25px; }
.list-icon { color: var(--accent-gold); font-size: 24px; margin-top: 5px; }
.list-text { font-size: 22px; color: var(--text-white); }

.hl-gold { color: var(--accent-gold); font-weight: bold; }
.hl-warm { color: var(--accent-warm); font-weight: bold; }

.data-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.data-item {
  background: rgba(231, 197, 160, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
}

.data-item:hover { border-color: var(--accent-gold); }

.data-number {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 8px;
}

.data-label { font-size: 16px; color: #ffffff; }

.brand-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 20px 0;
}

.brand-tag {
  background: rgba(231, 197, 160, 0.08);
  border: 1px solid rgba(231, 197, 160, 0.15);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 16px;
  color: var(--text-white);
  transition: 0.3s;
}

.brand-tag:hover {
  background: rgba(231, 197, 160, 0.15);
  border-color: var(--accent-gold);
}

.brand-tag.featured {
  border-color: var(--accent-gold);
  background: rgba(231, 197, 160, 0.12);
  color: var(--accent-gold);
  font-weight: 700;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(231, 197, 160, 0.02);
}

.pricing-table th {
  background: rgba(231, 197, 160, 0.12);
  color: var(--accent-gold);
  padding: 20px;
  text-align: left;
  border-bottom: 2px solid var(--accent-gold);
}

.pricing-table td {
  padding: 20px;
  border-bottom: 1px solid var(--glass-border);
  font-size: 20px;
  color: var(--text-white);
}

.gold-row { background: rgba(240, 183, 117, 0.08); }

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-slot {
  background: rgba(231, 197, 160, 0.03);
  border: 1px dashed rgba(231, 197, 160, 0.2);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: 0.3s;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.case-slot:hover { border-color: var(--accent-gold); border-style: solid; }

.case-thumb {
  flex: 1;
  background: rgba(231, 197, 160, 0.05);
  border-radius: 8px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 14px;
  min-height: 140px;
}

.case-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.case-thumb.has-img { background: none; overflow: hidden; }

.case-title { font-size: 16px; color: var(--text-white); font-weight: 500; }
.case-desc { font-size: 13px; color: var(--text-gray); margin-top: 4px; }

.process-flow {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.process-step { flex: 1; text-align: center; position: relative; }

.step-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
  color: var(--bg-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 0 25px rgba(231, 197, 160, 0.3);
}

.process-step h4 { color: var(--text-white); font-size: 20px; margin-bottom: 5px; }
.process-step p { color: var(--text-gray); font-size: 16px; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
  color: var(--bg-deep);
  font-size: 22px;
  font-weight: 700;
  padding: 18px 45px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(231, 197, 160, 0.3);
  transition: 0.3s;
  text-decoration: none;
  font-family: "Noto Sans SC", sans-serif;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(231, 197, 160, 0.45);
}

.phone-highlight {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 2px;
  margin: 15px 0;
}

.slide .copy-btn,
.modal-overlay .copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(231, 197, 160, 0.12);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Noto Sans SC", sans-serif;
}

.slide .copy-btn:hover,
.modal-overlay .copy-btn:hover { background: rgba(231, 197, 160, 0.25); }

.footer-note {
  text-align: center;
  padding: 20px;
  font-size: 22px;
  color: var(--accent-gold);
  font-weight: 500;
}

.ssy-deep-bg {
  background-color: var(--bg-deep) !important;
  background-image: radial-gradient(800px 400px, rgba(231, 197, 160, 0.06) 0%, transparent 70%) !important;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.modal-overlay.active { display: flex; }

.modal-box {
  background: rgb(26, 21, 37);
  border: 1px solid var(--accent-gold);
  border-radius: 16px;
  padding: 50px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-gray);
  font-size: 24px;
  cursor: pointer;
}

.modal-close:hover { color: var(--text-white); }

/* Why quote */
.why-quote {
  background: rgba(231, 197, 160, 0.05);
  border-left: 4px solid var(--accent-gold);
  padding: 30px 35px;
  border-radius: 0 12px 12px 0;
  margin: 20px 0;
}

.why-quote p { font-size: 20px; color: var(--text-gray); line-height: 1.8; }
.why-quote p strong { color: var(--text-white); }

/* Tag pills */
.tag-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 15px 0; }

.tag-pill {
  background: rgba(231, 197, 160, 0.1);
  border: 1px solid rgba(231, 197, 160, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 15px;
  color: var(--accent-gold);
}

/* IP layout */
.slide-ip { min-height: auto; }

.ip-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: start;
}

.ip-photo-col { position: relative; }

.ip-photo-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 30px rgba(231, 197, 160, 0.2);
  aspect-ratio: 500 / 900;
  width: 100%;
}

.ip-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ip-info-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}

.ip-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}

.ip-card {
  background: rgba(231, 197, 160, 0.04);
  border: 1px solid rgba(231, 197, 160, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: 0.3s;
}

.ip-card:hover { border-color: var(--accent-gold); background: rgba(231, 197, 160, 0.07); }

.ip-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(231, 197, 160, 0.15), rgba(184, 160, 212, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ip-card-icon i { font-size: 22px; color: var(--accent-gold); }

.ip-card-text h4 { font-size: 16px; color: var(--accent-gold); margin-bottom: 4px; font-weight: 600; }
.ip-card-text p { font-size: 14px; color: var(--text-gray); line-height: 1.5; margin: 0; }

/* Canvas & ambient */
#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

body > :not(#particleCanvas):not(#header-placeholder):not(#footer-placeholder):not(.modal-overlay):not(.float-widget):not(.contact-modal):not(.mobile-menu) {
  position: relative;
  z-index: 1;
}

.ambient-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.12;
  z-index: 0;
  animation: orbFloat 12s ease-in-out infinite alternate;
}

@keyframes orbFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-40px) scale(1.08); }
}

#header-placeholder { width: 100%; position: relative; z-index: 100; }
#footer-placeholder { width: 100%; position: relative; z-index: 1; }

/* ===== 若水专属导航主题 (玫瑰金) ===== */
.ruoshui-nav {
  background: rgba(10, 8, 16, 0.88) !important;
  backdrop-filter: blur(28px) !important;
  -webkit-backdrop-filter: blur(28px) !important;
  border-bottom: 1px solid rgba(231, 197, 160, 0.10) !important;
  box-shadow: 0 2px 30px rgba(231, 197, 160, 0.06);
}
.ruoshui-nav.scrolled {
  background: rgba(10, 8, 16, 0.96) !important;
  border-bottom-color: rgba(231, 197, 160, 0.15) !important;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(231, 197, 160, 0.08) inset;
}

/* 导航链接 - 玫瑰金风格 */
.ruoshui-nav .rs-nav-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s, text-shadow 0.3s;
}
.ruoshui-nav .rs-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-warm), var(--accent-gold), var(--accent-rose));
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), left 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(231, 197, 160, 0.3);
}
.ruoshui-nav .rs-nav-link:hover {
  color: var(--accent-gold);
  text-shadow: 0 0 12px rgba(231, 197, 160, 0.25);
}
.ruoshui-nav .rs-nav-link:hover::after {
  width: 100%;
  left: 0;
}
.ruoshui-nav .rs-nav-link.active {
  color: var(--accent-gold);
  font-weight: 500;
  text-shadow: 0 0 16px rgba(231, 197, 160, 0.3);
}
.ruoshui-nav .rs-nav-link.active::after {
  width: 100%;
  left: 0;
  box-shadow: 0 0 12px rgba(231, 197, 160, 0.45);
}

/* CTA 按钮 - 玫瑰金渐变 */
.ruoshui-nav .btn-cta {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-gold)) !important;
  color: #0a0810 !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(231, 197, 160, 0.25);
  transition: all 0.3s;
}
.ruoshui-nav .btn-cta:hover {
  box-shadow: 0 6px 28px rgba(231, 197, 160, 0.4);
  transform: translateY(-2px);
}

/* 控制台按钮适配 */
.ruoshui-nav .btn-console {
  border-color: rgba(231, 197, 160, 0.35) !important;
  color: var(--accent-gold) !important;
  background: rgba(231, 197, 160, 0.06) !important;
}
.ruoshui-nav .btn-console:hover {
  border-color: var(--accent-gold) !important;
  background: rgba(231, 197, 160, 0.12) !important;
}

/* Logo 旁副标题 */
.ruoshui-nav .header-sub-title {
  color: var(--accent-gold) !important;
  opacity: 0.85;
}
.ruoshui-nav .header-divider {
  background: rgba(231, 197, 160, 0.3) !important;
}

/* 分隔符和登录注册 */
.ruoshui-nav .nav-right .sep {
  color: rgba(231, 197, 160, 0.2);
}
.ruoshui-nav .nav-right a:not(.btn-cta):not(.btn-console) {
  color: rgba(255, 255, 255, 0.55);
}
.ruoshui-nav .nav-right a:not(.btn-cta):not(.btn-console):hover {
  color: var(--accent-gold);
}

/* 导航底部发光线 */
.ruoshui-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231,197,160,0.25) 20%, rgba(212,160,160,0.3) 50%, rgba(184,160,212,0.25) 80%, transparent);
  pointer-events: none;
}

/* 移动端菜单若水主题 */
.page-ruoshui .mobile-menu {
  background: rgba(10, 8, 16, 0.98) !important;
}
.page-ruoshui .mobile-menu .rs-nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.page-ruoshui .mobile-menu .rs-nav-link:hover,
.page-ruoshui .mobile-menu .rs-nav-link.active {
  color: var(--accent-gold);
}
.page-ruoshui .mobile-menu .cta-btn {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-gold));
  color: #0a0810;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(231, 197, 160, 0.25);
}
.page-ruoshui .mobile-menu .close-btn {
  color: var(--accent-gold);
}

/* Slide background variants */
.slide-bg-cover {
  background-image:
    radial-gradient(700px 500px at 50% 40%, rgba(231, 197, 160, 0.12) 0%, transparent 60%),
    radial-gradient(400px 300px at 80% 80%, rgba(184, 160, 212, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, rgb(12, 8, 24) 0%, rgb(10, 8, 16) 100%) !important;
}

.slide-bg-ip {
  background-image:
    radial-gradient(500px 600px at 25% 50%, rgba(231, 197, 160, 0.1) 0%, transparent 60%),
    radial-gradient(350px 350px at 85% 20%, rgba(212, 160, 160, 0.08) 0%, transparent 60%),
    linear-gradient(rgb(13, 10, 20) 0%, rgb(17, 12, 26) 100%) !important;
}

.slide-bg-data {
  background-image:
    radial-gradient(600px 400px at 70% 30%, rgba(240, 183, 117, 0.1) 0%, transparent 60%),
    radial-gradient(400px 400px at 10% 70%, rgba(231, 197, 160, 0.07) 0%, transparent 60%),
    linear-gradient(135deg, rgb(11, 9, 22) 0%, rgb(14, 11, 24) 100%) !important;
}

.slide-bg-brand {
  background-image:
    radial-gradient(500px 500px at 50% 20%, rgba(231, 197, 160, 0.11) 0%, transparent 55%),
    radial-gradient(300px 400px at 90% 80%, rgba(184, 160, 212, 0.06) 0%, transparent 60%),
    linear-gradient(200deg, rgb(12, 9, 24) 0%, rgb(10, 8, 16) 100%) !important;
}

.slide-bg-why {
  background-image:
    radial-gradient(600px 500px at 30% 60%, rgba(212, 160, 160, 0.1) 0%, transparent 55%),
    radial-gradient(400px 300px at 80% 10%, rgba(231, 197, 160, 0.07) 0%, transparent 60%),
    linear-gradient(170deg, rgb(13, 11, 24) 0%, rgb(10, 8, 16) 100%) !important;
}

.slide-bg-pricing {
  background-image:
    radial-gradient(500px 400px at 60% 40%, rgba(240, 183, 117, 0.09) 0%, transparent 55%),
    radial-gradient(350px 350px at 15% 80%, rgba(184, 160, 212, 0.07) 0%, transparent 55%),
    linear-gradient(145deg, rgb(12, 10, 22) 0%, rgb(10, 8, 16) 100%) !important;
}

.slide-bg-case {
  background-image:
    radial-gradient(700px 400px, rgba(231, 197, 160, 0.08) 0%, transparent 55%),
    radial-gradient(300px 300px at 5% 20%, rgba(212, 160, 160, 0.06) 0%, transparent 60%),
    linear-gradient(rgb(11, 9, 22) 0%, rgb(13, 10, 20) 100%) !important;
}

.slide-bg-flow {
  background-image:
    radial-gradient(500px 500px at 50% 30%, rgba(184, 160, 212, 0.1) 0%, transparent 55%),
    radial-gradient(400px 300px at 80% 80%, rgba(231, 197, 160, 0.07) 0%, transparent 60%),
    linear-gradient(160deg, rgb(12, 9, 24) 0%, rgb(10, 8, 16) 100%) !important;
}

/* Section glow */
.section-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% { opacity: 0.12; transform: scale(1); }
  100% { opacity: 0.22; transform: scale(1.1); }
}

/* ===== Responsive ===== */
@media (max-width: 1340px) {
  .slide { width: 96vw; padding: 40px; }
}

@media (max-width: 768px) {
  body { gap: 0; padding: 0; }
  /* 若水页面手机端隐藏通用浮动咨询按钮 */
  .page-ruoshui .float-widget { display: none !important; }
  .slide { margin-bottom: 30px; }
  #p0 { margin-top: 0; }
  .slide { width: 100%; min-height: auto; border-radius: 0; padding: 30px 20px; box-shadow: none; }
  .slide-header h2 { font-size: 24px; letter-spacing: 0; }
  .title-glass { padding: 12px 20px; }
  .cover-content h1 { font-size: 36px; }
  .cover-subtitle { font-size: 20px; }
  .cover-sub2 { font-size: 16px; margin-bottom: 30px; }
  .cover-badge { font-size: 14px; padding: 10px 20px; }
  .grid-3, .grid-2, .data-board, .grid-3[style*="repeat(4"] { grid-template-columns: 1fr !important; }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .content-body[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  .process-flow { flex-direction: column; gap: 25px; margin-top: 20px; }
  .step-circle { width: 60px; height: 60px; font-size: 24px; }
  .card { padding: 25px 20px; }
  .card i { font-size: 36px; margin-bottom: 15px; }
  .card h3 { font-size: 20px; }
  .card p { font-size: 16px; }
  .data-board { grid-template-columns: repeat(2, 1fr) !important; }
  .data-number { font-size: 32px; }
  .list-text { font-size: 18px; }
  .list-item { gap: 12px; margin-bottom: 18px; }
  .phone-highlight { font-size: 28px; }
  .cta-btn { font-size: 18px; padding: 14px 30px; }
  .why-quote { padding: 20px; }
  .why-quote p { font-size: 16px; }
  .modal-box { padding: 30px 20px; }
  .brand-tag { font-size: 14px; padding: 8px 14px; }
  .ip-card-grid { grid-template-columns: 1fr; }
  .ip-card { padding: 14px; }
  .cover-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cover-actions .cta-btn, .btn-outline-gold { font-size: 16px; padding: 12px 28px; }
  .slide [style*="font-size: 48px"] { font-size: 36px !important; }
  .ip-photo { height: 300px !important; }
  .ip-layout { gap: 30px; grid-template-columns: 1fr !important; }
  .ip-photo-frame { max-width: 260px; margin: 0 auto; }

  /* 联系弹窗移动端适配 */
  .contact-modal-card {
    max-height: 85vh;
    overflow-y: auto;
    padding: 24px 18px !important;
    width: 92% !important;
    max-width: 360px !important;
    border-radius: 16px !important;
  }
  .contact-modal-card h3 { font-size: 17px !important; }
  .contact-modal-card > p { font-size: 13px !important; margin-bottom: 16px !important; }
  .contact-staff-item { padding: 10px !important; gap: 10px !important; }
  .contact-staff-avatar { width: 36px !important; height: 36px !important; font-size: 15px !important; border-radius: 10px !important; }
  .contact-staff-info .name { font-size: 13px !important; }
  .contact-staff-info .role { font-size: 11px !important; }
  .contact-modal-close { top: 10px !important; right: 10px !important; width: 30px !important; height: 30px !important; font-size: 20px !important; z-index: 10; }
  .contact-modal-qr img { width: 140px !important; height: 140px !important; }
  .contact-modal-qr { margin-top: 14px !important; padding-top: 14px !important; }
}

@media (max-width: 420px) {
  .case-grid { grid-template-columns: 1fr; }
  .data-board { grid-template-columns: 1fr !important; }
  .cover-content h1 { font-size: 30px; }
  .phone-highlight { font-size: 24px; letter-spacing: 1px; }
}
