/**
 * 风格技术官网 - 新设计 (参考 inovance.com 风格)
 * 设计系统：蓝色主调，简洁专业，干净留白，清晰层级
 */

/* ============ Reset & Variables ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* 蓝色主色系 (参考 inovance) */
  --primary: #0057B3;
  --primary-dark: #004699;
  --primary-darker: #003580;
  --primary-light: #3a82d6;
  --primary-lighter: #e8f0fe;
  --primary-bg: rgba(0, 87, 179, 0.06);

  /* 中性色 */
  --dark: #1a1f2e;
  --gray-900: #1e2024;
  --gray-800: #2c2e33;
  --gray-700: #4a4c52;
  --gray-600: #6b6f76;
  --gray-500: #8b8f96;
  --gray-400: #b0b3b9;
  --gray-300: #d0d3d9;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f8f9fb;
  --white: #ffffff;

  /* 功能色 */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #dc2626;

  /* 排版 */
  --font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;

  /* 布局 */
  --container: 1280px;
  --container-narrow: 1060px;
  --header-h: 72px;
  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 12px;

  /* 阴影 */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ============ Typography ============ */
h1, h2, h3, h4, h5, h6 { color: var(--dark); font-weight: 700; line-height: 1.3; }
a { color: inherit; text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  padding: 4px 16px;
  background: var(--primary-lighter);
  border-radius: 100px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

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

/* ============ Top Bar (通知栏) ============ */
.top-bar {
  background: var(--dark);
  height: 36px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-left a,
.top-bar-left span {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  transition: color 0.2s;
}

.top-bar-left a:hover {
  color: var(--primary-light);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right a {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  transition: color 0.2s;
}

.top-bar-right a:hover {
  color: var(--primary-light);
}

.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}

/* ============ Navbar (白色导航栏) ============ */
.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: top 0.3s ease;
}

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

.navbar-inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 4px;
  color: white;
  font-size: 16px;
  font-weight: 700;
}

.logo-mark::after {
  content: "G";
  font-size: 16px;
  font-weight: 700;
}

/* Navigation links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 auto 0 40px;
}

.nav-links > a {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-700);
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

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

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-consult-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-consult-btn:hover {
  background: var(--primary-dark);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white) !important;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 87, 179, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--primary) !important;
}

.btn-white:hover {
  background: var(--primary-lighter);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-lg { padding: 16px 40px; font-size: 16px; }

/* ============ Section ============ */
.section { padding: 80px 0; }
.section-alt { background: var(--gray-50); }

/* ============ Breadcrumb ============ */
.breadcrumb {
  padding: 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  font-size: 14px;
  color: var(--gray-500);
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-list li + li::before {
  content: "/";
  color: var(--gray-400);
}

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

/* ============ Hero / Page Banner ============ */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #141824 100%);
  color: white;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 40%, rgba(0,87,179,0.12) 0%, transparent 60%);
}

.page-banner .container { position: relative; }
.page-banner h1 { color: white; font-size: 44px; font-weight: 800; margin-bottom: 16px; }
.page-banner p { color: rgba(255,255,255,0.7); font-size: 17px; max-width: 600px; line-height: 1.8; }

/* ============ Hero Section (Home) ============ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url(../images/hero-bg.jpg), linear-gradient(135deg, #1a1a2e 0%, #0057B3 100%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 100px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,26,46,0.72) 0%, rgba(0,87,179,0.45) 100%),
    radial-gradient(ellipse 70% 50% at 10% 50%, rgba(0,87,179,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 30%, rgba(0,87,179,0.10) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 0 80px;
}

.hero-text { max-width: 700px; }

.hero-text h1 {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-text h1 em {
  font-style: normal;
  color: #4a9eff;
}

.hero-text p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-item { text-align: left; }

.hero-stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

.hero-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s ease;
  cursor: default;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-lighter);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
}

.service-features {
  list-style: none;
  margin-top: 16px;
}

.service-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============ Extended Services Table ============ */
.extended-services-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.extended-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.extended-table thead {
  background: var(--gray-50);
}

.extended-table th {
  padding: 16px 24px;
  text-align: left;
  font-weight: 700;
  color: var(--dark);
  font-size: 13px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--gray-200);
}

.extended-table td {
  padding: 18px 24px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}

.extended-table tbody tr:last-child td {
  border-bottom: none;
}

.extended-table tbody tr {
  transition: background 0.2s;
}

.extended-table tbody tr:hover {
  background: var(--gray-50);
}

.ext-service-name {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.ext-service-sub {
  font-size: 12px;
  color: var(--gray-400);
}

.ext-price {
  font-size: 18px;
  font-weight: 900;
  color: var(--primary);
}

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

.case-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  text-decoration: none;
}

.case-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  border-color: transparent;
}

.case-card-image {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--gray-100);
}

.case-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover .case-card-image img { transform: scale(1.05); }

.case-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}

.case-card-body {
  padding: 20px 24px;
}

.case-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.case-card-body p {
  font-size: 14px;
  color: var(--gray-500);
}

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

.news-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  text-decoration: none;
}

.news-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  border-color: transparent;
}

.news-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-100);
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img { transform: scale(1.05); }

.news-card-body {
  padding: 24px;
}

.news-card-date {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 8px;
  display: block;
}

.news-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============ Feature / Advantage section ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.feature-item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border-color: transparent;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--primary-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
}

.feature-item h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-item p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============ Stats Section ============ */
.stats-section {
  background: var(--dark);
  padding: 60px 0;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-block { text-align: center; }

.stat-number {
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}

/* ============ CTA Section ============ */
.cta-section {
  background: var(--primary);
  padding: 72px 0;
}

.cta-box {
  text-align: center;
  color: white;
}

.cta-box h2 {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.cta-box p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

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

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-color: transparent;
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 4px 24px rgba(0,87,179,0.12);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 20px;
  background: var(--primary);
  color: white;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
}

.pricing-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.pricing-price {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1;
}

.pricing-price span {
  font-size: 18px;
  font-weight: 600;
}

.pricing-features {
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 15px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  margin-right: 10px;
}

/* ============ Contact Form & Info ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info { padding-top: 8px; }

.contact-info h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--dark);
}

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

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-lighter);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

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

.contact-text p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

.contact-text .contact-phone {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  font-family: var(--font);
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  outline: none;
  transition: all 0.2s;
  background: var(--white);
  color: var(--dark);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-bg);
}

.form-control.error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6f76' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* ============ Case Detail ============ */
.case-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
}

.case-info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}

.case-info-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}

.case-info-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}

.case-info-row:last-child { border-bottom: none; }

.case-info-label { font-size: 14px; color: var(--gray-500); }
.case-info-value { font-size: 14px; font-weight: 600; color: var(--dark); }

.case-cta-box {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  margin-bottom: 24px;
}

.case-cta-box h3 { color: white; font-size: 18px; margin-bottom: 8px; }
.case-cta-box p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 20px; }

/* ============ Timeline ============ */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-content {
  flex: 1;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  max-width: 360px;
}

.timeline-item:nth-child(odd) .timeline-content { margin-right: auto; }
.timeline-item:nth-child(even) .timeline-content { margin-left: auto; }

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 28px;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid var(--primary-lighter);
}

.timeline-year {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}

.timeline-text h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.timeline-text p { font-size: 14px; color: var(--gray-500); }

/* ============ Filter Tabs ============ */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-tabs button {
  padding: 10px 28px;
  background: var(--gray-100);
  color: var(--gray-700);
  border: 2px solid transparent;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font);
}

.filter-tabs button:hover {
  color: var(--primary);
  background: var(--primary-lighter);
}

.filter-tabs button.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.testimonial-quote {
  font-size: 48px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 15px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--gray-500);
}

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

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-size: 14px;
  color: var(--gray-700);
  transition: all 0.2s;
  text-decoration: none;
}

.pagination span.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

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

/* ============ Footer ============ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 320px;
}

.footer-links h4 {
  color: white;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

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

.footer-bottom {
  padding: 24px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

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

.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.value-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--primary-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card-icon svg { width: 32px; height: 32px; stroke: var(--primary); fill: none; stroke-width: 1.6; }

.value-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

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

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  padding: 4px 0;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--primary);
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(0);
}

.faq-answer {
  padding-top: 12px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
  display: none;
}

.faq-item.active .faq-answer { display: block; }

/* ============ Service Process ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-num {
  width: 56px;
  height: 56px;
  background: var(--primary-lighter);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  transition: all 0.3s;
}

.process-step:hover .process-step-num {
  background: var(--primary);
  color: white;
}

.process-step h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

/* ============ Subpage Layout ============ */
.subpage-content { padding: 60px 0 80px; }
.subpage-content .content-body { max-width: 800px; }
.subpage-content .content-body h2 { font-size: 24px; margin: 40px 0 16px; }
.subpage-content .content-body h3 { font-size: 20px; margin: 28px 0 12px; }
.subpage-content .content-body p { margin-bottom: 16px; line-height: 2; color: var(--gray-700); }

/* Sidebar */
.sidebar-section { margin-bottom: 24px; }
.sidebar-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
}

.sidebar-box h3 {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}

/* ============ Back to Top ============ */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(0,87,179,0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ============ Animations ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in { opacity: 0; transform: translateY(24px); transition: all 0.6s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ============ Responsive ============ */
@media (max-width: 1200px) {
  .container { padding: 0 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

@media (max-width: 992px) {
  .hero-text h1 { font-size: 40px; }
  .section-title { font-size: 30px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .case-detail-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .timeline-content { max-width: 280px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Mobile nav */
  .mobile-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    overflow-y: auto;
    margin: 0;
  }
  .nav-links.active { display: flex; }
  .nav-links > a {
    color: var(--gray-700) !important;
    padding: 14px 16px;
    font-size: 16px;
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-links > a:hover,
  .nav-links > a.active {
    color: var(--primary) !important;
    background: var(--primary-bg);
  }
  .nav-actions { display: none; }

  .hero-text h1 { font-size: 32px; }
  .hero-text p { font-size: 16px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat-number { font-size: 28px; }

  .section { padding: 48px 0; }
  .section-title { font-size: 26px; }
  .section-header { margin-bottom: 36px; }

  .services-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { gap: 24px; }

  .page-banner { padding: 110px 0 48px; }
  .page-banner h1 { font-size: 30px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }

  .timeline::before { left: 20px; }
  .timeline-item,
  .timeline-item:nth-child(even) { flex-direction: row !important; }
  .timeline-content { max-width: calc(100% - 50px); margin-left: 50px !important; margin-right: 0 !important; }
  .timeline-dot { left: 20px; }

  .pricing-grid { max-width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-text h1 { font-size: 28px; }
  .section-title { font-size: 22px; }
  .stat-number { font-size: 32px; }
  .page-banner h1 { font-size: 26px; }
  .btn-lg { padding: 14px 28px; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ============ New Sections (added by sub-agents) ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d1423 0%, #111827 40%, #0f172a 100%);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 70%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 10% 50%, rgba(0,87,179,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 90% 20%, rgba(0,87,179,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 100px;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0,87,179,0.2);
  border: 1px solid rgba(74,158,255,0.3);
  border-radius: 100px;
  color: #4a9eff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4a9eff;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: #4a9eff;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-item strong {
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

.hero-stat-item strong sup {
  font-size: 18px;
  vertical-align: super;
}

.hero-stat-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  letter-spacing: 0.05em;
  z-index: 2;
  animation: scroll-hint-fade 3s ease-in-out infinite;
}

.hero-scroll-arrow svg {
  width: 18px;
  height: 18px;
  animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes scroll-hint-fade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

/* ============ New Logo (blue square with G) ============ */
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 6px;
  color: white;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
}

/* ============ New Service Cards (index redesign) ============ */
.service-icon {
  margin-bottom: 20px;
}

.service-icon svg {
  width: 48px;
  height: 48px;
  display: block;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.25s;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s;
}

.service-link:hover {
  color: var(--primary-dark);
  gap: 10px;
}

.service-link:hover svg {
  transform: translateX(3px);
}

/* ============ New Case Cards (index redesign) ============ */
.case-image {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--gray-100);
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
  transform: scale(1.05);
}

.case-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-card:hover .case-overlay {
  opacity: 1;
}

.case-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.case-view-btn svg {
  width: 16px;
  height: 16px;
}

.case-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}

.case-body {
  padding: 20px 24px;
}

.case-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.case-body p {
  font-size: 14px;
  color: var(--gray-500);
}

/* ============ Advantages Grid ============ */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.advantage-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.advantage-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-4px);
  border-color: transparent;
}

.advantage-icon {
  margin-bottom: 20px;
}

.advantage-icon svg {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto;
}

.advantage-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============ About Section ============ */
.about-section {
  padding: 80px 0;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--primary);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0,87,179,0.3);
}

.about-badge-num {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.about-badge-text {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

.about-content .section-title {
  margin-top: 8px;
}

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

.about-features {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.about-feature {
  display: flex;
  flex-direction: column;
}

.about-feature strong {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.about-feature span {
  font-size: 13px;
  color: var(--gray-500);
}

/* ============ Stats Bar ============ */
.stats-bar {
  background: var(--dark);
  padding: 48px 0;
}

.stats-bar-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stats-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  text-align: center;
}

.stats-bar-item strong {
  font-size: 36px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

.stats-bar-item strong sup {
  font-size: 18px;
  vertical-align: super;
}

.stats-bar-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.stats-bar-sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ============ New News Cards ============ */
.news-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-100);
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-body {
  padding: 24px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.news-date {
  font-size: 13px;
  color: var(--gray-400);
}

.news-tag {
  display: inline-block;
  padding: 2px 10px;
  background: var(--primary-lighter);
  color: var(--primary);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.news-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-readmore {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

/* ============ CTA Section Redesign ============ */
.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}

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

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

.btn-ghost-white {
  background: rgba(255,255,255,0.12);
  color: white !important;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

/* ============ New Footer ============ */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: white;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 340px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.25s;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: var(--primary);
  color: white;
}

.footer-col h4 {
  color: white;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #4a9eff;
}

.footer-contact-list li {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.footer-contact-list li svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.35);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.7);
}

/* ============ Mobile Nav ============ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  flex-direction: column;
  padding: 24px;
  gap: 4px;
  overflow-y: auto;
  z-index: 999;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: var(--gray-700) !important;
  padding: 14px 16px;
  font-size: 16px;
  width: 100%;
  border-bottom: 1px solid var(--gray-100);
  display: block;
  transition: all 0.2s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--primary) !important;
  background: var(--primary-bg);
}

.mobile-nav-btn {
  margin-top: 16px;
  background: var(--primary) !important;
  color: white !important;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  border-bottom: none !important;
}

/* ============ Utility ============ */
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.text-center { text-align: center; }

/* ============ Responsive Updates ============ */
@media (max-width: 992px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-toggle { display: flex; }
  .hero-title { font-size: 42px; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: 2; }
  .about-content { order: 1; }
  .stats-bar-grid { flex-wrap: wrap; gap: 24px; }
  .stats-bar-sep { display: none; }
  .stats-bar-item { padding: 0 24px; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .navbar { top: 0; }
  .hero-section { padding-top: 64px; }
  .page-banner { padding: 120px 0 60px; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat-item strong { font-size: 28px; }
  .hero-content { padding: 60px 0 60px; }
  .hero-scroll-hint { display: none; }
  .advantages-grid { grid-template-columns: 1fr; }
  .about-features { gap: 20px; flex-wrap: wrap; }
  .cta-content h2 { font-size: 28px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .container { padding: 0 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
  .section-title { font-size: 22px; }
  .cta-content h2 { font-size: 24px; }
  .stats-bar-item strong { font-size: 28px; }
}

/* FG v3 fixes */
.breadcrumb,.breadcrumb-list{display:none!important;}
.page-banner{position:relative;background-image:linear-gradient(135deg,rgba(15,23,42,.84),rgba(0,87,179,.55)),url('/template/pc/skin/images/banner-case-m.jpg');background-size:cover;background-position:center;padding:120px 0 78px;color:#fff;overflow:hidden;}
.page-banner-news{background-image:linear-gradient(135deg,rgba(15,23,42,.84),rgba(0,87,179,.55)),url('/template/pc/skin/images/banner-news.jpg');}
.page-banner-case{background-image:linear-gradient(135deg,rgba(15,23,42,.84),rgba(0,87,179,.55)),url('/template/pc/skin/images/banner-case-m.jpg');}
.page-banner h1{font-size:44px;line-height:1.2;margin:0 0 14px;color:#fff;font-weight:800}.page-banner p{font-size:18px;color:rgba(255,255,255,.82);margin:0}.filter-tabs{display:flex;gap:12px;flex-wrap:wrap;justify-content:center;margin-bottom:46px}.filter-tab{display:inline-flex;align-items:center;justify-content:center;padding:12px 28px;border:1px solid var(--primary);border-radius:6px;color:var(--primary);font-weight:700;text-decoration:none}.filter-tab:hover{background:var(--primary);color:#fff}.pagination{display:flex;justify-content:center;align-items:center;gap:8px;flex-wrap:wrap;margin-top:42px;padding:0}.pagination li{list-style:none}.pagination a{display:inline-flex;min-width:38px;height:38px;padding:0 12px;align-items:center;justify-content:center;border:1px solid #e5e7eb;border-radius:8px;color:#374151;background:#fff;text-decoration:none}.pagination li.thisclass a,.pagination a:hover{background:var(--primary);border-color:var(--primary);color:#fff}.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.pricing-card{display:block;background:#fff;border:1px solid #e5eaf3;border-radius:18px;padding:30px;text-decoration:none;color:#111827;box-shadow:0 16px 40px rgba(15,23,42,.06)}.pricing-card h3{font-size:22px;margin:0 0 12px}.pricing-card p{color:#6b7280;line-height:1.75;margin:0 0 20px}.pricing-card strong{color:var(--primary)}.pricing-card.featured{border-color:var(--primary);box-shadow:0 22px 60px rgba(0,87,179,.14)}@media(max-width:768px){.hero-section{background-image:url('/images/hero-bg-mobile.jpg'),linear-gradient(135deg,#1a1a2e 0%,#0057B3 100%)!important;background-size:cover!important;background-position:center top!important;min-height:calc(100vh - 64px)}.page-banner{padding:100px 0 52px}.page-banner h1{font-size:32px}.pricing-grid{grid-template-columns:1fr}.cases-grid,.news-grid{grid-template-columns:1fr!important}}
