.elementor-7881 .elementor-element.elementor-element-d764d76{--display:flex;}.elementor-7881 .elementor-element.elementor-element-82d2c94{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e59a90d */@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --fpf-main-text-color: #D3E0EA;
    --fpf-heading-color: #E6F0F8;
    --fpf-accent-green: #20C293;
    --fpf-table-bg: rgba(255, 255, 255, 0.05);
    --fpf-table-bg-hover: rgba(32, 194, 147, 0.1);
    --fpf-header-bg: rgba(32, 194, 147, 0.15);
    --fpf-sticky-bg: rgba(18, 18, 20, 0.9); /* צבע כהה יותר, אך עדיין מתאים */
    --fpf-border-light: rgba(255, 255, 255, 0.08);
    --fpf-border-medium: rgba(32, 194, 147, 0.3);
    --fpf-success-color: #38A169;
    --fpf-fail-color: #E53E3E;
}

.fpf-comparison-tables-container {
    font-family: 'Inter', sans-serif;
    padding: 60px 0;
    color: var(--fpf-main-text-color);
    text-align: center;
    direction: ltr;
    margin: 0 auto;
    max-width: 1400px;
}

.fpf-comparison-tables-container h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--fpf-heading-color);
    text-transform: uppercase;
}

.fpf-comparison-tables-container .subtitle {
    font-size: 18px;
    color: var(--fpf-main-text-color);
    opacity: 0.8;
    margin-bottom: 50px;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--fpf-accent-green);
    margin-top: 60px;
    margin-bottom: 20px;
    text-align: left;
    border-bottom: 2px solid var(--fpf-border-medium);
    padding-bottom: 10px;
    padding-left: 20px;
}

/* -------------------------- TABLE STRUCTURE ------------------------- */

.table-scroll-wrapper {
    overflow-x: auto;
    width: 100%;
    position: relative;
    border: 1px solid var(--fpf-border-medium);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.fpf-comparison-table {
    width: 100%;
    min-width: 900px;
    border-collapse: separate;
    border-spacing: 0;
    text-align: center;
    background-color: var(--fpf-table-bg);
}

.fpf-comparison-table thead th, 
.fpf-comparison-table tbody td {
    padding: 16px 12px;
    border-bottom: 1px solid var(--fpf-border-light);
    border-right: 1px solid var(--fpf-border-light);
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.3s ease;
    height: 70px; /* קביעת גובה אחיד לתאים לסימטריה */
    vertical-align: middle; /* יישור אנכי למרכז */
}

.fpf-comparison-table thead th {
    background-color: var(--fpf-header-bg);
    color: var(--fpf-heading-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.8px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.sticky-col {
    position: sticky;
    left: 0;
    background-color: var(--fpf-sticky-bg); /* צבע רקע מעודכן */
    border-right: 2px solid var(--fpf-border-medium) !important;
    z-index: 20;
    text-align: left;
    padding-left: 20px !important;
}

.firm-cell {
    display: flex;
    align-items: center; /* יישור הלוגו והטקסט למרכז אנכית */
    gap: 15px;
    height: 100%; /* כדי שה-flex יתפוס את כל גובה התא */
    padding: 16px 10px 16px 20px;
    box-sizing: border-box;
}

.fpf-comparison-table tbody tr:hover {
    background-color: var(--fpf-table-bg-hover);
}

/* תיקון לקצוות התחתונים של הטבלה */
.fpf-comparison-table tbody tr:last-child td { 
    border-bottom: none !important; 
}
.fpf-comparison-table thead tr th:last-child,
.fpf-comparison-table tbody tr td:last-child { 
    border-right: none !important; 
}

.fpf-comparison-table thead tr th:first-child { border-top-left-radius: 12px; }
.fpf-comparison-table thead tr th:last-child { border-top-right-radius: 12px; }
.fpf-comparison-table tbody tr:last-child td:first-child { border-bottom-left-radius: 12px; }
.fpf-comparison-table tbody tr:last-child td:last-child { border-bottom-right-radius: 12px; }


/* -------------------------- LOGO FIXES -------------------------- */

/* Adjusting the size of the small icons in the header row */
.fpf-comparison-table .method-icon-header {
    height: 20px;
    width: auto;
    vertical-align: middle;
    margin-right: 5px;
}

/* תיקון הבעיה של הלוגואים הענקיים - רוחב וגובה מקסימליים */
.fpf-comparison-table .firm-logo {
    max-width: 100px;
    max-height: 40px; 
    width: auto;      
    height: auto;
    object-fit: contain; 
}

/* ------------------------ SVG ICON STYLING (V/X) ---------------------- */
.supported svg, .not-supported svg {
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 auto;
}

.svg-check {
    stroke: var(--fpf-success-color);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svg-x {
    stroke: var(--fpf-fail-color);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.8;
}

/* ----------------------------- MOBILE VIEW -------------------------- */
@media (max-width: 768px) {
    .section-title {
        padding-left: 10px;
        font-size: 24px;
    }
    
    .table-scroll-wrapper {
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 0; /* ביטול עיגול פינות בנייד כי כל שורה היא כרטיס נפרד */
    }

    .fpf-comparison-table {
        min-width: 100%;
        display: block;
    }

    .fpf-comparison-table thead {
        display: none;
    }

    .fpf-comparison-table tbody tr {
        margin-bottom: 15px;
        border: 1px solid var(--fpf-border-medium);
        border-radius: 8px;
        background-color: var(--fpf-table-bg);
        padding: 15px 10px;
        display: block; /* כל שורה תהיה בלוק נפרד */
        height: auto; /* לבטל גובה קבוע בנייד */
    }
    
    .fpf-comparison-table tbody tr:hover {
        background-color: var(--fpf-table-bg);
    }

    .fpf-comparison-table tbody td {
        border: none !important;
        text-align: right;
        padding: 10px 15px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: auto; /* לבטל גובה קבוע בנייד */
    }

    .fpf-comparison-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--fpf-accent-green);
        opacity: 0.9;
        font-size: 15px;
    }
    
    .sticky-col {
        position: static;
        display: block;
        text-align: center;
        border-bottom: 2px solid var(--fpf-border-medium) !important;
        border-right: none !important;
        padding: 15px 0 10px 0 !important;
        background-color: transparent !important;
    }
    
    .firm-cell {
        justify-content: center;
        padding: 15px 0 10px 0 !important;
    }
    
    .supported svg, .not-supported svg {
        width: 28px;
        height: 28px;
    }
}/* End custom CSS */