/* ============================================
   Brisbane Mortgage Broker
   Light · Energetic · High-Conversion Theme
   Palette: White + Royal Blue + Vibrant Orange
   ============================================ */

:root {
  /* 主色：蓝 */
  --primary: #1E40AF;
  --primary-dark: #1E3A8A;
  --primary-light: #3B82F6;
  --primary-50: #EFF6FF;
  --primary-100: #DBEAFE;

  /* 强调色：橙（CTA） */
  --accent: #F97316;
  --accent-dark: #EA580C;
  --accent-light: #FB923C;
  --accent-50: #FFF7ED;
  --accent-100: #FFEDD5;

  /* 中性色 */
  --bg: #ffffff;
  --bg-soft: #F8FAFC;
  --bg-blue: #F0F6FF;
  --surface: #ffffff;
  --border: #E5E7EB;
  --border-soft: #F1F5F9;

  --text: #0F172A;
  --text-2: #334155;
  --text-dim: #64748B;
  --text-mute: #94A3B8;

  --success: #16A34A;
  --danger: #DC2626;

  /* 布局 */
  --radius: 14px;
  --radius-lg: 20px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --container: 1200px;
  --nav-h: 72px;
  --topbar-h: 38px;

  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.15);
  --shadow-blue: 0 12px 32px rgba(30, 64, 175, 0.18);
  --shadow-orange: 0 12px 32px rgba(249, 115, 22, 0.30);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + var(--topbar-h) + 8px); }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  letter-spacing: -0.02em;
  color: var(--text);
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

html[data-lang="zh"] body { font-family: 'Inter', -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif; }
html[data-lang="zh"] h1, html[data-lang="zh"] h2, html[data-lang="zh"] h3, html[data-lang="zh"] h4, html[data-lang="zh"] h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

/* ============================================
   顶部公告条
   ============================================ */
.topbar {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  font-size: 13px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1001;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.topbar-text { display: inline-flex; align-items: center; gap: 10px; }
.topbar-pill {
  background: var(--accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
}
.topbar-phone {
  display: inline-flex; align-items: center; gap: 6px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}
.topbar-phone:hover { color: var(--accent-light); }

/* ============================================
   NAV 导航
   ============================================ */
.nav {
  position: sticky;
  top: var(--topbar-h);
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 1000;
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex; align-items: center; gap: 12px;
}
.logo-mark {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 12px;
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.logo-sub {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 500;
  margin-top: 1px;
}

.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-2);
  position: relative;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.25s var(--ease);
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-cta { color: #fff !important; }
.nav-cta:hover { color: #fff !important; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.lang-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dim);
  background: #fff;
  transition: all 0.2s var(--ease);
}
.lang-toggle:hover { border-color: var(--primary); color: var(--primary); }
.lang-divider { opacity: 0.4; }

html[data-lang="en"] .lang-en { color: var(--primary); }
html[data-lang="zh"] .lang-zh { color: var(--primary); }

.menu-toggle {
  display: none;
  flex-direction: column; gap: 4px;
  padding: 8px;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================
   BUTTONS 按钮
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.2s var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn-sm { padding: 8px 16px; font-size: 13.5px; }
.btn-lg { padding: 15px 28px; font-size: 16px; }

.btn-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(249, 115, 22, 0.42);
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
}
.btn-cta:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-50);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
}
.btn-ghost:hover { color: var(--text); background: var(--bg-soft); }

.btn-block { width: 100%; }

/* ============================================
   HERO 首屏
   ============================================ */
.hero {
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
  background: linear-gradient(180deg, #F0F6FF 0%, #ffffff 100%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.blob-1 {
  width: 500px; height: 500px;
  background: var(--primary-100);
  opacity: 0.6;
  top: -150px; left: -150px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: var(--accent-100);
  opacity: 0.5;
  bottom: -100px; right: -100px;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30, 64, 175, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 64, 175, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 24px;
  font-weight: 600;
  box-shadow: var(--shadow-xs);
}
.hero-tag .dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.05); }
}

.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero-title .accent {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 12px;
  background: var(--accent-100);
  z-index: -1;
  border-radius: 4px;
}

.hero-sub {
  font-size: 17.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 540px;
}
.hero-sub strong { color: var(--text); font-weight: 700; }

.hero-checks {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-checks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px;
  color: var(--text-2);
  font-weight: 500;
}
.hero-checks .check {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: #DCFCE7;
  color: var(--success);
  border-radius: 50%;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 36px;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 14px 22px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.proof-stars { display: flex; align-items: center; gap: 10px; }
.proof-stars .stars {
  color: #FBBF24;
  font-size: 16px;
  letter-spacing: 1px;
}
.proof-text { display: flex; flex-direction: column; line-height: 1.2; }
.proof-text strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}
.proof-text span { font-size: 11.5px; color: var(--text-dim); }

.proof-divider {
  width: 1px; height: 30px;
  background: var(--border);
}
.proof-badges { display: flex; gap: 8px; }
.proof-badge {
  padding: 4px 10px;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* HERO 右侧 Brisbane 夜晚天际线 */
.hero-right { position: relative; }
.hero-skyline {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px -10px rgba(4, 44, 83, 0.4), 0 8px 24px -4px rgba(4, 44, 83, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #042C53;
}
.hero-skyline svg {
  display: block;
  width: 100%;
  height: auto;
}
.hero-portrait { position: relative; padding: 30px; }
.portrait-frame {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--primary-100) 0%, var(--accent-100) 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  position: relative;
  z-index: 1;
}
.portrait-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* 旧占位符（保留向后兼容，无实际图片时显示） */
.portrait-photo {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: rgba(30, 64, 175, 0.4);
}
.portrait-photo svg { width: 100px; height: 100px; }
.portrait-photo span { font-size: 13px; font-weight: 500; }

/* 浮动卡片文字布局 */
.float-text { display: flex; flex-direction: column; line-height: 1.25; }
.float-text strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 800; color: var(--text);
}
.float-text small { font-size: 11.5px; color: var(--text-dim); font-weight: 500; }

.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  animation: floatUp 3s ease-in-out infinite;
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.float-card-1 {
  top: 20px; left: -10px;
  animation-delay: 0s;
}
.float-card-2 {
  bottom: 80px; right: -20px;
  animation-delay: 0.7s;
}
.float-card-3 {
  bottom: 0; left: 30px;
  animation-delay: 1.4s;
}
.float-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-icon svg { width: 20px; height: 20px; }
.float-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.float-label {
  font-size: 11.5px;
  color: var(--text-dim);
  margin-top: 3px;
}

/* ============================================
   LENDERS 银行 logo 带
   ============================================ */
.lenders {
  padding: 50px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.lenders-title {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.lenders-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.lender {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 18px 12px;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dim);
  transition: all 0.2s var(--ease);
}
.lender:hover {
  color: var(--primary);
  border-color: var(--primary-100);
  transform: translateY(-2px);
}

/* ============================================
   SCENARIOS 场景卡片
   ============================================ */
.scenarios {
  padding: 90px 0;
  background: #fff;
}
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.scenario-card {
  display: block;
  background: linear-gradient(135deg, #fff 0%, var(--bg-blue) 100%);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  position: relative;
  transition: all 0.3s var(--ease);
  overflow: hidden;
}
.scenario-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s var(--ease);
}
.scenario-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.scenario-emoji {
  font-size: 40px;
  margin-bottom: 14px;
  display: inline-block;
}
.scenario-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.scenario-card p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 16px;
}
.scenario-arrow {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.2s var(--ease);
}
.scenario-card:hover .scenario-arrow {
  background: var(--accent);
  color: #fff;
  transform: translateX(4px);
}

/* ============================================
   SECTIONS 通用
   ============================================ */
.section {
  padding: 90px 0;
}
.section-light { background: var(--bg-soft); }
.section-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head-light h2,
.section-head-light p { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 5px 12px;
  background: var(--accent-50);
  border-radius: var(--radius-pill);
}
.eyebrow-light {
  background: rgba(255, 255, 255, 0.15);
  color: #FFE7D1;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-head p {
  color: var(--text-dim);
  font-size: 17px;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-100);
}

.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; }
.icon-blue { background: var(--primary-50); color: var(--primary); }
.icon-orange { background: var(--accent-50); color: var(--accent); }
.icon-green { background: #DCFCE7; color: var(--success); }
.icon-purple { background: #EDE9FE; color: #7C3AED; }

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  gap: 4px;
}
.service-link:hover { color: var(--accent); }

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.about-photo-frame {
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-100) 0%, var(--accent-100) 100%);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}
.about-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: rgba(30, 64, 175, 0.45);
}
.about-photo-placeholder svg { width: 90px; height: 90px; }
.about-photo-placeholder span { font-size: 13px; }
.about-photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-badges {
  display: flex; flex-direction: column;
  gap: 10px;
}
.abadge {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
}
.abadge:hover { border-color: var(--primary-100); transform: translateX(2px); }
.abadge-mark {
  width: 36px; height: 36px;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.abadge strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.abadge small { font-size: 11.5px; color: var(--text-dim); }

.about-content h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin: 14px 0 18px;
  line-height: 1.2;
}
.about-lead {
  font-size: 16.5px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 28px;
}
.about-points {
  display: flex; flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}
.apoint {
  display: flex; gap: 14px;
}
.apoint-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: #DCFCE7;
  color: var(--success);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.apoint-icon svg { width: 18px; height: 18px; }
.apoint h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.apoint p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
}

/* ============================================
   PROCESS 4 步流程
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 64px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--primary-100) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-step {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--ease);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-100);
}
.process-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.process-icon {
  font-size: 38px;
  margin-bottom: 12px;
}
.process-step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.55;
  margin-bottom: 14px;
}
.process-time {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 600;
}

/* ============================================
   CALCULATOR
   ============================================ */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  max-width: 1080px;
  margin: 0 auto;
}
.calc-form {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
}
.input-wrap {
  position: relative;
  display: flex; align-items: center;
}
.input-prefix, .input-suffix {
  position: absolute;
  color: var(--text-dim);
  font-weight: 500;
  font-size: 14.5px;
  pointer-events: none;
}
.input-prefix { left: 14px; }
.input-suffix { right: 14px; }
.input-wrap input {
  width: 100%;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text);
  transition: all 0.2s var(--ease);
}
.input-wrap input:has(+ .input-suffix) { padding-right: 50px; }
.input-wrap .input-prefix + input { padding-left: 28px; }
.input-wrap input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12);
}
.input-wrap input::placeholder { color: var(--text-mute); }
.input-wrap input.invalid {
  border-color: var(--danger);
  background: #FEF2F2;
}
.err {
  font-size: 12px;
  color: var(--danger);
  min-height: 14px;
  font-weight: 500;
}

select {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text);
  transition: all 0.2s var(--ease);
  cursor: pointer;
}
select:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12);
}
select.invalid { border-color: var(--danger); background: #FEF2F2; }

.field-full { grid-column: 1 / -1; }

.calc-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  align-items: center;
}
.calc-actions .btn-block { flex: 1; }

.calc-results {
  display: flex; flex-direction: column;
  gap: 14px;
}
.result-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px;
  transition: all 0.2s var(--ease);
}
.result-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border: none;
  padding: 28px;
}
.result-power {
  background: linear-gradient(135deg, var(--accent-50) 0%, #fff 100%);
  border-color: var(--accent-100);
}
.result-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.result-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.result-highlight .result-label { color: rgba(255, 255, 255, 0.85); }
.result-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.result-highlight .result-value { color: #fff; font-size: 32px; }
.result-power .result-value { color: var(--accent-dark); }
.result-sub {
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 4px;
}
.result-highlight .result-sub { color: rgba(255, 255, 255, 0.7); }

.result-cta {
  background: var(--bg-blue);
  border: 1px dashed var(--primary-100);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.result-cta p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 14px;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  margin-top: 12px;
  box-shadow: var(--shadow-xs);
}
.stars-big {
  color: #FBBF24;
  font-size: 20px;
  letter-spacing: 2px;
}
.reviews-summary-text {
  display: flex; flex-direction: column; align-items: flex-start;
  line-height: 1.2;
}
.reviews-summary-text strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}
.reviews-summary-text span {
  font-size: 12px; color: var(--text-dim);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.review {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: all 0.2s var(--ease);
}
.review:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.stars {
  color: #FBBF24;
  font-size: 15px;
  letter-spacing: 1px;
}
.review p {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.65;
}
.reviewer {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.reviewer strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.reviewer span {
  font-size: 12px;
  color: var(--text-dim);
}

/* ============================================
   BOOKING (Calendly section)
   ============================================ */
.calendly-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* ============================================
   ENQUIRY 表单
   ============================================ */
.enq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
.enq-left h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 12px 0 14px;
}
.enq-left > p {
  color: var(--text-dim);
  margin-bottom: 30px;
}
.enq-perks {
  display: flex; flex-direction: column;
  gap: 18px;
}
.enq-perk {
  display: flex; gap: 14px;
}
.enq-perk-icon {
  font-size: 26px;
  width: 44px; height: 44px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.enq-perk strong {
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}
.enq-perk p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

.enq-form {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.enq-form input,
.enq-form select {
  width: 100%;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text);
  transition: all 0.2s var(--ease);
}
.enq-form input:focus,
.enq-form select:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12);
}
.enq-form input.invalid,
.enq-form select.invalid {
  border-color: var(--danger);
  background: #FEF2F2;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}
.form-disclaimer {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-mute);
  text-align: center;
}
.form-status {
  margin-top: 14px;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-align: center;
  display: none;
}
.form-status.success {
  display: block;
  background: #DCFCE7;
  border: 1px solid var(--success);
  color: #166534;
}
.form-status.error {
  display: block;
  background: #FEF2F2;
  border: 1px solid var(--danger);
  color: #991B1B;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s var(--ease);
}
.faq-item:hover { border-color: var(--primary-100); }
.faq-item[open] {
  border-color: var(--primary-100);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}
.faq-item p {
  padding: 0 24px 22px;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  display: block;
  transition: all 0.2s var(--ease);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-100);
}
.contact-icon {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.contact-card p {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.5;
}
.contact-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}
.contact-card:hover .contact-link { color: var(--accent); }

.bottom-cta {
  margin-top: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-blue);
}
.bottom-cta h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}
.bottom-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0F172A;
  color: #CBD5E1;
  padding: 70px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-sub { color: #94A3B8; }
.footer-tag {
  font-size: 14px;
  line-height: 1.6;
  max-width: 340px;
  margin: 18px 0 18px;
}
.footer-badges { display: flex; gap: 8px; }
.footer-badge {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 9px;
  line-height: 1.6;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12.5px;
  color: #64748B;
}
.disclaimer-short {
  font-size: 11.5px;
  max-width: 700px;
  line-height: 1.6;
}

/* ============================================
   FLOATING 悬浮按钮
   ============================================ */
.float-actions {
  position: fixed;
  bottom: 22px; right: 22px;
  display: flex; flex-direction: column;
  gap: 10px;
  z-index: 900;
}
.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-md);
  transition: all 0.2s var(--ease);
}
.float-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: var(--shadow-lg);
}
.float-btn svg { width: 18px; height: 18px; }
.float-call {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border-color: transparent;
}
.float-wa {
  background: #25D366;
  color: #fff;
  border-color: transparent;
}
.float-chat {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}

/* ============================================
   移动端底部固定双按钮 (仅 mobile 显示)
   ============================================ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.10);
  padding: 8px 12px;
  gap: 8px;
  /* iPhone 底部安全区 */
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
}
.mbb-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.15s var(--ease);
}
.mbb-btn:active { transform: scale(0.97); }
.mbb-call {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.mbb-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

/* ============================================
   CALC TABS 切换
   ============================================ */
.calc-tabs {
  display: flex;
  gap: 8px;
  max-width: 1080px;
  margin: 0 auto 24px;
  background: var(--bg-soft);
  padding: 6px;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
}
.calc-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  background: transparent;
  transition: all 0.2s var(--ease);
  position: relative;
}
.calc-tab:hover { color: var(--text); }
.calc-tab.active {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.calc-tab svg { width: 16px; height: 16px; }
.tab-badge {
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.calc-panel { display: none; }
.calc-panel.active { display: grid; }

.fhb-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 600;
}

/* ============================================
   BOOKING TABS (Calendly + Enquiry 合并)
   ============================================ */
.book-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.book-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
}
.book-trust-icon { font-size: 16px; }

.book-tabs {
  display: flex;
  gap: 6px;
  max-width: 480px;
  margin: 0 auto 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 6px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.book-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  transition: all 0.25s var(--ease);
}
.book-tab:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.book-tab.active {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.book-tab svg { width: 17px; height: 17px; flex-shrink: 0; }

.book-panel { display: none; animation: panelFade 0.35s var(--ease); }
.book-panel.active { display: block; }
@keyframes panelFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.msg-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.msg-wrap .enq-form {
  box-shadow: var(--shadow-lg);
}
.msg-intro {
  text-align: center;
  color: var(--text-2);
  font-size: 14.5px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}

/* ============================================
   BLOG 资源中心
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  position: relative;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-100);
}
.blog-thumb {
  aspect-ratio: 16/9;
  position: relative;
  display: flex; align-items: flex-end; padding: 16px;
  overflow: hidden;
}
.blog-thumb-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  width: 60px; height: 60px;
  color: rgba(255,255,255,0.9);
  z-index: 1;
}
.blog-thumb-icon svg { width: 100%; height: 100%; }
.blog-thumb::after {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 170px; height: 170px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.blog-thumb-1 { background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%); }
.blog-thumb-2 { background: linear-gradient(135deg, #EA580C 0%, #FB923C 100%); }
.blog-thumb-3 { background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%); }
.blog-tag {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}
.blog-soon {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}
.blog-body { padding: 20px 22px 24px; }
.blog-body h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}
.blog-body p {
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.55;
}

.blog-notify {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--accent-50) 100%);
  border: 1px dashed var(--primary-100);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  flex-wrap: wrap;
}
.blog-notify-text {
  display: flex; align-items: center; gap: 14px;
}
.blog-notify-icon { font-size: 28px; }
.blog-notify-text p {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.blog-notify-form {
  display: flex; gap: 10px;
  flex-wrap: wrap;
}
.blog-notify-form input {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px;
  min-width: 220px;
}
.blog-notify-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12);
}

/* ============================================
   WECHAT 微信卡片 (仅中文显示)
   ============================================ */
.zh-only { display: none !important; }
html[data-lang="zh"] .zh-only { display: block !important; }
html[data-lang="zh"] .contact-card.zh-only { display: flex !important; flex-direction: column; }

.wechat-card {
  background: linear-gradient(135deg, #fff 0%, #F0FDF4 100%);
  border-color: #BBF7D0;
}
.wechat-qr {
  width: 150px; height: 150px;
  margin: 0 auto 14px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--shadow-xs);
}
.wechat-qr svg { width: 100%; height: 100%; display: block; }
.wechat-qr-img { width: 100%; height: 100%; display: block; object-fit: contain; border-radius: 6px; }
.wechat-card h4 { color: var(--text); text-transform: none; letter-spacing: 0; font-size: 15px; }
.wechat-card .contact-link { color: #16A34A; font-family: 'Plus Jakarta Sans', sans-serif; }

/* ============================================
   LEGAL 页面
   ============================================ */
.legal-page {
  padding: 60px 0 80px;
  min-height: 80vh;
  background: var(--bg-soft);
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-sm);
}
.legal-content h1 {
  font-size: 32px;
  margin-bottom: 8px;
}
.legal-content .updated {
  color: var(--text-dim);
  font-size: 13px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
}
.legal-content h2 {
  font-size: 19px;
  margin: 28px 0 10px;
  color: var(--primary);
}
.legal-content p,
.legal-content li {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.legal-content ul { padding-left: 22px; margin-bottom: 12px; }
.legal-back {
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}
.legal-back:hover { color: var(--accent); }

/* ============================================
   SCROLL FADE
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { max-width: 460px; margin: 0 auto; }
  .lenders-grid { grid-template-columns: repeat(4, 1fr); }
  .scenarios-grid { grid-template-columns: 1fr; gap: 14px; }
  .calc-wrap { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-frame { max-width: 340px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .enq-wrap { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .topbar { font-size: 12px; }
  .topbar-text > span:not(.topbar-pill) { display: none; }

  .nav-links {
    position: fixed;
    top: calc(var(--nav-h) + var(--topbar-h));
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 4px;
    transform: translateY(-150%);
    transition: transform 0.3s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--border-soft);
    font-size: 15px;
  }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-cta { margin-top: 8px; border: none !important; }

  .menu-toggle { display: flex; }

  /* 手机端显示品牌名，缩小语言切换让出空间 */
  .logo-text-wrap { display: flex; }
  .logo-text { font-size: 15px; }
  .logo-sub { font-size: 10.5px; }
  .lang-switcher { padding: 3px; }
  .lang-switcher .lang-btn { padding: 6px 10px; font-size: 12px; }
  .nav-actions { gap: 8px; }

  .section { padding: 56px 0; }
  .scenarios { padding: 56px 0; }
  .lenders { padding: 32px 0; }
  .section-head { margin-bottom: 32px; }

  /* ===== 首屏移动端优化（核心转化区）===== */
  .hero { padding: 32px 0 56px; }
  .hero-inner { gap: 36px; }
  .hero-tag { margin-bottom: 16px; font-size: 12px; padding: 6px 12px; }
  .hero-title { font-size: 33px; line-height: 1.1; margin-bottom: 16px; }
  /* 手机端用更短的副标题，长版在桌面显示 */
  .hero-sub { font-size: 16px; margin-bottom: 18px; }
  .hero-checks { gap: 9px; margin-bottom: 22px; }
  .hero-checks li { font-size: 14.5px; }

  .hero-portrait { padding: 16px; max-width: 380px; margin: 0 auto; }
  .float-card { padding: 10px 13px; }
  .float-card-1 { top: 6px; left: -4px; }
  .float-card-2 { right: -6px; bottom: 70px; }
  .float-card-3 { left: 8px; bottom: -12px; }
  .float-text strong { font-size: 13.5px; }
  .float-text small { font-size: 10.5px; }

  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 22px; }
  .hero-ctas .btn { width: 100%; }

  .hero-proof { flex-wrap: wrap; gap: 12px; padding: 12px 16px; }
  .proof-divider { display: none; }

  .lenders-grid { grid-template-columns: repeat(3, 1fr); }

  .process-grid { grid-template-columns: 1fr; }

  .calc-form,
  .enq-form,
  .legal-content { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }

  .bottom-cta { padding: 28px 24px; text-align: center; }
  .bottom-cta h3 { font-size: 20px; }

  .calc-tabs { flex-direction: column; gap: 4px; }
  .calc-tab { padding: 11px 12px; font-size: 13px; }

  .book-tabs { flex-direction: column; gap: 4px; }
  .book-tab { padding: 11px 12px; font-size: 13.5px; }
  .book-trust {
    gap: 12px;
    padding: 12px 18px;
    flex-direction: column;
    align-items: center;
    border-radius: var(--radius);
  }

  .blog-notify { flex-direction: column; align-items: stretch; text-align: center; }
  .blog-notify-text { justify-content: center; }
  .blog-notify-form input { width: 100%; min-width: 0; }
  .blog-notify-form { flex-direction: column; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .float-actions {
    display: none;
  }

  .mobile-bottom-bar {
    display: flex;
  }

  /* 避免底部 bar 遮挡内容（bar 实际约 72px + 安全区）*/
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 32px; }
  .lenders-grid { grid-template-columns: repeat(2, 1fr); }
  .scenarios-grid { grid-template-columns: 1fr; }
  .calc-form, .enq-form { padding: 20px; }
}

/* ============================================
   悬浮 CTA（桌面端单一强 CTA - 行业最优实践）
   ============================================ */
.floating-cta-desktop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 12px 32px -6px rgba(249, 115, 22, 0.55), 0 4px 12px -2px rgba(249, 115, 22, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
  white-space: nowrap;
}
.floating-cta-desktop.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta-desktop:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px -6px rgba(249, 115, 22, 0.65), 0 6px 16px -2px rgba(249, 115, 22, 0.5);
}
.floating-cta-icon { font-size: 18px; line-height: 1; }
.floating-cta-text { line-height: 1; }

@media (max-width: 768px) {
  .floating-cta-desktop { display: none; /* 移动端用底部双按钮 */ }
}

/* ============================================
   移动端触控优化（行业标准 44px 最小触控目标）
   ============================================ */
@media (max-width: 768px) {
  .btn, .nav-cta, .service-card, .lang-btn, .mbb-btn {
    min-height: 44px;
  }
  .btn-lg { min-height: 52px; padding: 14px 22px; font-size: 16px; }
  .service-card { padding: 22px; }
  .calc-form select, .calc-form input { min-height: 48px; font-size: 16px; }
  .nav-links a { padding: 14px 18px; }
  .review-card { padding: 22px; }

  /* 行距优化 */
  .hero-sub, .service-hero-sub, p { line-height: 1.65; }
  h1, h2, h3 { line-height: 1.25; }
}

/* ============================================
   双语切换按钮（清晰显示当前激活语言）
   ============================================ */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 4px;
}
.lang-switcher .lang-btn {
  border: none;
  background: transparent;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.lang-switcher .lang-btn:hover { color: #0f172a; }
.lang-switcher .lang-btn.active {
  background: #fff;
  color: #1d4ed8;
  box-shadow: 0 2px 6px -1px rgba(15, 23, 42, 0.08);
}
.lang-switcher .lang-divider {
  color: #cbd5e1;
  font-size: 12px;
  display: none; /* 用 background 表示分隔了 */
}
