.feature-glass-cta {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 24px;
}

.feature-glass-inner {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(22, 29, 47, 0.85) 100%);
    border: 1px solid rgba(88, 101, 242, 0.2); 
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-brand-side {
    flex: 1;
}

.feature-img-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.feature-main-img {
    width: 100%;
    max-width: 380px;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.feature-glass-inner:hover .feature-main-img {
    transform: scale(1.03)
}

.feature-text-side {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.feature-tag-new {
    color: var(--blue);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.feature-text-side h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-white);
    margin: 5px 0 15px 0;
}

.blue-highlight {
    color: var(--blue);
}

.feature-desc {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.feature-check-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-check-list li {
    color: var(--text-white);
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.symbol {
    color: var(--blue);
}

.btn-glass {
    background: var(--blue);
    color: white;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}

.btn-glass:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.25); 
}

@media (max-width: 850px) {
    .feature-glass-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .feature-text-side {
        align-items: center;
        text-align: center;
    }

    .feature-check-list li {
        justify-content: center;
    }
}