.why-tigera-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
}
.why-tigera-section .section-container {
    max-width: 1164px;
}
#why-tigera .ti-category {
    margin-bottom: 20px;
}
.home-title-wrapper {
    text-align: center;
}
#why-tigera .home-section-title {
    max-width: 925px;
    margin: 0 auto;
}
#why-tigera .intro-text {
    max-width: 925px;
    margin: 9px auto;
    text-align: center;
    line-height: 1.3;
}
.why-tigera-timeline {
    --timeline-track-width: 242px;
    position: relative;
    margin: 80px auto 0;
    z-index: 1;
}
.timeline-line {
    position: absolute;
    left: 50%;
    top: -30px;
    width: var(--timeline-track-width);
    height: 100%;
    padding: 0 20px;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
}
.timeline-line svg {
    width: 100%;
    max-width: 202px;
    height: 100%;
    overflow: visible !important;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 120px, black calc(100% - 120px), transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 120px, black calc(100% - 120px), transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.timeline-base-path {
    stroke-width: 2.5;
    stroke-linecap: round;
    fill: none;
}
.timeline-line-progress {
    filter: drop-shadow(0 0 8px rgba(255, 206, 120, 0.5));
}
.timeline-dot {
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: drop-shadow(0 0 12px rgba(255, 165, 0, 0.72)) drop-shadow(0 0 6px rgba(231, 109, 44, 0.52));
}

body:not(.page-template-page-tigera-about-tpl) .timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--timeline-track-width) minmax(0, 1fr);
    align-items: center;
    margin-bottom: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}
.timeline-item.left {
    text-align: right;
}
.timeline-item.right {
    text-align: left;
}
.timeline-item.faded {
    opacity: 1;
}
.timeline-item.active {
    opacity: 1;
}

.timeline-icon-wrapper {
    width: var(--timeline-track-width);
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-self: center;
    z-index: 3;
}
.timeline-icon {
    position: relative;
    grid-column: 2;
    justify-self: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0;
    flex-shrink: 0;
    z-index: 5;
    opacity: 0.3;
    visibility: hidden;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.timeline-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.3) 0%, rgba(231, 109, 44, 0.3) 100%);
    opacity: 0;
    animation: shineIcon 2s ease-in-out;
    pointer-events: none;
}
.timeline-item.active .timeline-icon::before {
    animation: shineIcon 2s ease-in-out;
}
.timeline-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #FFA500;
}
.timeline-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
}
.timeline-content {
    position: relative;
    grid-row: 1;
    align-self: center;
    width: 100%;
    max-width: 442px;
    min-height: 179px;
    margin: 0;
    padding: 20px 22px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: hidden;
    transition: background 0.35s ease, backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease;
    z-index: 3;
}
.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    background: linear-gradient(90deg, rgba(255, 165, 0, 0) 0%, rgba(255, 165, 0, 0.2) 35%, rgba(231, 109, 44, 0.24) 50%, rgba(255, 165, 0, 0.2) 65%, rgba(231, 109, 44, 0) 100%);
}
.timeline-item.left .timeline-content::before {
    left: -100%;
}
.timeline-item.right .timeline-content::before {
    right: -100%;
}
.timeline-item.left .timeline-content {
    grid-column: 1;
    justify-self: end;
    text-align: right;
}
.timeline-item.right .timeline-content {
    grid-column: 3;
    justify-self: start;
    text-align: left;
}
.timeline-title {
    padding: 0;
    font-size: 24px;
    line-height: 1;
    position: relative;
    z-index: 1;
}
.timeline-description {
    margin-bottom: 0;
    line-height: 1.28;
    position: relative;
    z-index: 1;
}
.timeline-item.left.active .timeline-content::before {
    opacity: 1;
    animation: timelineSweep 1s ease-out forwards;
}
.timeline-item.right.active .timeline-content::before {
    opacity: 1;
    animation: timelineSweepLeft 1s ease-out forwards;
}
.timeline-item.active .timeline-content {
    background: linear-gradient(90deg, rgba(255, 165, 0, 0.1) 0%, rgba(231, 109, 44, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-in.sweep-applied {
    opacity: 1;
    transform: translateY(0);
}

@keyframes shineIcon {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        transform: scale(1.4);
    }
}
@keyframes timelineSweep {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}
@keyframes timelineSweepLeft {
    0% {
        right: -100%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        right: 100%;
        opacity: 0;
    }
}

@media only screen and (max-width: 1199px) {
    .why-tigera-timeline {
        max-width: 980px;
    }
    .timeline-content {
        max-width: 360px;
        min-height: 160px;
        padding: 16px 14px 16px 16px;
    }
}

@media only screen and (max-width: 1023px) {
    .why-tigera-timeline {
        --timeline-track-width: 182px;
        --tablet-content-overlap: 36px;
    }
    .timeline-content {
        width: calc(100% + var(--tablet-content-overlap));
        max-width: none;
        min-height: 130px;
        padding: 16px 18px;
    }
    .timeline-item.right .timeline-content {
        margin-left: calc(var(--tablet-content-overlap) * -1);
        margin-right: -14px;
    }
    .timeline-item.left .timeline-content {
        margin-right: calc(var(--tablet-content-overlap) * -1);
        margin-left: -10px;
    }
    .timeline-title {
        margin-bottom: 8px;
        font-size: var(--font-size-xl);
    }
    .timeline-description {
        font-size: var(--font-size-sm);
    }
    .timeline-icon {
        width: 94px;
        height: 94px;
    }
}

@media (max-width: 768px) {
    .timeline-icon {
        transform: none;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .why-tigera-timeline {
        --timeline-track-width: 242px;
        margin: 50px 0 0;
    }
    #why-tigera .timeline-line {
        position: absolute;
        width: 100vw;
        left: 50%;
        top: -60px;
        height: calc(100% + 60px);
        padding: 0;
        z-index: 0;
        pointer-events: none;
        transform: translateX(-50%);
    }
    #why-tigera .timeline-line svg {
        overflow: visible !important;
        max-width: none;
        width: 100vw;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 60px, black calc(100% - 60px), transparent 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 60px, black calc(100% - 60px), transparent 100%);
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }
    #why-tigera .timeline-item {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        gap: 0;
        min-height: 260px;
        padding: 0 10px 12px;
        pointer-events: none;
    }

    #why-tigera .timeline-item * {
        pointer-events: auto;
    }
    #why-tigera .timeline-item + .timeline-item {
        margin-top: 0;
    }
    #why-tigera .timeline-item.left,
    #why-tigera .timeline-item.right {
        flex-direction: column;
        text-align: center;
    }
    #why-tigera .timeline-icon-wrapper {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: var(--timeline-track-width);
        z-index: 5;
    }
    #why-tigera .timeline-icon img {
        width: 36px;
        height: 36px;
    }
    #why-tigera .timeline-content {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        margin: 0;
        margin-top: 110px;
        text-align: center;
        z-index: 4;
        position: relative;
    }
    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        margin: 0;
        justify-self: center;
        text-align: center;
    }
    .timeline-item.faded {
        opacity: 1;
    }
}
