/* Trend Enerji - Neden Biz sayfasına özel bileşenler */

.nb-intro {
    max-width: 880px;
}

.nb-process {
    position: relative;
}
.nb-process-line {
    position: absolute;
    top: 34px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: #E3E6EA;
    z-index: 0;
}
.nb-step {
    position: relative;
    z-index: 1;
    text-align: center;
}
.nb-step-num {
    width: 68px;
    height: 68px;
    line-height: 68px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 800;
    font-size: 1.4rem;
    margin: 0 auto 1.25rem;
}
.nb-step h5 {
    margin-bottom: .5rem;
}

.nb-reason {
    border: 1px solid #EEEEEE;
    border-radius: .75rem;
    padding: 2rem;
    height: 100%;
    background: #fff;
    transition: box-shadow .2s, transform .2s;
}
.nb-reason:hover {
    box-shadow: 0 0 30px rgba(0,0,0,.08);
    transform: translateY(-4px);
}
.nb-reason .btn-lg-square {
    margin-bottom: 1.25rem;
}

.nb-stat-bar {
    position: relative;
    background: var(--dark);
    border-radius: .75rem;
    overflow: hidden;
    isolation: isolate;
}
.nb-stat-bar::before {
    content: "";
    position: absolute;
    inset: -60%;
    z-index: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(54, 95, 155, .55), transparent 55%),
        radial-gradient(circle at 85% 75%, rgba(54, 95, 155, .40), transparent 55%),
        linear-gradient(120deg, rgba(54, 95, 155, .22), rgba(26, 42, 54, 0) 40%, rgba(54, 95, 155, .22));
    background-size: 200% 200%;
    animation: nbGradientShift 14s ease-in-out infinite;
}
.nb-stat-bar > .row {
    position: relative;
    z-index: 1;
}
.nb-stat-bar .nb-stat {
    padding: 2.5rem 1rem;
    text-align: center;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,.12);
}
.nb-stat-bar .col-6:last-child .nb-stat,
.nb-stat-bar .col-lg-3:last-child .nb-stat {
    border-right: none;
}
.nb-stat h2 {
    color: #fff;
    margin-bottom: .25rem;
    text-shadow: 0 0 24px rgba(54, 95, 155, .65);
    animation: nbGlowPulse 4s ease-in-out infinite;
}
.nb-stat span {
    color: rgba(255,255,255,.65);
    font-size: .85rem;
}

@keyframes nbGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes nbGlowPulse {
    0%, 100% { text-shadow: 0 0 18px rgba(54, 95, 155, .5); }
    50% { text-shadow: 0 0 32px rgba(54, 95, 155, .9); }
}

@media (prefers-reduced-motion: reduce) {
    .nb-stat-bar::before,
    .nb-stat h2 {
        animation: none;
    }
}

@media (max-width: 991.98px) {
    .nb-process-line { display: none; }
    .nb-step { margin-bottom: 2rem; }
}
