
.e-bg-base a:hover{
    color:#FFFFFF;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

/* ePolite Custom Classes */
.e-radius-30 {
    border-radius: 30px;
}

.e-bg-custom-gray {
    background-color: #F8F9FA;
}

.e-bg-base {
    background: linear-gradient(135deg, #0D967E 0%, #073937 100%);
}

.e-bg-base-light {
    background-color: #F8F9FA;
}

.e-bg-teal-tint {
    background-color: #DAF9F5;
}

.e-text-white {
    color: #FFFFFF;
}

.e-text-primary {
    color: #0D967E;
}

.e-text-contrast-color {
    color: #E9B93E;
}

.e-semibold {
    font-weight: 600;
}

.e-section-padding_top {
    padding-top: 80px;
}

.e-section-padding_bottom {
    padding-bottom: 80px;
}

@media (max-width: 991px) {
    .e-section-padding_top {
        padding-top: 60px;
    }

    .e-section-padding_bottom {
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .e-section-padding_top {
        padding-top: 40px;
    }

    .e-section-padding_bottom {
        padding-bottom: 40px;
    }

    body {
        font-size: 16px;
    }
}

/* ePolite Button */
.e-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 1.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.e-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}
.bg-contrast-color {
    background-color: #E9B93E;
    box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 5px 0px;
}

.bg-contrast-color:hover {
    background-color: #d4a535;
    box-shadow: rgba(0, 0, 0, 0.18) 3px 5px 8px 0px;
}

.e-btn-green {
    background-color: #0D967E;
    color: #FFFFFF;
    box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 5px 0px;
}

.e-btn-green:hover {
    background-color: #0a7f6b;
    color: #FFFFFF;
    box-shadow: rgba(0, 0, 0, 0.18) 3px 5px 8px 0px;
}

.text-black-lighter {
    color: #333333;
}

/* Accordion */
.e-accordion {
    list-style: none;
    padding: 0;
    margin: 0;
}

.e-accordion__item {
    margin-bottom: 16px;
}

.e-accordion__item-checkbox {
    display: none;
}

.e-accordion__item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #FFFFFF;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.e-accordion__item-header:hover {
    background-color: #f8f9fa;
}

.e-accordion__item-title {
    font-weight: 600;
    flex: 1;
}

.e-accordion__item-indicator {
    transition: transform 0.3s ease;
    color: #6C757D;
    flex-shrink: 0;
}

.e-accordion__item-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: all 0.3s ease;
    background: #FFFFFF;
    border-radius: 0 0 16px 16px;
    font-size: 0.95rem;
}

.e-accordion__item-checkbox:checked~.e-accordion__item-content {
    max-height: 600px;
    padding: 16px 24px;
}

.e-accordion__item-checkbox:checked~.e-accordion__item-header .e-accordion__item-indicator {
    transform: rotate(180deg);
}

/* List styles */
.e-list-style-1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.e-list-style-1__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.e-list-style-1__svg {
    flex-shrink: 0;
    width: 22px;
    margin-top: 4px;
}

/* Alert boxes */
.e-alert-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 16px;
    border: none;
}

.e-alert-box svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.e-alert-info {
    background-color: #EAF8F5;
}

.e-alert-warning {
    background-color: #FFF9E6;
}

.e-alert-success {
    background-color: #E8F7EF;
}

.e-alert-danger {
    background-color: #FEF0F0;
}

.e-alert-tip {
    background-color: #FFF9E6;
}

/* Card hover */
.e-card-hover {
    transition: all 0.2s ease-in-out;
}

.e-card-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

/* CTA box */
.cta-aida-box {
    background: linear-gradient(135deg, #e8f5f3 0%, #c8e6e0 100%);
    border: 2px solid #0D967E;
    box-shadow: 0 4px 20px rgba(13, 150, 126, 0.2);
}

/* Links in dark sections */
.e-bg-base a {
    color: #FFFFFF;
}

/* Table */
.e-table {
    width: 100%;
    border-collapse: collapse;
}

.e-table th,
.e-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #CED4DA;
}

.e-table th {
    background-color: #F8F9FA;
    font-weight: 600;
}

.e-table tr:hover {
    background-color: #F8F9FA;
}

/* Pills */
.e-pill {
    background-color: #F8F9FA;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 15px;
    border: 1px solid #CED4DA;
    display: inline-block;
    transition: all 0.15s ease;
}

.e-pill:hover {
    background-color: #DAF9F5;
    border-color: #0D967E;
}

/* Solution icon */
.e-solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================
    BM Visual Chart
    ============================================ */
.e-bm-chart {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.e-bm-chart__row {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #E9ECEF;
    background-color: #FFFFFF;
    transition: background-color 0.15s ease;
}

.e-bm-chart__row:last-child {
    border-bottom: none;
}

.e-bm-chart__row:hover {
    background-color: #F0FAF8;
}

.e-bm-chart__row--b0 {
    background-color: #F8F9FA;
}

.e-bm-chart__row--b0:hover {
    background-color: #EEF0F1;
}

.e-bm-chart__class {
    font-weight: 700;
    font-size: 1rem;
    min-width: 50px;
}

.e-bm-chart__bar-container {
    flex: 1;
    padding: 0 16px;
}

.e-bm-chart__bar {
    height: 28px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    min-width: 40px;
    transition: width 0.3s ease;
}

.e-bm-chart__bar--bonus {
    background: linear-gradient(90deg, #0D967E, #0BB89A);
}

.e-bm-chart__bar--neutral {
    background-color: #ADB5BD;
    color: #FFFFFF;
}

.e-bm-chart__bar--malus {
    background: linear-gradient(90deg, #E8573A, #DC3545);
}

.e-bm-chart__price {
    min-width: 95px;
    text-align: right;
    font-weight: 600;
    font-size: 0.9rem;
}

.e-bm-chart__label {
    font-size: 13px;
    color: #6C757D;
    min-width: 70px;
    text-align: right;
    font-weight: 600;
}

.e-bm-chart__divider {
    text-align: center;
    padding: 10px 20px;
    background-color: #F0FAF8;
    border-bottom: 1px solid #E9ECEF;
    font-size: 13px;
    color: #6C757D;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Recovery flow */
.e-recovery-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.e-recovery-step {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid;
}

.e-recovery-step--malus {
    background-color: #F8D7DA;
    border-color: #DC3545;
    color: #DC3545;
}

.e-recovery-step--neutral {
    background-color: #E9ECEF;
    border-color: #6C757D;
    color: #495057;
}

.e-recovery-step--bonus {
    background-color: #D4EDDA;
    border-color: #28A745;
    color: #28A745;
}

.e-recovery-arrow {
    color: #ADB5BD;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Myth cards */
.e-myth-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 6px;
}

.e-myth-label--mit {
    background-color: #F8D7DA;
    color: #DC3545;
}

.e-myth-label--realitate {
    background-color: #D4EDDA;
    color: #28A745;
}

/* Details/summary for table */
details summary {
    cursor: pointer;
    font-size: 0.9rem;
    color: #0D967E;
    font-weight: 600;
    padding: 8px 0;
}

details summary:hover {
    color: #0a7f6b;
}

details[open] summary {
    margin-bottom: 16px;
}

/* Number step circles */
.e-step-num {
    width: 40px;
    height: 40px;
    background-color: #0D967E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .e-bm-chart__row {
        flex-wrap: wrap;
        gap: 4px;
    }

    .e-bm-chart__bar-container {
        width: 100%;
        order: 3;
        padding: 4px 0 0 0;
    }

    .e-bm-chart__price {
        min-width: auto;
    }

    .e-bm-chart__label {
        min-width: auto;
    }
}

/* ============================================
    HERO FORM
    ============================================ */
.e-hero-form {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 32px 40px;
    max-width: 680px;
    margin: 0 auto;
}

.e-hero-input-group {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.e-hero-input {
    flex: 1;
    padding: .6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    outline: none;
    color: #333;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.e-hero-input::placeholder {
    color: #999;
}

.e-hero-input:focus {
    border-color: #F7C244;
    box-shadow: 0 0 0 3px rgba(247, 194, 68, 0.25);
}

.e-hero-btn {
    padding: 16px 32px;
    border-radius: 50px;
    background-color: #F7C244;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(247, 194, 68, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
}

.e-hero-btn:hover {
    background-color: #e0aa2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 194, 68, 0.5);
    color: #1a1a1a;
}

.e-hero-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

@media (max-width: 575px) {
    .e-hero-input-group {
        flex-direction: column;
    }

    .e-hero-form {
        padding: 24px 20px;
    }
}

/* ============================================
    INSURANCE PARTNERS LIST
    ============================================ */
.e-insurance-partners-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}
.e-insurance-partners-list li{
    max-width:100% !important;
}

.e-insurance-partners-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    min-height: 72px;
}

.e-insurance-partners-list li img {
    max-height: 40px;
    max-width: 110px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.2s;
}

.e-insurance-partners-list li a:hover img {
    filter: grayscale(0%);
}

/* e-list-style-2 */
.e-list-style-2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.e-list-style-2 li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.e-icon-s-20 {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ============================================
    REVIEWS
    ============================================ */
.e-mw-300 {
    min-width: 300px;
}

.e-scroll-x {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #CED4DA transparent;
    padding-bottom: 8px;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.e-scroll-x::-webkit-scrollbar {
    height: 5px;
}

.e-scroll-x::-webkit-scrollbar-track {
    background: transparent;
}

.e-scroll-x::-webkit-scrollbar-thumb {
    background-color: #CED4DA;
    border-radius: 10px;
}

.e-text-elipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.e-text-elipsis_3 {
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.e-text-elipsis_4 {
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

.wz-reviews__icon-user {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* ============================================
    BRANDS CAROUSEL
    ============================================ */
.brands-carousel {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.brands-carousel h2 {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 4px;
    flex: 1;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
    width: 110px;
    transition: transform 0.2s;
}

.brand-card:hover {
    transform: translateY(-3px);
}

.brand-logo {
    width: 90px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.brand-card:hover .brand-logo {
    box-shadow: 0 4px 14px rgba(13, 150, 126, 0.15);
    border-color: #0D967E;
}

.brand-logo img {
    max-width: 70px;
    max-height: 50px;
    object-fit: contain;
}

.brand-name {
    font-size: 12px;
    font-weight: 600;
    color: #495057;
    text-align: center;
    line-height: 1.3;
}

.carousel-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e9ecef;
    background: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #495057;
    transition: all 0.2s;
}

.carousel-button:hover {
    background: #0D967E;
    border-color: #0D967E;
    color: #fff;
}

/* ============================================
    NAVBAR
    ============================================ */
.e-navbar {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.e-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.e-navbar-brand img {
    height: 34px;
    width: auto;
}

.e-navbar-brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0D967E;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.e-navbar-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.e-navbar-links a {
    color: #495057;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.e-navbar-links a:hover,
.e-navbar-links a.active {
    background-color: #EAF8F5;
    color: #0D967E;
}

.e-navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #E9B93E;
    color: #333333;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 5px 0px;
    transition: all 0.2s ease;
    font-family: 'Open Sans', sans-serif;
}

.e-navbar-cta:hover {
    background-color: #d4a535;
    color: #333333;
    transform: translateY(-1px);
    box-shadow: rgba(0, 0, 0, 0.16) 3px 5px 8px 0px;
}

@media (max-width: 991px) {
    .e-navbar-links {
        display: none;
    }
}

/* ============================================
    FOOTER
    ============================================ */
.e-footer {
    background-color: #0D967E;
    color: rgba(255, 255, 255, 0.85);
    padding: 56px 0 32px;
}

.e-footer h6 {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.e-footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.8;
    transition: color 0.15s;
    display: block;
}

.e-footer a:hover {
    color: #E9B93E;
}

.e-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    padding-top: 24px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

.e-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.2s;
    margin-right: 6px;
}

.e-footer-social a:hover {
    background: #E9B93E;
    color: #333;
}

/* ============================================
    BREADCRUMB
    ============================================ */
.e-breadcrumb {
    background: none;
    padding: 12px 0 0;
    font-size: 0.8rem;
}

.e-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.e-breadcrumb a:hover {
    color: #E9B93E;
}

.e-breadcrumb span {
    color: rgba(255, 255, 255, 0.45);
    margin: 0 6px;
}

.e-breadcrumb strong {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
    MOBILE OVERRIDES (xs viewports)
    ============================================ */
@media (max-width: 575px) {
    .e-insurance-partners-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .e-insurance-partners-list li a {
        min-height: 64px;
        padding: 12px 10px;
    }

    .e-insurance-partners-list li img {
        max-width: 90px;
        max-height: 36px;
    }

    .e-btn.px-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .e-btn.fs-5 {
        font-size: 1rem !important;
    }

    .e-btn.bg-contrast-color {
        white-space: normal;
        line-height: 1.3;
    }

    .e-hero-form {
        padding: 20px 16px;
    }

    .e-hero-btn {
        padding: 14px 24px;
    }

    .e-recovery-step {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .e-recovery-arrow {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .brands-carousel {
        padding: 28px 16px;
    }
}

/* ============================================
    STICKY CTA
    ============================================ */
.e-sticky-cta {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%) translateY(24px);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px 12px 22px;
    background: linear-gradient(135deg, #0D967E 0%, #0a7f6b 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    max-width: calc(100% - 24px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, box-shadow 0.2s;
    z-index: 1050;
}

.e-sticky-cta.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.e-sticky-cta:hover {
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.e-sticky-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F7C244;
    color: #1a1a1a;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.e-sticky-cta:hover .e-sticky-cta__btn {
    transform: translateX(2px);
}

@media (max-width: 575px) {
    .e-sticky-cta {
        left: 0;
        right: 0;
        bottom: 0;
        transform: translateY(100%);
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 14px 16px;
        gap: 12px;
        font-size: 0.9rem;
        line-height: 1.25;
        justify-content: space-between;
        box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.22);
    }

    .e-sticky-cta.is-visible {
        transform: translateY(0);
    }

    .e-sticky-cta>span:first-child {
        flex: 1 1 auto;
        min-width: 0;
    }

    .e-sticky-cta__btn {
        width: 34px;
        height: 34px;
    }
}