/* section */
/* ===== Page-specific styles ===== */

    .nav-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .nav-hotline {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .nav-hotline-icon {
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--color-primary-50);
      color: var(--cxj-primary);
      border-radius: 10px;
      flex-shrink: 0;
    }
    .nav-hotline-content {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }
    .nav-hotline-label {
      font-size: 10.5px;
      color: var(--color-gray-500);
      font-weight: 500;
      letter-spacing: 0.03em;
    }
    .nav-hotline-number {
      font-size: 15px;
      font-weight: 700;
      color: var(--cxj-primary);
      font-family: 'Inter', sans-serif;
    }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 20px;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      background: linear-gradient(135deg, var(--cxj-accent) 0%, var(--color-accent-600) 100%);
      border-radius: 10px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 8px -2px rgba(230, 0, 18, 0.35);
      position: relative;
      overflow: hidden;
    }
    .nav-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
      transition: left 0.5s ease;
    }
    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px -4px rgba(230, 0, 18, 0.5);
    }
    .nav-cta:hover::before {
      left: 100%;
    }
    .nav-cta svg {
      transition: transform 0.25s ease;
    }
    .nav-cta:hover svg {
      transform: translateX(2px);
    }
    .mobile-menu-btn {
      display: none;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--cxj-border);
      border-radius: 10px;
      background: #fff;
      cursor: pointer;
      color: var(--color-gray-600);
      transition: all 0.2s ease;
    }
    .mobile-menu-btn:hover {
      border-color: var(--cxj-primary);
      color: var(--cxj-primary);
    }

    /* Hero Section */
    .hero {
      position: relative;
      padding-top: 76px;
      padding-bottom: 100px;
      min-height: 760px;
      overflow: hidden;
    }
    .hero-slider {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 0;
    }
    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease-out;
    }
    .hero-slide.active {
      opacity: 1;
      transform: scale(1.05);
    }
    .hero-slide-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(5,20,45,0.92) 0%, rgba(10,77,162,0.7) 40%, rgba(10,77,162,0.4) 70%, transparent 100%);
    }
    .hero-slide-overlay::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(ellipse at 80% 50%, rgba(230, 0, 18, 0.15) 0%, transparent 50%);
    }
    .hero-slide-dots {
      position: absolute;
      bottom: var(--space-8);
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: var(--space-3);
      z-index: 2;
    }
    .hero-slide-dots .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      cursor: pointer;
      transition: all 0.3s;
    }
    .hero-slide-dots .dot.active {
      background: #fff;
      width: 32px;
      border-radius: 5px;
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      min-height: 600px;
      padding-top: 40px;
    }
    .hero-content {
      max-width: 680px;
    }
    /* 文字对齐：center/right 由模板给 .hero-content 追加 align-* class */
    .hero-content.align-center {
      margin: 0 auto;
      text-align: center;
    }
    .hero-content.align-center .hero-desc {
      margin-left: auto;
      margin-right: auto;
    }
    .hero-content.align-center .hero-buttons {
      justify-content: center;
    }
    .hero-content.align-right {
      margin-left: auto;
      text-align: right;
    }
    .hero-content.align-right .hero-desc {
      margin-left: auto;
    }
    .hero-content.align-right .hero-buttons {
      justify-content: flex-end;
    }
    .hero-content .badge {
      margin-bottom: var(--space-6);
      padding: var(--space-2) var(--space-4);
      font-size: var(--text-sm);
    }
    .badge-light {
      background: rgba(255,255,255,0.15);
      color: #fff;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.2);
    }
    .hero-title {
      font-size: 72px;
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: var(--space-6);
      color: #fff;
    }
    .hero-title span {
      color: var(--cxj-red);
      -webkit-text-fill-color: var(--cxj-red);
      position: relative;
    }
    .hero-desc {
      font-size: 17px;
      color: rgba(255,255,255,0.85);
      margin-bottom: var(--space-8);
      max-width: 560px;
      line-height: 1.75;
    }
    .hero-buttons {
      display: flex;
      gap: var(--space-4);
      margin-bottom: var(--space-12);
    }
    .btn-light {
      background: #fff;
      color: var(--cxj-primary);
      border-color: #fff;
    }
    .btn-light:hover {
      background: rgba(255,255,255,0.9);
    }

    /* Product Cards */
    .products-section {
      background: var(--cxj-background);
    }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-6);
    }
    .product-card {
      padding: var(--space-8) var(--space-6);
      text-align: center;
    }
    .product-icon {
      width: 100%;
      height: 160px;
      margin: 0 0 var(--space-5);
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      background: #f8fafc;
      transition: all var(--transition-base);
    }
    .product-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform var(--transition-slow);
    }
    .product-card:hover .product-icon {
      box-shadow: 0 8px 24px -8px rgba(10, 77, 162, 0.2);
    }
    .product-card:hover .product-icon img {
      transform: scale(1.05);
    }
    .product-card h3 {
      font-size: var(--text-lg);
      font-weight: 700;
      margin-bottom: var(--space-2);
    }
    .product-card p {
      font-size: var(--text-sm);
      color: var(--color-gray-500);
      margin-bottom: var(--space-4);
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .product-card .arrow-link {
      display: inline-flex;
      align-items: center;
      gap: var(--space-1);
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--cxj-accent);
    }
    .product-card .arrow-link svg {
      width: 16px;
      height: 16px;
      stroke: var(--cxj-accent);
      transition: transform var(--transition-fast);
    }
    .product-card:hover .arrow-link svg {
      transform: translateX(4px);
    }

    /* Stats Section */
    .stats-section {
      position: relative;
      background: linear-gradient(135deg, #072d5e 0%, #0A4DA2 100%);
      color: #fff;
      overflow: hidden;
    }
    .stats-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-image: url('../../assets/bg/bg-pattern-tech.webp');
      background-size: cover;
      background-position: center;
      opacity: 0.15;
    }
    .stats-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-6);
    }
    .stat-card {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-xl);
      padding: var(--space-10) var(--space-8);
      text-align: center;
      transition: all var(--transition-base);
    }
    .stat-card:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, 0.2);
    }
    .stat-number {
      font-family: var(--font-display);
      font-size: var(--text-6xl);
      font-weight: 800;
      color: #fff;
      line-height: 1;
      letter-spacing: -0.02em;
      margin-bottom: var(--space-2);
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 2px;
    }
    .stat-number .unit {
      font-size: var(--text-2xl);
      font-weight: 700;
      color: var(--color-primary-300);
    }
    .stat-label {
      font-size: var(--text-base);
      color: var(--color-primary-200);
      font-weight: 500;
    }
    .stat-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto var(--space-4);
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .stat-icon svg {
      width: 28px;
      height: 28px;
      color: var(--color-primary-200);
    }

    /* Cases Section */
    .cases-header {
      display: flex;
      align-items: end;
      justify-content: space-between;
      margin-bottom: var(--space-12);
    }
    .cases-header-left .eyebrow {
      display: inline-block;
      font-size: var(--text-sm);
      font-weight: 500;
      color: var(--cxj-primary);
      margin-bottom: var(--space-3);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .cases-header-left h2 {
      margin-bottom: var(--space-3);
    }
    .cases-header-left p {
      font-size: var(--text-base);
      max-width: 520px;
    }
    .cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-6);
    }
    .case-card {
      overflow: hidden;
    }
    .case-card-link {
      display: block;
      text-decoration: none;
      color: inherit;
    }
    .case-card-link:hover .case-card {
      border-color: var(--color-primary-200);
      box-shadow: var(--shadow-xl);
      transform: translateY(-4px);
    }
    .case-card:hover .case-image img {
      transform: scale(1.05);
    }
    .case-image {
      height: 220px;
      position: relative;
      overflow: hidden;
    }
    .case-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform var(--transition-slow);
    }
    .case-card:hover .case-image img {
      transform: scale(1.05);
    }
    .case-image::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.25) 100%);
      z-index: 1;
    }
    .case-badge {
      position: absolute;
      top: var(--space-4);
      left: var(--space-4);
      z-index: 3;
      background: rgba(255,255,255,0.95);
      color: var(--cxj-primary);
      padding: var(--space-1) var(--space-3);
      font-size: var(--text-xs);
      font-weight: 600;
      border-radius: var(--radius-full);
    }
    .case-body {
      padding: var(--space-6);
    }
    .case-body h3 {
      font-size: var(--text-xl);
      font-weight: 700;
      margin-bottom: var(--space-3);
      line-height: 1.4;
    }
    .case-body p {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      font-size: var(--text-sm);
      color: var(--color-gray-500);
      margin-bottom: var(--space-4);
      line-height: 1.7;
    }
    .case-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: var(--space-4);
      border-top: 1px solid var(--cxj-border);
    }
    .case-author {
      display: flex;
      align-items: center;
      gap: var(--space-2);
    }
    .case-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-700));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: var(--text-xs);
      font-weight: 700;
    }
    .case-author span {
      font-size: var(--text-sm);
      color: var(--color-gray-600);
    }
    .case-date {
      font-size: var(--text-sm);
      color: var(--color-gray-400);
    }

    /* Solutions Section */
    .solutions-section {
      background: linear-gradient(180deg, #ffffff 0%, #f0f5ff 100%);
      position: relative;
      overflow: hidden;
    }
    .solutions-section::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(10, 77, 162, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .solutions-section::after {
      content: '';
      position: absolute;
      bottom: -150px;
      left: -150px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(230, 0, 18, 0.04) 0%, transparent 70%);
      pointer-events: none;
    }
    .solutions-bento {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: 220px 220px;
      gap: var(--space-5);
    }
    .bento-card {
      position: relative;
      border-radius: var(--radius-2xl);
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--cxj-border);
      cursor: pointer;
      transition: all var(--transition-base);
      display: flex;
      flex-direction: column;
    }
    .bento-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-700) 100%);
      opacity: 0;
      transition: opacity var(--transition-base);
      z-index: 0;
    }
    .bento-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px -15px rgba(10, 77, 162, 0.25);
      border-color: transparent;
    }
    .bento-card:hover::before {
      opacity: 1;
    }
    .bento-card:hover .bento-content h3,
    .bento-card:hover .bento-content p {
      color: #fff;
    }
    .bento-card:hover .bento-link,
    .bento-card:hover .bento-link-small {
      color: #fff;
    }
    .bento-card:hover .bento-number {
      color: rgba(255, 255, 255, 0.2);
    }
    .bento-card:hover .bento-meta-item {
      color: rgba(255, 255, 255, 0.85);
    }
    .bento-card:hover .bento-tag {
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
      border-color: rgba(255, 255, 255, 0.3);
    }
    .bento-card:hover .bento-image img {
      transform: scale(1.08);
    }
    .bento-card:hover .bento-overlay {
      opacity: 0.6;
    }
    .bento-featured {
      grid-column: span 2;
      grid-row: span 2;
      flex-direction: row;
    }
    .bento-featured .bento-image {
      width: 50%;
      height: 100%;
    }
    .bento-featured .bento-content {
      flex: 1;
      padding: var(--space-8);
      position: relative;
      z-index: 1;
    }
    .bento-featured .bento-number {
      top: var(--space-6);
      right: var(--space-6);
      font-size: 3rem;
    }
    .bento-medium {
      grid-column: span 1;
      grid-row: span 1;
    }
    .bento-medium .bento-image {
      height: 90px;
      flex-shrink: 0;
    }
    .bento-medium .bento-content {
      padding: var(--space-4) var(--space-5) var(--space-5);
      position: relative;
      z-index: 1;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: var(--space-2);
    }
    .bento-link-small-text {
      margin-top: auto;
      font-size: var(--text-xs);
    }
    .bento-medium .bento-link-row {
      display: flex;
      justify-content: flex-end;
      margin-top: auto;
    }
    .bento-wide {
      grid-column: span 2;
      grid-row: span 1;
      flex-direction: row;
      align-items: center;
    }
    .bento-wide .bento-image {
      width: 220px;
      height: 100%;
      flex-shrink: 0;
    }
    .bento-wide .bento-content {
      flex: 1;
      padding: var(--space-6) var(--space-8);
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: var(--space-3);
    }
    .bento-wide .bento-number {
      top: var(--space-4);
      right: var(--space-6);
      font-size: 2rem;
    }
    .bento-image {
      position: relative;
      overflow: hidden;
    }
    .bento-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform var(--transition-slow);
    }
    .bento-image-fallback {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 600;
      padding: 0 var(--space-4);
      text-align: center;
      background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-700) 100%);
    }
    .bento-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10, 77, 162, 0) 40%, rgba(10, 77, 162, 0.6) 100%);
      opacity: 0.3;
      transition: opacity var(--transition-base);
    }
    .bento-content h3 {
      font-size: var(--text-lg);
      font-weight: 700;
      color: var(--cxj-foreground);
      margin-bottom: var(--space-2);
      transition: color var(--transition-base);
      line-height: 1.3;
    }
    .bento-featured .bento-content h3 {
      font-size: var(--text-2xl);
      margin-bottom: var(--space-3);
    }
    .bento-content p {
      font-size: var(--text-sm);
      color: var(--cxj-muted-foreground);
      line-height: 1.6;
      transition: color var(--transition-base);
    }
    .bento-featured .bento-content p {
      font-size: var(--text-base);
      margin-bottom: var(--space-5);
    }
    .bento-tag {
      display: inline-block;
      padding: 4px 12px;
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--cxj-accent);
      background: var(--color-accent-50);
      border: 1px solid var(--color-accent-100);
      border-radius: var(--radius-full);
      margin-bottom: var(--space-3);
      transition: all var(--transition-base);
    }
    .bento-meta {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-3) var(--space-5);
      margin-bottom: var(--space-5);
    }
    .bento-meta-item {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      font-size: var(--text-sm);
      color: var(--cxj-muted-foreground);
      transition: color var(--transition-base);
    }
    .bento-meta-item svg {
      flex-shrink: 0;
    }
    .bento-link {
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--cxj-primary);
      transition: all var(--transition-fast);
    }
    .bento-link svg {
      transition: transform var(--transition-fast);
    }
    .bento-card:hover .bento-link svg {
      transform: translateX(4px);
    }
    .bento-link-small {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--color-primary-50);
      color: var(--cxj-primary);
      transition: all var(--transition-fast);
      flex-shrink: 0;
    }
    .bento-card:hover .bento-link-small {
      background: rgba(255, 255, 255, 0.25);
      transform: translateX(3px);
    }
    .bento-number {
      position: absolute;
      top: var(--space-4);
      right: var(--space-4);
      font-size: 2rem;
      font-weight: 800;
      color: var(--color-primary-100);
      line-height: 1;
      transition: color var(--transition-base);
      z-index: 1;
      pointer-events: none;
    }

    /* News Section */
    .news-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: var(--space-10);
    }
    .news-featured {
      position: relative;
      overflow: hidden;
    }
    .news-featured-image {
      height: 400px;
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
    }
    .news-featured-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform var(--transition-slow);
    }
    .news-featured:hover .news-featured-image img {
      transform: scale(1.03);
    }
    .news-featured-image::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.3) 100%);
    }
    .news-featured-content {
      padding: var(--space-8) 0 0;
    }
    .news-featured-content .news-meta {
      margin-bottom: var(--space-3);
    }
    .news-featured-content h3 {
      font-size: var(--text-2xl);
      font-weight: 700;
      margin-bottom: var(--space-3);
      line-height: 1.4;
    }
    .news-featured-content p {
      font-size: var(--text-base);
      color: var(--color-gray-500);
      line-height: 1.7;
    }
    .news-list {
      display: flex;
      flex-direction: column;
      gap: var(--space-5);
    }
    .news-item {
      display: flex;
      gap: var(--space-5);
      padding: var(--space-5);
      border-radius: var(--radius-lg);
      border: 1px solid var(--cxj-border);
      transition: all var(--transition-base);
      cursor: pointer;
    }
    .news-item:hover {
      border-color: var(--color-primary-200);
      box-shadow: var(--shadow-lg);
      transform: translateX(4px);
    }
    .news-item-image {
      width: 160px;
      height: 90px;
      border-radius: var(--radius-md);
      flex-shrink: 0;
      overflow: hidden;
    }
    .news-item-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform var(--transition-base);
    }
    .news-item:hover .news-item-image img {
      transform: scale(1.08);
    }
    .news-item-content h4 {
      font-size: var(--text-base);
      font-weight: 600;
      margin-bottom: var(--space-2);
      line-height: 1.5;
    }
    .news-meta {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      font-size: var(--text-sm);
      color: var(--color-gray-400);
    }
    .news-meta .dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--color-gray-300);
    }

    /* Logo Wall */
    .logowall-section {
      background: var(--color-gray-100);
      overflow: hidden;
    }
    .logowall-title {
      text-align: center;
      margin-bottom: var(--space-10);
    }
    .logowall-title h2 {
      margin-bottom: var(--space-3);
    }
    .logowall-track-wrapper {
      overflow: hidden;
      position: relative;
      mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    }
    .logowall-track {
      display: flex;
      gap: var(--space-12);
      animation: marquee 30s linear infinite;
      width: max-content;
    }
    .logowall-track:hover {
      animation-play-state: paused;
    }
    .logowall-track.reverse {
      animation-direction: reverse;
      margin-top: var(--space-8);
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .logo-item {
      flex-shrink: 0;
      width: 200px;
      height: 104px;
      background: #fff;
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      transition: all 0.3s ease;
    }
    .logo-item img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: all 0.3s ease;
    }
    .logo-item:hover img {
      filter: grayscale(0%);
      opacity: 1;
    }
    .logo-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .logo-item .logo-text {
      font-size: var(--text-base);
      font-weight: 600;
      color: var(--color-gray-600);
      transition: color 0.3s ease;
    }
    .logo-item:hover .logo-text {
      color: var(--cxj-primary);
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, var(--color-primary-700) 0%, var(--color-primary-900) 100%);
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url('../../assets/bg/bg-cta-light.webp');
      background-size: cover;
      background-position: center;
      opacity: 0.15;
    }
    .cta-section::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: 100px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(230,0,18,0.15) 0%, transparent 70%);
      border-radius: 50%;
    }
    .cta-inner {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-12);
    }
    .cta-content h2 {
      color: #fff;
      font-size: var(--text-4xl);
      margin-bottom: var(--space-4);
    }
    .cta-content p {
      color: var(--color-primary-200);
      font-size: var(--text-lg);
      max-width: 520px;
    }
    .cta-actions {
      display: flex;
      align-items: center;
      gap: var(--space-6);
      flex-shrink: 0;
    }
    .cta-phone {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      color: #fff;
    }
    .cta-phone-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .cta-phone-icon svg {
      width: 24px;
      height: 24px;
      color: #fff;
    }
    .cta-phone-text span {
      display: block;
      font-size: var(--text-sm);
      color: var(--color-primary-300);
    }
    .cta-phone-text strong {
      display: block;
      font-size: var(--text-xl);
      font-weight: 700;
      color: #fff;
    }

    /* Footer */
    .footer {
      background: var(--color-gray-900);
      color: var(--color-gray-400);
      padding-top: var(--space-20);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: var(--space-12);
      padding-bottom: var(--space-16);
      border-bottom: 1px solid var(--color-gray-800);
    }
    .footer-brand p {
      color: var(--color-gray-400);
      font-size: var(--text-sm);
      line-height: 1.8;
      margin-bottom: var(--space-6);
    }
    .footer-logo {
      display: flex;
      align-items: center;
      margin-bottom: var(--space-5);
    }
    .footer-logo-img {
      height: 40px;
      width: auto;
      object-fit: contain;
      display: block;
      filter: brightness(0) invert(1);
    }
    .footer-social {
      display: flex;
      gap: var(--space-3);
    }
    .footer-social a {
      width: 40px;
      height: 40px;
      border-radius: var(--radius-md);
      background: var(--color-gray-800);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-gray-400);
      transition: all var(--transition-fast);
    }
    .footer-social a:hover {
      background: var(--cxj-primary);
      color: #fff;
    }
    .footer-social svg {
      width: 18px;
      height: 18px;
    }
    .footer-col h4 {
      color: #fff;
      font-size: var(--text-base);
      font-weight: 700;
      margin-bottom: var(--space-5);
    }
    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-col li {
      margin-bottom: var(--space-3);
    }
    .footer-col a {
      color: var(--color-gray-400);
      font-size: var(--text-sm);
      transition: color var(--transition-fast);
    }
    .footer-col a:hover {
      color: #fff;
    }
    .footer-contact-item {
      display: flex;
      gap: var(--space-3);
      margin-bottom: var(--space-4);
    }
    .footer-contact-icon {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-md);
      background: var(--color-gray-800);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .footer-contact-icon svg {
      width: 18px;
      height: 18px;
      color: var(--color-primary-400);
    }
    .footer-contact-text span {
      display: block;
      font-size: var(--text-xs);
      color: var(--color-gray-500);
      margin-bottom: 2px;
    }
    .footer-contact-text strong {
      display: block;
      font-size: var(--text-sm);
      color: #fff;
      font-weight: 500;
    }
    .footer-bottom {
      padding: var(--space-6) 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: var(--text-sm);
      color: var(--color-gray-500);
    }
    .footer-bottom-links {
      display: flex;
      gap: var(--space-6);
    }
    .footer-bottom-links a {
      color: var(--color-gray-500);
      font-size: var(--text-sm);
    }
    .footer-bottom-links a:hover {
      color: #fff;
    }

    /* Mobile Menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.5);
      z-index: 200;
      opacity: 0;
      visibility: hidden;
      transition: all var(--transition-base);
    }
    .mobile-menu.open {
      opacity: 1;
      visibility: visible;
    }
    .mobile-menu-panel {
      position: absolute;
      top: 0;
      right: 0;
      width: 300px;
      height: 100%;
      background: #fff;
      padding: var(--space-8) var(--space-6);
      transform: translateX(100%);
      transition: transform var(--transition-base);
      overflow-y: auto;
    }
    .mobile-menu.open .mobile-menu-panel {
      transform: translateX(0);
    }
    .mobile-menu-close {
      position: absolute;
      top: var(--space-4);
      right: var(--space-4);
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--cxj-border);
      border-radius: var(--radius-md);
      cursor: pointer;
    }
    .mobile-nav-links {
      list-style: none;
      padding: 0;
      margin: var(--space-8) 0 0;
    }
    .mobile-nav-links li {
      border-bottom: 1px solid var(--cxj-border);
    }
    .mobile-nav-links a {
      display: block;
      padding: var(--space-4) 0;
      font-size: var(--text-base);
      font-weight: 500;
      color: var(--color-gray-700);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .nav-menu,
      .nav-hotline {
        display: none;
      }
      .mobile-menu-btn {
        display: flex;
      }
      .hero-inner {
        grid-template-columns: 1fr;
        gap: var(--space-12);
      }
      .hero-visual {
        height: 360px;
      }
      .hero-title {
        font-size: var(--text-5xl);
      }
      .products-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .cases-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .solutions-bento {
        grid-template-columns: repeat(2, 1fr);
      }
      .news-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
      }
      .cta-inner {
        flex-direction: column;
        text-align: center;
      }
      .cta-content p {
        margin: 0 auto;
      }
    }

    @media (max-width: 768px) {
      .navbar-inner {
        height: 60px;
      }
      .hero {
        padding-top: 100px;
        min-height: 520px;
        padding-bottom: var(--space-16);
      }
      .hero-title {
        font-size: var(--text-4xl);
      }
      .hero-desc {
        font-size: var(--text-base);
      }
      .hero-buttons {
        margin-bottom: var(--space-8);
      }
      .hero-slide-dots {
        bottom: var(--space-6);
      }
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
      }
      .product-card {
        padding: var(--space-6) var(--space-4);
      }
      .product-icon {
        width: 56px;
        height: 56px;
      }
      .product-icon svg {
        width: 28px;
        height: 28px;
      }
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
      }
      .stat-card {
        padding: var(--space-6) var(--space-4);
      }
      .stat-number {
        font-size: var(--text-4xl);
      }
      .cases-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
      }
      .cases-grid {
        grid-template-columns: 1fr;
      }
      .solutions-bento {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: var(--space-4);
      }
      .bento-featured,
      .bento-medium,
      .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
      }
      .bento-featured {
        flex-direction: column;
      }
      .bento-featured .bento-image {
        width: 100%;
        height: 180px;
      }
      .bento-featured .bento-content {
        padding: var(--space-5);
      }
      .bento-featured .bento-content h3 {
        font-size: var(--text-lg);
      }
      .bento-featured .bento-content p {
        font-size: var(--text-sm);
        margin-bottom: var(--space-3);
      }
      .bento-featured .bento-number {
        font-size: 2rem;
        top: var(--space-4);
        right: var(--space-4);
      }
      .bento-medium .bento-image {
        height: 140px;
      }
      .bento-wide {
        flex-direction: column;
      }
      .bento-wide .bento-image {
        width: 100%;
        height: 140px;
      }
      .bento-wide .bento-content {
        padding: var(--space-5);
      }
      .bento-meta {
        gap: var(--space-2) var(--space-4);
        margin-bottom: var(--space-3);
      }
      .bento-meta-item {
        font-size: var(--text-xs);
      }
      .news-featured-image {
        height: 240px;
      }
      .news-item {
        padding: var(--space-4);
      }
      .news-item-image {
        width: 80px;
        height: 70px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
      }
      .footer-bottom {
        flex-direction: column;
        gap: var(--space-3);
        text-align: center;
      }
      .cta-content h2 {
        font-size: var(--text-3xl);
      }
      .cta-actions {
        flex-direction: column;
        width: 100%;
      }
      .cta-actions .btn {
        width: 100%;
      }
      .logo-item {
        width: 150px;
        height: 78px;
      }
    }
