﻿@charset "UTF-8";

/* 设计系统变量 - 必须在最前面引入 */
@import url('variables.css');

/* H5公共样式，用于所有H5开发页面*/
html {
    font-family             : var(--font-family);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust    : 100%;
}

body {
    font-size  : var(--font-size-base);
    background : var(--color-bg-primary);
}

  /* ------------ 尺寸修饰符 ------------ */
  .btn--sm { padding: var(--space-xs) var(--space-sm); }
  .btn--md { padding: var(--space-sm) var(--space-md); }
  .btn--lg { padding: var(--space-md) var(--space-xl); }
  
/* ------------ 颜色状态修饰符 ------------ */
.btn--primary   { background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%); color: var(--color-text-inverse); font-weight: 600; box-shadow: 0 18px 34px rgba(37, 99, 235, 0.24); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.btn--primary:hover { background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%); color: var(--color-text-inverse); transform: translateY(-2px); box-shadow: 0 22px 40px rgba(37, 99, 235, 0.3); }
.btn--secondary { background: #6c757d; color: var(--color-text-inverse); }
.btn--secondary:hover { background: #495057; color: var(--color-text-inverse); }
.btn--success   { background: var(--color-success); color: var(--color-text-inverse); }
.btn--success:hover { background: var(--color-success-dark); color: var(--color-text-inverse); }
.btn--warning   { background: var(--color-warning); color: var(--color-text-primary); }
.btn--warning:hover { background: var(--color-warning-dark); color: var(--color-text-primary); }
.btn--danger    { background: var(--color-danger); color: var(--color-text-inverse); }
.btn--danger:hover { background: var(--color-danger-dark); color: var(--color-text-inverse); }
  
  /* ------------ 圆角修饰符 ------------ */
  /* 轻微圆角（覆盖默认） */
  .btn--soft {
    border-radius: var(--radius-sm);
  }
  
  /* 大圆角（胶囊按钮） */
  .btn--pill {
    border-radius: var(--radius-pill);
  }
  
  /* 直角（无圆角） */
  .btn--sharp {
    border-radius: 0;
  }
  
  /* ------------ 其他样式 ------------ */
  .btn--outline {
    background: transparent;
    border: 2px solid currentColor;
  }
  
  .btn--disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  .uk-h1-small { font-size: var(--font-size-2xl); }
  .uk-h1-medium { font-size: var(--font-size-3xl); }
  .uk-h1-large { font-size: var(--font-size-4xl); }
  .uk-h1-xlarge { font-size: var(--font-size-5xl); }
/*顶部*/

header {
    width   : 100%;
    position: fixed;
    top     : 0;
    left    : 0;
    z-index : 10;
    background-color: var(--color-bg-primary);
    /* 初始背景色 */
    transition      : background-color var(--transition-slow);
    /* 平滑过渡 */
}

/* 自定义 logo 样式 */
.logo-light,
.logo-light-b {
    width : var(--logo-width-sm);
    height: auto;
}

header .uk-navbar-item.uk-logo .logo-light-b {
    width : var(--logo-width-lg);
    height: auto;
}

/*header鼠标悬停背景，悬停时背景色改为米白色 */

/* 自定义 uk-slidenav-previous 样式 */
.uk-slidenav-previous {
    background-color: var(--color-bg-primary);
    color           : rgb(193, 192, 192);
    border          : 10px solid var(--color-bg-primary);
    border-radius   : 30px;
}

.uk-slidenav-next {
    background-color: var(--color-bg-primary);
    color           : rgb(193, 192, 192);
    border          : 10px solid var(--color-bg-primary);
    border-radius   : 30px;
}

/* 鼠标悬停时的样式 */
.uk-slidenav-previous:hover {
    background-color: #ffffff;
}

/* bannet下面小点样式 */
.custom-dotnav>*>* {
    display      : block;
    width        : 50px;
    height       : 8px;
    background   : rgba(255, 255, 255, 0.9);
    border-radius: 25px;
}

.custom-dotnav>.uk-active>* {
    background: #2386ee;
    /* 激活状态下的线段颜色 */
}

.uk-navbar-nav>li>a,
.uk-navbar-nav>li>a:hover {
    font-size: var(--nav-link-font-size);
    /* 假设原字体大小为 1em，1.25em 相当于增大一号，可按需调整 */
    position : relative;
    /* 为伪元素定位 */
    color    : var(--color-text-primary) !important;
}

.uk-navbar-nav>li>a::after {
    content         : "";
    position        : absolute;
    bottom          : 10px;
    left            : 50%;
    width           : 0;
    height          : var(--nav-underline-height);
    background-color: var(--color-primary);
    transition      : width var(--transition-slow), left var(--transition-slow);
    transform-origin: center;
}

.uk-navbar-nav>li:hover>a::after,
.uk-navbar-nav>li.uk-open>a::after {
    width: 100%;
    left : 0;
}

.uk-navbar-nav>li:hover>a,
.uk-navbar-nav>li.uk-open>a {
    color: var(--color-primary) !important;
}

.uk-navbar-nav>li>a::after {
    background-color: var(--color-primary) !important;
}

.custom-dotnav>.uk-active>* {
    background: var(--color-primary) !important;
}

/* 自定义 uk-dropdown 组件的 top 值 */
.uk-dropdown,
.uk-navbar-dropdown {
    top: var(--nav-dropdown-top) !important;
    /* 将 top 值修改为 20px，可按需调整 */
}

.uk-active {
    color: var(--color-primary) !important;
}

.solution-link,
.solution-link:hover,
.solution-link:active {
    font-size: 1rem;
    text-decoration        : none;
    -webkit-font-smoothing : antialiased;
    -moz-osx-font-smoothing: grayscale;
    color                  : inherit;
}

.uk-navbar-dropdown {
    width: 100%;
    box-shadow: none; /* 移除边框阴影 */
    border: 1px solid var(--color-border-light); /* 显示线条边框 */
}

.product-mega-menu {
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    background: var(--color-bg-primary);
}

.product-mega-menu__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.95fr);
}

.product-mega-menu__left {
    padding: var(--space-2xl) var(--space-4xl) 26px;
    background: var(--color-bg-primary);
}

.product-mega-menu__right {
    display: flex;
    flex-direction: column;
    padding: var(--space-2xl) 36px 26px;
    background: var(--color-bg-secondary);
    border-left: 1px solid var(--color-border);
}

.product-mega-menu__section + .product-mega-menu__section {
    margin-top: var(--space-2xl);
}

.product-mega-menu__section--compact {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    height: 100%;
}

.product-mega-menu__section-head {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.product-mega-menu__section-title {
    margin: 0;
    font-size: var(--font-size-sm);
    font-weight: 600;
    line-height: 1;
    color: var(--color-text-primary);
}

.product-mega-menu__section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--color-text-muted);
}

.product-mega-menu__section-icon svg,
.product-mega-menu__section-icon img[uk-svg],
.product-mega-menu__industry-icon svg,
.product-mega-menu__industry-icon img[uk-svg] {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-mega-menu__industry-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px var(--space-md);
}

/* 小微企业产品 - 五等分显示 */
.product-mega-menu__industry-grid--smb {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-mega-menu__industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.product-mega-menu__industry-item:hover {
    color: var(--color-primary-light);
    transform: translateY(-2px);
}

.product-mega-menu__industry-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--color-primary);
}

.product-mega-menu__industry-label {
    font-size: 15px;
    line-height: 1.4;
}

.product-mega-menu__scene-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-lg) 22px;
}

.product-mega-menu__scene-link {
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.65;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.product-mega-menu__scene-link:hover {
    color: var(--color-text-primary);
}

.product-mega-menu__more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: var(--space-2xl);
    color: #323846;
    font-size: 15px;
    text-decoration: none;
}

.product-mega-menu__more-link:hover {
    color: #2563eb;
}

.product-mega-menu__more-arrow {
    font-size: 26px;
    line-height: 1;
}

.product-mega-menu__product-list {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.product-mega-menu__product-card {
    display: block;
    flex: 1 1 0;
    min-height: 0;
    padding: 34px 30px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2d6df5 0%, #1f5ae3 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(31, 90, 227, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-mega-menu__product-card:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(31, 90, 227, 0.24);
}

.product-mega-menu__product-title {
    margin: 0 0 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.55;
}

.product-mega-menu__product-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.75;
}

.solution-mega-menu .product-mega-menu__layout {
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.9fr);
    align-items: stretch;
}

.solution-mega-menu .product-mega-menu__left,
.solution-mega-menu .product-mega-menu__right {
    padding-bottom: 60px;
}

.solution-mega-menu .product-mega-menu__right {
    padding-right: 40px;
}

.solution-mega-menu .product-mega-menu__industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 18px;
}

.solution-mega-menu .product-mega-menu__industry-label {
    text-align: center;
}

.solution-mega-menu .product-mega-menu__more-link {
    margin-top: 24px;
}

.solution-mega-menu__feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 22px 18px;
}

.solution-mega-menu__feature-item {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    color: #636c7b;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.solution-mega-menu__feature-item:hover {
    color: #2563eb;
    transform: translateX(2px);
}

.solution-mega-menu__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #3f7dff;
}

.solution-mega-menu__feature-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.solution-mega-menu__feature-title {
    color: inherit;
    font-family: inherit;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    white-space: nowrap;
}

.solution-mega-menu__insight-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-mega-menu__insight-item {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease;
}

.solution-mega-menu__insight-item:hover {
    color: #2563eb;
}

.solution-mega-menu__insight-dot {
    position: relative;
    display: inline-flex;
    width: 10px;
    height: 10px;
    margin-top: 6px;
    border-radius: 50%;
    background: #2563eb;
}

.solution-mega-menu__insight-dot::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(37, 99, 235, 0.36);
    border-radius: 50%;
    animation: insight-dot-pulse 1.8s ease-out infinite;
}

.solution-mega-menu__insight-text {
    display: block;
    font-size: 14px;
    line-height: 1.75;
    color: inherit;
}

@keyframes insight-dot-pulse {
    0% {
        transform: scale(0.75);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

.solution-mega-menu__insight-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-mega-menu__insight-item {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease;
}

.solution-mega-menu__insight-item:hover {
    color: #2563eb;
}

.solution-mega-menu__insight-dot {
    position: relative;
    display: inline-flex;
    width: 10px;
    height: 10px;
    margin-top: 6px;
    border-radius: 50%;
    background: #2563eb;
}

.solution-mega-menu__insight-dot::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(37, 99, 235, 0.36);
    border-radius: 50%;
    animation: insight-dot-pulse 1.8s ease-out infinite;
}

.solution-mega-menu__insight-text {
    display: block;
    font-size: 14px;
    line-height: 1.75;
    color: inherit;
}

@keyframes insight-dot-pulse {
    0% {
        transform: scale(0.75);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

.about-menu.uk-navbar-dropdown {
    width: 198px;
    min-width: 198px;
    padding: 8px 0;
    top: 80px !important;
    border: 1px solid #eef1f5;
    border-radius: 0 0 12px 12px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.about-menu__list {
    display: flex;
    flex-direction: column;
}

.about-menu__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    color: #3e434d;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.about-menu__item:hover {
    color: #1d2433;
    background: #f7f9fd;
}

.about-menu__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: #3d434d;
    flex: 0 0 26px;
}

.about-menu__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-menu__label {
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
}

.site-header-actions {
    display: flex;
    align-items: center;
}

.site-mobile-only {
    display: none !important;
}

.site-mobile-action,
.site-mobile-menu-toggle {
    display: none;
}

.site-mobile-menu-toggle__bars {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
}

.site-mobile-menu-toggle__bars span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.site-mobile-menu-toggle__bars span:nth-child(2) {
    width: 14px;
    margin-left: auto;
}

@media (max-width: 1199px) {
    .product-mega-menu__left {
        padding: 24px 28px;
    }

    .product-mega-menu__right {
        padding: 24px 24px;
    }

    .product-mega-menu__industry-grid {
        gap: 18px 12px;
    }

    .product-mega-menu__scene-grid {
        gap: 16px 18px;
    }

    .solution-mega-menu .product-mega-menu__industry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
    }

    /* 小微企业产品 - 响应式适配 */
    .product-mega-menu__industry-grid--smb {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .product-mega-menu__industry-grid--smb {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 959px) {
    header .uk-container,
    header .uk-navbar {
        position: relative;
    }

    header .uk-navbar {
        min-height: 80px;
    }

    header .uk-navbar-center {
        display: none;
    }

    header .uk-navbar-left {
        flex: 0 0 auto;
    }

    header .uk-navbar-right {
        margin-left: 0;
        flex: 0 0 auto;
    }

    .site-header-actions {
        position: fixed;
        top: calc(18px + env(safe-area-inset-top));
        right: 16px;
        transform: none;
        z-index: 12;
    }

    header .uk-navbar-left .uk-navbar-item {
        padding-left: 0;
        padding-right: 0;
    }

    header .logo-light-b {
        width: 86px;
    }

    .site-header-actions {
        gap: 10px;
    }

    .site-mobile-only {
        display: inline-flex !important;
    }
}

.uk-search-navbar .uk-search-input:focus {
    border-color: beige;
    width       : 100%;
}

.uk-search-navbar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.uk-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 104px;
    height: 55px;
    padding: 0 22px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.uk-search-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    transform: scale(1.05);
}

.uk-search-button svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.uk-heading-bullet::before {
    border-left: calc(5px + .1em) solid #2386ee;
}

.wechat img {
    width : 100px;
    height: auto;
}

.uk-border-white {
    border: 1px solid #fff;
}

.uk-button-rounded {
    border-radius: 20px;
    border       : 2px dashed #ffffff;
}
.uk-text-white {
    color: #fff!important;
  }
  .uk-text-red {
    color: #f00!important;
  }
  /* main.css */


/* 底部边框 */
.bdb-1 {
    border-bottom: 1px solid #EBEEF5;
}

/* 行高设置 */
.lh2 {
    line-height: 2;
}

/* 柔和风格按钮 */
.btn--soft {
    background-color: #007bff;
    color: white;    
    border-radius: 30px;
}

.btn--soft:hover {    
    background-color: rgba(0, 123, 255, 0.2);
    color: #007bff;
    border-radius: 30px;
    transition: all 0.3s ease;
    background-color: #007bff;
    color: white;
}

.site-header-actions .btn--soft {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.site-header-actions .btn--soft::after {
    content: "";
    position: absolute;
    inset: -20% auto -20% -32%;
    width: 168%;
    background: linear-gradient(
        115deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.04) 10%,
        rgba(255, 255, 255, 0.1) 24%,
        rgba(255, 255, 255, 0.18) 36%,
        rgba(255, 255, 255, 0.34) 44%,
        rgba(255, 255, 255, 0.82) 50%,
        rgba(255, 255, 255, 0.34) 56%,
        rgba(255, 255, 255, 0.18) 64%,
        rgba(255, 255, 255, 0.1) 76%,
        rgba(255, 255, 255, 0.04) 90%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(-220%) skewX(-22deg);
    opacity: 1;
    pointer-events: none;
    transition: transform 8.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.site-header-actions .btn--soft:hover::after {
    transform: translateX(520%) skewX(-22deg);
}

/* 此处添加选中部分对应元素选择器，示例为 .selected-element，需根据实际替换 */
.pain-points-section {
    position: relative;
    padding: 72px 0 34px;
    background:
        radial-gradient(circle at top left, rgba(35, 134, 238, 0.05), transparent 40%),
        radial-gradient(circle at top right, rgba(35, 134, 238, 0.04), transparent 34%),
        linear-gradient(180deg, #f5f7fb 0%, #eef3f8 100%);
    overflow: hidden;
}

.pain-points-section::before,
.pain-points-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.38);
}

.pain-points-section::before {
    width: 420px;
    height: 220px;
    top: -92px;
    left: -78px;
    transform: rotate(28deg);
}

.pain-points-section::after {
    width: 360px;
    height: 220px;
    top: -84px;
    right: -74px;
    transform: rotate(-28deg);
}

.pain-points-section .uk-container {
    position: relative;
    z-index: 1;
}

.pain-points-section__head {
    margin-bottom: 32px;
}

.pain-points-section__title {
    margin: 0;
    color: #0f172a;
    font-size: clamp(28px, 2.5vw, 42px);
    font-weight: 700;
    line-height: 1.18;
}

.pain-points-section__divider {
    display: block;
    width: 120px;
    height: 3px;
    margin: 20px auto 0;
    border-radius: 999px;
    background: #2386ee;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.pain-points-grid > div {
    display: flex;
}

.pain-point-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    width: 100%;
    min-height: 286px;
    padding: 26px 20px 16px;
    border: 1px solid rgba(35, 134, 238, 0.08);
    background: #fff;
    box-shadow: 0 10px 24px rgba(24, 39, 75, 0.06);
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pain-point-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(183, 219, 255, 0.25) 0%, rgba(138, 128, 255, 0.45) 100%);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 0;
}

.pain-point-card:hover::before {
    transform: translateY(0);
}

.pain-point-card > * {
    position: relative;
    z-index: 1;
}

.pain-point-card:hover {
    transform: translateY(-4px);
    border-color: rgba(35, 134, 238, 0.18);
    box-shadow: 0 16px 34px rgba(24, 39, 75, 0.1);
}

.pain-point-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    aspect-ratio: 1 / 1;
    margin-bottom: 14px;
    padding: 14px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(35, 134, 238, 0.1) 0%, rgba(35, 134, 238, 0.04) 100%);
    color: #2386ee;
    box-sizing: border-box;
}

.pain-point-card__icon svg,
.pain-point-card__icon img[uk-svg] {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 3.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pain-point-card__title {
    margin: 0 0 10px;
    color: #111827;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.pain-point-card__desc {
    margin: 0;
    max-width: 240px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.8;
}

@media (max-width: 959px) {
    .pain-points-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .pain-points-section {
        padding: 56px 0 28px;
    }

    .pain-points-section__head {
        margin-bottom: 28px;
    }

    .pain-point-card {
        min-height: 0;
        padding: 22px 18px 14px;
    }

    .pain-point-card__icon {
        width: 74px;
        height: 74px;
        margin-bottom: 14px;
        padding: 12px;
    }

    .pain-point-card__title {
        font-size: 17px;
    }

    .pain-point-card__desc {
        max-width: none;
        font-size: 14px;
        line-height: 1.75;
    }
}

@media (max-width: 639px) {
    .pain-points-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pain-points-section__title {
        font-size: 26px;
    }
}

.homepage-metrics-row {
    position: relative;
}

.homepage-metric-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 118px;
    padding: 24px 18px;
    box-sizing: border-box;
}

.homepage-metric-card::after {
    content: "";
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(35, 134, 238, 0) 0%, rgba(35, 134, 238, 0.48) 50%, rgba(35, 134, 238, 0) 100%);
}

.homepage-metric-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    color: #273449;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    white-space: nowrap;
}

.homepage-metric-text__value {
    color: #e53935 !important;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 1199px) {
    .homepage-metric-text {
        font-size: 15px;
    }

    .homepage-metric-text__value {
        font-size: 28px;
    }
}

@media (max-width: 639px) {
    .homepage-metric-card {
        min-height: 96px;
        padding: 18px 16px;
    }
}

.core-business-section {
    position: relative;
    padding: 74px 0 82px;
    background:
        radial-gradient(circle at 10% 18%, rgba(35, 134, 238, 0.08), transparent 26%),
        radial-gradient(circle at 88% 78%, rgba(15, 23, 42, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
    overflow: hidden;
}

.core-business-section .uk-container {
    position: relative;
    z-index: 1;
}

.core-business-section__head {
    max-width: 760px;
    margin: 0 auto 42px;
}

.core-business-section__title {
    margin: 0;
    color: #0f172a;
    font-size: clamp(28px, 2.4vw, 40px);
    font-weight: 700;
    line-height: 1.18;
}

.core-business-section__subtitle {
    margin: 16px 0 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.9;
}

.core-business-section__content {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.core-business-copy {
    max-width: 560px;
}

.core-business-copy__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: #2563eb;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.core-business-copy__eyebrow::before {
    content: "";
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
}

.core-business-copy__desc {
    margin: 0 0 28px;
    color: #475569;
    font-size: 15px;
    line-height: 1.95;
}

.core-business-copy__feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 30px;
}

.core-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 82px;
    padding: 14px 16px;
    border: 1px solid rgba(35, 134, 238, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(10px);
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.core-feature-item:hover,
.core-feature-item.is-active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: transparent;
    transform: translateX(4px);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.25);
}

.core-feature-item:hover .core-feature-item__icon,
.core-feature-item.is-active .core-feature-item__icon {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.core-feature-item:hover .core-feature-item__label,
.core-feature-item.is-active .core-feature-item__label {
    color: #fff;
}

.core-feature-item:hover .core-feature-item__meta,
.core-feature-item.is-active .core-feature-item__meta {
    color: rgba(255, 255, 255, 0.85);
}

.core-feature-item:hover .core-feature-item__icon,
.core-feature-item.is-active .core-feature-item__icon {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.core-feature-item:hover .core-feature-item__label,
.core-feature-item.is-active .core-feature-item__label {
    color: #fff;
}

.core-feature-item:hover .core-feature-item__meta,
.core-feature-item.is-active .core-feature-item__meta {
    color: rgba(255, 255, 255, 0.85);
}

.core-feature-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(35, 134, 238, 0.14) 0%, rgba(35, 134, 238, 0.06) 100%);
    color: #2386ee;
}

.core-feature-item__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.core-feature-item__label {
    color: #0f172a;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.core-feature-item__copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.core-feature-item__meta {
    color: #64748b;
    font-size: 13px;
    line-height: 1.45;
}

.core-business-copy__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    min-height: 50px;
    padding: 0 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.core-business-copy__button:hover,
.core-business-copy__button:focus {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.3);
    opacity: 0.96;
}

.core-business-visual {
    position: relative;
    min-height: auto;
    padding: 0;
}

.core-business-visual__stage {
    position: relative;
    margin: 0 0 0 auto;
    width: min(100%, 560px);
    aspect-ratio: 1 / 0.9;
    --product-pane-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #edf4fd 0%, #d7e9fb 100%);
    box-shadow: 0 28px 54px rgba(15, 23, 42, 0.14);
}

.core-business-visual__pane {
    position: absolute;
    inset: 0;
    opacity: 1;
    transform: translate3d(calc((var(--product-pane-order, 0) - var(--product-pane-index, 0)) * 100%), 0, 0);
    transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
    pointer-events: none;
    will-change: transform;
    backface-visibility: hidden;
}

.core-business-visual__pane.is-active {
    pointer-events: auto;
    z-index: 2;
}

.core-business-visual__pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.core-business-feature-item,
[data-product-item] {
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.core-business-feature-item:hover,
.core-business-feature-item.is-active {
    transform: translateX(4px);
}

.core-business-feature-item.is-active .core-feature-item__icon {
    background: #2563eb;
    color: #fff;
}

.core-business-feature-item.is-active .core-feature-item__label {
    color: #2563eb;
}

.core-business-visual__monitor {
    position: relative;
    margin-left: auto;
    width: min(100%, 540px);
    padding: 14px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(34, 49, 72, 0.98) 0%, rgba(8, 18, 36, 0.98) 100%);
    box-shadow:
        0 30px 60px rgba(15, 23, 42, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.core-business-visual__topbar {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.core-business-visual__topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
}

.core-business-visual__topbar span:first-child {
    background: #ff6d5e;
}

.core-business-visual__topbar span:nth-child(2) {
    background: #ffbd45;
}

.core-business-visual__topbar span:nth-child(3) {
    background: #20d36f;
}

.core-business-visual__screen {
    padding: 20px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(6, 18, 38, 0.96) 0%, rgba(9, 29, 55, 0.98) 100%);
    border: 1px solid rgba(96, 165, 250, 0.16);
}

.core-business-visual__chart-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 16px;
    margin-bottom: 16px;
}

.core-business-visual__widget {
    padding: 16px;
    border-radius: 18px;
    background: rgba(12, 32, 58, 0.82);
    border: 1px solid rgba(96, 165, 250, 0.14);
}

.core-business-visual__widget-title {
    display: block;
    margin-bottom: 12px;
    color: rgba(226, 232, 240, 0.92);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.core-business-visual__pie {
    position: relative;
    width: 98px;
    height: 98px;
    margin: 8px auto 0;
    border-radius: 50%;
    background: conic-gradient(#4fd1ff 0 35%, #2386ee 35% 72%, rgba(79, 209, 255, 0.18) 72% 100%);
}

.core-business-visual__pie::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    background: #081a31;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

.core-business-visual__table-lines {
    display: grid;
    gap: 10px;
}

.core-business-visual__table-lines span,
.core-business-visual__dashboard-list span,
.core-business-visual__status-list span,
.core-business-visual__panel-legend span {
    display: block;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(79, 209, 255, 0.82) 0%, rgba(35, 134, 238, 0.12) 100%);
}

.core-business-visual__table-lines span {
    height: 10px;
}

.core-business-visual__table-lines span:nth-child(1) {
    width: 88%;
}

.core-business-visual__table-lines span:nth-child(2) {
    width: 72%;
}

.core-business-visual__table-lines span:nth-child(3) {
    width: 94%;
}

.core-business-visual__table-lines span:nth-child(4) {
    width: 66%;
}

.core-business-visual__dashboard {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
}

.core-business-visual__dashboard-map,
.core-business-visual__dashboard-list {
    position: relative;
    min-height: 180px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(12, 32, 58, 0.78);
    border: 1px solid rgba(96, 165, 250, 0.14);
}

.core-business-visual__dashboard-map::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 16px;
    background:
        linear-gradient(rgba(79, 209, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 209, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
}

.core-business-visual__dashboard-list {
    display: grid;
    align-content: start;
    gap: 12px;
}

.core-business-visual__dashboard-list span {
    height: 12px;
}

.core-business-visual__dashboard-list span:nth-child(1) {
    width: 82%;
}

.core-business-visual__dashboard-list span:nth-child(2) {
    width: 100%;
}

.core-business-visual__dashboard-list span:nth-child(3) {
    width: 76%;
}

.core-business-visual__dashboard-list span:nth-child(4) {
    width: 92%;
}

.core-business-visual__dashboard-list span:nth-child(5) {
    width: 64%;
}

.core-business-visual__dashboard-map .node,
.core-business-visual__dashboard-map .line {
    position: absolute;
    z-index: 1;
}

.core-business-visual__dashboard-map .node {
    width: 16px;
    height: 16px;
    border: 3px solid rgba(79, 209, 255, 0.88);
    border-radius: 50%;
    background: #0b1d35;
    box-shadow: 0 0 0 6px rgba(79, 209, 255, 0.12);
}

.core-business-visual__dashboard-map .node--a {
    top: 44px;
    left: 52px;
}

.core-business-visual__dashboard-map .node--b {
    top: 84px;
    left: 148px;
}

.core-business-visual__dashboard-map .node--c {
    top: 36px;
    right: 72px;
}

.core-business-visual__dashboard-map .node--d {
    bottom: 44px;
    right: 116px;
}

.core-business-visual__dashboard-map .line {
    height: 2px;
    transform-origin: left center;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(79, 209, 255, 0.28), rgba(79, 209, 255, 0.92));
}

.core-business-visual__dashboard-map .line--ab {
    top: 56px;
    left: 68px;
    width: 96px;
    transform: rotate(22deg);
}

.core-business-visual__dashboard-map .line--bc {
    top: 90px;
    left: 161px;
    width: 104px;
    transform: rotate(-26deg);
}

.core-business-visual__dashboard-map .line--cd {
    top: 66px;
    right: 87px;
    width: 74px;
    transform: rotate(62deg);
}

.core-business-visual__panel {
    position: absolute;
    width: 158px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(35, 134, 238, 0.12);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(14px);
}

.core-business-visual__panel--left {
    left: 12px;
    bottom: 34px;
}

.core-business-visual__panel--right {
    top: 32px;
    right: -10px;
}

.core-business-visual__panel-chart {
    height: 88px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(35, 134, 238, 0.12), rgba(35, 134, 238, 0.02)),
        linear-gradient(135deg, rgba(35, 134, 238, 0.8) 0%, rgba(79, 209, 255, 0.8) 100%);
    clip-path: polygon(0 100%, 0 62%, 18% 54%, 34% 68%, 52% 32%, 70% 42%, 86% 18%, 100% 26%, 100% 100%);
}

.core-business-visual__panel-legend {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.core-business-visual__panel-legend span {
    height: 9px;
}

.core-business-visual__panel-legend span:nth-child(1) {
    width: 86%;
}

.core-business-visual__panel-legend span:nth-child(2) {
    width: 68%;
}

.core-business-visual__panel-legend span:nth-child(3) {
    width: 94%;
}

.core-business-visual__panel-legend span:nth-child(4) {
    width: 58%;
}

.core-business-visual__status-list {
    display: grid;
    gap: 10px;
}

.core-business-visual__status-list span {
    height: 10px;
}

.core-business-visual__status-list span:nth-child(1) {
    width: 64%;
}

.core-business-visual__status-list span:nth-child(2) {
    width: 92%;
}

.core-business-visual__status-list span:nth-child(3) {
    width: 78%;
}

.core-business-visual__status-list span:nth-child(4) {
    width: 88%;
}

.core-business-visual__status-list span:nth-child(5) {
    width: 72%;
}

.core-business-visual__status-list span:nth-child(6) {
    width: 54%;
}

@media (max-width: 1199px) {
    .core-business-section__content {
        gap: 28px;
    }

    .core-business-copy__eyebrow {
        font-size: 28px;
    }

    .core-business-visual {
        min-height: auto;
    }

    .core-business-visual__photo {
        width: min(100%, 520px);
    }

    .core-business-visual__panel--left {
        left: -2px;
    }
}

@media (max-width: 959px) {
    .core-business-section {
        padding: 60px 0 66px;
    }

    .core-business-section__head {
        margin-bottom: 34px;
    }

    .core-business-section__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .core-business-copy {
        max-width: none;
    }

    .core-business-copy__eyebrow {
        font-size: 26px;
    }

    .core-business-visual {
        min-height: auto;
        padding-bottom: 0;
    }

    .core-business-visual__photo {
        margin: 0 auto;
    }

    .core-business-visual__panel--left {
        left: 10px;
    }

    .core-business-visual__panel--right {
        right: 10px;
    }
}

@media (max-width: 639px) {
    .core-business-section {
        padding: 52px 0 56px;
    }

    .core-business-section__title {
        font-size: 26px;
    }

    .core-business-section__subtitle {
        font-size: 14px;
        line-height: 1.8;
    }

    .core-business-copy__eyebrow {
        gap: 8px;
        font-size: 22px;
    }

    .core-business-copy__eyebrow::before {
        width: 30px;
        height: 3px;
    }

    .core-business-copy__desc {
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.85;
    }

    .core-business-copy__feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }

    .core-feature-item {
        min-height: 74px;
        padding: 12px 14px;
        border-radius: 16px;
    }

    .core-feature-item__label {
        font-size: 15px;
    }

    .core-feature-item__meta {
        font-size: 12px;
    }

    .core-business-copy__button {
        min-width: 132px;
        min-height: 46px;
        padding: 0 22px;
    }

    .core-business-visual {
        min-height: auto;
        padding: 0 8px;
    }

    .core-business-visual__photo {
        width: 100%;
        aspect-ratio: 1 / 0.92;
    }
}

.solution-spotlight-section {
    position: relative;
    padding: 10px 0 92px;
    background:
        radial-gradient(circle at 8% 18%, rgba(59, 130, 246, 0.08), transparent 22%),
        radial-gradient(circle at 90% 20%, rgba(242, 122, 26, 0.08), transparent 18%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    overflow: hidden;
}

.solution-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 48px;
    align-items: stretch;
}

.solution-spotlight__copy {
    max-width: 620px;
    min-height: 640px;
    display: flex;
    flex-direction: column;
}

.solution-spotlight__head {
    margin-bottom: 12px;
    width: 90%;
}

.solution-spotlight__title {
    margin: 0;
    color: #2b3038;
    width: 100%;
    font-size: clamp(30px, 2.45vw, 42px);
    font-weight: 800;
    line-height: 3;
    letter-spacing: -0.02em;
    white-space: normal;
}

.solution-spotlight__list {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solution-spotlight__active-panel {
    display: none;
}

.solution-spotlight__active-head {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    align-items: baseline;
    width: 100%;
}

.solution-spotlight__active-index {
    color: #2563eb;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
}

.solution-spotlight__active-name {
    margin: 0;
    color: #3b4048;
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 600;
    line-height: 1.35;
}

.solution-spotlight__active-desc {
    max-width: 90%;
    margin: 22px 0 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.92;
}

.solution-spotlight__item {
    position: relative;
    padding: 14px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.solution-spotlight__item::before {
    content: none;
}

.solution-spotlight__item.is-active::before {
    content: none;
}

.solution-spotlight__trigger {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    text-align: left;
    cursor: pointer;
}

.solution-spotlight__trigger:focus-visible {
    outline: 2px solid rgba(35, 134, 238, 0.32);
    outline-offset: 8px;
    border-radius: 12px;
}

.solution-spotlight__index {
    color: #2563eb;
    font-size: clamp(20px, 1.6vw, 28px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
}

.solution-spotlight__name {
    color: #3b4048;
    font-size: clamp(17px, 1.4vw, 24px);
    font-weight: 600;
    line-height: 1.35;
}

.solution-spotlight__detail {
    height: 0;
    padding-top: 0;
    padding-left: 72px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: height 0.28s ease, padding-top 0.28s ease, opacity 0.18s ease;
}

.solution-spotlight__item.is-active .solution-spotlight__detail {
    height: 168px;
    padding-top: 12px;
    opacity: 1;
    visibility: visible;
}

.solution-spotlight__desc {
    max-width: 90%;
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.92;
    min-height: calc(1.92em * 2);
}

.solution-spotlight__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 168px;
    min-height: 58px;
    margin-top: 20px;
    padding: 0 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.solution-spotlight__button:hover,
.solution-spotlight__button:focus {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(37, 99, 235, 0.3);
    opacity: 0.98;
}

.solution-spotlight__button span:last-child {
    font-size: 24px;
    line-height: 1;
}

.solution-spotlight__visual {
    position: relative;
}

.solution-spotlight__visual-stage {
    position: relative;
    width: min(100%, 700px);
    --solution-pane-index: 0;
    min-height: 640px;
    margin-left: auto;
    border-radius: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #edf4fd 0%, #d7e9fb 100%);
    box-shadow: 0 28px 72px rgba(15, 23, 42, 0.12);
}

.solution-spotlight__visual-stage::before {
    content: "";
    position: absolute;
    inset: 10% -10% -20% 36%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.32) 0%, rgba(96, 165, 250, 0.14) 28%, rgba(96, 165, 250, 0) 62%);
    z-index: 1;
    pointer-events: none;
}

.solution-spotlight__visual-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: inherit;
    z-index: 3;
    pointer-events: none;
}

.solution-spotlight__visual-pane {
    position: absolute;
    inset: 0;
    opacity: 1;
    transform: translate3d(0, calc((var(--solution-pane-order, 0) - var(--solution-pane-index, 0)) * 100%), 0);
    transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
    pointer-events: none;
    will-change: transform;
    backface-visibility: hidden;
}

.solution-spotlight__visual-pane.is-active {
    pointer-events: auto;
    z-index: 2;
}

.solution-spotlight__visual-pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.solution-spotlight__visual-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.82) 24%, rgba(255, 255, 255, 0.34) 56%, rgba(10, 22, 43, 0.12) 100%),
        linear-gradient(180deg, rgba(8, 18, 37, 0.02) 0%, rgba(8, 18, 37, 0.12) 100%);
    z-index: 1;
}

.solution-spotlight__float-card {
    position: absolute;
    top: 56px;
    left: 52px;
    z-index: 2;
    display: grid;
    grid-template-columns: 104px 128px;
    gap: 14px;
    align-items: end;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 24px 54px rgba(96, 165, 250, 0.18);
    backdrop-filter: blur(18px);
}

.solution-spotlight__float-no {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 124px;
    border-radius: 20px;
    background: linear-gradient(180deg, #4f8dfb 0%, #2563eb 100%);
    color: #ffffff;
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
}

.solution-spotlight__float-stack {
    display: grid;
    gap: 12px;
    padding-bottom: 4px;
}

.solution-spotlight__float-stack span {
    display: block;
    height: 24px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 18px rgba(148, 163, 184, 0.14);
}

.solution-spotlight__float-stack span:nth-child(1) {
    width: 112px;
}

.solution-spotlight__float-stack span:nth-child(2) {
    width: 94px;
}

.solution-spotlight__float-stack span:nth-child(3) {
    width: 76px;
}

.solution-spotlight__caption {
    position: absolute;
    left: 52px;
    bottom: 48px;
    z-index: 2;
    max-width: 290px;
    padding: 20px 22px;
    border: 1px solid rgba(191, 219, 254, 0.22);
    border-radius: 24px;
    background: rgba(7, 18, 39, 0.56);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(12px);
}

.solution-spotlight__caption-label {
    display: inline-flex;
    color: #bfdbfe;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.solution-spotlight__caption-text {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 1199px) {
    .solution-spotlight-section {
        padding-bottom: 84px;
    }

    .solution-spotlight {
        gap: 34px;
    }

    .solution-spotlight__copy {
        min-height: 560px;
    }

    .solution-spotlight__visual-stage {
        min-height: 560px;
        border-radius: 0;
    }

    .solution-spotlight__float-card {
        top: 34px;
        left: 32px;
        grid-template-columns: 88px 114px;
        padding: 16px;
        border-radius: 24px;
    }

    .solution-spotlight__float-no {
        width: 88px;
        height: 106px;
        font-size: 40px;
        border-radius: 18px;
    }

    .solution-spotlight__caption {
        left: 32px;
        right: 24px;
        bottom: 32px;
        max-width: 260px;
    }
}

@media (max-width: 959px) {
    .solution-spotlight-section {
        padding: 0 0 72px;
    }

    .solution-spotlight {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .solution-spotlight__head {
        margin-bottom: 10px;
    }

    .solution-spotlight__title {
        white-space: normal;
        line-height: 3;
    }

    .solution-spotlight__copy {
        min-height: 0;
    }

    .solution-spotlight__active-panel {
        display: none;
    }

    .solution-spotlight__active-name {
        font-size: 22px;
    }

    .solution-spotlight__active-desc {
        margin-top: 18px;
    }

    .solution-spotlight__item {
        padding: 18px 0;
    }

    .solution-spotlight__detail {
        padding-left: 72px;
    }

    .solution-spotlight__item.is-active .solution-spotlight__detail {
        height: 176px;
        padding-top: 14px;
    }

    .solution-spotlight__visual-stage {
        width: 100%;
        min-height: 460px;
        border-radius: 0;
    }

    .solution-spotlight__visual-overlay {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.08) 22%, rgba(8, 18, 37, 0.18) 100%);
    }

    .solution-spotlight__float-card {
        top: 24px;
        left: 24px;
        grid-template-columns: 80px 96px;
        gap: 12px;
        padding: 14px;
        border-radius: 22px;
    }

    .solution-spotlight__float-no {
        width: 80px;
        height: 94px;
        font-size: 34px;
    }

    .solution-spotlight__float-stack span {
        height: 20px;
    }

    .solution-spotlight__float-stack span:nth-child(1) {
        width: 92px;
    }

    .solution-spotlight__float-stack span:nth-child(2) {
        width: 74px;
    }

    .solution-spotlight__float-stack span:nth-child(3) {
        width: 60px;
    }

    .solution-spotlight__caption {
        left: 24px;
        right: 24px;
        bottom: 24px;
        max-width: 280px;
    }
}

@media (max-width: 639px) {
    .solution-spotlight-section {
        padding-bottom: 56px;
    }

    .solution-spotlight__title {
        font-size: 26px;
        white-space: normal;
        line-height: 3;
    }

    .solution-spotlight__active-panel {
        display: none;
    }

    .solution-spotlight__active-head {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 12px;
    }

    .solution-spotlight__active-index {
        font-size: 24px;
    }

    .solution-spotlight__active-name {
        font-size: 18px;
    }

    .solution-spotlight__active-desc {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.82;
    }

    .solution-spotlight__item {
        padding: 18px 0;
    }

    .solution-spotlight__trigger {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
    }

    .solution-spotlight__index {
        font-size: 18px;
    }

    .solution-spotlight__name {
        font-size: 16px;
    }

    .solution-spotlight__detail {
        padding-left: 0;
    }

    .solution-spotlight__item.is-active .solution-spotlight__detail {
        height: 216px;
        padding-top: 12px;
    }

    .solution-spotlight__button {
        min-width: 138px;
        min-height: 46px;
        margin-top: 20px;
        padding: 0 20px;
        border-radius: 10px;
        font-size: 14px;
    }

    .solution-spotlight__visual-stage {
        min-height: 340px;
        border-radius: 0;
    }

    .solution-spotlight__float-card {
        top: 18px;
        left: 18px;
        grid-template-columns: 66px 82px;
        gap: 10px;
        padding: 10px;
        border-radius: 18px;
    }

    .solution-spotlight__float-no {
        width: 66px;
        height: 78px;
        font-size: 28px;
        border-radius: 14px;
    }

    .solution-spotlight__float-stack span {
        height: 16px;
        border-radius: 8px;
    }

    .solution-spotlight__float-stack span:nth-child(1) {
        width: 74px;
    }

    .solution-spotlight__float-stack span:nth-child(2) {
        width: 60px;
    }

    .solution-spotlight__float-stack span:nth-child(3) {
        width: 48px;
    }

    .solution-spotlight__caption {
        left: 18px;
        right: 18px;
        bottom: 18px;
        max-width: 220px;
        padding: 14px 16px;
        border-radius: 18px;
    }

    .solution-spotlight__caption-text {
        font-size: 13px;
        line-height: 1.65;
    }
}

.partner-support-section {
    position: relative;
    padding: 8px 0 90px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.partner-support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.partner-support-item {
    position: relative;
    padding: 18px 60px 0;
}

.partner-support-item + .partner-support-item::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 0;
    width: 1px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.14) 16%, rgba(15, 23, 42, 0.14) 84%, rgba(15, 23, 42, 0.02) 100%);
}

.partner-support-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #2b313f;
}

.partner-support-item__icon svg,
.partner-support-item__icon img[uk-svg] {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.partner-support-item__title {
    margin: 24px 0 22px;
    color: #1f2937;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
}

.partner-support-item__desc {
    margin: 0;
    color: #55657f;
    font-size: 15px;
    line-height: 2;
}

@media (max-width: 1199px) {
    .partner-support-item {
        padding: 18px 36px 0;
    }

    .partner-support-item__title {
        font-size: 22px;
    }
}

@media (max-width: 959px) {
    .partner-support-section {
        padding: 0 0 72px;
    }

    .partner-support-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .partner-support-item {
        padding: 24px 0;
    }

    .partner-support-item + .partner-support-item::before {
        top: 0;
        right: 0;
        bottom: auto;
        left: 0;
        width: auto;
        height: 1px;
        background: linear-gradient(90deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.14) 12%, rgba(15, 23, 42, 0.14) 88%, rgba(15, 23, 42, 0.02) 100%);
    }
}

@media (max-width: 639px) {
    .partner-support-section {
        padding: 0 0 56px;
    }

    .partner-support-item {
        padding: 22px 0;
    }

    .partner-support-item__icon {
        width: 42px;
        height: 42px;
    }

    .partner-support-item__title {
        margin: 18px 0 14px;
        font-size: 20px;
    }

    .partner-support-item__desc {
        font-size: 14px;
        line-height: 1.9;
    }
}

.industry-solutions-section {
    position: relative;
    padding: 10px 0 96px;
    background:
        radial-gradient(circle at 12% 18%, rgba(35, 134, 238, 0.07), transparent 24%),
        radial-gradient(circle at 88% 82%, rgba(15, 23, 42, 0.07), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.industry-solutions-section__head {
    margin-bottom: 28px;
}

.industry-solutions-section__title {
    margin: 0;
    color: #0f172a;
    font-size: clamp(30px, 2.7vw, 44px);
    font-weight: 700;
    line-height: 1.18;
}

.industry-solutions-grid {
    display: grid;
    gap: 18px;
}

.industry-solutions-row {
    display: flex;
    gap: 16px;
    min-height: 274px;
}

.industry-solutions-row--top .industry-solution-card:nth-child(1) {
    flex: 2.2;
}

.industry-solutions-row--top .industry-solution-card:nth-child(2),
.industry-solutions-row--top .industry-solution-card:nth-child(3) {
    flex: 1.1;
}

.industry-solutions-row--top .industry-solution-card:nth-child(4) {
    flex: 1.08;
}

.industry-solutions-row--bottom .industry-solution-card:nth-child(1),
.industry-solutions-row--bottom .industry-solution-card:nth-child(3),
.industry-solutions-row--bottom .industry-solution-card:nth-child(4) {
    flex: 1.08;
}

.industry-solutions-row--bottom .industry-solution-card:nth-child(2) {
    flex: 2.2;
}

.industry-solution-card {
    position: relative;
    min-width: 0;
    min-height: 274px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.1);
    isolation: isolate;
    transition:
        box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-solution-card::before,
.industry-solution-card::after {
    content: "";
    position: absolute;
    inset: 0;
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.55s ease,
        filter 0.55s ease;
}

.industry-solution-card::before {
    background-image: var(--solution-card-bg);
    background-position: var(--solution-card-position, center center);
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1);
    filter: saturate(0.88);
}

.industry-solution-card::after {
    background:
        linear-gradient(180deg, rgba(8, 17, 32, 0.18) 0%, rgba(8, 17, 32, 0.34) 46%, rgba(8, 17, 32, 0.74) 100%);
}

.industry-solution-card:hover {
    box-shadow: 0 28px 48px rgba(15, 23, 42, 0.16);
}

.industry-solution-card:hover::before {
    filter: saturate(1);
}

.industry-solution-card:hover::after {
    background:
        linear-gradient(180deg, rgba(8, 17, 32, 0.18) 0%, rgba(8, 17, 32, 0.38) 42%, rgba(8, 17, 32, 0.76) 100%);
}

.industry-solution-card__content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 1;
    max-width: min(88%, 560px);
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: translateY(0);
}

.industry-solution-card__title {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 12px rgba(15, 23, 42, 0.32);
}

.industry-solution-card__desc {
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.72;
    text-shadow: 0 2px 10px rgba(15, 23, 42, 0.2);
    transform: translateY(8px);
    transition:
        max-height 0.56s cubic-bezier(0.16, 1, 0.3, 1),
        margin-top 0.42s ease,
        opacity 0.32s ease,
        transform 0.42s ease;
}

.industry-solution-card:hover .industry-solution-card__desc,
.industry-solution-card:focus-within .industry-solution-card__desc {
    margin-top: 10px;
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199px) {
    .industry-solutions-row {
        min-height: 248px;
    }

    .industry-solution-card {
        min-height: 248px;
        border-radius: 25px;
    }

    .industry-solution-card__content {
        left: 20px;
        right: 20px;
        bottom: 18px;
    }

    .industry-solution-card__title {
        font-size: 18px;
    }

    .industry-solution-card__desc {
        font-size: 14px;
        line-height: 1.68;
    }
}

@media (max-width: 959px) {
    .industry-solutions-section {
        padding: 6px 0 72px;
    }

    .industry-solutions-section__head {
        margin-bottom: 24px;
    }

    .industry-solutions-grid {
        gap: 14px;
    }

    .industry-solutions-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        min-height: 0;
    }

    .industry-solutions-row--top .industry-solution-card:nth-child(1),
    .industry-solutions-row--top .industry-solution-card:nth-child(2),
    .industry-solutions-row--top .industry-solution-card:nth-child(3),
    .industry-solutions-row--top .industry-solution-card:nth-child(4),
    .industry-solutions-row--bottom .industry-solution-card:nth-child(1),
    .industry-solutions-row--bottom .industry-solution-card:nth-child(2),
    .industry-solutions-row--bottom .industry-solution-card:nth-child(3),
    .industry-solutions-row--bottom .industry-solution-card:nth-child(4) {
        flex: initial;
    }

    .industry-solutions-row:hover .industry-solution-card,
    .industry-solutions-row:hover .industry-solution-card:hover {
        flex: initial;
    }

    .industry-solution-card {
        min-height: 212px;
        transform: none;
    }

    .industry-solution-card:hover {
        transform: none;
    }

    .industry-solution-card__content {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }

    .industry-solution-card__desc {
        font-size: 13px;
        line-height: 1.65;
    }
}

@media (max-width: 639px) {
    .industry-solutions-section {
        padding: 0 0 56px;
    }

    .industry-solutions-section__title {
        font-size: 26px;
    }

    .industry-solutions-grid {
        gap: 12px;
    }

    .industry-solutions-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .industry-solution-card {
        min-height: 182px;
        border-radius: 25px;
    }

    .industry-solution-card__content {
        left: 16px;
        right: 16px;
        bottom: 14px;
    }

    .industry-solution-card__title {
        font-size: 18px;
    }

    .industry-solution-card__desc {
        font-size: 13px;
    }
}

.innovation-explorer-section {
    --innovation-card-height: 360px;
    --innovation-card-media-height: 172px;
    --innovation-card-overlay-top: 156px;
    --innovation-card-radius: 10px;
    --innovation-card-surface-start: 35%;
    position: relative;
    padding: 34px 0 112px;
    background:
        radial-gradient(circle at 12% 16%, rgba(35, 134, 238, 0.08), transparent 24%),
        radial-gradient(circle at 86% 76%, rgba(15, 23, 42, 0.06), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
    overflow: hidden;
}

.innovation-explorer__head {
    margin-bottom: 28px;
}

.innovation-explorer__title {
    margin: 0;
    color: #1f2937;
    font-size: clamp(34px, 3.7vw, 62px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.innovation-search {
    display: flex;
    justify-content: center;
    margin-bottom: 44px;
}

.innovation-search__field {
    position: relative;
    display: flex;
    align-items: center;
    width: min(100%, 736px);
    padding: 14px 14px 14px 34px;
    border-radius: 999px;
    background: rgba(228, 236, 245, 0.88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.innovation-search__input {
    flex: 1;
    min-width: 0;
    height: 52px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1f2937;
    font-size: 16px;
}

.innovation-search__input::placeholder {
    color: #7b8ca3;
}

.innovation-search__input:focus {
    outline: none;
}

.innovation-search__button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    flex: 0 0 auto !important;
    height: 52px !important;
    padding: 0 24px !important;
    border: 0 !important;
    border-radius: 26px !important;
    background: linear-gradient(135deg, #1952db 0%, #0f47cf 100%) !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    box-shadow: 0 14px 26px rgba(15, 71, 207, 0.26) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer !important;
}

.innovation-search__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(15, 71, 207, 0.32);
}

.innovation-search__button-text {
    display: inline-block !important;
    line-height: 1 !important;
}

.innovation-search__button svg,
.innovation-search__button img[uk-svg] {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.innovation-carousel {
    position: relative;
}

.innovation-carousel__viewport {
    overflow-x: auto;
    overflow-y: visible;
    padding: 10px 0 18px;
    margin: 0;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.innovation-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.innovation-carousel__controls {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    margin-top: 12px;
}

.innovation-carousel__controls[hidden] {
    display: none;
}

.innovation-carousel__control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 10px;
    border: 1.5px solid #2f73f6;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, background 0.25s ease;
    cursor: pointer;
}

.innovation-carousel__control svg,
.innovation-carousel__control img[uk-svg] {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.innovation-carousel__control:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.innovation-carousel__control:disabled {
    opacity: 0.42;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.innovation-carousel__control--prev {
    background: linear-gradient(180deg, #2f88ff 0%, #1d68ef 100%);
    color: #fff;
}

.innovation-carousel__control--next {
    background: #fff;
    color: #2f73f6;
}

.innovation-carousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 90px) / 4);
    gap: 30px;
    align-items: stretch;
    width: 100%;
}

.innovation-card {
    position: relative;
    min-width: 0;
    height: var(--innovation-card-height);
    overflow: hidden;
    border-radius: var(--innovation-card-radius);
    background: #fff;
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.08);
    scroll-snap-align: start;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.innovation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 58px rgba(15, 23, 42, 0.14);
}

.innovation-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s ease;
}

.innovation-card:hover img {
    transform: scale(1.06);
}

.innovation-card.is-hidden {
    display: none;
}

.innovation-card--featured {
    display: flex;
    flex-direction: column;
    height: var(--innovation-card-height);
}

.innovation-card__featured-media {
    height: var(--innovation-card-media-height);
    overflow: hidden;
}

.innovation-card__featured-body {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px 22px 20px;
    background: #fff;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.innovation-card__name {
    margin: 0;
    color: #1f2937;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.32;
}

.innovation-card--featured .innovation-card__summary {
    margin: 12px 0 0;
    color: #66758d;
    font-size: 14px;
    line-height: 1.72;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.innovation-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 16px;
    color: #1952db;
    transition: transform 0.35s ease;
}

.innovation-card__link svg,
.innovation-card__link img[uk-svg] {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.innovation-card--featured:hover .innovation-card__link {
    transform: translateX(6px);
}

.innovation-card--featured:hover .innovation-card__featured-body {
    transform: translateY(-6px);
}

@media (hover: hover) and (pointer: fine) {
    .innovation-card--featured.is-default-active {
        transform: translateY(-8px);
        box-shadow: 0 30px 58px rgba(15, 23, 42, 0.14);
    }

    .innovation-card--featured.is-default-active img {
        transform: scale(1.06);
    }

    .innovation-card--featured.is-default-active .innovation-card__link {
        transform: translateX(6px);
    }

    .innovation-card--featured.is-default-active .innovation-card__featured-body {
        transform: translateY(-6px);
    }
}

.innovation-card__link--inline {
    margin-top: auto;
    padding-top: 14px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.innovation-card__link-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--innovation-card-surface-start);
    bottom: 0;
    z-index: 0;
    text-decoration: none;
}

.innovation-card--visual .innovation-card__name,
.innovation-card--visual .innovation-card__summary,
.innovation-card__link--inline {
    position: relative;
    z-index: 2;
}

.innovation-card--visual {
    height: var(--innovation-card-height);
    background: #0f172a;
}

.innovation-card__media,
.innovation-card__overlay {
    position: absolute;
    inset: 0;
}

.innovation-card__overlay {
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 22px 20px;
    background:
        linear-gradient(180deg, rgba(8, 17, 32, 0.04) 0%, rgba(8, 17, 32, 0.26) 40%, rgba(8, 17, 32, 0.74) 100%);
    transition: padding 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s ease;
}

.innovation-card__overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0 var(--innovation-card-surface-start), rgba(255, 255, 255, 0.98) var(--innovation-card-surface-start) 100%);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.innovation-card--visual .innovation-card__name,
.innovation-card--visual .innovation-card__summary,
.innovation-card__link--inline {
    position: relative;
    z-index: 1;
}

.innovation-card--visual .innovation-card__name {
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    text-shadow: 0 6px 16px rgba(8, 17, 32, 0.24);
}

.innovation-card--visual .innovation-card__summary {
    margin: 14px 0 0;
    max-width: none;
    color: #66758d;
    font-size: 14px;
    line-height: 1.92;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.innovation-card--visual:is(:hover, .is-default-active) .innovation-card__overlay {
    justify-content: flex-start;
    padding: var(--innovation-card-overlay-top) 22px 18px;
    background:
        linear-gradient(180deg, rgba(8, 17, 32, 0.06) 0%, rgba(8, 17, 32, 0.14) calc(var(--innovation-card-surface-start) - 2%), rgba(255, 255, 255, 0) calc(var(--innovation-card-surface-start) - 2%));
}

.innovation-card--visual:is(:hover, .is-default-active) .innovation-card__overlay::before {
    opacity: 1;
    transform: translateY(0);
}

.innovation-card--visual:is(:hover, .is-default-active) .innovation-card__summary {
    opacity: 1;
    transform: translateY(0);
}

.innovation-card--visual:is(:hover, .is-default-active) .innovation-card__name {
    color: #1f2937;
    text-shadow: none;
}

.innovation-card--visual:is(:hover, .is-default-active) .innovation-card__link--inline {
    opacity: 1;
    transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
    .innovation-card--visual.is-default-active {
        box-shadow: 0 30px 58px rgba(15, 23, 42, 0.14);
    }

    .innovation-card--visual.is-default-active img {
        transform: scale(1.06);
    }
}

.innovation-card.is-pulse {
    animation: innovation-card-pulse 0.9s ease;
}

.innovation-carousel__empty {
    margin: 12px 0 0;
    color: #64748b;
    font-size: 15px;
    text-align: center;
}

@keyframes innovation-card-pulse {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 1199px) {
    .innovation-explorer-section {
        --innovation-card-height: 336px;
        --innovation-card-media-height: 154px;
        --innovation-card-overlay-top: 136px;
        --innovation-card-surface-start: 33%;
    }

    .innovation-carousel__track {
        grid-auto-columns: calc((100% - 66px) / 4);
        gap: 22px;
    }

    .innovation-card--visual:is(:hover, .is-default-active) .innovation-card__overlay {
        padding: var(--innovation-card-overlay-top) 20px 18px;
    }

    .innovation-card__featured-body {
        padding: 16px 18px 18px;
    }
}

@media (max-width: 959px) {
    .innovation-explorer-section {
        --innovation-card-height: 388px;
        --innovation-card-media-height: 212px;
        --innovation-card-overlay-top: 190px;
        --innovation-card-surface-start: 42%;
    }

    .innovation-explorer-section {
        padding: 24px 0 76px;
    }

    .innovation-explorer__head {
        margin-bottom: 22px;
    }

    .innovation-search {
        margin-bottom: 30px;
    }

    .innovation-search__field {
        padding: 12px 12px 12px 22px;
    }

    .innovation-search__input {
        height: 48px;
        font-size: 15px;
    }

    .innovation-search__button {
        height: 48px !important;
        padding: 0 20px !important;
        font-size: 14px !important;
    }

    .innovation-search__button svg,
    .innovation-search__button img[uk-svg] {
        width: 16px;
        height: 16px;
    }

    .innovation-carousel__viewport {
        padding: 6px 12px 14px;
        margin: 0 -12px;
    }

    .innovation-carousel__controls {
        gap: 14px;
        margin-top: 8px;
    }

    .innovation-carousel__track {
        display: flex;
        gap: 18px;
        align-items: stretch;
        width: max-content;
    }

    .innovation-card {
        flex: 0 0 276px;
        flex-basis: 276px;
        width: 276px;
    }

    .innovation-card__featured-body {
        padding: 18px 18px 20px;
    }

    .innovation-card__name {
        font-size: 18px;
    }

    .innovation-card--featured .innovation-card__summary,
    .innovation-card--visual .innovation-card__summary {
        font-size: 14px;
        line-height: 1.84;
    }

    .innovation-card__overlay {
        padding: 20px 22px 24px;
    }

    .innovation-card--visual:is(:hover, .is-default-active) .innovation-card__overlay {
        padding: var(--innovation-card-overlay-top) 22px 22px;
    }
}

@media (max-width: 639px) {
    .innovation-explorer-section {
        --innovation-card-height: 388px;
        --innovation-card-media-height: 212px;
        --innovation-card-overlay-top: 186px;
        --innovation-card-surface-start: 41%;
        padding: 18px 0 58px;
    }

    .innovation-explorer__title {
        font-size: 28px;
        line-height: 1.2;
    }

    .innovation-search__field {
        padding: 10px 10px 10px 18px;
    }

    .innovation-search__input {
        height: 42px;
        font-size: 14px;
    }

    .innovation-search__button {
        height: 42px !important;
        padding: 0 16px !important;
        font-size: 13px !important;
    }

    .innovation-search__button svg,
    .innovation-search__button img[uk-svg] {
        width: 14px;
        height: 14px;
    }

    .innovation-carousel__viewport {
        padding: 4px 0 12px;
        margin: 0;
    }

    .innovation-carousel__controls {
        gap: 12px;
    }

    .innovation-carousel__control {
        width: 44px;
        height: 44px;
    }

    .innovation-carousel__track {
        gap: 14px;
    }

    .innovation-card--featured,
    .innovation-card {
        flex: 0 0 86vw;
        flex-basis: 86vw;
        width: 86vw;
        max-width: 330px;
    }

    .innovation-card__featured-body {
        padding: 18px 18px 20px;
    }

    .innovation-card__name {
        font-size: 18px;
    }

    .innovation-card__overlay {
        padding: 18px 18px 22px;
    }

    .innovation-card--visual .innovation-card__summary {
        opacity: 1;
        transform: none;
        margin-top: 14px;
    }

    .innovation-card__link--inline {
        opacity: 1;
        transform: none;
        margin-top: 18px;
    }

    .innovation-card--visual .innovation-card__name {
        color: #1f2937;
        text-shadow: none;
    }

    .innovation-card__overlay {
        justify-content: flex-start;
        padding: 204px 18px 20px;
        background: linear-gradient(180deg, rgba(8, 17, 32, 0.05) 0%, rgba(8, 17, 32, 0.12) 48%, rgba(255, 255, 255, 0) 48%);
    }

    .innovation-card__overlay::before {
        opacity: 1;
        transform: none;
    }

}

.service-support-showcase-section {
    position: relative;
    padding: 28px 0 104px;
    background:
        radial-gradient(circle at 10% 18%, rgba(37, 99, 235, 0.08), transparent 24%),
        radial-gradient(circle at 92% 82%, rgba(96, 165, 250, 0.1), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    overflow: hidden;
}

.service-support-showcase {
    display: grid;
    grid-template-columns: minmax(340px, 0.74fr) minmax(760px, 1.26fr);
    gap: clamp(34px, 4.4vw, 72px);
    align-items: center;
}

.service-support-showcase__copy {
    max-width: 420px;
}

.service-support-showcase__title {
    margin: 0;
    color: #1f2937;
    font-size: clamp(32px, 3vw, 52px);
    font-weight: 700;
    line-height: 1.16;
}

.service-support-showcase__desc {
    margin: 26px 0 0;
    color: #5f6f86;
    font-size: 15px;
    line-height: 1.98;
}

.service-support-showcase__tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 28px;
    font-family: "Microsoft YaHei", "微软雅黑", "Hiragino Sans GB", "PingFang SC", sans-serif !important;
}

.service-support-showcase__tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #36506f;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit !important;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.service-support-showcase__visual {
    min-width: 0;
    width: 100%;
    max-width: 880px;
    margin-left: auto;
}

.service-support-showcase__viewport {
    overflow: hidden;
    padding: 4px 0 0;
    box-sizing: border-box;
}

.service-support-showcase__track {
    display: flex;
    align-items: flex-start;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.service-support-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3, minmax(218px, 1fr));
    justify-items: center;
    gap: clamp(40px, 3.4vw, 64px);
    align-items: start;
    opacity: 0.48;
    transition: opacity 0.35s ease;
}

.service-support-slide.is-active {
    opacity: 1;
}

.support-ring-card {
    --support-progress: 100%;
    --support-start-angle: -75.6deg;
    --support-fill-angle: 360deg;
    --support-angle: 360deg;
    --support-ring-size: 214px;
    --support-marker-distance: -100px;
    position: relative;
    width: 100%;
    max-width: 236px;
    margin: 0 auto;
    padding-top: 74px;
}

.support-ring-card--full {
    --support-angle: calc(var(--support-start-angle) + 360deg);
}

.support-ring-card__bubble {
    position: absolute;
    top: 18px;
    left: calc(50% + (var(--support-ring-size) * 0.3));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(96px, 6.6vw, 108px);
    height: clamp(96px, 6.6vw, 108px);
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.72) 0%, rgba(219, 234, 254, 0.82) 34%, rgba(191, 219, 254, 0.68) 100%);
    color: #2563eb;
    font-size: clamp(20px, 1.7vw, 30px);
    font-weight: 500;
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.12);
    transform: translateX(-50%);
    z-index: 2;
}

.support-ring-card__chart {
    position: relative;
    width: var(--support-ring-size);
    height: var(--support-ring-size);
    margin: 0 auto;
    border-radius: 50%;
    background:
        conic-gradient(
            from var(--support-start-angle),
            #d9ecff 0deg,
            #9fd0ff calc(var(--support-fill-angle) * 0.42),
            #4d90ff calc(var(--support-fill-angle) * 0.78),
            #0b43c8 var(--support-fill-angle),
            rgba(220, 228, 240, 0.94) var(--support-fill-angle) 360deg
        );
    box-shadow: none;
}

.support-ring-card__core {
    position: absolute;
    inset: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 50%;
    background: #fff;
    box-shadow:
        inset 0 0 0 14px rgba(235, 240, 248, 0.95),
        0 10px 22px rgba(15, 23, 42, 0.06);
    text-align: center;
}

.support-ring-card__core strong {
    display: block;
    color: #1f2937;
    font-size: clamp(34px, 3vw, 46px);
    font-weight: 700;
    line-height: 1;
}

.support-ring-card__core span {
    color: #5b677c;
    font-size: clamp(14px, 1.1vw, 17px);
    line-height: 1.28;
}

.support-ring-card__marker {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0b43c8;
    border: 0;
    box-shadow:
        0 0 0 6px rgba(11, 67, 200, 0.14),
        0 0 12px rgba(11, 67, 200, 0.24),
        0 0 22px rgba(11, 67, 200, 0.18);
    transform: translate(-50%, -50%) rotate(var(--support-angle)) translateY(var(--support-marker-distance));
    z-index: 3;
}

.service-support-showcase__controls {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 38px;
    padding-top: 12px;
}

.service-support-showcase__controls::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(148, 163, 184, 0.28) 10%, rgba(148, 163, 184, 0.28) 90%, transparent 100%);
    transform: translateY(-50%);
}

.service-support-showcase__control {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: #dbeafe;
    color: #2563eb;
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.service-support-showcase__control svg,
.service-support-showcase__control img[uk-svg] {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-support-showcase__control:hover,
.service-support-showcase__control:focus {
    transform: translateY(-2px);
    outline: none;
}

.service-support-showcase__control--prev:hover,
.service-support-showcase__control--prev:focus {
    background: #bfdbfe;
    box-shadow: 0 16px 28px rgba(37, 99, 235, 0.18);
}

.service-support-showcase__control--next {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #fff;
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.28);
}

.service-support-showcase__control--next:hover,
.service-support-showcase__control--next:focus {
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.34);
}

@media (max-width: 1199px) {
    .service-support-showcase {
        grid-template-columns: minmax(320px, 0.78fr) minmax(640px, 1.22fr);
        gap: 28px;
    }

    .service-support-slide {
        grid-template-columns: repeat(3, minmax(192px, 1fr));
        gap: 26px;
    }

    .support-ring-card {
        --support-ring-size: 196px;
        --support-marker-distance: -91px;
        max-width: 214px;
    }

    .support-ring-card__bubble {
        top: 16px;
        left: calc(50% + (var(--support-ring-size) * 0.28));
        width: 94px;
        height: 94px;
    }
}

@media (max-width: 959px) {
    .service-support-showcase-section {
        padding: 20px 0 80px;
    }

    .service-support-showcase {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .service-support-showcase__copy {
        max-width: none;
    }

    .service-support-showcase__desc {
        margin-top: 24px;
    }

    .service-support-showcase__tags {
        flex-wrap: wrap;
    }

    .service-support-slide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
    }

    .service-support-slide .support-ring-card:last-child {
        grid-column: 1 / -1;
        max-width: 240px;
        margin: 0 auto;
    }

    .support-ring-card {
        --support-ring-size: 220px;
        --support-marker-distance: -100px;
        max-width: 240px;
    }

    .support-ring-card__bubble {
        top: 14px;
        left: calc(50% + (var(--support-ring-size) * 0.22));
        width: 104px;
        height: 104px;
    }

    .service-support-showcase__controls {
        margin-top: 30px;
    }
}

@media (max-width: 639px) {
    .service-support-showcase-section {
        padding: 12px 0 62px;
    }

    .service-support-showcase__title {
        font-size: 28px;
    }

    .service-support-showcase__desc {
        font-size: 14px;
        line-height: 1.9;
    }

    .service-support-showcase__tags {
        gap: 10px;
        margin-top: 24px;
    }

    .service-support-showcase__tags span {
        min-height: 40px;
        padding: 0 14px;
        font-size: 16px;
        font-weight: 700;
    }

    .service-support-slide {
        grid-template-columns: 1fr;
    }

    .service-support-slide .support-ring-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .support-ring-card {
        --support-ring-size: 226px;
        --support-marker-distance: -103px;
        max-width: none;
    }

    .support-ring-card__bubble {
        top: 12px;
        left: calc(50% + (var(--support-ring-size) * 0.2));
        width: 98px;
        height: 98px;
        font-size: 22px;
    }

    .support-ring-card__core strong {
        font-size: 34px;
    }

    .support-ring-card__core span {
        font-size: 14px;
    }

    .service-support-showcase__control {
        width: 52px;
        height: 52px;
    }
}

.benchmark-cases-section {
    padding: 72px 0 78px;
    background: url('/images/bg_img.835cb78e.png') no-repeat center 20% / cover;
    overflow: hidden;
}

.benchmark-cases-section__title {
    margin: 0 0 34px;
    color: #142033;
    font-size: clamp(30px, 2.7vw, 44px);
    font-weight: 700;
    line-height: 1.18;
    text-align: center;
}

.benchmark-cases-carousel {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 22px;
    background: transparent;
}

.benchmark-cases-carousel__viewport {
    --benchmark-logo-gap: 24px;
    --benchmark-logo-side-gap: calc(var(--benchmark-logo-gap) / 2);
    --benchmark-viewport-width: 960px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 0 22px;
    box-sizing: border-box;
    clip-path: inset(0);
    background: transparent;
}

.benchmark-cases-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.benchmark-cases-carousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, 168px);
    grid-auto-columns: calc((var(--benchmark-viewport-width) - (var(--benchmark-logo-side-gap) * 2) - (var(--benchmark-logo-gap) * 3)) / 4);
    gap: var(--benchmark-logo-gap);
    min-width: max-content;
    padding: 0 var(--benchmark-logo-side-gap);
    background: transparent;
}

.benchmark-cases-carousel__control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 64px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #a7adb7;
    cursor: pointer;
    transition: color 0.22s ease, transform 0.22s ease;
}

.benchmark-cases-carousel__control:hover {
    color: #2563eb;
    transform: translateY(-1px);
}

.benchmark-cases-carousel__control svg,
.benchmark-cases-carousel__control img[uk-svg] {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benchmark-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    text-align: center;
    width: 100%;
    min-height: 168px;
    height: 100%;
    padding: 18px 14px 16px;
    box-sizing: border-box;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 12px;
    background: #ffffff;
    box-shadow:
        0 18px 38px rgba(15, 23, 42, 0.06),
        0 6px 16px rgba(15, 23, 42, 0.035);
    color: #1f2937;
    user-select: none;
}

.benchmark-logo-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 70px;
    flex: 1 1 auto;
}

.benchmark-logo-card__image {
    display: block;
    max-width: 100%;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.benchmark-logo-card__image--aipeng {
    transform: scale(1.16);
}

.benchmark-logo-card__image--stdf {
    transform: scale(1.28);
}

.benchmark-logo-card__image--acetic {
    transform: scale(1.14);
}

.benchmark-logo-card__image--will {
    transform: scale(1.18);
}

.benchmark-logo-card__image--goldenwheel {
    transform: scale(1.08);
}

.benchmark-logo-card__image--ruixiang {
    max-height: 58px;
}

.benchmark-logo-card__image--tiancheng {
    transform: scale(1.12);
}

.benchmark-logo-card__image--jtl {
    transform: scale(1.12);
}

.benchmark-logo-card__name {
    display: block;
    max-width: 100%;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.consultation-cta-section {
    padding: 68px 0 72px;
    background: url('/images/contactbg_02.jpg') no-repeat center center / cover;
}

.consultation-cta {
    max-width: 960px;
    margin: 0 auto;
}

.consultation-cta__title,
.consultation-cta__subtitle {
    grid-column: 1 / 2;
}

.consultation-cta__title {
    margin: 0;
    color: #2386ee;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.consultation-cta__subtitle {
    margin: 20px 0 36px;
    color: #6f8199;
    font-size: clamp(14px, 1.15vw, 16px);
    font-weight: 400;
    line-height: 1.8;
}

.consultation-cta__form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 18px;
    max-width: 100%;
}

.consultation-cta__input {
    width: 500px;
    height: 68px;
    padding: 0 16px;
    box-sizing: border-box;
    border: 1px solid rgba(15, 23, 42, 0.38);
    border-radius: 0;
    background: transparent;
    color: #0f172a;
    font-size: 20px;
    line-height: 68px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.consultation-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 164px;
    height: 68px;
    box-sizing: border-box;
    border: 0;
    border-radius: 5px;
    background: #2386ee;
    color: #ffffff;
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.consultation-cta__input::placeholder {
    color: rgba(15, 23, 42, 0.48);
}

.consultation-cta__input:focus {
    border-color: #2386ee;
    box-shadow: 0 0 0 3px rgba(35, 134, 238, 0.12);
}

.consultation-cta__button:hover {
    background: #0f75df;
    box-shadow: 0 12px 24px rgba(35, 134, 238, 0.2);
    transform: translateY(-1px);
}

.consultation-cta__feedback {
    width: 500px;
    margin: 10px 0 0;
    color: #0f75df;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    white-space: nowrap;
}

@media (max-width: 959px) {
    .benchmark-cases-section {
        padding: 58px 0 62px;
    }

    .benchmark-cases-carousel {
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        gap: 10px;
    }

    .benchmark-cases-carousel__viewport {
        --benchmark-logo-gap: 16px;
    }

    .benchmark-cases-carousel__track {
        grid-template-rows: repeat(2, 110px);
        grid-auto-columns: calc((var(--benchmark-viewport-width) - (var(--benchmark-logo-side-gap) * 2) - var(--benchmark-logo-gap)) / 2);
    }

    .benchmark-logo-card {
        height: 110px;
        padding: 12px 12px 10px;
    }

    .benchmark-logo-card__media {
        min-height: 52px;
    }

    .benchmark-logo-card__image {
        max-height: 42px;
    }

    .benchmark-logo-card__image--aipeng,
    .benchmark-logo-card__image--stdf,
    .benchmark-logo-card__image--acetic,
    .benchmark-logo-card__image--will,
    .benchmark-logo-card__image--goldenwheel,
    .benchmark-logo-card__image--tiancheng,
    .benchmark-logo-card__image--jtl {
        transform: none;
    }

    .benchmark-logo-card__image--ruixiang {
        max-height: 42px;
    }

    .benchmark-logo-card__name {
        font-size: 13px;
    }

    .consultation-cta-section {
        padding: 56px 0 60px;
    }

    .consultation-cta__form {
        max-width: 100%;
    }
}

@media (max-width: 639px) {
    .benchmark-cases-section {
        padding: 48px 0 52px;
    }

    .benchmark-cases-section__title {
        margin-bottom: 24px;
        font-size: 26px;
    }

    .benchmark-cases-carousel {
        grid-template-columns: 34px minmax(0, 1fr) 34px;
        gap: 6px;
    }

    .benchmark-cases-carousel__viewport {
        --benchmark-logo-gap: 12px;
    }

    .benchmark-cases-carousel__track {
        grid-auto-columns: calc(var(--benchmark-viewport-width) - (var(--benchmark-logo-side-gap) * 2));
    }

    .benchmark-cases-carousel__control {
        width: 34px;
        height: 46px;
    }

    .benchmark-cases-carousel__control svg,
    .benchmark-cases-carousel__control img[uk-svg] {
        width: 32px;
        height: 32px;
    }

    .consultation-cta-section {
        padding: 44px 0 48px;
    }

    .consultation-cta__subtitle {
        margin: 14px 0 24px;
    }

    .consultation-cta__form {
        grid-template-columns: 1fr;
        row-gap: 12px;
    }

    .consultation-cta__input,
    .consultation-cta__button,
    .consultation-cta__feedback {
        width: 100%;
    }

    .consultation-cta__input,
    .consultation-cta__button {
        height: 56px;
        font-size: 17px;
        line-height: 56px;
    }

    .consultation-cta__feedback {
        margin-top: 8px;
        white-space: normal;
    }

    .consultation-cta__button {
        font-size: 19px;
    }
}

.site-footer {
    position: relative;
    padding: 40px 0 24px;
    background: linear-gradient(180deg, #122240 0%, #0b1730 100%);
    color: rgba(232, 239, 250, 0.9);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 42%);
    pointer-events: none;
}

.site-footer .uk-container {
    position: relative;
    z-index: 1;
}

.site-footer__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.55fr) minmax(280px, 0.9fr);
    gap: 30px;
    padding: 0;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
}

.site-footer__logo img {
    width: 154px;
    max-width: 100%;
    height: auto;
}

.site-footer__intro {
    margin: 20px 0 0;
    max-width: 340px;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(228, 237, 250, 0.8);
}

.site-footer__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.site-footer__highlights span {
    display: inline-flex;
    align-items: center;
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: none;
    color: rgba(238, 244, 255, 0.72);
    font-size: 13px;
    letter-spacing: 0.02em;
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 18px;
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer__title {
    margin: 0 0 4px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.site-footer__column a,
.site-footer__bottom-links a {
    color: rgba(220, 229, 243, 0.72);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__column a {
    font-size: 14px;
    line-height: 1.6;
}

.site-footer__column a:hover,
.site-footer__bottom-links a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.site-footer__contact-card,
.site-footer__qrcode-card {
    border: 0;
    border-radius: 0;
    background: none;
}

.site-footer__contact-card {
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(148, 175, 222, 0.14);
}

.site-footer__contact-label {
    margin: 0;
    color: rgba(186, 206, 238, 0.78);
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer__contact-label--hotline {
    color: rgba(226, 235, 248, 0.92);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: none;
}

.site-footer__contact-label--wechat {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: none;
}

.site-footer__hotline {
    display: inline-block;
    margin-top: 14px;
    color: #fff;
    font-size: clamp(30px, 2.5vw, 40px);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.site-footer__hotline:hover {
    color: #fff;
    text-decoration: none;
}

.site-footer__contact-text {
    margin: 10px 0 0;
    color: rgba(228, 237, 250, 0.76);
    font-size: 14px;
    line-height: 1.75;
}

.site-footer__qrcode-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 0;
}

.site-footer__qrcode-copy {
    display: flex;
    align-items: center;
    min-height: 104px;
}

.site-footer__qrcode-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    border-radius: 10px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.site-footer__qrcode-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 18px;
    margin-top: 22px;
    border-top: 1px solid rgba(148, 175, 222, 0.14);
}

.site-footer__bottom p {
    margin: 0;
    color: rgba(210, 223, 243, 0.58);
    font-size: 13px;
    line-height: 1.6;
}

.site-footer__bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.site-footer__bottom-links a {
    font-size: 13px;
    line-height: 1.4;
}

/* 内页公共模板：后续可拆为 ECMS 公共头尾与列表/详情模板 */
.inner-page {
    background: #ffffff;
    color: #142033;
}

.inner-header {
    position: sticky;
    top: 0;
    z-index: 20;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.inner-navbar {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) auto;
    align-items: center;
    min-height: 76px;
    gap: 28px;
}

.inner-navbar__logo {
    display: inline-flex;
    align-items: center;
}

.inner-navbar__logo img {
    width: 140px;
    height: auto;
}

.inner-navbar__links,
.inner-navbar__actions {
    display: flex;
    align-items: center;
}

.inner-navbar__links {
    justify-content: center;
    gap: 30px;
}

.inner-navbar__actions {
    justify-content: flex-end;
    gap: 14px;
}

.inner-navbar a {
    color: #142033;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
}

.inner-navbar a:hover,
.inner-navbar a.is-active {
    color: #2386ee;
}

.inner-navbar__register {
    min-width: 72px;
    padding: 9px 18px;
    border-radius: 999px;
    background: #2386ee;
    color: #ffffff !important;
    text-align: center;
}

.inner-navbar__register:hover {
    background: #0f75df;
}

.inner-hero {
    position: relative;
    padding: 150px 0 92px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 18%, rgba(35, 134, 238, 0.22), transparent 30%),
        linear-gradient(135deg, #f7fbff 0%, #eef6ff 46%, #ffffff 100%);
}

.inner-hero::before {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(35, 134, 238, 0.2), rgba(35, 134, 238, 0));
    pointer-events: none;
}

.inner-hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.inner-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
    color: rgba(20, 32, 51, 0.58);
    font-size: 14px;
}

.inner-breadcrumb a {
    color: rgba(20, 32, 51, 0.62);
    text-decoration: none;
}

.inner-breadcrumb a::after {
    content: "/";
    margin-left: 8px;
    color: rgba(20, 32, 51, 0.32);
}

.inner-hero__eyebrow,
.inner-section__eyebrow {
    display: none;
}

.inner-hero__title {
    margin: 0;
    max-width: 860px;
    color: #0f172a;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.inner-hero__desc {
    margin: 24px 0 0;
    max-width: 680px;
    color: rgba(20, 32, 51, 0.72);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.8;
}

.inner-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.inner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.inner-button--primary {
    background: #2386ee;
    color: #ffffff;
    box-shadow: 0 16px 28px rgba(35, 134, 238, 0.2);
}

.inner-button--primary:hover {
    background: #0f75df;
    color: #ffffff;
    transform: translateY(-1px);
}

.inner-button--ghost {
    background: rgba(255, 255, 255, 0.76);
    color: #142033;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.12);
}

.inner-button--ghost:hover {
    color: #2386ee;
    transform: translateY(-1px);
}

.inner-section {
    padding: 88px 0;
}

.inner-section--soft {
    background: #f6f9fd;
}

.inner-section__head {
    max-width: 720px;
    margin-bottom: 38px;
}

.inner-section__title {
    margin: 0;
    color: #0f172a;
    font-size: clamp(30px, 3.4vw, 46px);
    font-weight: 760;
    line-height: 1.16;
    letter-spacing: -0.035em;
}

.inner-section__desc {
    margin: 16px 0 0;
    color: rgba(20, 32, 51, 0.68);
    font-size: 17px;
    line-height: 1.8;
}

.product-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.inner-product-card {
    position: relative;
    min-height: 320px;
    padding: 30px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
        radial-gradient(circle at 100% 0%, rgba(35, 134, 238, 0.16), transparent 36%);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.inner-product-card:hover {
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
    transform: translateY(-4px);
}

.inner-product-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, #2386ee 0%, #60a5fa 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

.inner-product-card h3 {
    margin: 0;
    color: #0f172a;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.32;
}

.inner-product-card p {
    margin: 14px 0 0;
    color: rgba(20, 32, 51, 0.68);
    font-size: 15px;
    line-height: 1.75;
}

.inner-product-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 20px 0 26px;
    list-style: none;
}

.inner-product-card li {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(35, 134, 238, 0.08);
    color: #1d65c8;
    font-size: 13px;
}

.inner-product-card a {
    color: #2386ee;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.inner-split {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 52px;
    align-items: center;
}

.scenario-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.scenario-panel-grid span {
    display: flex;
    align-items: center;
    min-height: 74px;
    padding: 0 22px;
    border-radius: 18px;
    background: #ffffff;
    color: #142033;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.detail-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
    gap: 56px;
    align-items: center;
}

.detail-hero-card {
    position: relative;
    min-height: 420px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.18);
}

.detail-hero-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.detail-hero-card__panel {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
}

.detail-hero-card__panel span,
.detail-hero-card__panel strong {
    display: block;
}

.detail-hero-card__panel span {
    color: #2386ee;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.detail-hero-card__panel strong {
    margin-top: 8px;
    color: #0f172a;
    font-size: 19px;
}

.value-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.value-card {
    padding: 30px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.value-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    margin-bottom: 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, #2386ee 0%, #60a5fa 100%);
    box-shadow: 0 18px 36px rgba(35, 134, 238, 0.22);
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.value-card h3 {
    margin: 0;
    color: #0f172a;
    font-size: 21px;
    font-weight: 700;
}

.value-card p {
    margin: 12px 0 0;
    color: rgba(20, 32, 51, 0.68);
    font-size: 15px;
    line-height: 1.78;
}

.detail-feature-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 56px;
}

.detail-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.detail-feature-list article {
    padding: 26px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 15px 34px rgba(15, 23, 42, 0.06);
}

.detail-feature-list h3 {
    margin: 0;
    color: #0f172a;
    font-size: 19px;
    font-weight: 700;
}

.detail-feature-list p {
    margin: 12px 0 0;
    color: rgba(20, 32, 51, 0.68);
    font-size: 15px;
    line-height: 1.75;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.process-timeline article {
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.process-timeline span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #2386ee;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.process-timeline h3 {
    margin: 20px 0 0;
    color: #0f172a;
    font-size: 19px;
    font-weight: 700;
}

.process-timeline p {
    margin: 10px 0 0;
    color: rgba(20, 32, 51, 0.68);
    font-size: 14px;
    line-height: 1.7;
}

.case-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.case-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-card:hover {
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
    transform: translateY(-4px);
}

.case-card--featured {
    grid-column: span 2;
}

.case-card__media {
    height: 220px;
    overflow: hidden;
    background: #eef4fb;
}

.case-card--featured .case-card__media {
    height: 300px;
}

.case-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.case-card:hover .case-card__media img {
    transform: scale(1.045);
}

.case-card__body {
    padding: 26px;
}

.case-card__body span {
    display: inline-flex;
    margin-bottom: 12px;
    color: #2386ee;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.case-card__body h3 {
    margin: 0;
    color: #0f172a;
    font-size: 22px;
    font-weight: 760;
    line-height: 1.32;
    letter-spacing: -0.02em;
}

.case-card__body p {
    margin: 12px 0 20px;
    color: rgba(20, 32, 51, 0.68);
    font-size: 15px;
    line-height: 1.75;
}

.case-card__body a {
    color: #2386ee;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.case-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.case-metrics-grid article {
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.case-metrics-grid strong,
.case-metrics-grid span {
    display: block;
}

.case-metrics-grid strong {
    color: #2386ee;
    font-size: clamp(30px, 3.4vw, 46px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.case-metrics-grid span {
    margin-top: 12px;
    color: rgba(20, 32, 51, 0.72);
    font-size: 15px;
    line-height: 1.5;
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    min-height: 260px;
    padding: 30px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
        radial-gradient(circle at 100% 0%, rgba(35, 134, 238, 0.14), transparent 38%);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
    transform: translateY(-4px);
}

.service-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #2386ee;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.service-card h3 {
    margin: 26px 0 0;
    color: #0f172a;
    font-size: 23px;
    font-weight: 760;
    letter-spacing: -0.02em;
}

.service-card p {
    margin: 14px 0 0;
    color: rgba(20, 32, 51, 0.68);
    font-size: 15px;
    line-height: 1.78;
}

.service-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.service-metric-grid article {
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.service-metric-grid strong,
.service-metric-grid span {
    display: block;
}

.service-metric-grid strong {
    color: #2386ee;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.service-metric-grid span {
    margin-top: 12px;
    color: rgba(20, 32, 51, 0.72);
    font-size: 15px;
}

.about-profile-grid,
.about-contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
    gap: 44px;
    align-items: center;
}

.about-profile-card {
    min-height: 260px;
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 100% 0%, rgba(35, 134, 238, 0.18), transparent 38%),
        linear-gradient(135deg, #ffffff 0%, #f6faff 100%);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.1);
}

.about-profile-card strong {
    display: block;
    color: #2386ee;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.about-profile-card p {
    margin: 22px 0 0;
    color: rgba(20, 32, 51, 0.7);
    font-size: 16px;
    line-height: 1.8;
}

.about-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.about-capability-grid article {
    padding: 30px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
}

.about-capability-grid span {
    color: #2386ee;
    font-size: 14px;
    font-weight: 800;
}

.about-capability-grid h3 {
    margin: 20px 0 0;
    color: #0f172a;
    font-size: 22px;
    font-weight: 760;
}

.about-capability-grid p {
    margin: 12px 0 0;
    color: rgba(20, 32, 51, 0.68);
    font-size: 15px;
    line-height: 1.78;
}

.about-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.about-timeline article {
    position: relative;
    padding: 30px;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.about-timeline span {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(35, 134, 238, 0.09);
    color: #2386ee;
    font-size: 13px;
    font-weight: 800;
}

.about-timeline h3 {
    margin: 22px 0 0;
    color: #0f172a;
    font-size: 20px;
    font-weight: 760;
    line-height: 1.35;
}

.about-timeline p {
    margin: 12px 0 0;
    color: rgba(20, 32, 51, 0.68);
    font-size: 15px;
    line-height: 1.78;
}

.about-honor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.about-honor-grid span {
    display: flex;
    align-items: center;
    min-height: 88px;
    padding: 0 24px;
    border-radius: 20px;
    background: #ffffff;
    color: #142033;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.about-contact-card {
    padding: 42px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 92% 18%, rgba(35, 134, 238, 0.2), transparent 32%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 100%);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.1);
}

.about-contact-info {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.about-contact-info a {
    color: #2386ee;
    font-size: clamp(32px, 3.2vw, 46px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    text-decoration: none;
}

.about-contact-info span {
    color: rgba(20, 32, 51, 0.7);
    font-size: 15px;
}

.inner-hero--compact {
    padding-bottom: 72px;
}

.inner-search-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 16px;
    max-width: 860px;
    padding: 10px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.inner-search-panel input {
    width: 100%;
    height: 58px;
    padding: 0 18px;
    border: 0;
    border-radius: 18px;
    background: #f5f8fc;
    color: #0f172a;
    font-size: 17px;
    outline: none;
}

.inner-search-panel button,
.auth-form button {
    border: 0;
    border-radius: 18px;
    background: #2386ee;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.inner-search-panel button:hover,
.auth-form button:hover {
    background: #0f75df;
    box-shadow: 0 16px 30px rgba(35, 134, 238, 0.18);
    transform: translateY(-1px);
}

.inner-empty-state {
    max-width: 860px;
    margin-top: 28px;
    padding: 34px;
    border-radius: 24px;
    background: #f6f9fd;
}

.inner-empty-state h2 {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
    font-weight: 700;
}

.inner-empty-state p {
    margin: 10px 0 0;
    color: rgba(20, 32, 51, 0.64);
    font-size: 15px;
    line-height: 1.8;
}

.auth-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 16%, rgba(35, 134, 238, 0.22), transparent 28%),
        radial-gradient(circle at 86% 78%, rgba(96, 165, 250, 0.24), transparent 32%),
        linear-gradient(135deg, #f7fbff 0%, #edf5ff 48%, #ffffff 100%);
}

.auth-shell {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 56px 20px;
}

.auth-logo {
    position: absolute;
    top: 30px;
    left: 44px;
}

.auth-logo img {
    width: 140px;
    height: auto;
}

.auth-card {
    width: min(100%, 460px);
    padding: 42px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(18px);
}

.auth-card__eyebrow {
    margin: 0 0 12px;
    color: #2386ee;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.auth-card h1 {
    margin: 0;
    color: #0f172a;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.auth-card p {
    margin: 16px 0 0;
    color: rgba(20, 32, 51, 0.66);
    font-size: 15px;
    line-height: 1.8;
}

.auth-form {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.auth-form input {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 16px;
    background: rgba(246, 249, 253, 0.9);
    color: #0f172a;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}

.auth-form input:focus {
    border-color: #2386ee;
    box-shadow: 0 0 0 3px rgba(35, 134, 238, 0.12);
}

.auth-form button {
    height: 56px;
}

.auth-card__links {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
}

.auth-card__links a {
    color: #2386ee;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 1199px) {
    .inner-navbar {
        grid-template-columns: 160px minmax(0, 1fr);
    }

    .inner-navbar__actions {
        display: none;
    }

    .product-listing-grid,
    .value-card-grid,
    .case-listing-grid,
    .service-card-grid,
    .about-capability-grid,
    .about-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-profile-grid,
    .about-contact-card {
        grid-template-columns: 1fr;
    }

    .case-card--featured {
        grid-column: span 2;
    }

    .detail-hero-grid,
    .inner-split,
    .detail-feature-layout {
        grid-template-columns: 1fr;
    }

    .process-timeline,
    .case-metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__panel {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .site-footer__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__contact {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .inner-navbar {
        display: flex;
        min-height: auto;
        padding: 14px 0;
    }

    .inner-navbar__links {
        display: none;
    }

    .inner-hero {
        padding: 108px 0 64px;
    }

    .inner-hero__title {
        font-size: 38px;
    }

    .inner-hero__desc {
        font-size: 17px;
    }

    .inner-section {
        padding: 58px 0;
    }

    .product-listing-grid,
    .value-card-grid,
    .case-listing-grid,
    .service-card-grid,
    .service-metric-grid,
    .about-capability-grid,
    .about-timeline,
    .about-honor-grid,
    .scenario-panel-grid,
    .detail-feature-list,
    .process-timeline,
    .case-metrics-grid {
        grid-template-columns: 1fr;
    }

    .case-card--featured {
        grid-column: auto;
    }

    .case-card__media,
    .case-card--featured .case-card__media {
        height: 220px;
    }

    .inner-search-panel {
        grid-template-columns: 1fr;
    }

    .inner-search-panel button {
        height: 54px;
    }

    .auth-logo {
        position: static;
        margin-bottom: 28px;
    }

    .auth-shell {
        align-content: start;
        justify-items: center;
    }

    .auth-card {
        padding: 30px 24px;
        border-radius: 26px;
    }

.inner-product-card,
.value-card {
    padding: 24px;
}

    .detail-hero-card__panel span {
        font-size: 15px;
    }

    .value-card span {
        width: 72px;
        height: 72px;
        margin-bottom: 16px;
        border-radius: 20px;
        font-size: 22px;
    }

    .detail-hero-card,
    .detail-hero-card img {
        min-height: 320px;
    }

    .site-footer {
        padding: 30px 0 22px;
    }

    .site-footer__panel {
        gap: 24px;
    }

    .site-footer__intro {
        margin-top: 16px;
        max-width: none;
        font-size: 14px;
        line-height: 1.8;
    }

    .site-footer__links,
    .site-footer__contact {
        grid-template-columns: 1fr;
    }

    .site-footer__qrcode-card {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 14px;
    }

    .site-footer__qrcode-box {
        width: 88px;
        height: 88px;
        border-radius: 10px;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 18px;
        margin-top: 16px;
    }

    .site-footer__bottom-links {
        justify-content: flex-start;
        gap: 14px;
    }
}
