p.cinfos i {
    padding-right: 10px;
}
ul.smicons {
    list-style: none;
    display: inline-flex;
}
ul.smicons i {
    display: inline-block;
    color: var(--tp-theme-color);
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.smicons a:hover,
.flist a:hover {
    text-decoration: none;
    color: var(--tp-orange-color);
}
ul.text-dark {
    font-family: var(--tp-theme-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--tp-body-color);
    margin-bottom: 10px;
    line-height: 28px;
}
img.rimg {
	border-radius: 50px;
}

/* =====================================
   ONDA PRO SUPPORTING INFORMATION CARDS
===================================== */

#treatment-supporting-info .treatment-support-card {
    display: flex;
    flex-direction: column;
    max-height: 450px;
    overflow: hidden;
    background: #f4f3f0;
    border: 1px solid rgba(17, 17, 17, 0.05);
}

#treatment-supporting-info .treatment-support-card__content {
    position: relative;
    z-index: 2;
    padding: 42px 42px 30px;
    background:
        linear-gradient(
            180deg,
            #f4f3f0 0%,
            #f4f3f0 78%,
            rgba(244, 243, 240, 0) 100%
        );
}

#treatment-supporting-info .treatment-support-card__title {
    margin: 0 0 15px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 500;
    color: #111111;
}

#treatment-supporting-info .treatment-support-card__content p {
    margin: 0;
    max-width: 390px;
    font-size: 17px;
    line-height: 1.75;
    color: #4f4b45;
}

#treatment-supporting-info .treatment-support-card__image {
    position: relative;
    flex: 1;
    min-height: 330px;
    overflow: hidden;
}

#treatment-supporting-info .treatment-support-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Card 1 — shift image slightly down and left */

#treatment-supporting-info
.col-lg-4:nth-child(1)
.treatment-support-card__image img {
    object-position: 44% 58%;
}

/* Card 2 — crop closer to consultation */

#treatment-supporting-info
.col-lg-4:nth-child(2)
.treatment-support-card__image img {
    object-position: 50% 42%;
}

/* Card 3 — keep calendar central */

#treatment-supporting-info
.col-lg-4:nth-child(3)
.treatment-support-card__image img {
    object-position: 50% 55%;
}

@media (max-width: 1199px) {

    #treatment-supporting-info .treatment-support-card {
        min-height: 570px;
    }

    #treatment-supporting-info .treatment-support-card__content {
        padding: 34px 30px 25px;
    }

    #treatment-supporting-info .treatment-support-card__title {
        font-size: 26px;
    }

    #treatment-supporting-info .treatment-support-card__content p {
        font-size: 16px;
    }

}

@media (max-width: 767px) {

    #treatment-supporting-info .treatment-support-card {
        min-height: auto;
    }

    #treatment-supporting-info .treatment-support-card__content {
        padding: 30px 24px 24px;
    }

    #treatment-supporting-info .treatment-support-card__title {
        font-size: 24px;
    }

    #treatment-supporting-info .treatment-support-card__image {
        min-height: 360px;
    }

}

/* ==========================================
   ONDA PRO SUPPORTING INFO - BLENDED CARDS
========================================== */

#treatment-supporting-info .treatment-support-card{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 640px;
    overflow: hidden;
    border-radius: 30px;
    background: #f3f1ed;
}

#treatment-supporting-info .treatment-support-card__content{
    position: relative;
    z-index: 3;
    padding: 42px 42px 20px;
}

#treatment-supporting-info .treatment-support-card__title{
    margin: 0 0 14px;
    font-size: 31px;
    line-height: 1.15;
    font-weight: 500;
    color: #111111;
}

#treatment-supporting-info .treatment-support-card__content p{
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #4f4b45;
    max-width: 390px;
}

#treatment-supporting-info .treatment-support-card__media{
    position: relative;
    flex: 1;
    min-height: 420px;
    margin-top: auto;
    overflow: hidden;
}

/* THIS creates the fade / blend effect */
#treatment-supporting-info .treatment-support-card__media::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        #f3f1ed 0%,
        rgba(243,241,237,0.98) 8%,
        rgba(243,241,237,0.92) 16%,
        rgba(243,241,237,0.78) 24%,
        rgba(243,241,237,0.52) 34%,
        rgba(243,241,237,0.18) 46%,
        rgba(243,241,237,0.00) 58%
    );
}

#treatment-supporting-info .treatment-support-card__media img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* individual image positions */

#treatment-supporting-info .col-lg-4:nth-child(1) .treatment-support-card__media img{
    object-position: center bottom;
}

#treatment-supporting-info .col-lg-4:nth-child(2) .treatment-support-card__media img{
    object-position: center center;
}

#treatment-supporting-info .col-lg-4:nth-child(3) .treatment-support-card__media img{
    object-position: center bottom;
}

/* optional soft tone for more premium look */
#treatment-supporting-info .treatment-support-card__media img{
    filter: saturate(0.95) contrast(1.01);
}

/* tablet */
@media (max-width: 1199px){
    #treatment-supporting-info .treatment-support-card{
        min-height: 600px;
    }

    #treatment-supporting-info .treatment-support-card__content{
        padding: 34px 30px 18px;
    }

    #treatment-supporting-info .treatment-support-card__title{
        font-size: 27px;
    }

    #treatment-supporting-info .treatment-support-card__content p{
        font-size: 16px;
    }

    #treatment-supporting-info .treatment-support-card__media{
        min-height: 360px;
    }
}

/* mobile */
@media (max-width: 767px){
    #treatment-supporting-info .treatment-support-card{
        min-height: auto;
    }

    #treatment-supporting-info .treatment-support-card__content{
        padding: 28px 24px 16px;
    }

    #treatment-supporting-info .treatment-support-card__title{
        font-size: 24px;
    }

    #treatment-supporting-info .treatment-support-card__content p{
        font-size: 15px;
    }

    #treatment-supporting-info .treatment-support-card__media{
        min-height: 340px;
    }
}

:root {
    --lavae-primary: #dbd6c3;
    --lavae-primary-dark: #c8c0a8;
    --lavae-primary-light: #f4f1e8;

    --lavae-text: #222222;
    --lavae-muted: #73736f;
    --lavae-border: #b9b4a5;

    --lavae-success: #5f8068;
    --lavae-danger: #b96969;
    --lavae-limited: #8e846f;
}

.onda-comparison-wrap {
    width: 100%;
}

.onda-comparison-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--lavae-primary-dark) #eeeeea;
}

.onda-comparison-scroll::-webkit-scrollbar {
    height: 8px;
}

.onda-comparison-scroll::-webkit-scrollbar-track {
    background: #eeeeea;
}

.onda-comparison-scroll::-webkit-scrollbar-thumb {
    background: var(--lavae-primary-dark);
    border-radius: 20px;
}

.onda-comparison-table {
    width: 100%;
    /*min-width: 1450px;*/
    border-collapse: collapse;
    /*table-layout: fixed;*/
    background: #ffffff;
    color: var(--lavae-text);
}

.onda-comparison-table th,
.onda-comparison-table td {
    border: 1px solid var(--lavae-border);
    padding: 16px 20px;
    font-size: 16px;
    line-height: 1.55;
    text-align: center;
    vertical-align: middle;
}

.onda-comparison-table thead th {
    background: var(--lavae-primary);
    color: var(--lavae-text);
    font-size: 17px;
    font-weight: 600;
    white-space: nowrap;
}

.onda-comparison-table thead th:first-child {
    width: 190px;
}

.onda-comparison-table thead th:not(:first-child) {
    width: 252px;
}

.onda-comparison-table tbody th {
    background: #ffffff;
    color: var(--lavae-text);
    font-weight: 600;
}

.onda-comparison-table tbody tr:nth-child(even) td,
.onda-comparison-table tbody tr:nth-child(even) th {
    background: #faf9f5;
}

.onda-comparison-table td strong {
    font-weight: 600;
}

.onda-comparison-table a {
    color: #6f6857;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.25s ease;
}

.onda-comparison-table a:hover {
    color: #111111;
}

.onda-highlight {
    background: var(--lavae-primary-light);
}

.onda-comparison-table tbody tr:nth-child(even) .onda-highlight {
    background: #ece8db;
}

.onda-comparison-table thead .onda-highlight {
    background: var(--lavae-primary-dark);
    color: var(--lavae-text);
}

.comparison-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.is-positive .status-icon {
    background: var(--lavae-success);
}

.is-negative .status-icon {
    background: var(--lavae-danger);
}

.is-limited .status-icon {
    background: var(--lavae-limited);
}

.current-treatment {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 50px;
    background: var(--lavae-primary);
    color: var(--lavae-text);
    font-size: 14px;
    font-weight: 600;
}

.onda-comparison-disclaimer {
    margin: 20px 0 0;
    color: var(--lavae-muted);
    font-size: 15px;
    line-height: 1.6;
}

.onda-table-mobile-note {
    display: none;
    margin: 12px 0 0;
    color: #746e60;
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .onda-comparison-table {
        min-width: 1350px;
    }

    .onda-comparison-table th,
    .onda-comparison-table td {
        padding: 14px 16px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
	.onda-table-mobile-note {
        display: block;
    }
    .onda-comparison-scroll {
        border: 1px solid var(--lavae-border);
    }

    .onda-comparison-table {
        min-width: 1250px;
    }

    .onda-comparison-table th,
    .onda-comparison-table td {
        padding: 13px 14px;
        font-size: 14px;
        line-height: 1.45;
    }

    .onda-comparison-table thead th:first-child,
    .onda-comparison-table tbody th {
        position: sticky;
        left: 0;
        z-index: 2;
        min-width: 145px;
        max-width: 145px;
        box-shadow: 4px 0 8px rgba(0, 0, 0, 0.05);
    }

    .onda-comparison-table thead th:first-child {
        z-index: 4;
        background: var(--lavae-primary);
    }

    .onda-comparison-table tbody th {
        background: #ffffff;
    }

    .onda-comparison-table tbody tr:nth-child(even) th {
        background: #faf9f5;
    }

    .onda-comparison-disclaimer {
        font-size: 13px;
    }
}

.onda-comparison-scroll {
    width: 100%;
    overflow-x: visible;
    overflow-y: hidden;
}

.onda-comparison-table {
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
    table-layout: fixed;
}

/* Desktop and larger tablet: no scrolling */
@media (min-width: 992px) {
    .onda-comparison-scroll {
        overflow-x: visible;
    }

    .onda-comparison-table {
        width: 100%;
        min-width: 0;
        table-layout: fixed;
    }

    .onda-comparison-table thead th:first-child {
        width: 14%;
    }

    .onda-comparison-table thead th:not(:first-child) {
        width: 17.2%;
    }

    .onda-comparison-table th,
    .onda-comparison-table td {
        padding: 14px 12px;
        font-size: 14px;
        white-space: normal;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .onda-comparison-table thead th {
        font-size: 15px;
    }

    .comparison-status {
        flex-wrap: wrap;
    }
}

/* Below 992px: horizontal swipe */
@media (max-width: 991px) {
    .onda-comparison-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .onda-comparison-table {
        width: 1250px;
        min-width: 1250px;
        table-layout: fixed;
    }

    .onda-table-mobile-note {
        display: block;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .onda-comparison-table {
        width: 1180px;
        min-width: 1180px;
    }

    .onda-comparison-table th,
    .onda-comparison-table td {
        padding: 13px 14px;
        font-size: 14px;
        line-height: 1.45;
    }

    .onda-comparison-table thead th:first-child,
    .onda-comparison-table tbody th {
        position: sticky;
        left: 0;
        z-index: 2;
        min-width: 145px;
        max-width: 145px;
        box-shadow: 4px 0 8px rgba(0, 0, 0, 0.05);
    }

    .onda-comparison-table thead th:first-child {
        z-index: 4;
        background: var(--lavae-primary);
    }
}

.m-n50{
	margin: 0 -50px;
}

.lavae-why-area {
    background: #ffffff;
}

.lavae-why-heading {
    max-width: 1150px;
    margin-right: auto;
    margin-left: auto;
}

.lavae-why-heading .tp-section-title {
    line-height: 1.08;
}

.lavae-why-heading .tp-section-title span {
    display: block;
}

/* Card */
.lavae-value-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 410px;
    padding: 34px 32px 36px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e4e1d7;
    border-radius: 22px;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.lavae-value-card:hover {
    transform: translateY(-6px);
    border-color: #c9c3ae;
    box-shadow: 0 20px 45px rgba(20, 20, 20, 0.07);
}

/* Number */
.lavae-value-number {
    position: absolute;
    top: 28px;
    right: 28px;
    color: #aaa594;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* Icon */
.lavae-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 34px;
    color: #716b59;
    background: #f1eee4;
    border-radius: 50%;
}

.lavae-value-icon svg {
    display: block;
}

/* Content */
.lavae-value-title {
    max-width: 230px;
    margin: 0 0 18px;
    color: #111111;
    font-size: 25px;
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.lavae-value-card p {
    max-width: 245px;
    margin: 0;
    color: #56544f;
    font-size: 16px;
    line-height: 1.65;
}

/* Add subtle line at bottom */
.lavae-value-card::after {
    content: "";
    position: absolute;
    right: 32px;
    bottom: 25px;
    left: 32px;
    height: 1px;
    background: #ebe8df;
}

/* Medium desktop */
@media (max-width: 1399px) {
    .lavae-value-card {
        min-height: 390px;
        padding: 30px 25px 32px;
    }

    .lavae-value-title {
        font-size: 22px;
    }

    .lavae-value-card p {
        font-size: 15px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .lavae-why-area {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .lavae-why-heading {
        margin-bottom: 45px;
    }

    .lavae-value-card {
        min-height: 350px;
    }

    .lavae-value-title,
    .lavae-value-card p {
        max-width: none;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .lavae-why-area {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .lavae-why-heading {
        margin-bottom: 35px;
    }

    .lavae-why-heading .tp-section-title span {
        display: inline;
    }

    .lavae-value-card {
        min-height: auto;
        padding: 27px 24px 48px;
        border-radius: 18px;
    }

    .lavae-value-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 25px;
    }

    .lavae-value-title {
        margin-bottom: 13px;
        font-size: 22px;
    }

    .lavae-value-card p {
        font-size: 15px;
        line-height: 1.6;
    }

    .lavae-value-card::after {
        right: 24px;
        bottom: 23px;
        left: 24px;
    }
}

.tpserv__icon i {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
}