 :root {
      --home-primary: #1958d8;
      --home-primary-deep: #0d2e74;
      --home-secondary: #00a0b5;
      --home-accent: #e85a31;
      --home-bg-soft: #f4f8ff;
      --home-text-main: #12213f;
      --home-text-sub: #4d5b7c;
      --home-border: #d7e4ff;
    }

  


    .custom-caption-item {
      padding-top: 2.5rem !important;
      padding-bottom: 1.25rem !important;
    }

    .hero-cta-group {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 0.35rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
      border-radius: 10px;
      padding: 0.56rem 1.05rem;
      font-size: 0.95rem;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn-cta-primary {
      background: linear-gradient(90deg, #1b5adb 0%, #2d75ff 100%);
      border: 1px solid #1b5adb;
      color: #fff;
      box-shadow: 0 8px 20px rgba(27, 90, 219, 0.28);
    }

    .btn-cta-primary:hover {
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-cta-secondary {
      background: rgba(255, 255, 255, 0.86);
      border: 1px solid #9bbaf8;
      color: var(--home-primary-deep);
    }

    .btn-cta-secondary:hover {
      color: var(--home-primary-deep);
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.86);
    }

    .banner-item-box {
      border-radius: 14px;
      border: 1px solid #d5e4ff;
      background: #fff;
      box-shadow: 0 10px 24px rgba(13, 46, 116, 0.08);
    }

    .cust-blue,
    .cust-red {
      background-image: none !important;
    }

    .cust-blue {
      background: linear-gradient(135deg, #f7faff 0%, #edf4ff 100%) !important;
    }

    .cust-red {
      background: linear-gradient(135deg, #fff7f4 0%, #fff1ec 100%) !important;
    }
    .comm-title {
      color: var(--home-text-main);
      font-weight: 700;
    }

    .services-text {
      color: #5b6f98;
    }

    .metric-card {
      border: 1px solid var(--home-border);
      box-shadow: 0 8px 20px rgba(13, 46, 116, 0.06);
    }

    .product-card {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid rgba(29, 96, 218, 0.15);
      background: #ffffff;
      padding: 2rem 1.9rem 2.2rem;
      min-height: 320px;
      transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
      box-shadow: 0 10px 28px rgba(12, 37, 93, 0.07);
    }

    .product-card::before,
    .product-card::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.32s ease, transform 0.32s ease;
    }

    .product-card::before {
      background: radial-gradient(circle at 20% 18%, rgba(29, 96, 218, 0.18) 0, transparent 20%),
                  radial-gradient(circle at 78% 20%, #9ec5fe 0, transparent 16%),
                  radial-gradient(circle at 60% 72%, rgba(207, 226, 255, 1) 0, transparent 14%);
      transform: translateY(8px) scale(0.98);
    }

    .product-card::after {
      background-image: radial-gradient(circle at 32% 42%, rgba(255, 255, 255, 0.28) 0, transparent 16%),
                        radial-gradient(circle at 74% 68%, rgba(255, 255, 255, 0.18) 0, transparent 12%),
                        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.14) 0, transparent 12%);
      transform: translateY(-8px) scale(1.02);
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 40px rgba(12, 37, 93, 0.14);
      border-color: rgba(29, 96, 218, 0.24);
    }

    .product-card:hover::before,
    .product-card:hover::after {
      opacity: 1;
    }

    .product-card:hover::before {
      animation: bubbleFloat 4.8s ease-in-out infinite;
      transform: translateY(-6px) scale(1);
    }

    .product-card:hover::after {
      animation: glowPulse 2.6s ease-in-out infinite;
      transform: translateY(-4px) scale(1.04);
    }

    @keyframes bubbleFloat {
      0% { transform: translateY(-6px) scale(1); opacity: 0.88; }
      50% { transform: translateY(-14px) scale(1.02); opacity: 1; }
      100% { transform: translateY(-6px) scale(1); opacity: 0.88; }
    }

    @keyframes glowPulse {
      0% { transform: translateY(-4px) scale(1.04); opacity: 0.7; }
      50% { transform: translateY(-2px) scale(1.05); opacity: 0.88; }
      100% { transform: translateY(-4px) scale(1.04); opacity: 0.7; }
    }

    .product-card .product-label {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1rem;
      border-radius: 999px;
      background: rgba(29, 96, 218, 0.08);
      color: #12408f;
      font-weight: 700;
      letter-spacing: 0.25px;
      font-size: 0.92rem;
      margin-bottom: 1rem;
    }

    .product-card h3 {
      margin-top: 0;
      margin-bottom: 0.85rem;
      font-size: clamp(1.35rem, 2.2vw, 1.6rem);
      color: #142447;
    }

    .product-card p {
      margin: 0;
      color: #4b5f7c;
      line-height: 1.9;
    }

    .product-card .product-keywords {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin: 1.4rem 0 1.7rem;
    }

    .product-card .product-keywords span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.44rem 0.85rem;
      border-radius: 999px;
      background: rgba(245, 247, 255, 0.88);
      color: #40547d;
      font-size: 0.82rem;
    }


    .service-system .container {
      position: relative;
      z-index: 1;
    }

    .service-system-grid {
      display: grid;
      gap: 1.2rem;
      margin-top: 2rem;
    }

    .service-switcher {
      margin-top: 1.25rem;
      display: inline-flex;
      justify-content: flex-start;
      gap: 10px;
      flex-wrap: nowrap;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 999px;
      padding: 6px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .service-switcher::-webkit-scrollbar {
      display: none;
    }

    .service-switch-indicator {
      position: absolute;
      top: 6px;
      left: 6px;
      height: calc(100% - 12px);
      border-radius: 999px;
      background: linear-gradient(95deg, #1b5adb 0%, #2c73ff 100%);
      box-shadow: 0 12px 24px rgba(27, 90, 219, 0.28);
      width: 0;
      transform: translateX(0);
      transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
      z-index: 0;
    }

    .service-switch-btn {
      border: 1px solid #bcd3ff;
      background: transparent;
      color: #214583;
      border-radius: 999px;
      padding: 0.45rem 0.95rem;
      font-size: 0.86rem;
      font-weight: 600;
      transition: all 0.25s ease;
      box-shadow: none;
      position: relative;
      z-index: 1;
      white-space: nowrap;
    }

    .service-switch-btn:hover {
      transform: translateY(-2px);
      color: #12367a;
    }

    .service-switch-btn.is-active {
      border-color: #1b5adb;
      color: #fff;
      box-shadow: none;
    }

    .service-brand-strip {
      margin: 0.9rem auto 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.65rem;
      max-width: 860px;
    }

    .service-brand-item {
      border-radius: 14px;
      border: 1px solid #d5e4ff;
      background: rgba(255, 255, 255, 0.78);
      padding: 0.58rem 0.7rem;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #31538f;
      font-size: 0.82rem;
      font-weight: 600;
      box-shadow: 0 10px 20px rgba(17, 57, 142, 0.06);
      backdrop-filter: blur(2px);
    }

    .service-brand-item i {
      width: 24px;
      height: 24px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #edf3ff;
      color: #1d52bd;
      font-size: 0.88rem;
      flex-shrink: 0;
    }

    .service-panel {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .service-panel.is-entering {
      animation: servicePanelIn 0.35s ease-out;
    }

    .service-panel.is-leaving {
      opacity: 0;
      transform: translateY(8px);
    }

    @keyframes servicePanelIn {
      from {
        opacity: 0;
        transform: translateY(14px) scale(0.99);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .service-module {
      border-radius: 20px;
      padding: 1.4rem;
      border: 1px solid #d4e3ff;
      background: rgba(255, 255, 255, 0.86);
      box-shadow: 0 14px 34px rgba(14, 44, 108, 0.08);
      position: relative;
      overflow: hidden;
      transition: transform 0.28s ease, box-shadow 0.28s ease;
    }

    .service-module::before {
      content: attr(data-sticker);
      position: absolute;
      top: 14px;
      right: 14px;
      border-radius: 999px;
      border: 1px solid #c4d9ff;
      background: rgba(255, 255, 255, 0.88);
      color: #2954a8;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2px;
      padding: 3px 9px;
      z-index: 2;
      box-shadow: 0 8px 16px rgba(24, 76, 180, 0.12);
    }

    .service-module:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(14, 44, 108, 0.14);
    }

    .service-module::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(31, 86, 200, 0.055) 0.8px, transparent 0.8px);
      background-size: 10px 10px;
      opacity: 0.42;
      pointer-events: none;
    }

    .module-consulting {
      background: linear-gradient(140deg, rgba(255, 255, 255, 0.93) 0%, rgba(239, 247, 255, 0.96) 100%);
    }

    .module-digital {
      background: linear-gradient(140deg, rgba(255, 255, 255, 0.94) 0%, rgba(237, 255, 254, 0.96) 100%);
    }

    .module-operation {
      background: linear-gradient(140deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 247, 241, 0.95) 100%);
    }

    .module-tag {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 700;
      color: #0d2e74;
      letter-spacing: 0.3px;
      background: #e9f1ff;
      border: 1px solid #bed6ff;
      border-radius: 999px;
      padding: 4px 12px;
      margin-bottom: 0.7rem;
    }

    .service-module-head {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }


    .module-icon {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: #1f56c8;
      background: linear-gradient(145deg, #e6efff 0%, #f8fbff 100%);
      border: 1px solid #c9dbff;
      box-shadow: 0 8px 16px rgba(31, 86, 200, 0.14);
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .service-module h3 {
      margin: 0;
      font-size: clamp(1.06rem, 2vw, 1.35rem);
      color: #17294d;
      font-weight: 700;
      line-height: 1.5;
    }

    .module-desc {
      margin-top: 0.9rem;
      margin-bottom: 0;
      color: #425377;
      line-height: 1.8;
      font-size: 0.95rem;
    }

    .service-kpi-row {
      margin-top: 1rem;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.65rem;
    }

    .service-kpi-card {
      border: 1px solid #d6e4ff;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.92);
      padding: 0.7rem;
      text-align: center;
    }

    .service-kpi-card strong {
      display: block;
      font-size: 1.2rem;
      line-height: 1.2;
      color: #1d4fb5;
      font-weight: 700;
    }

    .service-kpi-card span {
      font-size: 0.76rem;
      color: #4e6085;
      letter-spacing: 0.2px;
    }

    .module-subtitle {
      margin-top: 1rem;
      margin-bottom: 0.65rem;
      font-size: 0.9rem;
      font-weight: 700;
      color: #18458f;
    }

    .module-divider {
      margin: 0.9rem 0 0.2rem;
      height: 8px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(43, 110, 228, 0.2) 0%, rgba(43, 110, 228, 0.02) 100%);
      position: relative;
      overflow: hidden;
    }

    .module-divider::before {
      content: "";
      position: absolute;
      width: 24%;
      height: 100%;
      left: -30%;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(44, 115, 255, 0) 0%, rgba(44, 115, 255, 0.45) 50%, rgba(44, 115, 255, 0) 100%);
      animation: moduleDividerShift 4.5s linear infinite;
    }

    @keyframes moduleDividerShift {
      from {
        left: -30%;
      }
      to {
        left: 105%;
      }
    }

    .module-scene-list {
      margin-top: 0.6rem;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .module-scene {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      border: 1px solid #d8e6ff;
      background: rgba(255, 255, 255, 0.86);
      color: #355489;
      font-size: 0.78rem;
      font-weight: 600;
      padding: 3px 10px;
    }

    .module-scene i {
      color: #1f56c8;
      font-size: 0.8rem;
      line-height: 1;
    }

    .module-chip-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .module-chip {
      display: inline-flex;
      align-items: center;
      padding: 5px 10px;
      font-size: 0.82rem;
      border: 1px solid #d6e4ff;
      border-radius: 999px;
      color: #2d477c;
      background: #f8fbff;
    }

    .consulting-product-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.65rem;
      margin-top: 0.65rem;
    }

    .consulting-product-card {
      border-radius: 12px;
      border: 1px solid #d6e3ff;
      background: #f8fbff;
      padding: 0.6rem;
      min-height: 86px;
      display: flex;
      flex-direction: column;
      gap: 0.42rem;
      justify-content: flex-start;
    }

    .consulting-product-card i {
      color: #1e56c7;
      font-size: 0.92rem;
      line-height: 1;
    }

    .consulting-product-card p {
      margin: 0;
      color: #354c79;
      font-size: 0.8rem;
      line-height: 1.45;
    }

    .module-flow {
      margin-top: 0.95rem;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }

    .flow-step {
      display: inline-flex;
      align-items: center;
      border: 1px solid #b9d1ff;
      background: #eef4ff;
      color: #1c3c79;
      border-radius: 999px;
      padding: 4px 10px;
      font-size: 0.82rem;
      font-weight: 600;
    }

    .flow-arrow {
      color: #6a7fa9;
      font-weight: 700;
      font-size: 0.85rem;
    }

    .tech-grid,
    .output-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.8rem;
      margin-top: 0.95rem;
    }

    .tech-item,
    .output-item {
      border-radius: 14px;
      border: 1px solid #d8e6ff;
      background: rgba(255, 255, 255, 0.9);
      padding: 0.8rem;
    }

    .tech-item h4,
    .output-item h4 {
      font-size: 0.9rem;
      margin: 0;
      color: #193b7b;
      line-height: 1.5;
      font-weight: 700;
    }

    .tech-item p,
    .output-item p {
      margin: 0.45rem 0 0;
      color: #47597f;
      font-size: 0.84rem;
      line-height: 1.7;
    }

    .platform-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0.65rem;
    }

    .platform-list li {
      border-radius: 14px;
      border: 1px solid #cde7e9;
      background: #f7ffff;
      padding: 0.75rem;
      color: #35515a;
      font-size: 0.86rem;
      line-height: 1.7;
    }

    .platform-list strong {
      color: #0a5d71;
      margin-right: 4px;
    }

    .platform-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
      margin-top: 0.65rem;
    }

    .platform-card {
      border-radius: 14px;
      border: 1px solid #cde7e9;
      background: #f6ffff;
      padding: 0.8rem;
      position: relative;
      overflow: hidden;
    }

    .platform-card::before {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      right: -48px;
      top: -62px;
      background: radial-gradient(circle, rgba(12, 157, 172, 0.14) 0%, rgba(12, 157, 172, 0) 70%);
      pointer-events: none;
    }

    .platform-card h4 {
      margin: 0;
      color: #0a5d71;
      font-size: 0.9rem;
      font-weight: 700;
      line-height: 1.4;
      position: relative;
      z-index: 1;
    }

    .platform-card p {
      margin: 0.45rem 0 0;
      color: #35515a;
      font-size: 0.82rem;
      line-height: 1.65;
      position: relative;
      z-index: 1;
    }

    .text-note {
      margin-top: 0.8rem;
      margin-bottom: 0;
      color: #42606a;
      font-size: 0.86rem;
      line-height: 1.8;
    }

    .module-steps {
      margin: 0;
      padding-left: 1.15rem;
      color: #425476;
      line-height: 1.9;
      font-size: 0.9rem;
    }

    .module-steps li + li {
      margin-top: 0.25rem;
    }

    .operation-step-grid {
      margin-top: 0.65rem;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.7rem;
    }

    .operation-step-card {
      border: 1px solid #ffdcca;
      border-radius: 14px;
      background: #fffaf7;
      padding: 0.72rem;
      display: flex;
      gap: 0.55rem;
      align-items: flex-start;
    }

    .operation-step-index {
      width: 24px;
      height: 24px;
      border-radius: 999px;
      background: linear-gradient(120deg, #e85a31 0%, #f49363 100%);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 0.1rem;
      box-shadow: 0 6px 14px rgba(232, 90, 49, 0.25);
    }

    .operation-step-card p {
      margin: 0;
      color: #6a4b40;
      font-size: 0.83rem;
      line-height: 1.65;
    }

    .method-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0.6rem;
    }

    .method-list li {
      border-radius: 12px;
      border: 1px solid #ffddcc;
      background: #fffaf7;
      padding: 0.7rem;
      color: #6a4b40;
      font-size: 0.86rem;
      line-height: 1.7;
    }

    .method-list strong {
      color: #b8572f;
    }

    .module-visual {
      margin-top: 1rem;
      border-radius: 16px;
      border: 1px solid #d7e4ff;
      padding: 0.85rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      position: relative;
      overflow: hidden;
    }

    .module-visual::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      right: -70px;
      top: -95px;
      background: radial-gradient(circle, rgba(36, 117, 255, 0.16) 0%, rgba(36, 117, 255, 0) 68%);
      pointer-events: none;
    }

    .visual-consulting {
      background: linear-gradient(150deg, #fafdff 0%, #eef6ff 100%);
    }

    .visual-digital {
      background: linear-gradient(150deg, #f8ffff 0%, #eefeff 100%);
    }

    .visual-operation {
      background: linear-gradient(150deg, #fffaf6 0%, #fff3ea 100%);
    }

    .visual-title {
      font-size: 0.85rem;
      color: #2f4e88;
      font-weight: 600;
      line-height: 1.6;
      margin: 0;
      z-index: 1;
    }

    .visual-pills {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      justify-content: flex-end;
      z-index: 1;
      max-width: 55%;
    }

    .visual-pill {
      font-size: 0.76rem;
      border-radius: 999px;
      padding: 3px 8px;
      border: 1px solid #c8dbff;
      background: rgba(255, 255, 255, 0.92);
      color: #36578f;
      font-weight: 600;
    }

    .value-section {
      position: relative;
      overflow: hidden;
      padding-top: 5rem;
      padding-bottom: 5rem;
      background:
        radial-gradient(circle at top left, rgba(63, 125, 255, 0.06), transparent 28%),
        radial-gradient(circle at top right, rgba(36, 82, 163, 0.05), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 36%, #ffffff 100%);
    }

    .value-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(36, 82, 163, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 82, 163, 0.035) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1) 70%, transparent 100%);
      pointer-events: none;
      z-index: 0;
    }

    .value-section .container {
      position: relative;
      z-index: 1;
    }

    .value-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 999px;
      border: 1px solid #dbeafe;
      background: rgba(255, 255, 255, 0.85);
      padding: 8px 14px;
      color: #2452A3;
      font-size: 0.86rem;
      box-shadow: 0 4px 12px rgba(16, 42, 92, 0.08);
      backdrop-filter: blur(2px);
    }

    .value-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #3f7dff;
      flex-shrink: 0;
    }

    .value-title {
      margin-top: 1.4rem;
      margin-bottom: 0;
      color: #183B72;
      line-height: 1.35;
      font-weight: 700;
      letter-spacing: 0.2px;
    }

    .value-desc {
      margin: 1rem auto 0;
      color: #64748b;
      line-height: 1.9;
      font-size: 0.97rem;
    }

    .value-grid {
      margin-top: 3rem;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.2rem;
    }

    .value-card {
      border-radius: 20px;
      border: 1px solid #e2e8f0;
      background: #fff;
      padding: 1.25rem;
      box-shadow: 0 8px 24px rgba(16, 42, 92, 0.06);
      transition: all 0.25s ease;
    }

    .value-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 36px rgba(16, 42, 92, 0.10);
      border-color: #bfd5f5;
    }

    .value-card-inner {
      display: flex;
      align-items: flex-start;
      gap: 0.9rem;
    }

    .value-icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #f4f8ff;
      color: #2452A3;
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .value-card h3 {
      margin: 0;
      color: #2452A3;
      font-size: 1.12rem;
      font-weight: 600;
      line-height: 1.6;
    }

    .value-card p {
      margin: 0.45rem 0 0;
      color: #64748b;
      font-size: 0.9rem;
      line-height: 1.75;
    }

    .section-products {
      padding-bottom: 2.4rem;
      background: linear-gradient(180deg, rgba(233, 241, 255, 0.45) 0%, rgba(246, 250, 255, 0) 100%);
    }

    .product-grid {
      margin-top: 2rem;
    }

    .product-card {
      height: 100%;
      border-radius: 16px;
      background: #fff;
      border: 1px solid var(--home-border);
      box-shadow: 0 14px 28px rgba(13, 46, 116, 0.08);
      padding: 1.4rem 1.2rem;
      display: flex;
      flex-direction: column;
      transition: transform 0.24s ease, box-shadow 0.24s ease;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(13, 46, 116, 0.14);
    }

    .product-card .product-label {
      display: inline-block;
      font-size: 0.8rem;
      letter-spacing: 0.4px;
      color: var(--home-primary-deep);
      background: #edf3ff;
      border-radius: 999px;
      padding: 4px 10px;
      margin-bottom: 0.8rem;
      width: fit-content;
      font-weight: 600;
    }

    .product-card h3 {
      font-size: 1.06rem;
      color: var(--home-text-main);
      margin-bottom: 0.45rem;
      min-height: 52px;
    }

    .product-card p {
      color: var(--home-text-sub);
      margin-bottom: 0.8rem;
    }

    .product-keywords {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 1rem;
    }

    .product-keywords span {
      font-size: 0.8rem;
      border: 1px solid #d7e5ff;
      background: #f8fbff;
      color: #33558f;
      padding: 3px 8px;
      border-radius: 999px;
    }

    .product-card .btn-product {
      margin-top: auto;
      align-self: flex-start;
      background: var(--home-primary);
      color: #fff;
      border-radius: 10px;
      border: 1px solid var(--home-primary);
      font-size: 0.88rem;
      font-weight: 600;
      padding: 0.5rem 0.9rem;
      text-decoration: none;
    }

    .product-card .btn-product:hover {
      color: #fff;
      background: #0f49c6;
    }

 

    @media (max-width: 992px) {
      .custom-caption-item {
        padding-top: 1.8rem !important;
      }
      .product-card h3 {
        min-height: auto;
      }

      .tech-grid,
      .output-grid {
        grid-template-columns: 1fr;
      }

      .value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .hero-cta-group {
        margin-bottom: 0.6rem;
      }

      .cta-panel {
        border-radius: 14px;
      }

      .service-module {
        padding: 1rem;
      }

      .service-kpi-row,
      .platform-grid,
      .operation-step-grid {
        grid-template-columns: 1fr;
      }

      .consulting-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .service-switcher {
        display: flex;
        width: 100%;
        left: 0;
        transform: none;
      }

      .service-brand-strip {
        grid-template-columns: 1fr;
        margin-top: 0.75rem;
      }

      .service-module::before {
        top: 10px;
        right: 10px;
      }

      .service-module-head {
        align-items: center;
      }

      .module-icon {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        font-size: 1rem;
      }

      .module-visual {
        flex-direction: column;
        align-items: flex-start;
      }

      .visual-pills {
        max-width: 100%;
        justify-content: flex-start;
      }

      .module-desc {
        line-height: 1.75;
      }

      .value-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
      }

      .value-grid {
        grid-template-columns: 1fr;
      }
    }

    .section-why {
      position: relative;
      overflow: hidden;
      margin-top: 2.5rem;
      padding: 5rem 0;
      background: linear-gradient(180deg, #e8f4ff 0%, #dbe9ff 46%, #f5fbff 100%);
      /* box-shadow: 0 42px 88px rgba(2, 11, 35, 0.12); */
      /* border: 1px solid rgba(120, 160, 255, 0.2); */
    }

    .section-why::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 14% 18%, rgba(129, 182, 255, 0.22), transparent 24%),
                  radial-gradient(circle at 80% 12%, rgba(129, 182, 255, 0.14), transparent 18%),
                  radial-gradient(circle at 90% 88%, rgba(163, 196, 255, 0.18), transparent 22%);
      pointer-events: none;
      opacity: 0.95;
    }

    .section-why::after {
      content: "";
      position: absolute;
      width: 240px;
      height: 240px;
      right: -62px;
      top: 18%;
      background: radial-gradient(circle, rgba(120, 170, 255, 0.18), transparent 56%);
      pointer-events: none;
    }

    .section-why .container {
      position: relative;
      z-index: 1;
    }

    .why-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      border: 1px solid rgba(102, 133, 222, 0.28);
      background: rgba(255, 255, 255, 0.72);
      padding: 0.85rem 1.05rem;
      border-radius: 999px;
      color: #275183;
      font-size: 0.92rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-weight: 600;
    }

    .why-badge-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: #4c75c8;
      flex-shrink: 0;
      box-shadow: 0 0 0 4px rgba(76, 117, 200, 0.12);
    }

    .why-intro {
      color: #0f3261;
      line-height: 1.85;
      font-size: 1rem;
      margin-bottom: 0.8rem;
    }

    .why-desc {
      color: #2b4a78;
      line-height: 1.9;
    }

    .why-panel {
      padding: 2rem 1.6rem;
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(102, 133, 222, 0.18);
      box-shadow: 0 18px 30px rgba(40, 76, 136, 0.08);
      min-height: 170px;
    }

    .why-panel h3 {
      font-size: 1.24rem;
      line-height: 1.4;
      margin: 0 0 0.9rem;
      color: #1b3f75;
      font-weight: 700;
    }

    .why-panel p {
      margin: 0;
      color: #3b5f94;
      line-height: 1.9;
    }

    .why-card-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.3rem;
      margin-top: 2rem;
    }

    .why-card {
      padding: 2rem;
      border-radius: 24px;
      border: 1px solid rgba(146, 183, 255, 0.35);
      background: rgba(255,255,255,0.95);
      transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
      min-height: 200px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .why-card:hover {
      transform: translateY(-8px);
      border-color: rgba(94, 162, 255, 0.45);
      background: rgba(255,255,255,1);
      box-shadow: 0 24px 40px rgba(18, 49, 93, 0.12);
    }

    .why-card-icon {
      width: 54px;
      height: 54px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(18, 104, 231, 0.15), rgba(92, 145, 242, 0.22));
      color: #275183;
      margin-bottom: 1.1rem;
      font-size: 1.3rem;
      box-shadow: 0 14px 36px rgba(30, 68, 118, 0.12);
    }

    .why-card h3 {
      margin: 0 0 0.75rem;
      color: #214370;
      font-size: 1.03rem;
      letter-spacing: 0.01em;
      line-height: 1.55;
    }

    .why-card p {
      margin: 0;
      color: #3c5a88;
      font-size: 0.95rem;
      line-height: 1.85;
    }

    .why-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }

    .why-stat-card {
      padding: 1.5rem 1.75rem;
      border-radius: 22px;
      background: linear-gradient(180deg, var(--home-primary-deep), var(--home-border));
      min-height: 140px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 12px 24px rgba(2, 10, 31, 0.18);
    }

    .why-stat-card p {
      margin: 0;
      color: rgba(255,255,255,0.78);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    .why-stat-value {
      font-size: 1.9rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 0.55rem;
    }

    .why-stat-card p {
      margin: 0;
      color: rgba(255,255,255,0.78);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    .why-card-grid article:nth-child(2) .why-card-icon,
    .why-card-grid article:nth-child(4) .why-card-icon {
      color: #d49bff;
    }

    @media (max-width: 1200px) {
      .section-why {
        padding: 3.5rem 0;
      }
    }

    @media (max-width: 992px) {
      .why-card-grid {
        grid-template-columns: 1fr;
      }

      .why-stats {
        grid-template-columns: 1fr;
        margin-top: 1.5rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .service-switch-indicator,
      .service-switch-btn,
      .service-module,
      .service-panel {
        transition: none !important;
        animation: none !important;
      }

      .module-divider::before {
        animation: none !important;
      }
    }