/* ==========================================================================
   Base/Features — Feature list with image and gradient background
   Merged from Features.css + ThemeFeatures.css (cleaned: no @import, no :root)
   ========================================================================== */

.features-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
    background: linear-gradient(120deg, var(--section-bg-1) 60%, color-mix(in srgb, var(--primary-color) 8%, white) 100%),
                radial-gradient(circle at 85% 20%, rgba(186, 199, 217, 0.17) 0%, rgba(255,255,255,0) 80%),
                linear-gradient(110deg, rgba(160, 175, 190, 0.10) 10%, rgba(255,255,255,0.1) 70%);
    color: var(--primary-color);
    font-family: var(--font-sans);
    overflow: hidden;
}

    .features-section::before {
        content: '';
        position: absolute;
        z-index: 0;
        width: 500px;
        height: 500px;
        left: -180px;
        top: 30%;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(192,202,216,0.13) 0%, rgba(172,182,202,0.07) 60%, transparent 90%);
        filter: blur(1.5px);
        pointer-events: none;
    }

    .features-section::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background: radial-gradient(ellipse at 50% 75%, rgba(165, 185, 205, 0.11) 0%, transparent 70%);
        pointer-events: none;
    }

.features-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.features-text {
    flex: 1;
    text-align: left;
}

.features-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.045em;
    line-height: 1.1;
    margin-bottom: 1.6rem;
    margin-top: 0.2rem;
}

@supports (-webkit-background-clip: text) {
    .features-title {
        background: linear-gradient(92deg, color-mix(in srgb, var(--primary-color) 28%, white) 10%, color-mix(in srgb, var(--primary-color) 38%, white) 55%, color-mix(in srgb, var(--primary-color) 12%, white) 90%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

@media (max-width: 700px) {
    .features-title {
        font-size: 1.5rem;
    }
}

.features-list {
    list-style: none;
    font-size: 1.125rem;
    line-height: 1.75;
    padding-left: 1.8em;
    margin-bottom: 0;
}

    .features-list li {
        position: relative;
        padding-left: 2em;
        margin-bottom: 1.1rem;
        font-weight: 400;
        color: var(--primary-color);
        background: transparent;
        letter-spacing: 0.01em;
    }

        .features-list li::before {
            content: '';
            display: inline-block;
            width: 1.25em;
            height: 1.25em;
            background: url('/images/icons/silver-check.png') no-repeat center center/contain;
            position: absolute;
            left: 0;
            top: 0.18em;
            filter: drop-shadow(0 1.5px 4px rgba(160,170,190,0.13));
        }

.features-image-wrapper {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.features-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(130, 143, 158, 0.11), 0 2px 16px rgba(90, 105, 125, 0.07);
    border: 1.5px solid color-mix(in srgb, var(--primary-color) 12%, white);
    background: linear-gradient(120deg, var(--section-bg-1) 60%, color-mix(in srgb, var(--primary-color) 8%, white) 100%);
}
