﻿.features-container {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.page-title {
    font-weight: 700;
    color: #000;
}

.text-muted {
    color: #555;
}

.group-section {
    margin-bottom: 4rem;
}

.group-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.group-title {
    font-weight: 600;
}

.group-icon {
    color: #BBA96C;
    background: rgba(187, 169, 108, 0.15);
    padding: 0.6rem;
    border-radius: 12px;
}

.feature-card {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .feature-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

.feature-inner {
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    background: linear-gradient(145deg, #fff, #fafafa);
    height: 100%;
    padding: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .feature-inner:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    }

.feature-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature-icon {
    color: #BBA96C;
}

.feature-name {
    font-weight: 600;
    color: #000;
}

.feature-description {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.55;
}
