:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2840;
  --primary-light: #2a5298;
  --accent: #c9a227;
  --accent-light: #e8c547;
  --steel: #8b9aab;
  --bg: #f0f4f8;
  --bg-dark: #0d1b2a;
  --white: #ffffff;
  --text: #2c3e50;
  --text-muted: #6b7c93;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(26, 58, 92, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 58, 92, 0.12);
  --shadow-sm: 0 2px 8px rgba(26, 58, 92, 0.06);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
  --header-h: 72px;
  --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #a88620 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 10000;
  background: var(--accent);
  color: #1a1a1a;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(26, 58, 92, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(201, 162, 39, 0.03) 0%, transparent 50%);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(201, 162, 39, 0.25);
  color: var(--primary-dark);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(15, 40, 64, 0.08);
}

.topbar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar-slogan {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.topbar-phone,
.topbar-qq {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}

.topbar-phone:hover,
.topbar-qq:hover { color: var(--accent-light); }

.search-form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 3px 3px 3px 14px;
  border: 1px solid rgba(255,255,255,0.18);
}

.search-form-top input {
  border: none;
  background: transparent;
  outline: none;
  width: 140px;
  font-size: 12px;
  color: white;
}

.search-form-top input::placeholder { color: rgba(255,255,255,0.55); }

.search-form-top button {
  border: none;
  background: var(--accent);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}

.navbar-inner {
  display: flex;
  align-items: stretch;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding: 12px 0;
}

.brand-logo { height: 52px; width: auto; object-fit: contain; }

.brand-text strong {
  display: block;
  font-size: 18px;
  color: var(--primary);
  line-height: 1.25;
  font-weight: 700;
}

.brand-text small {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.main-nav {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
}

.main-nav > ul {
  display: flex;
  align-items: stretch;
  gap: 2px;
  width: 100%;
}

.main-nav > ul > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--primary);
  background: rgba(26, 58, 92, 0.04);
  border-bottom-color: var(--accent);
}

.main-nav > ul > li > a:focus-visible,
.btn:focus-visible,
.sidebar-nav a:focus-visible,
.back-to-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 168px;
  background: var(--white);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all var(--transition);
  z-index: 100;
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
}

.main-nav li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
}

.main-nav .dropdown a:hover {
  background: var(--bg);
  color: var(--primary);
  padding-left: 22px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 1px;
}

main { display: block; min-height: 40vh; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 520px;
}

.hero-slide {
  height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.75) 0%, rgba(26,58,92,0.45) 100%);
}

.hero-slide[style*="background-image"]::before {
  background: linear-gradient(135deg, rgba(13,27,42,0.72) 0%, rgba(26,58,92,0.45) 55%, rgba(13,27,42,0.65) 100%);
}

.hero-slide[style*="background-image"] .hero-content {
  justify-content: flex-end;
  padding-bottom: 48px;
}

.hero-slide-default {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #2a5298 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  max-width: 640px;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content .hero-brand {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-swiper .swiper-pagination-bullet { background: white; opacity: 0.5; width: 10px; height: 10px; }
.hero-swiper .swiper-pagination-bullet-active { opacity: 1; background: var(--accent); width: 24px; border-radius: 5px; }
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  color: white;
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.25);
  border-radius: 50%;
  backdrop-filter: blur(4px);
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after { font-size: 16px; font-weight: 700; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #a88620 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.5);
}

.btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: white;
  background: transparent;
}

.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-outline-dark {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-1px);
}

.btn-light { background: white; color: var(--primary); }
.btn-outline-light { border-color: white; color: white; background: transparent; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* Keywords */
.keywords-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.keywords-bar .container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}

.keywords-bar .label { color: var(--text-muted); font-weight: 500; }

.keywords-bar a {
  padding: 4px 12px;
  background: var(--bg);
  border-radius: 16px;
  color: var(--primary);
}

.keywords-bar a:hover { background: var(--primary); color: white; }

/* Sections */
.section { padding: 80px 0; }
.section:nth-child(even) { background: var(--white); }

.section.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 16px;
}

.section-head h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  padding-bottom: 12px;
}

.section-head h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
}

.section-head p { color: var(--text-muted); font-size: 14px; }
.section-head.light h2, .section-head.light p { color: white; }
.section-head.light h2::after { background: var(--accent-light); }

.more-link {
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.more-link:hover { color: var(--primary); }

/* Cards */
.card-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid-1 { grid-template-columns: 1fr; }

.card-img {
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  background: var(--bg);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card, .case-card, .honor-card, .dealer-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: block;
  border: 1px solid transparent;
}

.product-card:hover, .case-card:hover,
.honor-card:hover, .dealer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,162,39,0.25);
}

.product-card:hover .card-img img,
.case-card:hover .card-img img { transform: scale(1.06); }

.product-card h3, .honor-card span, .dealer-card span {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: var(--text);
}

.product-gallery .product-card .card-body {
  padding: 16px 18px 20px;
}

.product-gallery .product-card h3 {
  padding: 0;
  text-align: left;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--primary);
}

.product-gallery .product-card .card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-gallery .card-img {
  aspect-ratio: 4/3;
}

.case-card { position: relative; }
.case-card .card-img { aspect-ratio: 16/10; border-radius: var(--radius); }
.case-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(13,27,42,0.85));
  color: white;
}

.case-overlay h3 { font-size: 15px; font-weight: 500; }

.list-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid transparent;
}

.list-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,162,39,0.3);
}

.list-card .card-img { aspect-ratio: 16/10; }

.list-card .card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.list-card time {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

.list-card h3 {
  font-size: 15px;
  margin: 8px 0;
  color: var(--primary);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.list-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: auto;
}

/* Partners */
/* Partners */
.section-partners {
  background: var(--white);
  padding-bottom: 56px;
}

.partners-swiper {
  padding: 8px 4px 32px;
  overflow: hidden;
}

.partners-swiper .swiper-slide {
  height: auto;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 16px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  min-height: 120px;
}

.partner-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.partner-card img {
  height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.partner-card span {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

/* Advantages */
.section-advantages {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.advantage-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.advantage-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.advantage-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.8;
  margin-bottom: 12px;
}

.advantage-card h3 { font-size: 18px; margin-bottom: 10px; }
.advantage-card p { font-size: 13px; opacity: 0.85; line-height: 1.8; }

/* Flow */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.flow-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.flow-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.flow-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), #2a5298);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 12px;
}

.flow-step strong { display: block; font-size: 15px; color: var(--primary); margin-bottom: 4px; }
.flow-step span { font-size: 13px; color: var(--text-muted); }

/* News block */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.testimonial-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  transition: var(--transition);
}

.testimonial-item:hover { box-shadow: var(--shadow-lg); }

.testimonial-img {
  flex-shrink: 0;
  width: 160px;
  height: 120px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.testimonial-img img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-body h3 { font-size: 16px; margin-bottom: 8px; }
.testimonial-body h3 a:hover { color: var(--accent); }
.testimonial-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.read-more { font-size: 13px; color: var(--accent); font-weight: 500; }

.news-tabs { display: flex; gap: 8px; margin-bottom: 16px; }

.news-tabs .tab {
  padding: 8px 20px;
  border: none;
  background: var(--bg);
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
}

.news-tabs .tab.active,
.news-tabs .tab:hover {
  background: var(--primary);
  color: white;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.news-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
}

.news-list time {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 12px;
  min-width: 80px;
}

.news-list a:hover { color: var(--accent); }
.news-list.compact li { padding: 8px 0; }
.news-list.compact a { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Category layouts: news & cases */
.page-banner-desc {
  margin-top: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.page-banner-news {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e4d6e 100%);
}

.page-banner-case {
  background: linear-gradient(135deg, #1a3a5c 0%, #2d5a3d 100%);
}

.page-banner-search {
  background: linear-gradient(135deg, #1a3a5c 0%, #3d2a5c 100%);
}

.page-banner-article {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a5f 50%, #2a4a6e 100%);
}

.related-list a {
  display: block;
  padding: 8px 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  border-bottom: 1px dashed var(--border);
  transition: var(--transition);
}

.related-list a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.related-list li:last-child a { border-bottom: none; }

.search-result-count strong {
  color: var(--primary);
  font-weight: 700;
}

.empty-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}

.empty-keywords a {
  padding: 6px 16px;
  background: var(--bg);
  border-radius: 20px;
  color: var(--primary);
  font-size: 13px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.empty-keywords a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.news-feed {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.news-feed-item {
  border-bottom: 1px solid var(--border);
}

.news-feed-item:last-child { border-bottom: none; }

.news-feed-link {
  display: flex;
  gap: 24px;
  padding: 24px 28px;
  transition: var(--transition);
}

.news-feed-link:hover {
  background: linear-gradient(90deg, rgba(26, 58, 92, 0.04), transparent);
}

.news-feed-link time {
  flex-shrink: 0;
  width: 96px;
  padding-top: 4px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  line-height: 1.4;
}

.news-feed-body { flex: 1; min-width: 0; }

.news-feed-body h3 {
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.5;
}

.news-feed-link:hover .news-feed-body h3 { color: var(--accent); }

.news-feed-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-feed-more {
  font-size: 13px;
  color: var(--steel);
  transition: var(--transition);
}

.news-feed-link:hover .news-feed-more { color: var(--accent); }

.case-gallery .case-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.case-gallery .case-overlay time {
  display: block;
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 4px;
}

.empty-state {
  text-align: center;
  padding: 64px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px dashed var(--border);
}

.empty-state-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--bg), white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border: 1px solid var(--border);
}

.empty-state p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 16px;
}

.empty-state-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.legacy-page-content .p_list_dl,
.legacy-page-content .news_dl {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin: 0;
}

.legacy-page-content dl { margin: 0; }

.legacy-page-content .p_list_dl dt img,
.legacy-page-content .news_dl img {
  width: 100%;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.legacy-page-content .p_list_dl dd,
.legacy-page-content .news_dl dd {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.legacy-page-content .news_dl {
  display: block;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.legacy-page-content .news_dl dt {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}

.legacy-page-content .news_dl .dt_1 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.legacy-page-content .news_dl .dt_2 {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .news-feed-link {
    flex-direction: column;
    gap: 8px;
    padding: 18px 20px;
  }

  .news-feed-link time { width: auto; padding-top: 0; }
}


.mini-card {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}

.mini-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.mini-card span {
  display: block;
  padding: 8px 12px;
  background: var(--bg);
  font-size: 13px;
}

/* About */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text h2 { font-size: 28px; color: var(--primary); margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.9; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }

.honor-card img, .dealer-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.honor-card span, .dealer-card span { display: block; padding: 12px; text-align: center; font-size: 13px; }

/* Bottom news */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-col h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.featured-news {
  display: block;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
}

.featured-news img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.featured-news strong {
  display: block;
  padding: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.faq-list summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.faq-list p { font-size: 13px; color: var(--text-muted); margin-top: 8px; padding-left: 16px; }

/* CTA */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #2a5298 100%);
  padding: 56px 0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  color: white;
}

.cta-inner h2 { font-size: 26px; margin-bottom: 8px; }
.cta-inner p { opacity: 0.85; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* Page layout */
.page-banner {
  background: var(--gradient-primary);
  color: white;
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.page-banner .container { position: relative; z-index: 1; }

.page-banner h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  opacity: 0.8;
  flex-wrap: wrap;
}

.breadcrumb-sep { opacity: 0.55; user-select: none; }

.breadcrumb a:hover { opacity: 1; color: var(--accent-light); }

.page-content { padding: 48px 0 64px; }

.page-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 88px;
}

.sidebar-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.sidebar-box h3 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-box h3::before {
  content: '';
  width: 4px;
  height: 16px;
  background: var(--gradient-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.sidebar-nav a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: linear-gradient(90deg, rgba(26, 58, 92, 0.08), transparent);
  color: var(--primary);
  border-left-color: var(--accent);
  padding-left: 18px;
}

.sidebar-nav a.active {
  font-weight: 600;
  color: var(--primary);
}

.sidebar-nav { list-style: none; }

.sidebar-nav li { margin-bottom: 4px; }

.sidebar-contact {
  background: linear-gradient(145deg, var(--primary-dark), var(--primary));
  color: white;
  border: none;
}

.sidebar-contact h3 {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sidebar-contact h3::before {
  background: var(--accent-light);
}

.sidebar-contact .phone-big {
  color: var(--accent-light);
}

.sidebar-contact .btn-primary {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.phone-big {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin-bottom: 16px;
}
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin-bottom: 16px;
}

.main-content {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  min-width: 0;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.main-content-flush {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border: none;
}

.page-content-news .main-content-flush .news-feed,
.page-content-case .main-content-flush .case-gallery {
  margin-top: 0;
}

.main-content .list-card {
  box-shadow: none;
  border: 1px solid var(--border);
}

.main-content .list-card:hover {
  border-color: rgba(201,162,39,0.45);
}

/* Article detail */
.article-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.article-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.article-meta-badge strong {
  color: var(--primary);
  font-weight: 600;
}

.article-detail .article-content {
  padding-top: 8px;
}

.article-thumb {
  margin-bottom: 24px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.article-content {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.article-content img {
  max-width: 100% !important;
  height: auto !important;
  margin: 16px auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.article-content p { margin-bottom: 16px; }

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

.article-content table td,
.article-content table th {
  border: 1px solid var(--border);
  padding: 8px 12px;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  color: var(--primary);
  margin: 24px 0 12px;
  font-weight: 600;
}

.article-content ul,
.article-content ol {
  margin: 12px 0 16px 24px;
  list-style: disc;
}

.article-content ol { list-style: decimal; }

.article-content a { color: var(--primary); text-decoration: underline; }

.article-content iframe,
.article-content video {
  max-width: 100%;
  border-radius: var(--radius-sm);
}

.category-page-content .rightbot,
.category-page-content .righttop,
.category-page-content .right_main:empty {
  display: none;
}

.category-page-content .agent_con,
.category-page-content .age_li_about {
  max-width: 100%;
}

/* 清除原站内容内联样式干扰 */
.article-content [style*="font-size"],
.article-content font {
  font-size: inherit !important;
  font-family: inherit !important;
}

.article-cta {
  margin-top: 32px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(26,58,92,0.06), rgba(201,162,39,0.08));
  border: 1px solid rgba(201,162,39,0.28);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.article-cta-text strong {
  display: block;
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 6px;
}

.article-cta-text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.article-cta-soft {
  background: linear-gradient(135deg, rgba(26,58,92,0.04), rgba(26,58,92,0.02));
  border-color: var(--border);
}

.article-geo-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.article-geo-links a {
  color: var(--primary);
  border-bottom: 1px solid rgba(26,58,92,0.15);
}

.article-geo-links a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.error-geo {
  margin-top: 28px;
}

.error-geo p {
  margin-bottom: 12px !important;
  font-size: 14px !important;
}

.error-geo-links,
.search-geo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.error-geo-links a,
.search-geo-links a {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(26,58,92,0.06);
  color: var(--primary);
  font-size: 13px;
}

.search-geo-links {
  margin-top: 18px;
}

.empty-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.empty-keywords a {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 13px;
  background: var(--white);
}

.prose-page {
  max-width: 820px;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 1.25em;
  margin: 12px 0 20px;
  color: var(--text);
}

.privacy-content li { margin-bottom: 6px; }

.privacy-updated {
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 10px;
  font-size: 13px;
}

.footer-regions a {
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid transparent;
}

.footer-regions a:hover {
  color: var(--accent-light);
  border-bottom-color: rgba(232,197,71,0.5);
}

.section-geo-areas {
  padding-top: 20px;
}

.geo-area-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.geo-area-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.geo-area-card strong {
  font-size: 18px;
  color: var(--primary);
}

.geo-area-card span {
  font-size: 13px;
  color: var(--text-muted);
}

.geo-area-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,162,39,0.35);
  box-shadow: var(--shadow);
}

.contact-nap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.contact-nap-title {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 12px;
}

.contact-nap-list {
  display: grid;
  gap: 8px;
  color: var(--text);
  margin-bottom: 14px;
}

.contact-nap-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-nap-regions a {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(26,58,92,0.06);
  color: var(--primary);
  font-size: 13px;
}

.contact-nap-regions a:hover {
  background: rgba(201,162,39,0.15);
}

.contact-map {
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

.contact-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.contact-map-note {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.category-intro {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 900px) {
  .geo-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.article-nav-card {
  display: block;
  padding: 16px 20px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.article-nav-card:hover {
  border-color: var(--accent);
  background: white;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.article-nav-card span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 6px;
}

.article-nav-card strong {
  display: block;
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-nav-card.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.article-nav span { display: block; color: var(--text-muted); font-size: 12px; margin-bottom: 4px; }
.article-nav a:hover { color: var(--accent); }

/* Search */
.search-form-lg {
  display: flex;
  margin-top: 20px;
  max-width: 520px;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 6px;
}

.search-form-lg input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  color: white;
  font-size: 15px;
  padding: 8px 12px;
}

.search-form-lg input::placeholder { color: rgba(255,255,255,0.55); }

.search-form-lg .btn { flex-shrink: 0; border-radius: var(--radius-sm); }

.search-result-count {
  color: var(--text-muted);
  margin-bottom: 24px;
  padding: 12px 18px;
  background: white;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-item {
  display: flex;
  gap: 20px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.search-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(6px);
  border-color: rgba(201, 162, 39, 0.35);
}

.search-item img {
  width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.search-item h3 {
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.search-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-item time {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

.search-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  opacity: 0.6;
}

/* 404 */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.error-page-inner {
  max-width: 480px;
}

.error-code {
  font-size: clamp(5rem, 15vw, 8rem);
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.error-page h1,
.error-page h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.error-page p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 16px;
}

.error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* Pagination */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
  max-width: 100%;
}

.pagination a {
  min-width: 38px;
  height: 38px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 14px;
  transition: var(--transition);
}

.pagination a:hover,
.pagination a.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.pagination-nav {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}

.pagination-nav.is-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.pagination-ellipsis {
  min-width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  user-select: none;
}

/* Footer enhancements */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}

.footer-main { padding: 56px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 40px;
}

.footer-brand img { height: 48px; margin-bottom: 16px; filter: brightness(1.2); }
.footer-brand p { font-size: 13px; line-height: 1.8; opacity: 0.75; }

.footer-links h4, .footer-contact h4, .footer-qr h4 {
  font-size: 16px;
  color: white;
  margin-bottom: 16px;
}

.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; opacity: 0.75; }
.footer-links a:hover { opacity: 1; color: var(--accent-light); }

.footer-contact li { font-size: 13px; margin-bottom: 8px; opacity: 0.75; }

.qr-group { display: flex; gap: 12px; margin-bottom: 12px; }
.qr-group img { width: 80px; border-radius: var(--radius-sm); }
.footer-qr p { font-size: 12px; opacity: 0.6; }

.footer-links-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  font-size: 13px;
}

.footer-links-bar .container { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.footer-links-bar a { opacity: 0.65; }
.footer-links-bar a:hover { opacity: 1; color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}

.footer-bottom a { color: var(--accent-light); }

/* Float phone */
.float-phone {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), #a88620);
  color: white;
  padding: 12px 20px;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(201,162,39,0.5);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.float-phone:hover { transform: scale(1.05); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(201,162,39,0.5); }
  50% { box-shadow: 0 8px 48px rgba(201,162,39,0.7); }
}

/* Responsive */
@media (max-width: 1100px) {
  .brand-text small { display: none; }
  .main-nav > ul > li > a { padding: 0 10px; font-size: 13px; }
}

@media (max-width: 1024px) {
  .card-grid-4, .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .three-col { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: repeat(3, 1fr); }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
  .sidebar-box { margin-bottom: 0; }
  .brand-text strong { font-size: 16px; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar-slogan { display: none; }
  .topbar-qq { display: none; }
  .search-form-top { display: none; }

  .navbar-inner {
    flex-wrap: wrap;
    min-height: auto;
    padding: 8px 0;
  }

  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    width: 100%;
    order: 4;
    border-top: 1px solid var(--border);
    padding-top: 8px;
  }

  .main-nav.open { display: block; }

  .main-nav > ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav > ul > li > a {
    padding: 12px 8px;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .main-nav > ul > li > a.active,
  .main-nav > ul > li > a:hover {
    border-left-color: var(--accent);
    border-bottom-color: transparent;
  }

  .main-nav .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: none;
    padding: 0 0 8px 12px;
    display: none;
  }

  .main-nav li.dropdown-open .dropdown { display: block; }

  .hero-swiper,
  .hero-swiper .swiper-wrapper,
  .hero-swiper .swiper-slide,
  .hero-slide,
  .hero-content { height: 380px; }

  .hero-content h1 { font-size: 1.6rem; }
  .hero-content p { font-size: 14px; margin-bottom: 20px; }

  .card-grid-3, .card-grid-4, .advantage-grid,
  .two-col, .about-block, .page-layout, .cta-inner,
  .footer-grid, .flow-steps { grid-template-columns: 1fr; }

  .testimonial-item { flex-direction: column; }
  .testimonial-img { width: 100%; height: 180px; }
  .article-nav { grid-template-columns: 1fr; }
  .float-phone span { display: none; }
  .back-to-top { right: 16px; bottom: 76px; }
  .section { padding: 56px 0; }
  .brand-logo { height: 42px; }
  .brand-text small { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }
}
