.ec-pricing-page {
    padding: 140px 0 80px;
    background: #f8f9fb;
    min-height: 100vh;
    overflow-x: clip;
}

.admin-bar .ec-pricing-page {
    padding-top: 170px;
}

.ec-pricing-header {
    text-align: center;
    margin-bottom: 56px;
}

.ec-pricing-title {
    font-family: 'GeneralSans-Bold', sans-serif;
    font-size: 60px;
    line-height: 1.1;
    color: #10101B;
    margin-bottom: 0;
}

.ec-pricing-title span {
    color: #00BAC7;
}

.ec-pricing-title-bar {
    width: 48px;
    height: 3px;
    background: #00BAC7;
    border-radius: 2px;
    margin: 16px auto 20px;
}

.ec-pricing-subtitle {
    font-family: 'GeneralSans-Medium', sans-serif;
    font-size: 17px;
    color: #888;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .ec-pricing-page {
        padding: 100px 0 60px;
    }

    .ec-pricing-title {
        font-size: 36px;
    }
}

.ec-hidden {
    display: none !important;
}

.ec-pricing-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'GeneralSans-Medium', sans-serif;
}

.ec-pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
}

.ec-toggle-label {
    font-family: 'GeneralSans-Medium', sans-serif;
    font-size: 15px;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ec-toggle-label.active {
    font-family: 'GeneralSans-Bold', sans-serif;
    color: #10101B;
}

.ec-toggle-badge {
    background: rgba(95, 90, 255, 0.1);
    color: #00BAC7;
    font-size: 11px;
    font-family: 'GeneralSans-Bold', sans-serif;
    padding: 3px 8px;
    border-radius: 20px;
}

.ec-toggle-switch {
    width: 48px;
    height: 26px;
    background: #e0e0e0;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
    padding: 0;
}

.ec-toggle-switch.is-yearly {
    background: #00BAC7;
}

.ec-toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.ec-toggle-switch.is-yearly .ec-toggle-knob {
    transform: translateX(22px);
}

.ec-pricing-cards-outer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 40px;
    margin-bottom: 64px;
    box-sizing: border-box;
}

.ec-pricing-cards {
    display: grid;
    grid-template-columns: repeat(var(--ec-offer-count, 4), 1fr);
    grid-template-rows: auto auto auto auto;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

@media (max-width: 1100px) {
    .ec-pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ec-pricing-cards-outer {
        padding: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 28px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .ec-pricing-cards-outer::-webkit-scrollbar {
        display: none;
    }

    .ec-pricing-cards {
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        padding: 24px 20px 4px 28px;
        width: max-content;
    }

    .ec-pricing-card {
        width: 82vw;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
}

.ec-pricing-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 32px 28px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 0;
    row-gap: 24px;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
}

.ec-pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.ec-pricing-card.is-popular {
    background: #00BAC7;
    border-color: transparent;
    box-shadow: 0 16px 48px rgba(95, 90, 255, 0.28);
}

.ec-pricing-card.is-popular:hover {
    box-shadow: 0 20px 56px rgba(95, 90, 255, 0.38);
}

.ec-popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #00BAC7;
    font-family: 'GeneralSans-Bold', sans-serif;
    font-size: 13px;
    padding: 7px 18px;
    border-radius: 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(95, 90, 255, 0.3);
}

.ec-offer-name {
    font-family: 'GeneralSans-Bold', sans-serif;
    font-size: 20px;
    color: #10101B;
    margin: 0 0 8px;
}

.is-popular .ec-offer-name {
    color: #fff;
}

.ec-offer-desc {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    margin: 0;
}

.is-popular .ec-offer-desc {
    color: rgba(255, 255, 255, 0.75);
}

.ec-card-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.is-popular .ec-card-price {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.ec-price-label {
    font-size: 12px;
    color: #bbb;
    font-family: 'GeneralSans-Medium', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.is-popular .ec-price-label {
    color: rgba(255, 255, 255, 0.65);
}

.ec-price-amount {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.ec-price {
    font-family: 'GeneralSans-Bold', sans-serif;
    font-size: 48px;
    color: #10101B;
    line-height: 1;
}

.is-popular .ec-price {
    color: #fff;
}

.ec-price-currency {
    font-family: 'GeneralSans-Bold', sans-serif;
    font-size: 22px;
    color: #10101B;
}

.is-popular .ec-price-currency {
    color: #fff;
}

.ec-price-per-month {
    font-family: 'GeneralSans-Medium', sans-serif;
    font-size: 14px;
    color: #bbb;
    align-self: flex-end;
    padding-bottom: 6px;
}

.is-popular .ec-price-per-month {
    color: rgba(255, 255, 255, 0.65);
}

.ec-price-period {
    font-size: 11px;
    color: #00BAC7;
    font-family: 'GeneralSans-Bold', sans-serif;
    background: rgba(95, 90, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 6px;
    letter-spacing: 0.02em;
}

.is-popular .ec-price-period {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.ec-card-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* .ec-card-features:has(li) {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
} */

.is-popular .ec-card-features:has(li) {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.ec-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'GeneralSans-Medium', sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.4;
}


.is-popular .ec-card-features li {
    color: #fff;
}

.ec-card-features li svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: #00BAC7;
}

.is-popular .ec-card-features li svg {
    color: rgba(255, 255, 255, 0.85);
}

.ec-card-cta {
    align-self: end;
}

.ec-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    border-radius: 10px;
    font-family: 'GeneralSans-Bold', sans-serif;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    border: 1.5px solid transparent;
}

.ec-cta-btn--outline {
    background: transparent;
    border-color: #00BAC7;
    color: #00BAC7;
}

.ec-cta-btn--outline:hover {
    background: #00BAC7;
    color: #fff;
    transform: translateY(-1px);
    text-decoration: none;
}

.ec-cta-btn--dark {
    background: linear-gradient(145deg, #10101B 0%, #1e1e38 100%);
    border-color: #003A40;
    color: white;
}

.ec-cta-btn--dark:hover {
    background: rgba(255, 255, 255, 0.88);
    color: #003A40;
    transform: translateY(-1px);
    text-decoration: none;
}

.ec-reassurance {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 80px;
    background: #fff;
    border: 1px solid #e3e6ef;
    box-shadow: 0 4px 24px rgba(16, 16, 27, 0.07);
    align-items: center;
}

.ec-reassurance-left {
    padding: 48px 40px;
    background: linear-gradient(145deg, #10101B 0%, #1e1e38 100%);
    height: 100%;
    display: flex;
    align-items: center;
}

.ec-reassurance-title {
    font-family: 'GeneralSans-Bold', sans-serif;
    font-size: 24px;
    color: #fff;
    line-height: 1.35;
    margin: 0;
}

.ec-reassurance-title span {
    color: #00BAC7;
}

.ec-reassurance-right {
    padding: 40px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    background: #fff;
}

.ec-reassurance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'GeneralSans-Medium', sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.ec-reassurance-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    background: rgba(95, 90, 255, 0.1);
    border-radius: 8px;
    color: #00BAC7;
}

@media (max-width: 900px) {
    .ec-reassurance {
        grid-template-columns: 1fr;
    }

    .ec-reassurance-left {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 36px 28px;
    }

    .ec-reassurance-right {
        padding: 32px 28px;
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.ec-comparison-header {
    text-align: center;
    margin-bottom: 6px;
}

.ec-comparison-title {
    font-family: 'GeneralSans-Bold', sans-serif;
    font-size: 36px;
    color: #10101B;
    margin: 0 0 10px;
}

.ec-comparison-title span {
    color: #00BAC7;
}

.ec-comparison-subtitle {
    font-family: 'GeneralSans-Medium', sans-serif;
    font-size: 15px;
    color: #aaa;
    margin: 0;
}

.ec-comparison-table-wrap {
    overflow: visible;
    border-radius: 16px;
    border: 1px solid #ebebeb;
    margin-bottom: 60px;
    background: #fff;
}

.ec-comparison-table-scroll {
    overflow-x: auto;
}

.ec-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    table-layout: fixed;
    border-radius: 16px 16px 0 0;
}

.ec-comparison-table td,
.ec-comparison-table th {
    border: none !important;
}

.ec-comparison-table thead th {
    padding: 22px 24px;
    font-family: 'GeneralSans-Bold', sans-serif;
    font-size: 14px;
    color: #10101B;
    text-align: center;
    background: #fff;
  
    border-bottom: 1px solid #ebebeb;
    position: sticky;
    top: var(--ec-sticky-top, 25px);
    z-index: 10;
    transition: box-shadow 0.2s;
}

.ec-comparison-table thead.is-stuck th {
    box-shadow: 0 4px 16px rgba(16, 16, 27, 0.10);
}

.ec-table-feature-col {
    text-align: left !important;
    width: 30%;
    color: #aaa !important;
    font-family: 'GeneralSans-Medium', sans-serif !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    border-radius: 16px 0 0 0;
}

.ec-comparison-table thead tr th:last-child {
    border-radius: 0 16px 0 0;
}

.ec-table-offer-col.is-popular {
    color: #00BAC7 !important;
}

.ec-mobile-offer-header {
    display: none;
}

.ec-cat-row td {
    background: #f4f5f8;
    color: #666;
    font-family: 'GeneralSans-Bold', sans-serif;
    font-size: 11px;
    padding: 8px 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid #ebebeb !important;
}

.ec-cat-toggle {
    background: #10101B;
    border: none;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    flex-shrink: 0;
    padding: 0;
}

.ec-feature-row td {
    border-bottom: 1px solid #f0f0f0 !important;
}

.ec-comparison-table tbody tr:last-child td {
    border-bottom: none !important;
}

.ec-feature-row {
    transition: background 0.12s;
}

.ec-feature-row:hover {
    background: #f9f9ff;
}

.ec-feature-name {
    padding: 15px 24px;
    font-size: 14px;
    color: #333;
    font-family: 'GeneralSans-Medium', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    border-right: 1px solid #f2f2f2;
}

.ec-feature-val {
    text-align: center;
    padding: 15px 12px;
    vertical-align: middle;
}

.ec-feature-val.is-popular-col {
    background: rgba(95, 90, 255, 0.03);
}

.ec-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(95, 90, 255, 0.1);
    border-radius: 50%;
    color: #00BAC7;
    margin: 0 auto;
}

.ec-cross {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d8d8d8;
    margin: 0 auto;
    width: 24px;
    height: 24px;
}

.ec-val-text {
    font-family: 'GeneralSans-Bold', sans-serif;
    font-size: 12px;
    color: #00BAC7;
    background: rgba(95, 90, 255, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
}

.ec-tooltip {
    position: relative;
    display: inline-flex;
    color: #ccc;
    cursor: help;
    transition: color 0.15s;
}

.ec-tooltip:hover {
    color: #00BAC7;
}

.ec-tooltip-content {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%);
    background: #10101B;
    color: #fff;
    font-family: 'GeneralSans-Medium', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    padding: 10px 14px;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
    z-index: 10;
    max-width: 240px;
    white-space: normal;
    text-align: left;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.ec-tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #10101B;
}

.ec-tooltip:hover .ec-tooltip-content {
    opacity: 1;
}

.ec-faq {
    margin-top: 50px;
}

.ec-faq-title {
    font-family: "Manrope", sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #0A0E15;
    text-align: center;
    margin: 0 0 36px;
}

.ec-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ec-faq-item {
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    margin-bottom: 8px;
    background: #fff;
    transition: box-shadow 0.25s ease-out;
}

.ec-faq-item:hover {
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.ec-faq-item[open] {
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.ec-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0A0E15;
    cursor: pointer;
    list-style: none;
    transition: color 0.25s ease-out;
}

.ec-faq-question::-webkit-details-marker {
    display: none;
}

.ec-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F1F7F9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    color: #00BAC7;
    line-height: 28px;
    text-align: center;
    margin-left: 16px;
    transition: background 0.25s ease-out, color 0.25s ease-out;
}

.ec-faq-icon::before {
    content: '+';
}

.ec-faq-item[open] .ec-faq-icon {
    background: #00BAC7;
    color: #fff;
}

.ec-faq-item[open] .ec-faq-icon::before {
    content: '\2212';
}



.ec-faq-answer {
    padding: 0 24px 20px;
}

.ec-faq-answer p {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    color: #4E4E4E;
    line-height: 1.7;
    margin: 0;
}

.ec-faq-answer a {
    color: #00BAC7;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .ec-faq-title {
        font-size: 26px;
    }

    .ec-faq-question {
        padding: 16px 20px;
        font-size: 14px;
    }

    .ec-faq-answer {
        padding: 0 20px 16px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .ec-comparison-table thead {
        display: none;
    }
    .ec-comparison-table {
        background-color: transparent !important;
    }

    .ec-mobile-offer-header {
        display: flex;
        border-bottom: 1px solid #ebebeb;
        background-color: white;
    }

    .ec-mobile-offer-name {
        flex: 1;
        text-align: center;
        padding: 14px 8px;
        font-family: 'GeneralSans-Bold', sans-serif;
        font-size: 13px;
        color: #10101B;
    }

    .ec-mobile-offer-name.is-popular {
        color: #00BAC7;
    }

    .ec-cat-toggle {
        display: none;
    }

    .ec-comparison-table .ec-feature-row.ec-hidden {
        display: grid !important;
    }

    .ec-comparison-table,
    .ec-comparison-table tbody {
        display: block;
        width: 100%;
    }

    .ec-comparison-table .ec-cat-row {
        display: block;
        width: 100%;
    }

    .ec-cat-row td {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .ec-comparison-table .ec-feature-row {
        display: grid;
        grid-template-columns: repeat(var(--ec-offer-count, 4), 1fr);
        border-bottom: 1px solid #f2f2f2 !important;
        width: 100%;
        overflow: hidden;
        background-color: white;
    }

    /* Premier row d'une catégorie */
    .ec-cat-row + .ec-feature-row {
        border-radius: 12px 12px 0 0;
    }

    /* Dernier row d'une catégorie */
    .ec-feature-row:has(+ .ec-cat-row),
    .ec-feature-row:last-child {
        border-radius: 0 0 12px 12px;
        border-bottom: none !important;
        margin-bottom: 12px;
    }

    /* Seul row dans une catégorie */
    .ec-cat-row + .ec-feature-row:has(+ .ec-cat-row),
    .ec-cat-row + .ec-feature-row:last-child {
        border-radius: 12px;
    }

    .ec-comparison-table .ec-feature-row td {
        border-bottom: none !important;
        display: flex;
        align-items: left;
        justify-content: start;
        font-weight: bold;
    }
    .ec-cat-row td {
        background-color: #f8f9fb;
        border-bottom: none !important;
        padding-top: 32px;
        font-size: 16px;

    }

    .ec-feature-name {
        grid-column: 1 / -1;
        text-align: center;
        justify-content: center;
        padding: 14px 16px 8px;
        font-size: 14px;
        border-right: none;
    }



    .ec-feature-val {
        padding: 8px 4px 14px;
        background: none !important;
    }

    .ec-mobile-offer-header {
        display: grid;
        grid-template-columns: repeat(var(--ec-offer-count, 4), 1fr);
        border: 1px solid #E2E8F0;
        border-radius: 8px;
        position: sticky;
        top: var(--ec-sticky-top, 70px);
        z-index: 20;
        background: #fff;
        box-shadow: 0 2px 12px rgba(16, 16, 27, 0.08);
    }

    .ec-mobile-offer-name {
        text-align: center;
        font-size: 11px;
        padding: 12px 4px;
    }

    .ec-comparison-table-wrap {
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
        border: none;
        background-color: transparent;
        overflow: visible;
    }
}

.ec-pricing-page .landing-faq {
    margin-top: 80px;
}

.ec-pricing-page .landing-faq h2 {
    font-size: 34px;
    margin-bottom: 36px;
    text-align: center;
}

.ec-pricing-page .landing-faq__list {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ec-pricing-page .landing-faq__item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 8px;
    background: #fff;
    transition: box-shadow 0.2s;
}

.ec-pricing-page .landing-faq__item:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.ec-pricing-page .landing-faq__item[open] {
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.ec-pricing-page .landing-faq__item summary {
    padding: 20px 24px;
    font-family: 'GeneralSans-Bold', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #10101B;
    transition: color 0.2s;
}

.ec-pricing-page .landing-faq__item summary::-webkit-details-marker {
    display: none;
}

.ec-pricing-page .landing-faq__item summary::after {
    content: "+";
    font-size: 22px;
    font-weight: 400;
    color: #00BAC7;
    display: inline-block;
    margin-left: 16px;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    background: rgba(95, 90, 255, 0.08);
}

.ec-pricing-page .landing-faq__item[open] summary::after {
    content: "\2212";
    background: #00BAC7;
    color: #fff;
}

.ec-pricing-page .landing-faq__answer {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.ec-pricing-page .landing-faq__answer p {
    margin: 0;
}

.ec-pricing-page .landing-faq__answer a {
    color: #00BAC7;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .ec-pricing-page .landing-faq h2 {
        font-size: 26px;
    }

    .ec-pricing-page .landing-faq__item summary {
        font-size: 14px;
        padding: 16px 20px;
    }

    .ec-pricing-page .landing-faq__answer {
        padding: 0 20px 16px;
        font-size: 14px;
    }
}

/* ---------- Social Proof Carousel (pricing) ---------- */
.ec-social-proof {
    padding: 48px 0;
    text-align: center;
}

.ec-social-proof h2 {
    font-size: 22px;
    color: #10101B;
    margin: 0 0 32px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.ec-social-proof .landing-logos-track {
    overflow: hidden;
    position: relative;
}

.ec-social-proof .landing-logos-track::before,
.ec-social-proof .landing-logos-track::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.ec-social-proof .landing-logos-track::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fb, transparent);
}

.ec-social-proof .landing-logos-track::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fb, transparent);
}

.ec-social-proof .landing-logos-track__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 48px;
    align-items: center;
    animation: ec-scroll-logos 35s linear infinite;
    width: max-content;
}

.ec-social-proof .landing-logos-track__item {
    flex-shrink: 0;
}

.ec-social-proof .landing-logos-track__item img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: filter 0.3s, opacity 0.3s;
}

.ec-social-proof .landing-logos-track__item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes ec-scroll-logos {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .ec-social-proof .landing-logos-track__inner {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
        width: auto;
    }
}
