/* ========= 数据卡片增强样式 ========= */
/* 优化"身份已成为网络攻击的首要目标"三个数据卡片的显示风格和交互动效 */

/* 数据卡片容器 - 透明背景，仅保留边框 */
.light-content .alt-features-item.box-shadow {
    background: transparent !important;
    border: 1px solid rgba(54, 201, 88, 0.25) !important;
    border-radius: 2px !important;
    padding: 40px 30px !important;
    box-shadow: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;

    /* 初始动画状态 */
    opacity: 0;
    transform: translateY(30px);
}

/* 渐入动画 */
.light-content .alt-features-item.box-shadow.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* 悬停效果 - 保持透明背景，增强边框 */
.light-content .alt-features-item.box-shadow:hover {
    transform: translateY(-12px) !important;
    border-color: rgba(54, 201, 88, 0.6) !important;
    box-shadow: 0 8px 24px rgba(54, 201, 88, 0.12), 0 0 40px rgba(54, 201, 88, 0.08) !important;
    background: transparent !important;
}

/* 卡片内发光效果 */
.light-content .alt-features-item.box-shadow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(54, 201, 88, 0.6) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.light-content .alt-features-item.box-shadow:hover::before {
    opacity: 1;
}

/* 隐藏图标，简化视觉元素 */
.light-content .alt-features-icon {
    display: none !important;
}

/* 数字（关键强调 - 使用原来的红色）*/
.light-content .h2 {
    font-size: 64px !important;
    font-weight: 700 !important;
    color: #FF4D4F !important;
    margin-bottom: 24px !important;
    margin-top: 8px !important;
    line-height: 1.1 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.02em;
}

.light-content .alt-features-item.box-shadow:hover .h2 {
    transform: scale(1.03);
}

/* 卡片标题 - 允许多行显示 */
.light-content .alt-features-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #FFFFFF !important;
    margin-bottom: 16px !important;
    line-height: 1.4 !important;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    white-space: normal !important;
    min-height: 50px;
}

.light-content .alt-features-item.box-shadow:hover .alt-features-title {
    color: #FFFFFF !important;
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.1);
}

/* 卡片描述 - 降低视觉权重 */
.light-content .alt-features-descr {
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #999999 !important;
    line-height: 1.75 !important;
    margin-bottom: 0 !important;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.light-content .alt-features-item.box-shadow:hover .alt-features-descr {
    opacity: 1;
    color: #AAAAAA !important;
}

/* 依次延迟动画 */
.light-content .alt-features-item.box-shadow:nth-child(1) {
    transition-delay: 0s;
}

.light-content .alt-features-item.box-shadow:nth-child(2) {
    transition-delay: 0.15s;
}

.light-content .alt-features-item.box-shadow:nth-child(3) {
    transition-delay: 0.3s;
}

/* ========= 响应式适配 ========= */

/* 平板设备 */
@media (max-width: 1199px) {
    .light-content .alt-features-item.box-shadow {
        padding: 35px 25px !important;
    }

    .light-content .h2 {
        font-size: 56px !important;
        margin-bottom: 20px !important;
    }

    .light-content .alt-features-title {
        font-size: 17px !important;
        margin-bottom: 14px !important;
    }

    .light-content .alt-features-descr {
        font-size: 14px !important;
    }
}

/* 手机设备 */
@media (max-width: 767px) {
    .light-content .alt-features-item.box-shadow {
        padding: 32px 24px !important;
    }

    .light-content .h2 {
        font-size: 52px !important;
        margin-bottom: 20px !important;
        margin-top: 4px !important;
    }

    .light-content .alt-features-title {
        font-size: 16px !important;
        margin-bottom: 14px !important;
        white-space: normal !important;
    }

    .light-content .alt-features-descr {
        font-size: 14px !important;
    }

    .light-content .alt-features-item.box-shadow:hover {
        transform: translateY(-8px) !important;
    }
}

/* 性能优化 */
.light-content .alt-features-item.box-shadow {
    will-change: transform, opacity;
}

/* 尊重用户偏好 */
@media (prefers-reduced-motion: reduce) {
    .light-content .alt-features-item.box-shadow,
    .light-content .alt-features-icon,
    .light-content .h2,
    .light-content .alt-features-title {
        transition: none !important;
    }

    .light-content .alt-features-item.box-shadow {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* 触摸设备优化 */
@media (hover: none) {
    .light-content .alt-features-item.box-shadow:hover {
        transform: translateY(-6px) !important;
    }
}

/* ========= Gartner 总结陈词样式 ========= */
/* 大气国际化设计，单行显示，极简高端 */

.gartner-quote-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    padding: 32px 50px;
    background: linear-gradient(135deg,
        rgba(54, 201, 88, 0.05) 0%,
        rgba(54, 201, 88, 0.02) 50%,
        transparent 100%);
    border: 1px solid rgba(54, 201, 88, 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

/* 左侧装饰条 */
.gartner-quote-box::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent 0%, #36c958 50%, transparent 100%);
    opacity: 0.8;
    transition: all 0.4s ease;
}

/* 装饰性背景光晕 */
.gartner-quote-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(54, 201, 88, 0.15) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease, left 0.5s ease;
}

.gartner-quote-box:hover::before {
    opacity: 1;
    left: 0;
}

.gartner-quote-box:hover::after {
    width: 4px;
    box-shadow: 0 0 20px rgba(54, 201, 88, 0.6);
}

/* 悬停效果 - 更微妙的缩放 */
.gartner-quote-box:hover {
    transform: scale(1.01);
    border-color: rgba(54, 201, 88, 0.4);
    box-shadow: 0 8px 32px rgba(54, 201, 88, 0.12),
                0 0 60px rgba(54, 201, 88, 0.08);
}

/* 图标样式 - 更大更醒目 */
.gartner-icon {
    font-size: 42px;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(54, 201, 88, 0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.gartner-quote-box:hover .gartner-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 6px 20px rgba(54, 201, 88, 0.6));
}

/* 内容区域 - 单行布局 */
.gartner-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

/* 标签样式 - 更突出 */
.gartner-label {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    color: #36c958;
    letter-spacing: 1px;
    text-transform: none;
    text-shadow: 0 2px 8px rgba(54, 201, 88, 0.3);
    font-family: 'DM Sans', -apple-system, sans-serif;
    position: relative;
}

/* 标签后的装饰点 */
.gartner-label::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #36c958;
    border-radius: 50%;
    margin-left: 10px;
    vertical-align: middle;
    box-shadow: 0 0 8px rgba(54, 201, 88, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
}

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

/* 文本样式 - 单行显示，更大气 */
.gartner-text {
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-family: 'DM Sans', -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* 响应式设计 - 平板 */
@media (max-width: 1200px) {
    .gartner-quote-box {
        padding: 28px 40px;
        gap: 20px;
    }

    .gartner-icon {
        font-size: 36px;
    }

    .gartner-label {
        font-size: 15px;
    }

    .gartner-text {
        font-size: 15px;
    }
}

/* 响应式设计 - 小平板 */
@media (max-width: 1024px) {
    .gartner-quote-box {
        padding: 24px 32px;
        gap: 18px;
    }

    .gartner-icon {
        font-size: 32px;
    }

    .gartner-label {
        font-size: 14px;
    }

    .gartner-text {
        font-size: 14px;
    }
}

/* 响应式设计 - 手机（允许折行） */
@media (max-width: 768px) {
    .gartner-quote-box {
        padding: 24px 28px;
        gap: 16px;
        flex-direction: row;
        justify-content: flex-start;
    }

    .gartner-icon {
        font-size: 36px;
    }

    .gartner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        white-space: normal;
    }

    .gartner-label {
        font-size: 14px;
        letter-spacing: 0.8px;
    }

    .gartner-label::after {
        display: none;
    }

    .gartner-text {
        font-size: 14px;
        line-height: 1.6;
        white-space: normal;
    }

    .gartner-quote-box:hover {
        transform: scale(1.005);
    }
}

/* 响应式设计 - 小屏手机 */
@media (max-width: 480px) {
    .gartner-quote-box {
        padding: 20px 20px;
        gap: 14px;
    }

    .gartner-icon {
        font-size: 32px;
    }

    .gartner-label {
        font-size: 13px;
    }

    .gartner-text {
        font-size: 13px;
    }
}

/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
    .gartner-quote-box,
    .gartner-icon {
        transition: none !important;
    }

    .gartner-quote-box:hover {
        transform: none;
    }

    .gartner-quote-box:hover .gartner-icon {
        transform: none;
    }
}
