/* ============================================================
   1. ОБЩИЕ ПЕРЕМЕННЫЕ И СБРОС
   ============================================================ */
:root {
    --ew-p: #6366F1;
    --ew-p-light: #818cf8;
    --ew-bg: #0F172A;
    --ew-accent: #A5B4FC;
    --ew-font: 'Gilroy', sans-serif;
    --ew-border: rgba(255, 255, 255, 0.08);
    --ew-text-muted: #94A3B8;
}

/* Общий сброс для обоих блоков */
.ew-ultimate-wrap *, 
.ew-ultimate-wrapper *,
.ew-ultimate-wrap *::before, 
.ew-ultimate-wrap *::after,
.ew-ultimate-wrapper *::before, 
.ew-ultimate-wrapper *::after {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
}

@keyframes titleShine { 
    0% { background-position: 0% center; } 
    100% { background-position: 200% center; } 
}

/* ============================================================
   2. СТИЛИ ДЛЯ HERO (БЛОК 1)
   ============================================================ */
.ew-ultimate-hero {
    padding: 140px 10% 40px 10% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    background: radial-gradient(circle at 10% 30%, #1e293b 0%, #0f172a 100%) !important;
    overflow-x: hidden;
    font-family: var(--ew-font), sans-serif;
}

.ew-title {
    font-size: clamp(32px, 5vw, 48px) !important; 
    font-weight: 800 !important;
    line-height: 1.2 !important;
    padding-bottom: 10px !important;
    margin-bottom: 25px !important;
    width: 100% !important;
    display: block !important; 
    text-align: left !important;
    background: linear-gradient(135deg, #FFFFFF 20%, #A5B4FC 50%, #FFFFFF 80%);
    background-size: 200% auto;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: titleShine 6s linear infinite !important;
}

.ew-desc {
    font-size: clamp(16px, 2vw, 19px) !important;
    color: #94A3B8 !important;
    max-width: 100% !important;
    margin-bottom: 40px !important;
    line-height: 1.7 !important;
    text-align: left !important;
}

.ew-desc strong {
    color: #A5B4FC !important;
    font-weight: 600 !important;
}

/* Сетка Hero */
.ew-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
    width: 100% !important;
}

.ew-item {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    min-height: 80px !important;
}

.ew-item:hover {
    background: rgba(99, 102, 241, 0.1) !important;
    border-color: rgba(99, 102, 241, 0.4) !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
}

.ew-item span { 
    color: #FFFFFF !important; 
    font-weight: 600 !important; 
    font-size: 15px !important; 
    white-space: normal !important; 
    line-height: 1.2 !important;
}

.ew-icon {
    width: 44px; height: 44px; background: rgba(99, 102, 241, 0.15);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all 0.4s ease !important;
}

.ew-icon svg { width: 20px; height: 20px; stroke: #A5B4FC; fill: none; stroke-width: 2.2; }

.ew-item:hover .ew-icon {
    background: var(--ew-p) !important;
    transform: rotate(10deg) !important;
}
.ew-item:hover .ew-icon svg { stroke: #fff !important; }

/* Кнопка */
.ew-btn-container { display: flex; justify-content: flex-start; }
.ew-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 18px 35px !important;
    background: #ffffff !important;
    color: #0F172A !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    transition: 0.3s !important;
}
.ew-btn:hover { transform: scale(1.05) !important; box-shadow: 0 10px 20px rgba(99,102,241,0.3) !important; }

/* ============================================================
   3. СТИЛИ ДЛЯ SERVICES & SEO (БЛОК 2)
   ============================================================ */
.ew-ultimate-wrapper {
    padding: 40px 10% 80px 10% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    background: radial-gradient(circle at 10% 30%, #1e293b 0%, #0f172a 100%) !important;
    overflow-x: hidden;
    font-family: var(--ew-font), sans-serif;
}

.ew-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.ew-title-main {
    font-size: clamp(32px, 5vw, 48px) !important; 
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin: 0 0 25px !important;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF 20%, #A5B4FC 50%, #FFFFFF 80%);
    background-size: 200% auto;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: titleShine 6s linear infinite;
}

.ew-subtitle-main {
    font-size: clamp(16px, 2vw, 19px) !important;
    color: var(--ew-text-muted);
    max-width: 100% !important;
    margin-bottom: 50px !important;
    line-height: 1.6 !important;
    font-weight: 500;
}

.ew-services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 80px !important;
    width: 100% !important;
}

.ew-card-v3 {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--ew-border) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.ew-card-v3:hover {
    background: rgba(99, 102, 241, 0.05) !important;
    border-color: rgba(99, 102, 241, 0.4) !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

.ew-card-header { 
    display: flex; 
    flex-direction: row !important; 
    align-items: center !important; 
    gap: 15px !important; 
    margin-bottom: 15px !important; 
}

.ew-icon-wrap { 
    width: 42px; height: 42px; 
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px; 
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: 0.4s ease;
    color: var(--ew-accent); 
}

.ew-card-v3:hover .ew-icon-wrap {
    background: var(--ew-p) !important;
    border-color: var(--ew-p) !important;
    transform: rotate(5deg) !important;
    color: #fff !important;
}

.ew-icon-wrap svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }

.ew-card-v3 h3 { 
    font-size: 18px !important; 
    font-weight: 700 !important; 
    margin: 0 !important; 
    color: #fff !important;
    line-height: 1.3 !important;
}

.ew-card-v3 p { 
    color: var(--ew-text-muted) !important; 
    font-size: 14px !important; 
    line-height: 1.6 !important; 
    margin-bottom: 20px !important; 
    margin-top: 5px !important; 
}

.ew-tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.ew-tag-item {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    padding: 4px 10px; 
    border-radius: 6px;
    font-size: 10px; 
    font-weight: 700; 
    color: var(--ew-accent); 
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* SEO Секция */
.ew-seo-footer { 
    margin-top: 80px; 
    padding-top: 60px;
    border-top: 1px solid var(--ew-border);
}

.ew-seo-footer h2 { 
    font-size: 32px !important; 
    font-weight: 800 !important; 
    color: #fff !important; 
    margin-bottom: 25px !important;
    text-transform: uppercase;
}

.ew-seo-footer p { 
    color: var(--ew-text-muted) !important; 
    line-height: 1.8 !important; 
    margin-bottom: 20px !important; 
    font-size: 17px !important; 
}

.ew-highlight-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(15, 23, 42, 0) 100%);
    border-left: 4px solid var(--ew-p);
    padding: 30px 35px;
    border-radius: 0 20px 20px 0;
    margin-top: 40px;
}

.ew-highlight-card p { 
    color: #FFFFFF !important; 
    font-weight: 500 !important; 
    font-size: 18px !important;
    margin: 0 !important; 
}

.ew-highlight-card strong { color: var(--ew-accent); }

/* ============================================================
   4. СТИЛИ ДЛЯ PROCESS (БЛОК 3)
   ============================================================ */
.ew-process-final-section-custom {
    padding: 80px 10% 80px 10% !important;
    min-height: 80vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    background: radial-gradient(circle at 10% 30%, #1e293b 0%, #0f172a 100%) !important;
    font-family: 'Gilroy', sans-serif !important;
}

.ew-process-final-section-custom h4.ew-process-title-custom {
    font-size: clamp(32px, 5vw, 48px) !important; 
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin: 0 0 40px !important; 
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF 20%, #A5B4FC 50%, #FFFFFF 80%);
    background-size: 200% auto;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: titleShine 6s linear infinite;
}

.ew-process-row-grid-custom {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; 
    gap: 20px !important;
    max-width: 1400px;
    margin: 0 0 60px 0 !important;
    width: 100%;
}

.ew-process-step-mini-custom {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 30px 25px !important;
    text-align: left;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex;
    flex-direction: column;
    min-height: 200px !important;
}

.ew-process-step-mini-custom:hover {
    background: rgba(99, 102, 241, 0.1) !important;
    border-color: rgba(99, 102, 241, 0.4) !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
}

.ew-step-header-row {
    display: flex;
    align-items: center; 
    gap: 15px;
    margin-bottom: 20px;
}

.ew-step-number-custom {
    font-size: 28px !important; 
    font-weight: 800;
    color: #A5B4FC !important; 
    opacity: 0.4;
    line-height: 1;
}

.ew-process-step-mini-custom h5 {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0;
    color: #ffffff;
}

.ew-process-step-mini-custom p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #94A3B8 !important;
    margin: 0;
}

.ew-process-seo-footer {
    max-width: 1400px;
    text-align: left;
}

.ew-process-seo-footer p {
    color: #94A3B8;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.ew-process-highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(15, 23, 42, 0) 100%);
    border-left: 4px solid #6366F1;
    padding: 25px 30px;
    border-radius: 0 20px 20px 0;
    margin-top: 25px;
}

.ew-process-highlight p {
    margin: 0 !important;
    color: #FFFFFF !important;
    font-weight: 500;
}

.ew-process-highlight strong {
    color: #A5B4FC;
}

/* ============================================================
   5. ОБЩАЯ АДАПТИВНОСТЬ ДЛЯ ВСЕХ БЛОКОВ
   ============================================================ */
@media (max-width: 1200px) {
    .ew-process-row-grid-custom { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 1100px) {
    .ew-grid, .ew-services-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .ew-process-row-grid-custom { grid-template-columns: 1fr !important; }
    .ew-process-final-section-custom { padding: 60px 20px !important; }
}

@media (max-width: 767px) {
    /* Адаптация для Hero */
    .ew-ultimate-hero { 
        padding: 80px 16px 40px 16px !important; 
        text-align: center !important; 
        align-items: center !important; 
    }
    .ew-title { text-align: center !important; font-size: 28px !important; }
    .ew-desc { text-align: center !important; }
    .ew-btn-container { width: 100%; justify-content: center !important; }

    /* Адаптация для Wrapper (Услуги) */
    .ew-ultimate-wrapper { padding: 80px 16px 40px 16px !important; }
    .ew-container { padding: 0; }
    .ew-title-main { font-size: 24px !important; text-align: center; }
    .ew-subtitle-main { text-align: center; margin-bottom: 22px !important; }
    .ew-services-grid { grid-template-columns: 1fr !important; gap: 15px !important; }
    .ew-card-v3 { padding: 25px !important; }
    .ew-seo-footer h2 { font-size: 24px !important; text-align: center; }
    .ew-highlight-card { padding: 20px !important; border-radius: 10px; }
    .ew-highlight-card p { font-size: 16px !important; }

    /* Общие сетки в 1 колонку */
    .ew-grid, .ew-services-grid { grid-template-columns: 1fr !important; }
}
<style>
    :root {
        --ew-p: #6366F1;
        --ew-bg: #0F172A;
        --ew-card-bg: rgba(255, 255, 255, 0.03);
        --ew-accent: #A5B4FC;
        --ew-border: rgba(255, 255, 255, 0.08);
        --ew-text-muted: #94A3B8;
        --ew-font-family: 'Gilroy', sans-serif;
    }

    .ew-stats-final-section-custom {
        padding: 80px 10% 80px 10% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        background: radial-gradient(circle at 10% 30%, #1e293b 0%, #0f172a 100%) !important;
    }

    .ew-stats-final-section-custom h3.ew-stats-title-custom {
        font-family: var(--ew-font-family) !important;
        font-size: clamp(32px, 5vw, 48px) !important; 
        font-weight: 800 !important;
        margin: 0 0 45px !important;
        line-height: 1.2 !important;
        text-transform: uppercase;
        background: linear-gradient(135deg, #FFFFFF 20%, #A5B4FC 50%, #FFFFFF 80%);
        background-size: 200% auto;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        animation: titleShine 6s linear infinite;
    }

    .ew-stats-row-grid-custom {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
    }

    .ew-stats-step-mini-custom {
        background: var(--ew-card-bg) !important;
        border: 1px solid var(--ew-border) !important;
        border-radius: 20px !important;
        padding: 30px 25px !important;
        text-align: left;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 160px !important;
    }

    .ew-stats-step-mini-custom:hover {
        background: rgba(99, 102, 241, 0.1) !important;
        border-color: rgba(99, 102, 241, 0.4) !important;
        transform: translateY(-8px) !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
    }

    .ew-stats-header-row {
        display: flex;
        align-items: baseline; 
        gap: 12px;
        margin-bottom: 10px;
    }

    .ew-stats-number-value {
        font-size: 42px !important;
        font-weight: 800;
        color: #FFFFFF !important;
        line-height: 1;
        white-space: nowrap;
    }

    .ew-stats-step-mini-custom h5 {
        font-size: 15px !important;
        font-weight: 700 !important;
        margin: 0;
        color: var(--ew-accent) !important;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .ew-stats-step-mini-custom p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        color: var(--ew-text-muted) !important;
        margin: 0;
    }

    @media (max-width: 1100px) {
        .ew-stats-row-grid-custom { grid-template-columns: repeat(2, 1fr) !important; }
    }

    @media (max-width: 600px) {
        .ew-stats-row-grid-custom { grid-template-columns: 1fr !important; }
        .ew-stats-final-section-custom { padding: 60px 20px !important; }
        .ew-stats-number-value { font-size: 36px !important; }
    }
</style>
<style>
    /* Fonts and Color Settings */
    :root {
        --ew-p: #6366F1;
        --ew-bg: #0F172A;
        --ew-card-bg: rgba(255, 255, 255, 0.03);
        --ew-accent: #A5B4FC;
        --ew-border: rgba(255, 255, 255, 0.08);
        --ew-text-muted: #94A3B8;
        --ew-font-family: 'Gilroy', sans-serif;
    }

    @keyframes titleShine { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }

    /* FINAL CTA CONTAINER */
    .ew-final-cta-section-custom {
         padding: 80px 10% 80px 10% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        background: radial-gradient(circle at 10% 30%, #1e293b 0%, #0f172a 100%) !important;
    }

    .ew-cta-card-custom {
     
        /* Более глубокий градиент для финального акцента */
        background: linear-gradient(145deg, rgba(99, 102, 241, 0.1) 0%, rgba(15, 23, 42, 0.4) 100%) !important;
        border-radius: 24px !important;
        padding: 60px !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(99, 102, 241, 0.2) !important;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

    /* Decorative Glow */
    .ew-cta-card-custom::before {
        content: '';
        position: absolute;
        bottom: -20%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }

    .ew-cta-content-custom {
        flex: 1;
        z-index: 2;
        text-align: left;
    }

    /* HEADING (H3) - Унифицирован с Hero и Stats */
    .ew-cta-content-custom h3 {
        font-family: var(--ew-font-family) !important;
        font-size: clamp(28px, 4vw, 42px) !important; 
        font-weight: 800 !important;
        color: #ffffff;
        margin-bottom: 20px !important;
        line-height: 1.1 !important;
        text-transform: uppercase;
        background: linear-gradient(135deg, #FFFFFF 20%, #A5B4FC 50%, #FFFFFF 80%);
        background-size: 200% auto;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        animation: titleShine 6s linear infinite;
        margin-top: 0;
    }

    .ew-cta-content-custom p {
        font-family: var(--ew-font-family) !important;
        font-size: clamp(16px, 2vw, 19px) !important;
        line-height: 1.6 !important;
        color: var(--ew-text-muted) !important;
        margin-bottom: 0;
        max-width: 650px;
        font-weight: 500;
    }

    .ew-cta-content-custom strong {
        color: var(--ew-accent) !important;
        font-weight: 700;
    }

    .ew-cta-action-custom {
        flex-shrink: 0;
        z-index: 2;
    }

    /* BUTTON С анимацией из первого блока */
    .ew-btn-primary-custom {
        font-family: var(--ew-font-family) !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background: #ffffff !important; /* Белая кнопка как в Hero для акцента */
        color: var(--ew-bg) !important;
        padding: 20px 45px !important;
        border-radius: 12px !important;
        font-weight: 800 !important;
        font-size: 18px !important;
        text-decoration: none !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        white-space: nowrap;
    }

    .ew-btn-primary-custom:hover {
        background: var(--ew-p) !important;
        color: #ffffff !important;
        transform: translateY(-5px) scale(1.05) !important;
        box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4) !important;
    }

    .ew-btn-primary-custom svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        fill: none;
        stroke-width: 3;
        transition: transform 0.4s ease;
    }

    .ew-btn-primary-custom:hover svg {
        transform: translateX(8px);
    }

    /* RESPONSIVENESS */
    @media (max-width: 1024px) {
        .ew-cta-card-custom { padding: 50px !important; }
    }

    @media (max-width: 991px) {
        .ew-cta-card-custom {
            flex-direction: column;
            text-align: center;
            padding: 50px 30px !important;
            gap: 35px;
        }
        .ew-cta-content-custom { text-align: center; }
        .ew-cta-content-custom p { margin: 0 auto; }
        .ew-cta-action-custom { width: 100%; }
        .ew-btn-primary-custom { width: 100%; }
    }

    @media (max-width: 480px) {
        .ew-final-cta-section-custom { padding: 40px 15px 60px !important; }
        .ew-cta-card-custom { padding: 40px 20px !important; }
        .ew-cta-content-custom h3 { font-size: 26px !important; }
    }
</style>
<style>
    :root {
        --ew-p: #6366F1;
        --ew-bg: #0F172A;
        --ew-card-bg: rgba(255, 255, 255, 0.03);
        --ew-accent: #A5B4FC;
        --ew-border: rgba(255, 255, 255, 0.08);
        --ew-text-muted: #94A3B8;
        --ew-font-family: 'Gilroy', sans-serif;
    }

    @keyframes titleShine { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }

    .ew-faq-section-custom {
        padding: 80px 10% 80px 10% !important;
        min-height: 80vh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        background: radial-gradient(circle at 10% 30%, #1e293b 0%, #0f172a 100%) !important;
    }

    .ew-faq-container-custom {
        max-width: 1400px; 
        margin: 0 auto;
        width: 100%;
    }

    .ew-faq-section-custom h4.ew-faq-main-title {
        font-family: var(--ew-font-family) !important;
        font-size: clamp(32px, 5vw, 48px) !important;
        font-weight: 800 !important;
        margin: 0 0 50px !important;
        line-height: 1.2 !important;
        text-transform: uppercase;
        background: linear-gradient(135deg, #FFFFFF 20%, #A5B4FC 50%, #FFFFFF 80%);
        background-size: 200% auto;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        animation: titleShine 6s linear infinite;
    }

    .ew-faq-list-custom {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .ew-faq-item-custom {
        background: var(--ew-card-bg) !important;
        border: 1px solid var(--ew-border) !important;
        border-radius: 20px !important;
        padding: 5px 35px !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        backdrop-filter: blur(10px);
    }

    .ew-faq-item-custom:hover {
        border-color: rgba(99, 102, 241, 0.3) !important;
        background: rgba(255, 255, 255, 0.05) !important;
    }

    .ew-faq-item-custom.active {
        border-color: rgba(99, 102, 241, 0.5) !important;
        background: rgba(99, 102, 241, 0.04) !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    }

    .ew-faq-question-custom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 25px 0;
        font-weight: 700 !important;
        font-size: clamp(17px, 2vw, 20px) !important;
        color: #ffffff;
    }

    .ew-faq-item-custom.active .ew-faq-question-custom { 
        color: var(--ew-accent) !important; 
    }

    .ew-faq-answer-custom {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        color: var(--ew-text-muted) !important;
        font-size: 16px !important;
        line-height: 1.7 !important;
    }

    .ew-faq-item-custom.active .ew-faq-answer-custom {
        max-height: 600px;
        padding-bottom: 30px;
    }

    .ew-faq-icon-custom {
        width: 20px; height: 20px; position: relative;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0; margin-left: 20px;
    }

    .ew-faq-icon-custom::before, .ew-faq-icon-custom::after {
        content: ''; position: absolute; background: var(--ew-accent); border-radius: 4px;
    }
    .ew-faq-icon-custom::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
    .ew-faq-icon-custom::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }

    .ew-faq-item-custom.active .ew-faq-icon-custom { transform: rotate(45deg); }

    .ew-faq-seo-footer {
        margin-top: 80px;
        text-align: left;
    }

    .ew-faq-seo-footer p {
        color: var(--ew-text-muted);
        font-size: 16px;
        line-height: 1.8;
    }

    .ew-faq-highlight {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(15, 23, 42, 0) 100%);
        border-left: 4px solid var(--ew-p);
        padding: 30px;
        border-radius: 0 20px 20px 0;
        margin-top: 35px;
    }

    .ew-faq-highlight p {
        margin: 0 !important;
        color: #FFFFFF !important;
        font-weight: 500;
    }

    .ew-faq-highlight strong { color: var(--ew-accent); }

    @media (max-width: 768px) {
        .ew-faq-section-custom { padding: 60px 20px !important; }
        .ew-faq-item-custom { padding: 0 20px !important; }
        .ew-faq-question-custom { font-size: 17px !important; }
    }
</style>
