/* ============================================
   全局样式 - 成都秉信立衡商务咨询有限公司
   ============================================ */

:root {
  --primary: #1A365D;
  --primary-light: #2C4A7C;
  --primary-hover: #152C4A;
  --accent: #B8860B;
  --accent-light: #DAA520;
  --accent-gradient: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
  --bg-light: #F7F9FC;
  --bg-white: #FFFFFF;
  --text-dark: #1A202C;
  --text-gray: #4A5568;
  --text-light: #718096;
  --border: #E2E8F0;
  --success: #38A169;
  --shadow: 0 2px 8px rgba(26,54,93,0.08);
  --shadow-lg: 0 4px 20px rgba(26,54,93,0.12);
  --radius: 8px;
  --radius-lg: 16px;
}

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

body {
  font-family: "Noto Sans SC", "Microsoft YaHei", "Source Han Sans CN", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-white);
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Header ============ */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 56px;
  width: auto;
}

.main-nav { display: flex; gap: 32px; }

.main-nav a {
  color: var(--text-gray);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

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

.header-phone {
  font-size: 14px;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-phone span { color: var(--accent); font-weight: 600; font-size: 16px; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary);
}

/* ============ Hero ============ */
.hero {
  background: linear-gradient(135deg, rgba(26,54,93,0.88) 0%, rgba(26,54,93,0.75) 100%), url('../images/hero-bg.jpg') center/cover no-repeat;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero .subtitle {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-tags {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-tag {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 15px;
}

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

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
  background: var(--accent-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 500;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: white;
}

/* ============ Sections ============ */
.section {
  padding: 88px 0;
}

.section-compact {
  padding-top: 64px;
}

.section-gray { background: var(--bg-light); }

.section-header {
  text-align: center;
  margin-bottom: 24px;
}

.section-header h2 {
  font-size: 56px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-gray);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--accent);
}

.service-card:hover .service-icon {
  transform: scale(1.08);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 12px rgba(26,54,93,0.15);
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-gray);
  font-size: 15px;
  margin-bottom: 16px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.service-tag {
  background: var(--bg-light);
  color: var(--text-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 13px;
}

.service-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ============ Why Choose Us ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item {
  text-align: center;
  padding: 24px 16px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.feature-icon-svg {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
}

.feature-item h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}

.feature-item p {
  color: var(--text-light);
  font-size: 14px;
}

/* ============ Index Stats ============ */
.index-stats {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 48px 0;
}
.stats-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-card {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.stat-num {
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}

/* ============ FAQ ============ */
.faq-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.faq-cat-btn {
  background: var(--bg-white);
  border: 2px solid var(--border);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  cursor: pointer;
  transition: all 0.2s;
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.faq-list { max-width: 800px; margin: 0 auto; }

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

.faq-item summary {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.2s;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item[open] summary { border-bottom: 1px solid var(--border); }

.faq-answer {
  padding: 20px 24px;
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.8;
}

.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

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

.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

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

.blog-cover {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  position: relative;
  overflow: hidden;
}
.blog-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============ Service Showcase ============ */
.svc-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.svc-showcase-reverse { direction: rtl; }
.svc-showcase-reverse > * { direction: ltr; }

.svc-showcase-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 40px rgba(26,54,93,0.15);
}
.svc-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.svc-showcase:hover .svc-showcase-img img {
  transform: scale(1.03);
}
.svc-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,54,93,0.85) 0%, rgba(26,54,93,0.6) 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.svc-overlay-content { color: white; }
.svc-overlay-label {
  display: inline-block;
  background: rgba(201,168,76,0.9);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.svc-overlay-content h2 {
  color: white;
  font-size: 26px;
  margin-bottom: 8px;
}
.svc-overlay-content p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.svc-showcase-body { padding: 8px 0; }

.svc-highlights { margin-bottom: 28px; }
.svc-highlight-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.svc-highlight-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.svc-highlight-text h4 {
  font-size: 15px;
  color: var(--primary);
  margin: 0 0 4px;
  font-weight: 600;
}
.svc-highlight-text p {
  font-size: 13px;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
}

.svc-use-cases h4 {
  font-size: 14px;
  color: var(--text-gray);
  margin: 0 0 10px;
  font-weight: 500;
}
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tag {
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--text-dark);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  transition: all 0.2s;
}
.svc-tag:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .svc-showcase, .svc-showcase-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .svc-showcase-img { aspect-ratio: 16/9; }
  .svc-showcase-reverse > * { direction: ltr; }
}

/* ============ About Page ============ */
.about-hero-img {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,54,93,0.75) 0%, rgba(26,54,93,0.4) 100%);
  display: flex;
  align-items: center;
}
.about-hero-text {
  color: white;
  text-align: left;
}
.about-hero-text h1 {
  color: white;
  font-size: 44px;
  margin-bottom: 12px;
}
.about-hero-text p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
}

/* ============ Services Page Hero ============ */
.svc-hero-img {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.svc-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,54,93,0.75) 0%, rgba(26,54,93,0.4) 100%);
  display: flex;
  align-items: center;
}
.svc-hero-text { color: white; text-align: left; }
.svc-hero-text h1 { color: white; font-size: 44px; margin-bottom: 12px; }
.svc-hero-text p { color: rgba(255,255,255,0.9); font-size: 18px; }

/* ============ FAQ Page Hero ============ */
.faq-hero-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.faq-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.faq-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,54,93,0.75) 0%, rgba(26,54,93,0.4) 100%);
  display: flex;
  align-items: center;
}
.faq-hero-text { color: white; text-align: left; }
.faq-hero-text h1 { color: white; font-size: 40px; margin-bottom: 12px; }
.faq-hero-text p { color: rgba(255,255,255,0.9); font-size: 17px; }

/* ============ Service Detail Components ============ */
.svc-section-title {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 600;
}
.svc-section-desc {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.svc-detail-item {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 16px 18px;
  border-left: 3px solid var(--primary);
}
.svc-detail-item h4 {
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 6px;
  font-weight: 600;
}
.svc-detail-item p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* ============ Process Steps ============ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.process-step {
  position: relative;
  padding: 24px;
  background: white;
  border-radius: 14px;
  border: 1px solid var(--border);
  text-align: center;
}
.process-step:hover {
  border-color: var(--primary-light);
  box-shadow: 0 4px 20px rgba(26,54,93,0.08);
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 14px;
}
.process-step h4 {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
}
.process-step p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* ============ Compliance Statement (Footer) ============ */
.compliance-statement {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.compliance-statement p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: center;
}
.about-intro-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 16px 48px rgba(26,54,93,0.12);
}
.about-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-intro-img-badge {
  position: absolute;
  bottom: 20px;
  right: -16px;
  background: var(--accent-gradient);
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.about-intro-text .section-label { margin-bottom: 8px; }
.about-intro-text h2 {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 20px;
}
.about-intro-text p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}
.about-stats-row {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.about-stat { text-align: center; }
.about-stat strong {
  display: block;
  font-size: 28px;
  color: var(--primary);
  font-weight: 700;
}
.about-stat span {
  font-size: 13px;
  color: var(--text-gray);
}

.section-label {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.promise-card {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.promise-card:hover {
  box-shadow: 0 8px 32px rgba(26,54,93,0.1);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}
.promise-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.promise-card h3 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 600;
}
.promise-card p {
  color: var(--text-gray);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}
.promise-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 10px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.case-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.case-card:hover .case-img img { transform: scale(1.04); }
.case-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(26,54,93,0.85));
}
.case-category {
  color: white;
  font-size: 12px;
  font-weight: 600;
  background: rgba(201,168,76,0.9);
  padding: 3px 12px;
  border-radius: 12px;
}
.case-body { padding: 20px; }
.case-body h3 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 10px;
}
.case-body p {
  color: var(--text-gray);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.case-tags span {
  background: var(--bg-light);
  color: var(--text-gray);
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 10px;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cred-card {
  background: white;
  border-radius: 14px;
  padding: 24px 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}
.cred-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 4px 20px rgba(26,54,93,0.08);
}
.cred-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--primary);
}
.cred-card h4 {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
}
.cred-card p {
  color: var(--text-gray);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* ============ Team Section ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.team-card {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 8px 32px rgba(26,54,93,0.1);
  transform: translateY(-4px);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  border: 3px solid var(--primary-light);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-info h4 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 4px;
  font-weight: 600;
}
.team-title {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.team-desc {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .about-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-intro-img { max-width: 500px; }
  .about-hero-img { height: 300px; }
  .svc-hero-img { height: 300px; }
  .faq-hero-img { height: 260px; }
}
@media (max-width: 768px) {
  .case-grid { grid-template-columns: 1fr; }
  .about-stats-row { gap: 20px; }
  .team-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

.blog-hero-img {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.blog-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,54,93,0.75) 0%, rgba(26,54,93,0.4) 100%);
  display: flex;
  align-items: center;
}
.blog-hero-text { color: white; text-align: left; }
.blog-hero-text h1 { color: white; font-size: 40px; margin-bottom: 10px; }
.blog-hero-text p { color: rgba(255,255,255,0.9); font-size: 17px; }

/* ============ Contact Page ============ */
.contact-hero-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.contact-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,54,93,0.7) 0%, rgba(26,54,93,0.35) 100%);
  display: flex;
  align-items: center;
}
.contact-hero-text { color: white; }
.contact-hero-text h1 { color: white; font-size: 40px; margin-bottom: 10px; }
.contact-hero-text p { color: rgba(255,255,255,0.9); font-size: 18px; }

.contact-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-method-card {
  background: white;
  border-radius: 16px;
  padding: 28px 20px;
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s;
}
.contact-method-card:hover {
  box-shadow: 0 6px 24px rgba(26,54,93,0.1);
  transform: translateY(-3px);
  border-color: var(--primary-light);
}
.cm-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cm-body h3 { font-size: 16px; color: var(--primary); margin-bottom: 6px; font-weight: 600; }
.cm-main { font-size: 15px; color: var(--text-dark); font-weight: 600; margin-bottom: 4px; }
.cm-sub { font-size: 13px; color: var(--text-gray); margin: 0; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
.contact-form-panel {
  background: white;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-aside-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
}
.aside-point {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.aside-point:last-child { margin-bottom: 0; }
.aside-point-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--accent-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 2px;
}
.aside-point strong { display: block; font-size: 14px; color: var(--text-dark); margin-bottom: 2px; }
.aside-point p { font-size: 12px; color: var(--text-gray); margin: 0; line-height: 1.4; }

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.scene-card {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}
.scene-card:hover {
  box-shadow: 0 6px 24px rgba(26,54,93,0.1);
  transform: translateY(-4px);
}
.scene-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.scene-card h3 { font-size: 17px; color: var(--primary); margin-bottom: 10px; }
.scene-card p { color: var(--text-gray); font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
.scene-action {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

@media (max-width: 1024px) {
  .contact-methods { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-aside { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  .contact-methods { grid-template-columns: 1fr; }
  .scene-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-aside { grid-template-columns: 1fr; }
  .contact-hero-text h1 { font-size: 28px; }
  .contact-hero-img { height: 240px; }
}

.blog-content { padding: 24px; }

.blog-date {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.5;
}

.blog-card p {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 16px;
}

.blog-read-more {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

/* ============ About ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-gray);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-dark);
}

.highlight-item span {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
}

.about-visual {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 80px;
  opacity: 0.6;
}

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-info-text p {
  color: var(--text-gray);
  font-size: 14px;
}

.contact-form {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.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; }

/* ============ Footer ============ */
.site-footer {
  background: var(--primary);
  color: white;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo { color: white; margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 15px;
  margin-bottom: 16px;
  color: var(--accent);
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.footer-col ul li a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.6;
}

/* ============ Breadcrumb ============ */
.breadcrumb {
  background: var(--bg-light);
  padding: 12px 0;
  font-size: 14px;
}

.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-light); margin: 0 8px; }

/* ============ Page Header ============ */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 56px 0;
  text-align: center;
}

.page-header h1 { font-size: 36px; margin-bottom: 8px; }
.page-header p { font-size: 17px; opacity: 0.85; }

/* ============ CTA Section ============ */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 64px 0;
  text-align: center;
  color: white;
}

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

.cta-section p {
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 32px;
}

/* ============ Responsive ============ */
@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 12px 16px;
  }
  .logo {
    font-size: 18px;
    gap: 8px;
  }
  .logo-img {
    height: 44px;
  }
  .header-phone {
    display: none;
  }
  .main-nav { display: none; }
  .main-nav.mobile-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 8px 24px 12px;
  }
  .main-nav.mobile-open a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .main-nav.mobile-open a:last-child {
    border-bottom: 0;
  }
  .mobile-menu-btn { display: block; }
  .hero h1 { font-size: 28px; }
  .hero .subtitle { font-size: 17px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }
  .stat-card {
    padding: 0 12px;
  }
  .stat-divider {
    display: none;
  }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-highlights { grid-template-columns: 1fr; }
  .about-hero-text h1 { font-size: 30px; }
  .svc-hero-text h1 { font-size: 30px; }
  .faq-hero-text h1 { font-size: 28px; }
}

/* ============ Utilities ============ */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
