/* ===== 金针财税官网 - 共享样式 V1.1 ===== */
/* 移动端优先设计 */

/* ===== CSS Variables ===== */
:root {
  --blue: #1a3a5c;
  --blue-dark: #122844;
  --blue-light: #234d78;
  --gold: #c8963e;
  --gold-light: #e0b060;
  --gold-pale: #f5e6c8;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f2f5;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #64748b;
  --gray-800: #1e293b;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== Typography ===== */
h1 { font-size: 1.75rem; font-weight: 700; line-height: 1.3; }
h2 { font-size: 1.5rem; font-weight: 700; line-height: 1.35; }
h3 { font-size: 1.2rem; font-weight: 600; line-height: 1.4; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin-bottom: 0.75rem; }
p:last-child { margin-bottom: 0; }

/* ===== Layout ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.section { padding: 48px 0; }
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.section-divider {
  width: 48px; height: 3px;
  background: var(--gold);
  margin: 8px auto 28px;
  border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  min-height: 48px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; min-height: 40px; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; min-height: 52px; }
.btn-block { width: 100%; }

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 58, 92, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,150,62,0.2);
  transition: background var(--transition);
}
.navbar.scrolled {
  background: rgba(18, 40, 68, 0.98);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-menu {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  color: rgba(255,255,255,0.85);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 6px !important;
  padding: 8px 16px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0; bottom: 0;
  background: var(--blue-dark);
  z-index: 999;
  padding: 24px 20px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-cta {
  display: block;
  margin-top: 24px;
  text-align: center;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 8px;
  padding: 14px !important;
  font-size: 1rem !important;
  border-bottom: none !important;
  font-weight: 600;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 40%, #1d4e7a 70%, var(--blue-dark) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 60px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8963e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-city {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(18,40,68,0.6) 0%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 0 64px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,150,62,0.15);
  border: 1px solid rgba(200,150,62,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.hero h1 .gold { color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  margin-top: 4px;
}

/* ===== Cards ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-header {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  padding: 20px;
  color: var(--white);
}
.card-body { padding: 20px; }
.card-tag {
  display: inline-block;
  background: rgba(200,150,62,0.15);
  color: var(--gold);
  border: 1px solid rgba(200,150,62,0.3);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 8px;
}

/* ===== Service Cards Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--gold-pale); }
.service-card.featured { border-color: var(--gold); }
.service-card-header {
  padding: 20px 20px 16px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  position: relative;
}
.service-card-header.gold-bg {
  background: linear-gradient(135deg, #8b6914 0%, var(--gold) 100%);
}
.service-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.service-card-header h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.service-card-header .tagline { color: rgba(255,255,255,0.75); font-size: 0.82rem; }
.service-card-body { padding: 16px 20px 20px; }
.service-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.price-main { font-size: 1.3rem; font-weight: 800; color: var(--blue); }
.price-unit { font-size: 0.85rem; color: var(--text-muted); }
.price-note { font-size: 0.8rem; color: var(--gold); font-weight: 500; margin-left: 6px; }
.service-features {
  margin-bottom: 16px;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.service-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-target {
  font-size: 0.82rem;
  color: var(--blue);
  background: rgba(26,58,92,0.06);
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 14px;
}

/* ===== Value Props ===== */
.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--white);
}
.value-text h4 { color: var(--blue); margin-bottom: 4px; }
.value-text p { font-size: 0.88rem; color: var(--text-muted); }

/* ===== Tools Section ===== */
.tools-section { background: var(--gray-50); }
.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.tool-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.tool-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold-pale); }
.tool-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.tool-card h4 { color: var(--blue); margin-bottom: 6px; font-size: 1rem; }
.tool-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 8px; }
.tool-badge {
  display: inline-block;
  background: var(--gold-pale);
  color: #7a5a1a;
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* ===== VS Compare ===== */
.compare-tabs {
  display: flex;
  background: var(--gray-100);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 24px;
  gap: 4px;
}
.compare-tab {
  flex: 1;
  padding: 10px 8px;
  border: none;
  background: none;
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.compare-tab.active {
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}
.compare-panel { display: none; }
.compare-panel.active { display: block; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 12px 14px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: var(--gray-50);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.82rem;
}
.compare-table .col-jz { background: rgba(26,58,92,0.04); font-weight: 500; color: var(--blue); }
.compare-table tr:last-child td { border-bottom: none; }

/* ===== Customer Cards ===== */
.customer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.customer-card {
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.customer-card h4 { color: var(--blue); font-size: 1rem; margin-bottom: 6px; }
.customer-card .sub { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 12px; }
.pain-list li {
  padding: 4px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pain-list li::before { content: '▸'; color: var(--gold); flex-shrink: 0; }
.customer-card .recommend {
  margin-top: 12px;
  padding: 8px 12px;
  background: rgba(26,58,92,0.06);
  border-radius: 7px;
  font-size: 0.83rem;
  color: var(--blue);
  font-weight: 500;
}

/* ===== Process Steps ===== */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.step-content h4 { color: var(--blue); margin-bottom: 4px; }
.step-content p { font-size: 0.88rem; color: var(--text-muted); }

/* ===== Founder ===== */
.founder-card {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: var(--white);
}
.founder-name { font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; }
.founder-title { color: var(--gold-light); font-size: 0.9rem; margin-bottom: 16px; }
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.founder-tag {
  background: rgba(200,150,62,0.18);
  border: 1px solid rgba(200,150,62,0.35);
  color: var(--gold-light);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.82rem;
}
.founder-desc { color: rgba(255,255,255,0.78); font-size: 0.9rem; line-height: 1.7; }

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 48px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); font-size: 1.4rem; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-bottom: 24px; }

/* ===== Footer ===== */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.7);
  padding: 40px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-logo-img { height: 32px; width: auto; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,0.55); }
.footer-heading { color: var(--white); font-size: 0.95rem; font-weight: 600; margin-bottom: 14px; }
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
}
.footer-contact-item .icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.8); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-qrcodes {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-qr { text-align: center; }
.footer-qr img {
  width: 100px; height: 100px;
  border-radius: 8px;
  background: var(--white);
  padding: 4px;
  object-fit: contain;
  margin-bottom: 6px;
}
.footer-qr span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }

/* ===== Float CTA ===== */
.float-cta {
  position: fixed;
  right: 16px;
  bottom: 80px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  cursor: pointer;
  position: relative;
  border: 2px solid rgba(255,255,255,0.15);
  transition: all var(--transition);
  font-size: 1.3rem;
}
.float-btn:hover { background: var(--blue-light); transform: scale(1.05); }
.float-btn.gold { background: var(--gold); border-color: rgba(255,255,255,0.2); }
.float-btn.gold:hover { background: var(--gold-light); }
.float-btn .tooltip {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.8);
  color: var(--white);
  font-size: 0.78rem;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.float-btn:hover .tooltip { opacity: 1; }
.float-qr-popup {
  position: absolute;
  right: 64px;
  bottom: 0;
  background: var(--white);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  display: none;
  width: 160px;
}
.float-qr-popup.open { display: block; }
.float-qr-popup img {
  width: 120px; height: 120px;
  border-radius: 8px;
  margin-bottom: 8px;
  object-fit: contain;
}
.float-qr-popup p { font-size: 0.78rem; color: var(--text-muted); }
.float-phone {
  display: block;
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
}

/* ===== Form ===== */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.form-label .req { color: #e74c3c; margin-left: 2px; }
.form-control {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,58,92,0.08); }
.form-control::placeholder { color: var(--gray-400); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 80px; }

/* ===== Success Page ===== */
.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}
.success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.success-page h2 { color: var(--blue); margin-bottom: 8px; }
.success-page p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; }
.success-qr img {
  width: 180px; height: 180px;
  border-radius: 12px;
  margin: 0 auto 8px;
  padding: 6px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  object-fit: contain;
}
.success-qr p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== Page Header ===== */
.page-header {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 80px 0 48px;
  text-align: center;
}
.page-header h1 { color: var(--white); font-size: 1.6rem; margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ===== Price Tables ===== */
.price-table { width: 100%; border-collapse: collapse; margin: 12px 0; }
.price-table th, .price-table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-size: 0.88rem;
  text-align: left;
}
.price-table th { background: var(--gray-50); font-weight: 600; color: var(--gray-600); }
.price-table .price-val { font-weight: 700; color: var(--blue); }
.discount-box {
  background: rgba(200,150,62,0.08);
  border: 1px solid rgba(200,150,62,0.25);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 12px 0;
}
.discount-box h4 { color: var(--gold); font-size: 0.9rem; margin-bottom: 8px; }
.discount-box li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 2px 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.discount-box li::before { content: '›'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.monthly-box {
  background: rgba(26,58,92,0.05);
  border: 1px solid rgba(26,58,92,0.15);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 12px 0;
}
.monthly-box .label { font-size: 0.82rem; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.monthly-box p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== Sticky Nav (Services page) ===== */
.sticky-nav {
  position: sticky;
  top: 60px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.sticky-nav-inner {
  display: flex;
  min-width: max-content;
  padding: 0 16px;
}
.sticky-nav a {
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all var(--transition);
}
.sticky-nav a:hover, .sticky-nav a.active {
  color: var(--blue);
  border-bottom-color: var(--gold);
}

/* ===== Disclaimer ===== */
.disclaimer {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== Misc ===== */
.tag { 
  display: inline-block; 
  background: var(--gold-pale); 
  color: #7a5a1a; 
  border-radius: 100px; 
  padding: 3px 10px; 
  font-size: 0.78rem; 
  font-weight: 500; 
}
.tag-blue { background: rgba(26,58,92,0.08); color: var(--blue); }
.highlight { color: var(--gold); font-weight: 700; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.divider { height: 1px; background: var(--border); margin: 24px 0; }

/* ===== Responsive: Tablet+ ===== */
@media (min-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .hero h1 { font-size: 2.1rem; }
  .hero-actions { flex-direction: row; justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .customer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 2.4rem; }
}

/* ===== Responsive: Desktop ===== */
@media (min-width: 900px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }
  .hero { min-height: 90vh; }
  .hero h1 { font-size: 2.6rem; }
  .hero-sub { font-size: 1.1rem; }
  .nav-toggle { display: none; }
  .nav-menu { display: flex; }
  .section-title { font-size: 1.8rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: repeat(3, 1fr); }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .customer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; }
  .process-steps { flex-direction: row; }
  .process-step { flex-direction: column; align-items: center; text-align: center; flex: 1; }
  .hero-stats { gap: 64px; }
  .float-phone { display: none; }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.5s ease forwards; }
