/* ==================== 基础变量 ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #1a365d;
  --primary-light: #2c5282;
  --accent: #c9a84c;
  --accent-light: #d4b86a;
  --text: #2d3748;
  --text-light: #718096;
  --bg: #ffffff;
  --bg-light: #f7fafc;
  --bg-dark: #1a202c;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
}
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.8;
  background: var(--bg);
}
a { color: var(--primary-light); text-decoration: none; transition: color .3s; }
a:hover { color: var(--accent); }

/* ==================== 导航栏 ==================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26, 54, 93, 0.95);
  backdrop-filter: blur(10px);
  padding: 0 40px;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s;
}
.nav.scrolled { background: rgba(26, 54, 93, 0.98); box-shadow: var(--shadow); }
.nav-brand { color: #fff; font-size: 20px; font-weight: 700; letter-spacing: 2px; }
.nav-brand span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500; transition: color .3s; }
.nav-links a:hover { color: var(--accent); }
.nav-phone { color: var(--accent); font-size: 15px; font-weight: 600; }
.mobile-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: .3s; }

/* ==================== 页面Banner ==================== */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2137 100%);
  padding: 140px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-banner h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}
.page-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--accent); }

/* ==================== 文章内容 ==================== */
.article-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
}
.article-content h2 {
  font-size: 26px;
  color: var(--primary);
  margin: 50px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}
.article-content h3 {
  font-size: 20px;
  color: var(--primary-light);
  margin: 35px 0 15px;
}
.article-content p {
  font-size: 16px;
  line-height: 2;
  color: var(--text);
  margin-bottom: 18px;
  text-align: justify;
}
.article-content ul, .article-content ol {
  margin: 20px 0;
  padding-left: 30px;
}
.article-content li {
  font-size: 16px;
  line-height: 2;
  color: var(--text);
  margin-bottom: 8px;
}
.article-content strong {
  color: var(--primary);
  font-weight: 600;
}
.article-content em {
  color: var(--accent);
  font-style: normal;
}

/* ==================== 重点提示框 ==================== */
.highlight-box {
  background: linear-gradient(135deg, rgba(26,54,93,0.05) 0%, rgba(201,168,76,0.08) 100%);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 24px 30px;
  margin: 30px 0;
}
.highlight-box h4 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 12px;
}
.highlight-box p {
  margin-bottom: 0;
  color: var(--text);
}
.highlight-box ul {
  margin: 10px 0 0 0;
}
.highlight-box li {
  margin-bottom: 6px;
}

/* 案例框 */
.case-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 30px;
  margin: 30px 0;
}
.case-box h4 {
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.case-box h4::before {
  content: '\2605';
  color: var(--accent);
}
.case-box p {
  font-size: 15px;
  margin-bottom: 0;
}

/* 法条引用框 */
.law-box {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 25px 0;
  font-size: 14px;
  color: var(--text-light);
}
.law-box strong {
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}

/* 流程表格 */
.process-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 15px;
}
.process-table th {
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
}
.process-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.process-table tr:nth-child(even) {
  background: var(--bg-light);
}

/* 数值表格 */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 14px;
}
.data-table th {
  background: var(--primary-light);
  color: #fff;
  padding: 12px 16px;
  text-align: center;
  font-weight: 600;
}
.data-table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: center;
}
.data-table tr:nth-child(even) {
  background: var(--bg-light);
}

/* ==================== CTA区域 ==================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2137 100%);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cta-section .btn {
  position: relative;
  z-index: 1;
}

/* ==================== 按钮样式 ==================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px; border-radius: 6px; font-size: 16px;
  font-weight: 600; cursor: pointer; border: none; transition: all .3s;
  text-decoration: none;
}
.btn-primary { background: var(--accent); color: var(--primary); }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--primary); }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ==================== 相关链接 ==================== */
.related-links {
  padding: 80px 40px;
  background: var(--bg-light);
}
.related-links h3 {
  text-align: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 40px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.related-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all .3s;
  text-align: center;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.related-card h4 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 8px;
}
.related-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.related-card a {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

/* ==================== FAQ手风琴 ==================== */
.faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}
.faq-list { }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 17px; font-weight: 600; color: var(--primary);
}
.faq-q::after {
  content: '+'; font-size: 24px; color: var(--accent);
  transition: transform .3s;
}
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
  font-size: 15px; color: var(--text-light); line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 500px; padding-top: 16px; }
.faq-a p { padding-top: 0; }

/* ==================== 页脚 ==================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 40px 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; }
.footer h4 { color: #fff; font-size: 18px; margin-bottom: 20px; }
.footer p { font-size: 14px; line-height: 1.8; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer li a { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer li a:hover { color: var(--accent); }
.footer-bottom {
  text-align: center; padding-top: 30px; margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
}

/* ==================== 响应式 ==================== */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--primary); flex-direction: column; padding: 20px; gap: 16px; }
  .nav-links.show { display: flex; }
  .nav-phone { display: none; }
  .mobile-toggle { display: flex; }
  .page-banner { padding: 120px 20px 50px; }
  .page-banner h1 { font-size: 26px; }
  .article-content { padding: 40px 20px; }
  .article-content h2 { font-size: 22px; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 60px 20px; }
  .process-table, .data-table { font-size: 13px; }
  .process-table th, .process-table td, .data-table th, .data-table td { padding: 10px 12px; }
}

/* ==================== 首页专用样式 ==================== */
/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, #0d2137 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 120px 40px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { max-width: 800px; text-align: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--accent);
  padding: 6px 20px; border-radius: 30px;
  font-size: 14px; font-weight: 500; margin-bottom: 30px;
}
.hero h1 {
  color: #fff; font-size: 48px; font-weight: 700;
  line-height: 1.3; margin-bottom: 20px; letter-spacing: 1px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p { color: rgba(255,255,255,0.7); font-size: 18px; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-stats {
  display: flex; justify-content: center; gap: 60px; margin-top: 50px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { text-align: center; }
.hero-stat .num { display: block; font-size: 36px; font-weight: 700; color: var(--accent); }
.hero-stat .label { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* Sections */
.section { padding: 100px 40px; }
.section-alt { background: var(--bg-light); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-size: 36px; font-weight: 700; color: var(--primary);
  margin-bottom: 16px; letter-spacing: 1px;
}
.section-header .line {
  width: 60px; height: 3px; background: var(--accent);
  margin: 0 auto 16px; border-radius: 2px;
}
.section-header p { font-size: 16px; color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h3 { font-size: 22px; color: var(--primary); margin-bottom: 16px; }
.about-text p { color: var(--text-light); margin-bottom: 20px; font-size: 15px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.about-highlight {
  padding: 20px; background: var(--bg-light); border-radius: 8px;
  border-left: 3px solid var(--accent);
}
.about-highlight .title { font-size: 14px; color: var(--accent); font-weight: 600; }
.about-highlight .desc { font-size: 13px; color: var(--text-light); margin-top: 4px; }
.about-image {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 12px; padding: 40px;
  display: flex; flex-direction: column; justify-content: center;
  min-height: 400px; position: relative; overflow: hidden;
}
.about-image::before {
  content: 'CC'; position: absolute; top: -20px; right: -20px;
  font-size: 200px; font-weight: 900; color: rgba(201,168,76,0.08); line-height: 1;
}
.about-image h3 { color: var(--accent); font-size: 20px; margin-bottom: 24px; }
.about-image ul { list-style: none; }
.about-image li {
  color: rgba(255,255,255,0.85); font-size: 15px; padding: 8px 0;
  padding-left: 24px; position: relative;
}
.about-image li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
a.service-card {
  display: block;
  background: #fff; border-radius: 10px; padding: 40px 30px;
  box-shadow: var(--shadow); transition: all .3s;
  border-top: 3px solid transparent;
  color: inherit;
}
a.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--accent); }
.service-icon {
  width: 60px; height: 60px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px; color: var(--accent);
}
.service-card h3 { font-size: 20px; color: var(--primary); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.8; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.service-tag {
  font-size: 12px; padding: 3px 10px; border-radius: 20px;
  background: var(--bg-light); color: var(--text-light);
}

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1000px; margin: 0 auto; }
a.team-card {
  display: flex; flex-direction: column; align-items: center;
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: all .3s;
  color: inherit; border: 1px solid var(--border);
  padding: 32px 24px 28px;
}
a.team-card:hover { transform: translateY(-6px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); border-color: var(--accent-light); }
.team-avatar {
  position: relative;
  width: 180px; height: 240px;
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.team-avatar img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.team-info {
  margin-top: 20px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.team-info h3 {
  font-size: 20px; color: var(--primary); margin-bottom: 6px;
  letter-spacing: 2px;
}
.team-info .title {
  font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 14px;
}
.team-info .founder-title {
  font-size: 14px; color: var(--accent); font-weight: 700; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, #b8943f 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.founder-card {
  border: 2px solid var(--accent);
  position: relative;
}
.founder-card::before {
  content: '创始人';
  position: absolute; top: 12px; right: -28px;
  background: linear-gradient(135deg, var(--accent) 0%, #b8943f 100%);
  color: var(--primary); font-size: 11px; font-weight: 700;
  padding: 4px 28px; transform: rotate(45deg);
}
}
.team-info p {
  font-size: 14px; color: var(--text-light); line-height: 1.8;
  text-align: left; width: 100%;
}
.team-info p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-size: 24px; color: var(--primary); margin-bottom: 20px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px;
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--bg-light); display: flex;
  align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-item .label { font-size: 13px; color: var(--text-light); }
.contact-item .value { font-size: 16px; color: var(--primary); font-weight: 600; }
.contact-form { background: var(--bg-light); border-radius: 12px; padding: 40px; }
.contact-form h3 { font-size: 24px; color: var(--primary); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; color: var(--text); margin-bottom: 6px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 6px; font-size: 15px; font-family: inherit;
  transition: border-color .3s; background: #fff;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--accent);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit { width: 100%; }

/* Responsive for homepage */
@media (max-width: 768px) {
  .hero { padding: 120px 20px 60px; }
  .hero h1 { font-size: 30px; }
  .hero-stats { gap: 30px; flex-wrap: wrap; }
  .hero-stat .num { font-size: 28px; }
  .section { padding: 60px 20px; }
  .section-header h2 { font-size: 26px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: center; }
}

/* ==================== 律师详情页专用样式 ==================== */
/* 律师Banner */
.lawyer-avatar-large {
  width: 160px; height: 160px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #b8943f 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 30px;
  border: 4px solid rgba(201,168,76,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow: hidden;
}
.lawyer-avatar-large img {
  width: 100%; height: 100%; object-fit: cover;
}
.page-banner-content {
  max-width: 1000px; text-align: center; position: relative; z-index: 1;
}
.page-banner .subtitle {
  color: var(--accent); font-size: 20px; font-weight: 600; margin-bottom: 8px;
}
.page-banner .tags {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 20px;
}
.page-banner .tag {
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  color: var(--accent); padding: 6px 18px; border-radius: 25px; font-size: 14px;
}
.page-banner .contact-info {
  display: flex; justify-content: center; gap: 40px;
  margin-top: 30px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1);
}
.page-banner .contact-item { color: rgba(255,255,255,0.8); font-size: 15px; }
.page-banner .contact-item span { color: var(--accent); font-weight: 600; }

/* 文章分节 */
.article-section { margin-bottom: 60px; }
.article-section h2 {
  font-size: 26px; color: var(--primary); margin-bottom: 24px;
  padding-bottom: 12px; border-bottom: 2px solid var(--accent); display: inline-block;
}
.article-section p {
  font-size: 16px; line-height: 2; color: var(--text); margin-bottom: 20px; text-align: justify;
}
.article-section ul { list-style: none; margin: 20px 0; }
.article-section ul li {
  padding: 12px 0; padding-left: 30px; position: relative;
  font-size: 16px; color: var(--text); border-bottom: 1px solid var(--border);
}
.article-section ul li::before {
  content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.article-section blockquote {
  background: var(--bg-light); border-left: 4px solid var(--accent);
  padding: 24px 30px; margin: 30px 0; border-radius: 0 8px 8px 0;
  font-style: italic; color: var(--text);
}
.article-section blockquote cite {
  display: block; margin-top: 12px; font-style: normal; font-size: 14px; color: var(--text-light);
}
.article-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff !important; padding: 30px; border-radius: 12px; margin: 40px 0;
}
.article-highlight h3 { color: var(--accent) !important; margin-bottom: 16px; font-size: 18px; }
.article-highlight p { color: rgba(255,255,255,0.95) !important; font-size: 15px; line-height: 1.8; }
.article-highlight p * { color: rgba(255,255,255,0.95) !important; }
.article-highlight * { color: rgba(255,255,255,0.95) !important; }

/* 专业卡片 */
.opinion-card {
  background: #fff; border-radius: 12px; padding: 30px;
  box-shadow: var(--shadow); margin: 30px 0; border-top: 3px solid var(--accent);
}
.opinion-card h4 { color: var(--primary); font-size: 18px; margin-bottom: 16px; }
.opinion-card p { color: var(--text-light); font-size: 15px; line-height: 1.9; margin-bottom: 0; }
.domain-card {
  background: #fff; border-radius: 12px; padding: 30px;
  box-shadow: var(--shadow); margin: 30px 0; border-left: 4px solid var(--accent);
}
.domain-card h4 { color: var(--primary); font-size: 18px; margin-bottom: 12px; }
.domain-card p { color: var(--text-light); font-size: 15px; line-height: 1.9; margin-bottom: 0; }

/* 核心优势 */
.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 30px 0; }
.advantage-item {
  text-align: center; padding: 30px 20px; background: var(--bg-light);
  border-radius: 12px; transition: all .3s;
}
.advantage-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.advantage-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px;
}
.advantage-item h4 { color: var(--primary); font-size: 16px; margin-bottom: 8px; }
.advantage-item p { color: var(--text-light); font-size: 14px; margin-bottom: 0; }

/* 代表业绩 */
.achievement-highlight {
  background: linear-gradient(135deg, var(--accent) 0%, #b8943f 100%);
  color: var(--primary); padding: 40px; border-radius: 16px;
  margin: 40px 0; text-align: center;
}
.achievement-highlight .number { font-size: 64px; font-weight: 700; line-height: 1; }
.achievement-highlight .unit { font-size: 24px; margin-top: 8px; }
.achievement-highlight .desc { font-size: 16px; margin-top: 16px; opacity: 0.9; }

/* 客户评价 */
.testimonial {
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
  border-radius: 12px; padding: 30px; margin: 20px 0; position: relative;
}
.testimonial::before {
  content: '"'; position: absolute; top: 10px; left: 20px;
  font-size: 60px; color: var(--accent); opacity: 0.3; line-height: 1;
}
.testimonial p { font-size: 15px; color: var(--text); line-height: 1.9; padding-left: 40px; }
.testimonial cite {
  display: block; margin-top: 12px; padding-left: 40px;
  font-size: 14px; color: var(--text-light); font-style: normal;
}
.testimonial cite strong { color: var(--primary); }

/* CTA电话 */
.cta-phone {
  font-size: 36px; font-weight: 700; color: var(--accent);
  margin-bottom: 30px; letter-spacing: 2px;
}

/* 专业领域卡片网格 - 用于律师详情页 */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 30px 0;
}
.expertise-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
  text-align: center;
  transition: all .3s;
}
.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.expertise-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}
.expertise-card h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 12px;
}
.expertise-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }
}

/* 律师页相关链接 */
.related-section { padding: 60px 40px; background: var(--bg-light); }
.related-section h3 {
  text-align: center; font-size: 28px; color: var(--primary); margin-bottom: 40px;
}

@media (max-width: 768px) {
  .page-banner .contact-info { flex-direction: column; gap: 16px; }
  .advantages-grid { grid-template-columns: 1fr; }
}
