/* ------------------------------------------------ */
/* NEW DESKTOP FEATURES SECTION (Zig-Zag)           */
/* ------------------------------------------------ */

.desktop-features {
    padding-top: 1.375rem;
    /* Reduced by ~10px for tighter spacing */
    padding-bottom: 2rem;
    /* Further reduced for 15px spacing decrease */
}

.section-heading {
    font-size: 34px !important;
    font-weight: 700 !important;
    color: #3f0896;
    margin-bottom: 2rem;
    /* Reduced from 3rem */
}

.feature-eyebrow {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    /* White text */
    background: #3f0896;
    /* Purple background */
    padding: 8px 20px;
    border-radius: 50px;
    /* Pill shape */
    margin-bottom: 10px;
    /* Reduced from 15px */
    display: inline-block;
    /* Changed to inline-block for pill shape */
}

.feature-title {
    font-size: 42px;
    font-weight: 800;
    color: #042048;
    margin-bottom: 12px;
    /* Reduced from 20px */
    line-height: 1.2;
}

.feature-desc {
    font-size: 18px;
    color: #556987;
    line-height: 1.6;
    margin-bottom: 20px;
    /* Reduced from 30px */
    max-width: 90%;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-list li {
    font-size: 17px;
    font-weight: 600;
    color: #042048;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li i {
    color: #3f0896;
    /* Purple Checkmark */
    font-size: 1.2rem;
}

.btn-purple-pill {
    background: #FEC64F;
    /* Gold/Yellow */
    color: #042048;
    /* Dark text */
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #FEC64F;
}

.btn-purple-pill:hover {
    background: transparent;
    color: #FEC64F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 198, 79, 0.3);
}

.feature-image-wrapper {
    position: relative;
    padding: 20px;
    background: #f8faff;
    /* Very light subtle backing */
    border-radius: 24px;
    text-align: center;
}

.feature-image-wrapper img {
    max-width: 100%;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0.15);
    /* Thin light dark border */
    border-radius: 16px;
    /* Match rounded corners */
    /* optional hover effect */
    transition: transform 0.4s ease;
}

.feature-image-wrapper:hover img {
    transform: scale(1.02);
}