/* Additional styles specific to feature page */
.feature-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(63, 53, 191, 0.1), rgba(127, 137, 248, 0.1));
}

.feature-benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-benefit-card:hover {
    transform: translateY(-5px);
}

.feature-steps {
    counter-reset: step-counter;
}

.feature-step {
    position: relative;
    padding-left: 3rem;
}

.feature-step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #3B82F6;
}

.comparison-table th {
    background: rgba(59, 130, 246, 0.1);
    padding: 1rem;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    margin: 1rem 0;
}

.pricing-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.02);
}

.key-benefits .kb-icon{
    width: 32px;
    height: 32px;
}
.kb-item{
    transition: all 0.3s ease;
}
.kb-item:hover{
    border-color: #3B82F6;
    background-color: rgba(125, 211, 252, 0.1);
}
.key-benefits{
    background: url(../images/bg-blue-gradient.png) center bottom / cover no-repeat;
}
.feature-pricing{
    background: url(../images/bg-blue-gradient-inv.png) center top no-repeat;
}
.feature-related-plugins{
    background: url(../images/bg-blue-gradient.png) center bottom / cover no-repeat;
}

@media (max-width: 768px) {
    .kb-item p{
        line-height: 1.2;
    }
}