/* ===== CSS Reset & Variables ===== */
:root {
  --primary: #1a3a5c;
  --primary-light: #2a5a8c;
  --accent: #c9a96e;
  --accent-light: #e0d5c0;
  --bg: #ffffff;
  --bg-light: #f8f9fa;
  --bg-blue: #e8f4f8;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --border: #e5e5e5;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 8px;
  --max-width: 1200px;
  --nav-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
}

ul { list-style: none; }

/* ===== Container ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Navigation ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}

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

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 8px;
}

.nav-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nav-ip {
  font-size: 1.05rem;
  letter-spacing: 0;
}

.ip-blue { color: var(--primary); }
.ip-gold { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: transform 0.3s;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--bg-blue) 0%, var(--bg) 50%, var(--accent-light) 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.hero-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  margin-bottom: 24px;
  object-fit: cover;
  background: var(--bg-light);
}

.hero-carousel {
  position: relative;
  cursor: pointer;
  width: min(760px, 100%);
  margin: 0 auto 28px;
}

.hero-carousel-viewport {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255,255,255,0.55);
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.hero-slide-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  text-align: left;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(26,58,92,0.12);
}

.hero-slide-caption span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-slide-caption strong {
  color: var(--primary);
  font-size: 1.05rem;
  line-height: 1.35;
}

.hero-slide-caption small {
  color: var(--text-light);
  font-size: 0.86rem;
  line-height: 1.45;
}

.hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s, transform 0.2s;
}

.hero-carousel-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}

.hero-carousel-prev {
  left: 12px;
}

.hero-carousel-next {
  right: 12px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.hero h1 span {
  color: var(--accent);
}

.hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.hero .tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-light);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

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

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: #b8943e;
  color: #fff;
}

.btn-sm {
  padding: 6px 16px;
  font-size: 0.85rem;
}

/* ===== Section ===== */
.section {
  padding: 64px 0;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 12px;
}

.section-desc {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1rem;
}

/* ===== Trust Stats ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.stat-number span {
  color: var(--accent);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 8px;
}

/* ===== Service Cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  padding: 32px 24px;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 3px solid var(--accent);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== Article Cards ===== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  border-left: 3px solid var(--accent);
}

.article-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.article-card .article-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.article-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.article-card h3 a {
  color: inherit;
}

.article-card .article-summary {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card .article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-block;
  padding: 2px 10px;
  background: var(--bg-blue);
  color: var(--primary);
  font-size: 0.8rem;
  border-radius: 50px;
}

/* ===== Article List (articles.html) ===== */
.article-list-item {
  padding: 24px;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  transition: box-shadow 0.2s;
  border-left: 3px solid transparent;
}

.article-list-item:hover {
  box-shadow: var(--shadow-hover);
  border-left-color: var(--accent);
}

.article-list-item .article-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.article-list-item h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.article-list-item h3 a {
  color: var(--primary);
}

.article-list-item .article-summary {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.article-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  align-items: center;
}

/* ===== Search & Filter ===== */
.search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.search-input:focus {
  border-color: var(--primary);
}

.filter-select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
  background: var(--bg);
  cursor: pointer;
  min-width: 140px;
}

/* ===== Pagination ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pagination button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
  transition: all 0.2s;
}

.pagination button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pagination button.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ===== Article Detail ===== */
.article-detail {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
}

.article-detail .article-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.article-detail h1 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.4;
}

.article-detail .article-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
}

.article-detail .article-body p {
  margin-bottom: 16px;
}

.article-detail .post-inline-image {
  max-width: 640px;
  margin: 28px auto;
  text-align: center;
}

.article-detail .post-inline-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-detail .article-body h2 {
  font-size: 1.4rem;
  color: var(--primary);
  margin: 32px 0 12px;
}

.article-detail .article-body h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin: 24px 0 8px;
}

.article-brand-note {
  margin: 36px auto 0;
  padding: 18px 20px;
  max-width: 720px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--bg-light);
  color: var(--text-light);
  font-size: 0.94rem;
}

.article-brand-note strong,
.article-brand-note span {
  display: block;
}

.article-brand-note strong {
  color: var(--primary);
}

.article-brand-note span {
  color: var(--accent);
  margin: 4px 0 8px;
  font-weight: 700;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.article-nav a {
  font-size: 0.95rem;
  color: var(--primary);
}

/* ===== Video Page ===== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.video-card {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.video-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary-light);
  border: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(26, 58, 92, 0.86);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  padding-left: 3px;
}

.video-info {
  padding: 16px;
}

.video-info h3 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-info .video-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.video-summary {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 14px;
}

.video-play-link {
  color: var(--primary);
  background: var(--bg-blue);
  border: 1px solid rgba(26, 58, 92, 0.14);
  border-radius: 6px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
}

.video-modal-panel video {
  display: block;
  width: 100%;
  max-height: 72vh;
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--primary);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.video-modal-caption {
  padding: 16px 18px 18px;
}

.video-modal-caption h3 {
  color: var(--primary);
  margin-bottom: 6px;
}

.video-modal-caption p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== Services Page ===== */
.service-detail {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  margin-bottom: 24px;
  border-left: 4px solid var(--accent);
}

.service-detail h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-detail .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 16px 0;
}

.service-detail ul {
  list-style: disc;
  padding-left: 20px;
  margin: 12px 0;
}

.service-detail ul li {
  margin-bottom: 6px;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== About Page ===== */
.about-section {
  max-width: 800px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 32px 0 16px;
}

.about-section p {
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.9;
}

.company-card {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 20px;
  border-top: 3px solid var(--accent);
}

.company-card h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

/* ===== Contact / CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--bg-blue) 0%, #fff 60%, #f6f0e4 100%);
  color: var(--primary);
  text-align: center;
  padding: 64px 24px;
  border-top: 1px solid var(--border);
}

.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}

.cta-section .btn-primary:hover {
  background: #b8943e;
}

.wechat-qr {
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: var(--radius);
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-light);
  color: var(--text-light);
  text-align: center;
  padding: 32px 24px;
  margin-top: auto;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

.footer a {
  color: var(--primary);
}

.footer a:hover {
  color: var(--accent);
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-assessment {
  position: fixed;
  right: 32px;
  bottom: 88px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.4);
}

.floating-assessment:hover {
  color: #fff;
  background: #b8943e;
  transform: translateY(-1px);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  margin: 0 6px;
}

/* ===== Empty State ===== */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}

.empty-state .icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.empty-state p {
  font-size: 1rem;
}

/* ===== Celebrity Photo Wall ===== */
.photo-wall {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 16px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.photo-wall::-webkit-scrollbar {
  display: none;
}

.photo-card {
  flex: 0 0 280px;
  color: inherit;
  text-decoration: none;
  scroll-snap-align: start;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s;
  cursor: pointer;
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.photo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.photo-card .photo-caption {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

/* ===== Latest Content Ticker ===== */
.ticker-section {
  background: #eef6f8;
  color: var(--primary);
  padding: 12px 0;
  font-size: 0.9rem;
  overflow: hidden;
  border-top: 1px solid rgba(26,58,92,0.08);
  border-bottom: 1px solid rgba(26,58,92,0.08);
}

.ticker-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-wrap:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  color: var(--primary);
  text-decoration: none;
}

.ticker-item:hover {
  color: var(--accent);
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 24px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--bg-blue);
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 18px;
}

.faq-answer a {
  color: var(--accent);
  font-weight: 500;
}

/* ===== Hero with BG Image ===== */
.hero-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 0 60px;
  text-align: center;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,92,0.92) 0%, rgba(26,58,92,0.8) 100%);
}

.hero-bg .container {
  position: relative;
  z-index: 1;
}

.hero-bg h1,
.hero-bg .subtitle,
.hero-bg .tagline {
  color: #fff;
}

.hero-bg h1 span {
  color: var(--accent);
}



/* ===== Overview / Intro ===== */
.narrow {
  max-width: 860px;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.intro-hero {
  background: linear-gradient(135deg, var(--bg-blue) 0%, var(--bg) 58%, var(--accent-light) 100%);
  padding: 72px 0;
}

.intro-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.intro-hero h1 {
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.intro-hero p {
  color: var(--text-light);
  font-size: 1.08rem;
  max-width: 620px;
}

.intro-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.intro-stat {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  box-shadow: var(--shadow);
}

.intro-stat strong {
  display: block;
  color: var(--primary);
  font-size: 2rem;
  line-height: 1.2;
}

.intro-stat span {
  color: var(--text-light);
  font-size: 0.92rem;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.overview-card {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  border-top: 3px solid var(--accent);
}

.overview-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.overview-card p,
.lead-text {
  color: var(--text-light);
}

.lead-text {
  font-size: 1.05rem;
  margin-bottom: 18px;
}



.refined-intro .intro-copy p {
  max-width: 680px;
}

.intro-card-showcase {
  max-width: 360px;
  justify-self: center;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.intro-card-showcase img {
  display: block;
  width: 100%;
  border-radius: 6px;
}

.intro-data-section {
  padding-top: 42px;
  padding-bottom: 42px;
}

.intro-panel-wide {
  grid-template-columns: repeat(5, 1fr);
}

/* ===== Cases ===== */
.case-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.case-filters button {
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
  font-weight: 600;
}

.case-filters button.active,
.case-filters button:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.case-list {
  display: grid;
  gap: 24px;
}

.case-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.case-image-wrap {
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 420px;
}

.case-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  display: block;
}

.case-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.case-meta span {
  background: var(--bg-blue);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.case-copy h2 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.case-copy p {
  color: var(--text-light);
}

.case-disclaimer {
  margin-top: 28px;
  color: var(--text-muted);
  text-align: center;
  font-size: 0.92rem;
}

/* ===== Moment Detail ===== */
.moment-detail {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 36px;
  align-items: start;
}

.moment-detail > img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.moment-copy time {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.moment-copy h1 {
  color: var(--primary);
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 8px 0 18px;
}

.moment-copy p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 24px;
}

/* ===== Assessment Page ===== */
.assessment-section {
  background: linear-gradient(135deg, var(--bg-blue) 0%, var(--bg) 52%, rgba(201,169,110,0.18) 100%);
}

.assessment-shell {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}

.assessment-head .section-title,
.assessment-head .section-desc {
  text-align: left;
}

.assessment-head .section-desc {
  margin-bottom: 28px;
}

.assessment-human-btn {
  margin-bottom: 28px;
}

.assessment-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.assessment-step-text {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.assessment-progress-track {
  height: 8px;
  background: var(--bg-light);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.assessment-progress-track span {
  display: block;
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: inherit;
  transition: width 0.25s ease;
}

.assessment-step[hidden] {
  display: none !important;
}

.assessment-step h2 {
  color: var(--primary);
  font-size: 1.35rem;
  line-height: 1.4;
  margin-bottom: 18px;
}

.assessment-purpose-grid,
.assessment-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.assessment-choice {
  width: 100%;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.assessment-choice:hover,
.assessment-choice.is-selected {
  border-color: var(--primary);
  background: var(--bg-blue);
  color: var(--primary);
  box-shadow: 0 0 0 2px rgba(26,58,92,0.08);
}

.assessment-purpose-card {
  min-height: 82px;
  font-size: 1.08rem;
}

.assessment-question {
  margin-bottom: 24px;
}

.assessment-question h3,
.assessment-form label span {
  display: block;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 10px;
}

.assessment-form {
  display: grid;
  gap: 18px;
}

.assessment-form input,
.assessment-form textarea,
.manual-summary {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
}

.assessment-form input:focus,
.assessment-form textarea:focus,
.manual-summary:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(26,58,92,0.08);
}

.assessment-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.assessment-actions-right {
  justify-content: flex-end;
}

.assessment-actions-center {
  justify-content: center;
}

.assessment-actions .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.assessment-result {
  text-align: center;
}

.assessment-result h2 {
  justify-content: center;
}

.assessment-result p {
  color: var(--text-light);
}

.summary-preview {
  margin: 22px 0;
  padding: 16px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  color: var(--text);
  line-height: 1.8;
}

.assessment-skip-note {
  padding: 18px;
  border: 1px dashed var(--accent);
  border-radius: var(--radius);
  background: rgba(201,169,110,0.12);
  color: var(--primary);
  line-height: 1.8;
}

.assessment-copy {
  width: min(100%, 360px);
}

.copy-status {
  min-height: 28px;
  margin: 16px 0 0;
  color: var(--primary) !important;
  font-weight: 700;
}

.copy-status.is-error {
  color: #9d4b2a !important;
}

.manual-summary {
  margin-top: 14px;
  min-height: 120px;
  resize: vertical;
}

.assessment-qr {
  display: grid;
  place-items: center;
  gap: 8px;
  margin-top: 18px;
}

.assessment-qr p {
  margin: 0;
  color: var(--primary);
  font-weight: 700;
}

.assessment-qr img {
  width: 178px;
  height: 178px;
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px;
}

.assessment-price-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--accent);
  font-weight: 700;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .intro-panel-wide {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid,
  .videos-grid,
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .intro-panel-wide {
    grid-template-columns: repeat(2, 1fr);
  }

  :root {
    --nav-height: 56px;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px 24px;
  }

  .nav-ip {
    font-size: 0.98rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 48px 0 40px;
  }

  .hero-carousel {
    width: 100%;
    margin-bottom: 24px;
  }

  .hero-carousel-viewport {
    aspect-ratio: 4 / 3;
  }

  .hero-slide {
    padding: 10px;
  }

  .hero-slide-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
  }

  .hero-slide-caption strong {
    font-size: 0.92rem;
  }

  .hero-slide-caption small {
    display: none;
  }

  .hero-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.6rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .services-grid,
  .videos-grid,
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .intro-hero-grid,
  .case-card,
  .moment-detail {
    grid-template-columns: 1fr;
  }

  .intro-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-image-wrap {
    max-height: 360px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section {
    padding: 40px 0;
  }

  .floating-assessment {
    right: 16px;
    bottom: 84px;
  }

  .assessment-shell {
    padding: 24px;
  }

  .assessment-purpose-grid,
  .assessment-option-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .article-detail {
    padding: 24px 16px;
  }

  .article-detail h1 {
    font-size: 1.4rem;
  }

  .search-bar {
    flex-direction: column;
  }

  .search-input,
  .filter-select {
    width: 100%;
  }
}

/* 香港资讯与汇率 */
.home-insights-section {
  padding: 38px 0;
  background: #f4f7fb;
  border-bottom: 1px solid var(--border);
}

.home-insights-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
}

.home-rate-panel,
.home-update-panel {
  min-width: 0;
}

.home-insights-head,
.insights-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.home-insights-head h2 {
  margin: 4px 0 0;
  color: var(--primary);
  font-size: 1.35rem;
}

.home-insights-head a,
.text-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.home-insights-head a:hover,
.text-link:hover {
  color: var(--accent);
}

.insights-hero {
  padding: 78px 0 54px;
  background: #edf4fb;
  border-bottom: 1px solid #dbe5f0;
}

.insights-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.insights-hero h1 {
  margin: 8px 0 14px;
  color: var(--primary);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.12;
}

.insights-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--text-light);
  font-size: 1.06rem;
  line-height: 1.9;
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.rate-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rate-card {
  min-width: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid #dbe3ed;
  border-radius: 6px;
}

.rate-code {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.rate-name {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.rate-value {
  display: block;
  margin: 14px 0 8px;
  color: var(--text);
  font-size: 1.52rem;
  line-height: 1;
}

.rate-change {
  display: block;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.rate-change.up {
  color: #a35036;
}

.rate-change.down {
  color: #16745b;
}

.home-data-date,
.data-date,
.source-badge {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.home-data-date {
  margin: 12px 0 0;
}

.data-date,
.source-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  background: #eef3f8;
  border: 1px solid #dbe3ed;
  border-radius: 4px;
}

.data-disclaimer {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.official-update-list {
  display: grid;
  border-top: 1px solid var(--border);
}

.official-update {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 17px 0;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.official-update:hover span {
  color: var(--primary);
}

.official-update time,
.official-update small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.official-update span {
  min-width: 0;
  font-weight: 650;
  line-height: 1.55;
}

.official-update-list-compact .official-update {
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  padding: 11px 0;
}

.official-update-list-compact .official-update small {
  display: none;
}

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

.insight-article-card {
  display: flex;
  min-height: 255px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  flex-direction: column;
}

.insight-article-card:hover {
  border-color: #aac0d8;
  box-shadow: 0 10px 24px rgba(20, 62, 105, 0.08);
}

.insight-article-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.76rem;
}

.insight-article-meta span {
  color: var(--primary);
  font-weight: 750;
}

.insight-article-card h3 {
  margin: 16px 0 10px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.55;
}

.insight-article-card p {
  display: -webkit-box;
  margin: 0 0 18px;
  overflow: hidden;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.insight-article-card strong {
  margin-top: auto;
  color: var(--primary);
  font-size: 0.84rem;
}

.insights-note-section {
  padding: 46px 0;
  background: #eaf2f8;
  border-top: 1px solid #d7e2ec;
}

.insights-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.insights-note h2 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 1.55rem;
}

.insights-note p {
  max-width: 780px;
  margin: 0;
  color: var(--text-light);
  line-height: 1.8;
}

.insights-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  color: var(--text-muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.article-meta a {
  color: var(--primary);
  font-weight: 650;
  text-decoration: none;
}

.article-meta a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .home-insights-grid,
  .insight-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  .home-insights-section {
    padding: 28px 0;
  }

  .home-insights-grid,
  .insight-article-grid,
  .rate-grid,
  .rate-grid-compact {
    grid-template-columns: 1fr;
  }

  .home-insights-grid {
    gap: 34px;
  }

  .home-insights-head,
  .insights-heading-row,
  .insights-hero-inner,
  .insights-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .insights-heading-row,
  .insights-hero-inner,
  .insights-note {
    gap: 18px;
  }

  .insights-hero {
    padding: 54px 0 40px;
  }

  .insights-hero h1 {
    font-size: 2.35rem;
  }

  .rate-grid-compact .rate-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 16px;
    align-items: center;
  }

  .rate-grid-compact .rate-value {
    grid-row: 1 / 3;
    grid-column: 2;
    margin: 0;
  }

  .official-update,
  .official-update-list-compact .official-update {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .official-update small {
    display: block;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero .subtitle {
    font-size: 0.95rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .container {
    padding: 0 16px;
  }

  .nav-ip {
    max-width: 7em;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .intro-panel {
    grid-template-columns: 1fr;
  }
}


/* ===== Album / merged page update 20260613 ===== */
.album-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  overflow: visible;
  padding: 16px 0 0;
  scroll-snap-type: none;
}

.album-cover-card {
  position: relative;
  display: block;
  min-height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: #fff;
  background: var(--text);
}

.album-cover-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.album-cover-card:hover img {
  transform: scale(1.04);
}

.album-cover-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 42px 18px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.72));
}

.album-cover-title {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
}

.album-cover-meta,
.album-date {
  margin-top: 6px;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
}

.album-detail-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 18px;
}

.album-detail-head .album-date {
  color: var(--text-muted);
}

.album-intro {
  max-width: 880px;
  margin: 0 auto 28px;
  padding: 22px 26px;
  background: var(--bg-light);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  color: var(--text-light);
  line-height: 1.9;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.album-photo {
  display: block;
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.album-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.credentials-grid > div,
.contact-panel,
.consult-offer,
.price-group {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.credentials-grid > div {
  padding: 22px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 40px;
  align-items: center;
  padding: 32px;
  background: var(--bg-blue);
}

.contact-panel h2 {
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-panel > div:first-child p {
  color: var(--text-light);
  margin-bottom: 18px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
}

.contact-lines li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  color: var(--primary);
  line-height: 1.6;
}

.contact-lines span {
  flex: 0 0 76px;
  color: var(--text-light);
}

.contact-lines strong {
  color: var(--primary);
  font-weight: 800;
}

.wechat-qr {
  text-align: center;
  justify-self: center;
}

.contact-panel .wechat-qr {
  width: auto;
  height: auto;
  min-width: 180px;
  margin: 0;
  display: block;
  background: transparent;
  color: var(--primary);
}

.contact-panel .wechat-qr img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
}

.contact-panel .wechat-qr p {
  margin: 10px 0 0;
  font-weight: 700;
  color: var(--primary);
}

.consult-offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px;
  margin: 30px 0;
  background: linear-gradient(135deg, var(--bg-blue), #fff);
  border-left: 5px solid var(--accent);
}

.offer-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 8px;
}

.consult-offer h2 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 8px;
}

.consult-offer small {
  color: var(--text-muted);
  font-size: 1rem;
  text-decoration: line-through;
  margin-left: 8px;
}

.price-board {
  display: grid;
  gap: 22px;
}

.price-group {
  padding: 24px;
}

.price-group h2 {
  color: var(--primary);
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.price-group-desc {
  color: var(--text-light);
  margin: -4px 0 10px;
  line-height: 1.7;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 13px 0;
  border-top: 1px solid var(--border);
}

.price-row strong {
  color: var(--accent);
  text-align: right;
}

.old-price {
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 6px;
  font-weight: 500;
}

.price-row-long strong {
  max-width: 520px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .album-wall,
  .credentials-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    gap: 28px;
    padding: 24px;
    text-align: left;
  }

  .contact-lines li {
    display: grid;
    gap: 2px;
  }

  .contact-lines span {
    flex-basis: auto;
  }

  .consult-offer {
    align-items: stretch;
    flex-direction: column;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-row strong {
    text-align: left;
  }
}
