@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;700&display=swap');
:root {
    --platinum-title: #7e8793;
}
.features-section {
    /* Layered platinum gradient background with soft light effects */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem;
    min-height: 420px;
    background: linear-gradient(120deg, #f7fafd 60%, #eef2f6 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: #2d3240;
    font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    overflow: hidden;
}

    .features-section::before {
        /* Large, soft platinum highlight ring, blurred for luxury depth */
        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 {
        /* Gentle soft-light vignette for depth, platinum tones */
        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; /* Lift above bg effects */
}

.features-text {
    flex: 1;
    text-align: left;
}

.features-title {
    font-family: 'Montserrat', 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--platinum-title) !important;
    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, #bdc6d2 10%, #a3acb9 55%, #e3e7eb 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: #42506b;
        background: transparent;
        letter-spacing: 0.01em;
    }

        .features-list li::before {
            content: '';
            display: inline-block;
            width: 1.25em;
            height: 1.25em;
            /* Use platinum or silver checkmark icon. Supply this PNG or SVG: */
            background: url('/images/icons/silver-check.png') no-repeat center center/contain;
            position: absolute;
            left: 0;
            top: 0.18em;
            /* Optionally, add a subtle shadow: */
            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;
    /* Platinum shadow/border/background */
    box-shadow: 0 8px 32px rgba(130, 143, 158, 0.11), 0 2px 16px rgba(90, 105, 125, 0.07);
    border: 1.5px solid #e4e9f0;
    background: linear-gradient(120deg, #f6faff 60%, #eef1f4 100%);
}
