.modules-feature-5{--primary-light:var(--dlc-primary-light,#fecf51);--primary-color:var(--dlc-primary-color,#f7892e);--primary-dark:var(--dlc-primary-dark,#F68425);--dark-color:var(--dlc-dark-color,#343a40);--secondary-color:var(--dlc-secondary-color,#6c757d);}
.modules-feature-5 .solution-section{
    padding: 10px 0 70px; /* 增加底部内边距，让整个区块显得更开阔 */
    background:
        radial-gradient(ellipse at top, rgba(247, 137, 46, 0.08), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(246, 132, 37, 0.06), transparent 60%),
        #fff;
    overflow: hidden;
}

/* 标题区：与 social-ops + index.css 一致，保证居中与 wide-line 装饰 */
.modules-feature-5 .solution-header-row {
    margin-bottom: 20px;
    margin-left: -15px;
    margin-right: -15px;
    text-align: center;
}
.modules-feature-5 .solution-header-row:before,
.modules-feature-5 .solution-header-row:after {
    content: " ";
    display: table;
}
.modules-feature-5 .solution-header-row:after {
    clear: both;
}
.modules-feature-5 .solution-header-row.text-center {
    text-align: center;
}
.modules-feature-5 .solution-header-row .fw-bold {
    font-weight: 700;
}
.modules-feature-5 .solution-header-row .col-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    float: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 对齐 dlc-html/css/index.css「版块标题样式」+ social-ops.html 行内字号 */
.modules-feature-5 .solution-section .section-title {
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    font-size: 2.2rem;
    line-height: 1.25;
    text-align: center;
}
.modules-feature-5 .solution-section .section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 5px;
    background: linear-gradient(to bottom, var(--primary-light) 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -1px 1px rgba(0, 0, 0, 0.2);
}
.modules-feature-5 .solution-section .section-title.wide-line {
    z-index: 1;
    position: relative;
    display: inline-block;
}
.modules-feature-5 .solution-section .section-title.wide-line::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 115%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 107, 0, 0.02) 0%, rgba(255, 107, 0, 0.15) 100%);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-bottom: 3px solid rgba(255, 107, 0, 0.5);
    transform: translateX(-50%) perspective(200px) rotateX(72deg);
    border-radius: 16px;
    box-shadow: 0 25px 30px -5px rgba(255, 107, 0, 0.25), inset 0 5px 12px rgba(255, 255, 255, 0.9), inset 0 -3px 6px rgba(255, 107, 0, 0.15);
    z-index: -1;
}

.modules-feature-5 .solution-section .section-subtitle {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--secondary-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.modules-feature-5 .solution-section .section-subtitle.mt-2 {
    margin-top: 0.5rem !important;
}
.modules-feature-5 .solution-section .section-subtitle.mb-0 {
    margin-bottom: 0 !important;
}

.modules-feature-5 .solution-orbit{
    position: relative;
    width: 100%;
    max-width: 720px;
    height: 620px; /* 增加整体高度，从 520px 增加到 640px */
    margin: 10px auto 0;
}

.modules-feature-5 .orbit-ring{
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    pointer-events: none;
    /* 降低颜色浓度 */
    background: radial-gradient(circle, rgba(247, 137, 46, 0) 30%, rgba(247, 137, 46, 0.4) 55%, rgba(247, 137, 46, 0) 75%);
    opacity: 0;
    /* 降低频次，增加周期时长 */
    animation: feature5orbitWarningPulse 4s ease-in-out infinite;
}

.modules-feature-5 .orbit-ring-outer{
    width: 500px;
    height: 500px;
    animation-delay: 2s; /* 错开一半周期 */
}

.modules-feature-5 .orbit-ring-inner{
    width: 500px;
    height: 500px;
    animation-delay: 0s;
}

@keyframes feature5orbitWarningPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.4);
        opacity: 0;
    }
    30% {
        opacity: 0.8; /* 呼吸感：柔和变亮 */
    }
    60% {
        opacity: 0.3; /* 呼吸感：柔和变暗 */
    }
    80% {
        opacity: 0.6; /* 呼吸感：再次微亮 */
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3); /* 减小最大扩散范围 */
        opacity: 0;
    }
}

/* 中心大圆 */
.modules-feature-5 .orbit-center{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 248px;
    height: 248px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 55%, var(--primary-dark) 100%);
    box-shadow:
        0 32px 68px rgba(247, 137, 46, 0.48),
        0 0 0 28px rgba(247, 137, 46, 0.12),
        0 0 120px 28px rgba(247, 137, 46, 0.3),
        0 0 210px 56px rgba(247, 137, 46, 0.18),
        inset 0 8px 18px rgba(255, 255, 255, 0.4),
        inset 0 -10px 22px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 18px 14px;
    box-sizing: border-box;
    z-index: 3;
    cursor: pointer;
    outline: none;
    user-select: none; /* 防止点击时选中文字 */
    -webkit-user-select: none; /* Safari */
    animation: feature5orbitCenterPulse 5s ease-in-out infinite;
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s ease, background 0.45s ease;
}

/* 外层柔和光晕 */
.modules-feature-5 .orbit-center::before{
    content: "";
    position: absolute;
    inset: -122px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(247, 137, 46, 0.6) 0%,
        rgba(247, 137, 46, 0.38) 34%,
        rgba(247, 137, 46, 0.18) 58%,
        rgba(247, 137, 46, 0.06) 74%,
        rgba(247, 137, 46, 0) 100%
    );
    z-index: -1;
    pointer-events: none; /* 关键：防止光晕遮挡底层小圆的 hover 事件 */
    filter: blur(26px);
    opacity: 0.82;
    transform: scale(1);
    animation: feature5orbitBeaconGlowA 1.9s ease-in-out infinite;
    transition: opacity 0.35s ease;
}

/* 第二层外发光（错峰闪烁） */
.modules-feature-5 .orbit-center::after{
    content: "";
    position: absolute;
    inset: -178px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(247, 137, 46, 0.42) 0%,
        rgba(247, 137, 46, 0.2) 36%,
        rgba(247, 137, 46, 0.08) 62%,
        rgba(247, 137, 46, 0.02) 80%,
        rgba(247, 137, 46, 0) 100%
    );
    z-index: -2;
    pointer-events: none;
    filter: blur(40px);
    opacity: 0.58;
    transform: scale(1.02);
    animation: feature5orbitBeaconGlowB 1.9s ease-in-out infinite 0.95s;
    transition: opacity 0.35s ease;
}

/* hover 放大 + 强化阴影 */
.modules-feature-5 .orbit-center:hover,
.modules-feature-5 .orbit-center:focus-visible{
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow:
        0 40px 80px rgba(247, 137, 46, 0.55),
        0 0 0 10px rgba(247, 137, 46, 0.08),
        inset 0 10px 22px rgba(255, 255, 255, 0.55),
        inset 0 -12px 26px rgba(0, 0, 0, 0.18);
    background: linear-gradient(135deg, #ffd76b 0%, var(--primary-color) 50%, #e16f1a 100%);
    animation-play-state: paused;
}

.modules-feature-5 .orbit-center:hover::before,
.modules-feature-5 .orbit-center:focus-visible::before{
    opacity: 1;
}

.modules-feature-5 .orbit-center:hover::after,
.modules-feature-5 .orbit-center:focus-visible::after{
    opacity: 0.72;
}

/* 点击/激活：短促缩放反馈 */
.modules-feature-5 .orbit-center:active{
    transform: translate(-50%, -50%) scale(0.97);
    transition: transform 0.15s ease;
}

/* JS 触发的脉冲扩散 */
.modules-feature-5 .orbit-center.is-bursting{
    animation: feature5orbitCenterPulse 5s ease-in-out infinite, feature5orbitCenterShake 0.5s ease;
}

.modules-feature-5 .orbit-burst-ring{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(247, 137, 46, 0.65);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.85;
    pointer-events: none;
    animation: feature5orbitBurstWave 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes feature5orbitBeaconGlowA {
    0%, 100% {
        opacity: 0.62;
        transform: scale(0.96);
    }
    35% {
        opacity: 1;
        transform: scale(1.1);
    }
    55% {
        opacity: 0.8;
        transform: scale(1.03);
    }
    70% {
        opacity: 1;
        transform: scale(1.12);
    }
}

@keyframes feature5orbitBeaconGlowB {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.98);
    }
    30% {
        opacity: 0.7;
        transform: scale(1.08);
    }
    52% {
        opacity: 0.52;
        transform: scale(1.02);
    }
    74% {
        opacity: 0.78;
        transform: scale(1.14);
    }
}

@keyframes feature5orbitBurstWave {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.85; border-width: 4px; }
    100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; border-width: 1px; }
}

@keyframes feature5orbitCenterShake {
    0%, 100% { transform: translate(-50%, -50%) scale(1.08); }
    30% { transform: translate(-50%, -50%) scale(1.14); }
    60% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes feature5orbitCenterPulse {
    0%, 100% {
        box-shadow:
            0 32px 68px rgba(247, 137, 46, 0.48),
            0 0 0 28px rgba(247, 137, 46, 0.12),
            0 0 120px 28px rgba(247, 137, 46, 0.3),
            0 0 210px 56px rgba(247, 137, 46, 0.18),
            inset 0 8px 18px rgba(255, 255, 255, 0.4),
            inset 0 -10px 22px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow:
            0 40px 92px rgba(247, 137, 46, 0.64),
            0 0 0 34px rgba(247, 137, 46, 0.16),
            0 0 160px 44px rgba(247, 137, 46, 0.36),
            0 0 280px 76px rgba(247, 137, 46, 0.24),
            inset 0 8px 18px rgba(255, 255, 255, 0.45),
            inset 0 -10px 22px rgba(0, 0, 0, 0.15);
    }
}

@keyframes orbitCenterGlow {
    0%, 100% { opacity: 0.86; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

@keyframes orbitCenterSweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.modules-feature-5 .orbit-center-inner{
    position: relative;
    z-index: 2;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.modules-feature-5 .orbit-center-icon{
    width: 48px;
    height: auto;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.modules-feature-5 .orbit-center:hover .orbit-center-inner{
    transform: translateY(-2px);
}

.modules-feature-5 .orbit-center:hover .orbit-center-icon{
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.modules-feature-5 .orbit-center-title{
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 8px;
    max-width: 100%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: letter-spacing 0.4s ease, text-shadow 0.4s ease;
    word-break: break-word;
}

.modules-feature-5 .orbit-center:hover .orbit-center-title{
    letter-spacing: 1px;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.modules-feature-5 .orbit-center-tags{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    gap: 5px 6px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 0 2px;
}

.modules-feature-5 .orbit-center-tags span{
    display: inline-block;
    flex: 0 1 auto;
    max-width: 100%;
    padding: 3px 9px;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease;
    box-sizing: border-box;
    text-align: center;
    word-break: break-all;
}

.modules-feature-5 .orbit-center:hover .orbit-center-tags span:nth-child(1){
    transform: translateY(-3px) rotate(-4deg);
}

.modules-feature-5 .orbit-center:hover .orbit-center-tags span:nth-child(2){
    transform: translateY(-5px);
}

.modules-feature-5 .orbit-center:hover .orbit-center-tags span:nth-child(3){
    transform: translateY(-3px) rotate(4deg);
}

.modules-feature-5 .orbit-center-tags span:hover{
    background: #fff;
    color: var(--primary-color);
    transform: scale(1.1) !important;
}

/* hover 时周围小圆整体稍微往中心靠拢，突出焦点 */
.modules-feature-5 .solution-orbit:hover .orbit-ring-outer{
    animation-duration: 3s;
}

.modules-feature-5 .solution-orbit:hover .orbit-ring-inner{
    animation-duration: 3s;
}

/* 周围 8 个小圆定位 */
.modules-feature-5 .orbit-node{
    position: absolute;
    width: 120px;
    height: 120px;
    z-index: 2;
    animation: feature5orbitFloat 4.5s ease-in-out infinite;
}

.modules-feature-5 .orbit-node-inner{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    /* 取消真实的边框，改用 box-shadow 模拟边框 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    box-shadow:
        0 0 0 2px rgba(247, 137, 46, 0.18), /* 模拟原先的浅色边框 */
        0 14px 30px rgba(247, 137, 46, 0.15),
        inset 0 2px 6px rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: default;
    /* 防止背景渐变溢出 */
    position: relative;
    overflow: hidden;
}

/* 用伪元素做 hover 渐变背景，以实现完美的颜色和边框过渡 */
.modules-feature-5 .orbit-node-inner::before{
    content: '';
    position: absolute;
    inset: -2px; /* 让伪元素向外扩张一点，盖住原本用 box-shadow 模拟的边框区域 */
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.modules-feature-5 .orbit-node-inner i{
    font-size: 1.45rem; /* 从 1.2rem 增加到 1.45rem */
    color: var(--primary-color);
    margin-bottom: 6px; /* 从 4px 增加到 6px 稍微增加点间距 */
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.modules-feature-5 .orbit-node-inner span{
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: 0.5px;
    transition: color 0.4s ease;
    position: relative;
    z-index: 1;
}

.modules-feature-5 .orbit-node:hover{
    animation-play-state: paused;
    z-index: 5;
}

.modules-feature-5 .orbit-node:hover .orbit-node-inner{
    transform: scale(1.1);
    box-shadow: 
        0 0 0 2px transparent, /* 隐藏原本的模拟边框 */
        0 22px 45px rgba(247, 137, 46, 0.4);
}

.modules-feature-5 .orbit-node:hover .orbit-node-inner::before{
    opacity: 1;
}

.modules-feature-5 .orbit-node:hover .orbit-node-inner i,
.modules-feature-5 .orbit-node:hover .orbit-node-inner span{
    color: #fff;
}

/* 浮动动画（错开相位） */
@keyframes feature5orbitFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.modules-feature-5 .orbit-node-top{ top: 4%; left: 50%; margin-left: -60px; animation-delay: 0s; }
.modules-feature-5 .orbit-node-right-top{ top: 15%; right: 14%; animation-delay: 0.3s; }
.modules-feature-5 .orbit-node-right{ top: 50%; right: 4%; margin-top: -60px; animation-delay: 0.6s; }
.modules-feature-5 .orbit-node-right-bottom{ bottom: 15%; right: 14%; animation-delay: 0.9s; }
.modules-feature-5 .orbit-node-bottom{ bottom: 4%; left: 50%; margin-left: -60px; animation-delay: 1.2s; }
.modules-feature-5 .orbit-node-left-bottom{ bottom: 15%; left: 14%; animation-delay: 1.5s; }
.modules-feature-5 .orbit-node-left{ top: 50%; left: 4%; margin-top: -60px; animation-delay: 1.8s; }
.modules-feature-5 .orbit-node-left-top{ top: 15%; left: 14%; animation-delay: 2.1s; }

/* 连接线：从中心向各小圆延伸的淡色线 */
.modules-feature-5 .solution-orbit::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 360px;
    height: 360px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(247, 137, 46, 0.14), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

/* 响应式：平板 */
@media (max-width: 991px) {
    .modules-feature-5 .solution-orbit{
        max-width: 560px;
        height: 540px; /* 从 460px 增加到 540px */
    }
    .modules-feature-5 .orbit-ring-outer{ width: 420px; height: 420px; }
    .modules-feature-5 .orbit-ring-inner{ width: 420px; height: 420px; }
    .modules-feature-5 .solution-orbit::before{ width: 300px; height: 300px; }
    .modules-feature-5 .orbit-center{ width: 206px; height: 206px; padding: 16px 12px; }
    .modules-feature-5 .orbit-center-icon{ width: 38px; margin-bottom: 6px; }
    .modules-feature-5 .orbit-center-title{ font-size: 1.05rem; margin-bottom: 6px; line-height: 1.32; }
    .modules-feature-5 .orbit-center-tags span{ padding: 2px 8px; font-size: 0.7rem; }
    .modules-feature-5 .orbit-node{ width: 96px; height: 96px; }
    .modules-feature-5 .orbit-node-inner i{ font-size: 1.25rem; margin-bottom: 5px; } /* 从 1.1rem 调大 */
    .modules-feature-5 .orbit-node-inner span{ font-size: 0.88rem; }
    .modules-feature-5 .orbit-node-top{ margin-left: -48px; }
    .modules-feature-5 .orbit-node-bottom{ margin-left: -48px; }
    .modules-feature-5 .orbit-node-right{ margin-top: -48px; }
    .modules-feature-5 .orbit-node-left{ margin-top: -48px; }
}

/* 响应式：手机（保留环绕布局，整体缩小） */
@media (max-width: 767px) {
    .modules-feature-5 .solution-orbit{
        width: 100%;
        max-width: 360px;
        height: 360px;
        margin: 8px auto 0;
        padding: 0;
    }

    .modules-feature-5 .orbit-ring-outer{
        width: 320px;
        height: 320px;
    }

    .modules-feature-5 .orbit-ring-inner{
        width: 320px;
        height: 320px;
    }

    .modules-feature-5 .solution-orbit::before{
        width: 250px;
        height: 250px;
    }

    .modules-feature-5 .orbit-center{
        width: 170px;
        height: 170px;
        padding: 10px 8px;
    }

    .modules-feature-5 .orbit-center::before{
        inset: -72px;
        filter: blur(18px);
    }

    .modules-feature-5 .orbit-center::after{
        inset: -108px;
        filter: blur(26px);
    }

    .modules-feature-5 .orbit-center-icon{
        width: 32px;
        margin-bottom: 4px;
    }

    .modules-feature-5 .orbit-center-title{
        font-size: 0.95rem;
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .modules-feature-5 .orbit-center-tags{
        gap: 4px 5px;
    }

    .modules-feature-5 .orbit-center-tags span{
        padding: 2px 6px;
        font-size: 0.62rem;
        max-width: calc(50% - 4px);
    }

    .modules-feature-5 .orbit-node{
        width: 66px;
        height: 66px;
        animation-duration: 4.5s;
    }

    .modules-feature-5 .orbit-node-inner{
        border-radius: 50%;
        padding: 6px;
        flex-direction: column;
        gap: 0;
    }

    .modules-feature-5 .orbit-node-inner i{
        margin-bottom: 2px;
        font-size: 0.9rem;
    }

    .modules-feature-5 .orbit-node-inner span{
        font-size: 0.62rem;
        line-height: 1.2;
        letter-spacing: 0;
    }

    .modules-feature-5 .orbit-node-top{ top: 0%; left: 50%; margin-left: -33px; }
    .modules-feature-5 .orbit-node-right-top{ top: 12%; right: 5%; }
    .modules-feature-5 .orbit-node-right{ top: 50%; right: 0%; margin-top: -33px; }
    .modules-feature-5 .orbit-node-right-bottom{ bottom: 12%; right: 5%; }
    .modules-feature-5 .orbit-node-bottom{ bottom: 0%; left: 50%; margin-left: -33px; }
    .modules-feature-5 .orbit-node-left-bottom{ bottom: 12%; left: 5%; }
    .modules-feature-5 .orbit-node-left{ top: 50%; left: 0%; margin-top: -33px; }
    .modules-feature-5 .orbit-node-left-top{ top: 12%; left: 5%; }
}

/* 主题图标 + 链接节点（fea 用图片图标时） */
.modules-feature-5 .orbit-node-inner .wpcom-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    font-size: 1.45rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}
.modules-feature-5 .orbit-node-inner .wpcom-icon img {
    max-width: 28px;
    max-height: 28px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.modules-feature-5 .orbit-node:hover .orbit-node-inner .wpcom-icon {
    color: #fff;
}
.modules-feature-5 a.orbit-node {
    color: inherit;
    text-decoration: none;
}
.modules-feature-5 a.orbit-node:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

@media (max-width: 767px) {
    .modules-feature-5 .solution-section {
        padding: 30px 0 50px;
    }
}
@media (max-width: 768px) {
    .modules-feature-5 .solution-section .section-title {
        font-size: 1.7rem !important;
    }
    .modules-feature-5 .solution-section .section-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.6;
    }
}
@media (max-width: 576px) {
    .modules-feature-5 .solution-section .section-title {
        font-size: 1.45rem !important;
    }
    .modules-feature-5 .solution-section .section-subtitle {
        font-size: 0.9rem !important;
    }
}
