:root {
    --tvzp-container: 1220px;
    --tvzp-green-900: #0f3427;
    --tvzp-green-800: #12664d;
    --tvzp-green-700: #18936c;
    --tvzp-green-100: #e7f6ef;
    --tvzp-surface: #ffffff;
    --tvzp-surface-soft: #f7faf8;
    --tvzp-border: rgba(16, 61, 47, 0.08);
    --tvzp-shadow: 0 18px 40px rgba(12, 46, 35, 0.08);
    --tvzp-radius-lg: 22px;
    --tvzp-radius-md: 16px;
    --tvzp-radius-sm: 12px;
}

body.tvzp-slide-panel-open {
    overflow: hidden;
}

.tvzp-section-heading {
    max-width: var(--tvzp-container);
    margin: 0 auto 34px;
}

.tvzp-section-heading__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--tvzp-green-700);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tvzp-section-heading__title {
    margin: 0;
    color: var(--tvzp-green-900);
    font-size: clamp(30px, 2.4vw, 42px);
    font-weight: 700;
    line-height: 1.12;
}

.tvzp-section-heading__description {
    margin: 12px auto 0;
    color: rgba(15, 52, 39, 0.72);
    font-size: 15px;
    line-height: 1.7;
}

.tvzp-button,
.tvzp-card-grid__button,
.tvzp-carousel__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: auto;
    padding: 12px 24px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: all 0.25s ease;
}

[data-tvzp-animate] {
    opacity: 0;
    will-change: opacity, transform, filter;
    transition-property: opacity, transform, filter!important;
    transition-duration: 700ms;
    transition-timing-function: ease;
}

[data-tvzp-animate].is-visible {
    opacity: 1!important;
    transform: none;
    filter: none;
}

[data-tvzp-animate="fade-up"] {
    transform: translate3d(0, 28px, 0);
}

[data-tvzp-animate="fade-down"] {
    transform: translate3d(0, -28px, 0);
}

[data-tvzp-animate="fade-left"] {
    transform: translate3d(-28px, 0, 0);
}

[data-tvzp-animate="fade-right"] {
    transform: translate3d(28px, 0, 0);
}

[data-tvzp-animate="zoom-in"] {
    transform: scale(0.9);
}

[data-tvzp-animate="zoom-out"] {
    transform: scale(1.08);
}

[data-tvzp-animate="blur-in"] {
    filter: blur(10px);
}

.tvzp-hero .animated,
.tvzp-carousel .animated {
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

@keyframes tvzpFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes tvzpFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.tvzp-hero .fadeIn,
.tvzp-carousel .fadeIn {
    animation-name: tvzpFadeIn;
}

.tvzp-hero .fadeOut,
.tvzp-carousel .fadeOut {
    animation-name: tvzpFadeOut;
}

.tvzp-hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    border-radius: 0;
    background: #0b261d;
}

.tvzp-hero__slides {
    position: relative;
    min-height: inherit;
}

.tvzp-hero__slides.owl-carousel,
.tvzp-carousel__track.owl-carousel {
    display: block;
}

.tvzp-hero__slides.owl-carousel .owl-stage-outer,
.tvzp-hero__slides.owl-carousel .owl-stage,
.tvzp-hero__slides.owl-carousel .owl-item,
.tvzp-hero__slides.owl-carousel .tvzp-hero__slide {
    min-height: inherit;
}

.tvzp-hero__slides.owl-carousel .owl-stage-outer {
    overflow: hidden;
    transform: translateZ(0);
}

.tvzp-hero__slides.owl-carousel .owl-stage {
    display: block;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.tvzp-hero__slides.owl-carousel .owl-item {
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.tvzp-hero__slide {
    position: absolute;
    inset: 0;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tvzp-hero__slides.owl-carousel .tvzp-hero__slide {
    position: relative;
    min-height: inherit;
    visibility: visible;
    opacity: 1;
    transition: none;
}

.tvzp-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.tvzp-hero__media {
    position: absolute;
    inset: 0;
}

.tvzp-hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.tvzp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 23, 34, 0.58) 0%, rgba(9, 23, 34, 0.14) 62%, rgba(9, 23, 34, 0.12) 100%);
}

.tvzp-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    width: min(100%, var(--tvzp-container));
    min-height: inherit;
    margin: 0 auto;
    padding: 90px 50px 80px;
}

.tvzp-hero__content {
    position: relative;
    max-width: 520px;
    color: #fff;
}


.tvzp-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    color: #a8f6c4;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.tvzp-hero__title {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.tvzp-hero__description {
    max-width: 46ch;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 1.75;
}

.tvzp-hero__description p {
    margin: 0;
}

.tvzp-hero__actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.tvzp-button--primary {
    color: var(--tvzp-green-900);
    background: #dff6e6;
}

.tvzp-button--primary:hover {
    color: #fff;
    background: var(--tvzp-green-700);
}

.tvzp-button--secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.tvzp-button--secondary:hover {
    color: var(--tvzp-green-900);
    background: #fff;
    border-color: #fff;
}

.tvzp-hero__arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    transition: all 0.25s ease;
}

.tvzp-hero__arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.tvzp-hero__arrow--prev {
    left: 28px;
}

.tvzp-hero__arrow--next {
    right: 28px;
}

.tvzp-hero__dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 4;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.tvzp-carousel__arrow-icon,
.tvzp-search-popup__trigger-icon,
.tvzp-search-popup__submit-icon,
.tvzp-search-popup__close-icon,
.tvzp-slide-panel__trigger-icon,
.tvzp-slide-panel__close-icon,
.tvzp-video-trigger__icon,
.tvzp-video-card__readmore-icon,
.tvzp-video-modal__close-icon,
.tvzp-button__icon,
.tvzp-card-grid__button-icon,
.tvzp-carousel__button-icon,
.tvzp-product-highlight__button-icon,
.tvzp-app-accordion__button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tvzp-carousel__arrow-icon svg,
.tvzp-search-popup__trigger-icon svg,
.tvzp-search-popup__submit-icon svg,
.tvzp-search-popup__close-icon svg,
.tvzp-slide-panel__trigger-icon svg,
.tvzp-slide-panel__close-icon svg,
.tvzp-video-trigger__icon svg,
.tvzp-video-card__readmore-icon svg,
.tvzp-video-modal__close-icon svg,
.tvzp-button__icon svg,
.tvzp-card-grid__button-icon svg,
.tvzp-carousel__button-icon svg,
.tvzp-product-highlight__button-icon svg,
.tvzp-app-accordion__button-icon svg {
    width: 1em;
    height: 1em;
}

.tvzp-logo {
    display: flex;
    width: 100%;
}

.tvzp-logo__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.tvzp-logo__media {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.tvzp-logo__image {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
}

.tvzp-logo__content {
    display: inline-flex;
    flex-direction: column;
}

.tvzp-logo__title,
.tvzp-logo__tagline {
    display: block;
    margin: 0;
    line-height: 1.2;
}

.tvzp-search-popup__overlay,
.tvzp-slide-panel__overlay {
    position: fixed;
    inset: 0;
    z-index: 99990;
}

.tvzp-search-popup__overlay {
    background-color: rgba(7, 18, 14, 0.56);
}

.tvzp-slide-panel__overlay {
    background-color: rgba(8, 16, 14, 0.52);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.32s ease, visibility 0s linear 0.32s;
}

.tvzp-portal-root,
.tvzp-portal-document,
.tvzp-portal-mount {
    position: static !important;
    inset: auto !important;
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    transform: none !important;
    filter: none !important;
    perspective: none !important;
    opacity: 1 !important;
    z-index: auto !important;
    pointer-events: none !important;
}

.tvzp-portal-root > .tvzp-video-modal,
.tvzp-portal-mount > .tvzp-search-popup__overlay,
.tvzp-portal-mount > .tvzp-search-popup__panel,
.tvzp-portal-mount > .tvzp-slide-panel__overlay,
.tvzp-portal-mount > .tvzp-slide-panel__panel,
.tvzp-portal-mount > .tvzp-video-modal {
    pointer-events: auto;
}

.tvzp-search-popup__trigger,
.tvzp-slide-panel__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tvzp-search-popup__trigger-form {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
}

.tvzp-search-popup--form .tvzp-search-popup__trigger {
    min-width: 220px;
}

.tvzp-search-popup__panel {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 99991;
    transform: translate(-50%, -48%) scale(0.98);
    width: min(100% - 32px, 640px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.tvzp-search-popup.is-open .tvzp-search-popup__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.tvzp-search-popup__panel-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(8, 16, 14, 0.18);
}

.tvzp-search-popup__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.tvzp-search-popup__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
}

.tvzp-search-popup__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: 1px solid rgba(15, 52, 39, 0.12);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tvzp-search-popup__form {
    display: flex;
    align-items: stretch;
    gap: 12px;
    padding: 10px;
}

.tvzp-search-popup__input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    background: transparent;
    outline: none;
}

.tvzp-search-popup__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 120px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tvzp-search-popup__status {
    display: none;
    align-items: center;
    gap: 10px;
    min-height: 20px;
    color: rgba(15, 52, 39, 0.72);
    font-size: 13px;
}

.tvzp-search-popup__status[data-state="loading"],
.tvzp-search-popup__status[data-state="error"] {
    display: inline-flex;
}

.tvzp-search-popup__loader {
    display: none;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: tvzpSpin 0.7s linear infinite;
}

.tvzp-search-popup__status[data-state="loading"] .tvzp-search-popup__loader {
    display: inline-flex;
}

.tvzp-search-popup__results {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tvzp-search-popup__result-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(15, 52, 39, 0.08);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.tvzp-search-popup__result-thumb {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
}

.tvzp-search-popup__result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tvzp-search-popup__result-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.tvzp-search-popup__result-title {
    color: #0f3427;
    font-size: 15px;
    font-weight: 700;
}

.tvzp-search-popup__result-meta {
    color: rgba(15, 52, 39, 0.62);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tvzp-search-popup__result-empty {
    display: block;
    padding: 12px 0;
    color: rgba(15, 52, 39, 0.62);
}

.tvzp-slide-panel__panel {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 99999;
    width: min(100vw, 420px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(15, 52, 39, 0.04), 0 20px 70px rgba(8, 16, 14, 0.18);
    will-change: transform, opacity;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease, visibility 0s linear 0.42s;
}
.panel-header {
    display: inline-flex;
    align-items: center;
    padding: 10px;
    width: 100%;
    justify-content: space-between;
}

.tvzp-slide-panel__panel--right {
    right: 0;
    transform: translateX(100%);
}

.tvzp-slide-panel__panel--left {
    left: 0;
    transform: translateX(-100%);
}

.tvzp-slide-panel.is-open .tvzp-slide-panel__panel {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease, visibility 0s linear 0s;
}

.tvzp-slide-panel.is-open .tvzp-slide-panel__overlay {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.32s ease, visibility 0s linear 0s;
}

.tvzp-slide-panel__close {
    position: sticky;
    top: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tvzp-slide-panel__body {
    min-height: calc(100vh - 72px);
}

.tvzp-slide-panel__empty {
    color: rgba(15, 52, 39, 0.68);
    font-size: 14px;
    line-height: 1.7;
}

.tvzp-responsive-icon-list__items {
    display: inline-flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 12px;
    width:100%;
}

.tvzp-responsive-icon-list[data-desktop-layout="inline"] .tvzp-responsive-icon-list__items {
    flex-direction: row;
    flex-wrap: wrap;
}

.tvzp-responsive-icon-list__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: auto;
    max-width: 100%;
    border: 1px solid rgba(15, 52, 39, 0.08);
    text-decoration: none;
    transition: all 0.25s ease;
}

.tvzp-responsive-icon-list__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tvzp-responsive-icon-list__icon svg {
    width: 1em;
    height: 1em;
}

.tvzp-responsive-icon-list__text {
    line-height: 1.5;
}

.tvzp-video-widget {
    width: 100%;
}

.tvzp-video-widget--single {
    display: flex;
}

.tvzp-video-widget__single-inner {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
}

.tvzp-video-widget__single-note {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tvzp-video-widget__single-trigger,
.tvzp-video-card__readmore,
.tvzp-video-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1;
}

.tvzp-video-widget__single-trigger {
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tvzp-video-widget__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.tvzp-video-widget__track {
    --tvzp-carousel-gap: 20px;
}

.tvzp-video-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(15, 52, 39, 0.1);
}

.tvzp-video-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #dfe6e2;
    overflow: hidden;
}

.tvzp-video-card__media-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.tvzp-video-card__thumb-image,
.tvzp-video-player__frame,
.tvzp-video-player__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
}

.tvzp-video-card__thumb-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eef4ef 0%, #d4e0d9 100%);
}

.tvzp-video-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 16, 14, 0.12) 0%, rgba(8, 16, 14, 0.55) 100%);
}

.tvzp-video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    color: #0f3427;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.tvzp-video-card__play:hover {
    transform: translate(-50%, -50%) scale(1.04);
}

.tvzp-video-card__content,
.tvzp-video-card__overlay-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tvzp-video-card__content {
    padding: 18px;
}

.tvzp-video-card__overlay-content {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 2;
    padding: 18px;
}

.tvzp-video-card__overlay-content--top {
    top: 0;
}

.tvzp-video-card__overlay-content--bottom {
    bottom: 0;
}

.tvzp-video-card__overlay-content .tvzp-video-card__title,
.tvzp-video-card__overlay-content .tvzp-video-card__description,
.tvzp-video-card__overlay-content .tvzp-video-card__readmore {
    color: #ffffff;
}

.tvzp-video-card__overlay-content .tvzp-video-card__readmore svg {
    fill: currentColor;
}

.tvzp-video-card__title {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
}

.tvzp-video-card__description {
    margin: 0;
    line-height: 1.6;
}

.tvzp-video-card__readmore {
    gap: 8px;
    text-decoration: none;
    transition: color 0.25s ease;
}

.tvzp-video-card.is-playing .tvzp-video-card__media {
    background: #000;
}

.tvzp-video-player,
.tvzp-video-player--inline {
    width: 100%;
    height: 100%;
    background: #000;
}

.tvzp-video-modal {
    position: fixed;
    inset: 0;
    z-index: 100020;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.32s ease, visibility 0s linear 0.32s;
}

.tvzp-video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 8, 0.78);
    opacity: 0;
    transition: opacity 0.32s ease;
}

.tvzp-video-modal__dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(92vw, 1080px);
    opacity: 0;
    transform: translate(-50%, -46%) scale(0.94);
    will-change: transform, opacity;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.tvzp-video-modal__content {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.tvzp-video-modal.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.32s ease, visibility 0s linear 0s;
}

.tvzp-video-modal.is-open .tvzp-video-modal__overlay {
    opacity: 1;
}

.tvzp-video-modal.is-open .tvzp-video-modal__dialog {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.tvzp-video-modal__close {
    position: absolute;
    top: -54px;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    color: #0f3427;
    cursor: pointer;
}

body.tvzp-video-modal-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .tvzp-responsive-icon-list[data-tablet-layout="block"] .tvzp-responsive-icon-list__items {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .tvzp-responsive-icon-list[data-tablet-layout="inline"] .tvzp-responsive-icon-list__items {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tvzp-video-widget__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tvzp-video-modal__dialog {
        width: min(92vw, 760px);
    }
}

@media (max-width: 767px) {
    .tvzp-responsive-icon-list[data-mobile-layout="block"] .tvzp-responsive-icon-list__items {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .tvzp-responsive-icon-list[data-mobile-layout="inline"] .tvzp-responsive-icon-list__items {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tvzp-video-widget__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .tvzp-video-widget__single-trigger {
        width: 100%;
    }

    .tvzp-video-modal__close {
        top: -48px;
    }
}

.ab-wrap {
    display: block;
}

.tvzp-animated-button {
    --tvzp-ab-zoom-scale: 1.06;
    --tvzp-ab-float-distance: 6px;
    --tvzp-ab-hover-scale: 1.05;
    --tvzp-ab-hover-translate: 4px;
    --tvzp-ab-flex-direction: row;
    display: inline-flex;
    flex-direction: var(--tvzp-ab-flex-direction);
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.tvzp-animated-button.ab-btn--full {
    display: flex;
    width: 100%;
}

.tvzp-animated-button.ab-btn--size-xs {
    padding: 10px 22px;
    font-size: 11px;
}

.tvzp-animated-button.ab-btn--size-sm {
    padding: 13px 28px;
    font-size: 13px;
}

.tvzp-animated-button.ab-btn--size-md {
    padding: 18px 40px;
    font-size: 15px;
}

.tvzp-animated-button.ab-btn--size-lg {
    padding: 22px 52px;
    font-size: 18px;
}

.tvzp-animated-button.ab-btn--size-xl {
    padding: 26px 64px;
    font-size: 22px;
}

.tvzp-animated-button[data-pause-hover="yes"]:hover {
    animation-play-state: paused !important;
}

.tvzp-animated-button .ab-text-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.tvzp-animated-button .ab-text {
    display: block;
}

.tvzp-animated-button .ab-sub {
    display: block;
    margin-top: 4px;
    opacity: 0.82;
}

.tvzp-animated-button .ab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tvzp-animated-button .ab-icon svg {
    width: 1em;
    height: 1em;
}

.tvzp-animated-button.ab-anim-zoom-pulse {
    animation: tvzpAbZoomPulse 2s ease-in-out infinite;
}

.tvzp-animated-button.ab-anim-bounce {
    animation: tvzpAbBounce 1.5s ease infinite;
}

.tvzp-animated-button.ab-anim-float {
    animation: tvzpAbFloat 2s ease-in-out infinite;
}

.tvzp-animated-button.ab-anim-shake {
    animation: tvzpAbShake 1.2s ease infinite;
}

.tvzp-animated-button.ab-anim-heartbeat {
    animation: tvzpAbHeartbeat 1.5s ease infinite;
}

.tvzp-animated-button.ab-anim-glow {
    animation: tvzpAbGlow 2s ease-in-out infinite;
}

.tvzp-animated-button.ab-anim-tada {
    animation: tvzpAbTada 1.5s ease infinite;
}

.tvzp-animated-button.ab-anim-swing {
    transform-origin: top center;
    animation: tvzpAbSwing 1.5s ease-in-out infinite;
}

.tvzp-animated-button.ab-anim-rubber {
    animation: tvzpAbRubber 1.2s ease infinite;
}

.tvzp-animated-button.ab-anim-jello {
    animation: tvzpAbJello 2s ease-in-out infinite;
}

.tvzp-animated-button.ab-hover-scale-up:hover {
    transform: scale(var(--tvzp-ab-hover-scale));
}

.tvzp-animated-button.ab-hover-scale-down:hover {
    transform: scale(var(--tvzp-ab-hover-scale));
}

.tvzp-animated-button.ab-hover-move-up:hover {
    transform: translateY(calc(var(--tvzp-ab-hover-translate) * -1));
}

.tvzp-animated-button.ab-hover-move-down:hover {
    transform: translateY(var(--tvzp-ab-hover-translate));
}

.tvzp-animated-button.ab-hover-move-right:hover {
    transform: translateX(var(--tvzp-ab-hover-translate));
}

.tvzp-animated-button.ab-hover-move-left:hover {
    transform: translateX(calc(var(--tvzp-ab-hover-translate) * -1));
}

.tvzp-animated-button.ab-hover-skew:hover {
    transform: skewX(-8deg);
}

.tvzp-animated-button.ab-hover-rotate-cw:hover {
    transform: rotate(6deg);
}

.tvzp-animated-button.ab-hover-rotate-ccw:hover {
    transform: rotate(-6deg);
}

.tvzp-act {
    --tvzp-act-underline-duration: 700ms;
    --tvzp-act-underline-easing: ease;
    position: relative;
    display: block;
}

.tvzp-act .act-title {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    line-height: 1.05;
}

.tvzp-act .act-eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.tvzp-act .act-highlight-wrap {
    position: relative;
    display: inline-block;
}

.tvzp-act .act-highlight-word {
    position: relative;
}

.tvzp-act .act-underline {
    position: absolute;
    display: block;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 5px;
    background-color: #e8a0a0;
    border-radius: 2px;
    transition: width var(--tvzp-act-underline-duration) var(--tvzp-act-underline-easing);
    z-index: -1;
}

.tvzp-act .act-underline.is-drawn {
    width: 100%;
}

.tvzp-act .act-divider {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.tvzp-act .act-divider-line {
    display: block;
    width: 50px;
    height: 1px;
    background-color: #cc0000;
}

.tvzp-act .act-divider-symbol {
    display: block;
    font-size: 14px;
    color: #cc0000;
    line-height: 1;
}

.tvzp-act .act-deco-left,
.tvzp-act .act-deco-right {
    position: absolute;
    display: block;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.tvzp-act.js-enabled .act-anim-item {
    opacity: 0;
}

.tvzp-act.js-enabled .act-anim-item.is-animated {
    opacity: 1;
    animation-duration: var(--tvzp-act-duration, 700ms);
    animation-delay: var(--tvzp-act-delay, 0ms);
    animation-fill-mode: both;
    animation-timing-function: var(--tvzp-act-easing, ease);
}

.tvzp-act.js-enabled .tvzp-act-anim--none.is-animated {
    animation: none;
}

.tvzp-act.js-enabled .tvzp-act-anim--fade.is-animated { animation-name: tvzpActFade; }
.tvzp-act.js-enabled .tvzp-act-anim--fade-up.is-animated { animation-name: tvzpActFadeUp; }
.tvzp-act.js-enabled .tvzp-act-anim--fade-down.is-animated { animation-name: tvzpActFadeDown; }
.tvzp-act.js-enabled .tvzp-act-anim--fade-left.is-animated { animation-name: tvzpActFadeLeft; }
.tvzp-act.js-enabled .tvzp-act-anim--fade-right.is-animated { animation-name: tvzpActFadeRight; }
.tvzp-act.js-enabled .tvzp-act-anim--slide-up.is-animated { animation-name: tvzpActSlideUp; }
.tvzp-act.js-enabled .tvzp-act-anim--slide-down.is-animated { animation-name: tvzpActSlideDown; }
.tvzp-act.js-enabled .tvzp-act-anim--zoom-in.is-animated { animation-name: tvzpActZoomIn; }
.tvzp-act.js-enabled .tvzp-act-anim--zoom-out.is-animated { animation-name: tvzpActZoomOut; }
.tvzp-act.js-enabled .tvzp-act-anim--flip-x.is-animated { animation-name: tvzpActFlipX; }
.tvzp-act.js-enabled .tvzp-act-anim--flip-y.is-animated { animation-name: tvzpActFlipY; }

@keyframes tvzpSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes tvzpAbZoomPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(var(--tvzp-ab-zoom-scale)); }
}

@keyframes tvzpAbBounce {
    0%, 100% { transform: translateY(0); }
    20% { transform: translateY(-12px); }
    40% { transform: translateY(-18px); }
    60% { transform: translateY(-6px); }
    80% { transform: translateY(-4px); }
}

@keyframes tvzpAbFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(calc(var(--tvzp-ab-float-distance) * -1)); }
}

@keyframes tvzpAbShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-6px); }
    20%, 40%, 60%, 80% { transform: translateX(6px); }
}

@keyframes tvzpAbHeartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.12); }
    28% { transform: scale(1); }
    42% { transform: scale(1.12); }
    70% { transform: scale(1); }
}

@keyframes tvzpAbGlow {
    0%, 100% { box-shadow: 0 0 8px 2px rgba(204, 0, 0, 0.3); }
    50% { box-shadow: 0 0 28px 12px rgba(204, 0, 0, 0.65); }
}

@keyframes tvzpAbTada {
    0% { transform: scaleX(1); }
    10%, 20% { transform: scale3d(.9, .9, .9) rotate(-3deg); }
    30%, 50%, 70%, 90% { transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); }
    40%, 60%, 80% { transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); }
    100% { transform: scaleX(1); }
}

@keyframes tvzpAbSwing {
    20% { transform: rotate(12deg); }
    40% { transform: rotate(-10deg); }
    60% { transform: rotate(5deg); }
    80% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

@keyframes tvzpAbRubber {
    0% { transform: scale3d(1, 1, 1); }
    30% { transform: scale3d(1.25, .75, 1); }
    40% { transform: scale3d(.75, 1.25, 1); }
    50% { transform: scale3d(1.15, .85, 1); }
    65% { transform: scale3d(.95, 1.05, 1); }
    75% { transform: scale3d(1.05, .95, 1); }
    100% { transform: scale3d(1, 1, 1); }
}

@keyframes tvzpAbJello {
    0%, 100% { transform: skewX(0) skewY(0); }
    11.1% { transform: skewX(-12.5deg) skewY(-12.5deg); }
    22.2% { transform: skewX(6.25deg) skewY(6.25deg); }
    33.3% { transform: skewX(-3.125deg) skewY(-3.125deg); }
    44.4% { transform: skewX(1.5625deg) skewY(1.5625deg); }
    55.5% { transform: skewX(-.78125deg) skewY(-.78125deg); }
    66.6% { transform: skewX(.390625deg) skewY(.390625deg); }
    77.7% { transform: skewX(-.1953125deg) skewY(-.1953125deg); }
}

@keyframes tvzpActFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes tvzpActFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes tvzpActFadeDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes tvzpActFadeLeft {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes tvzpActFadeRight {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes tvzpActSlideUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes tvzpActSlideDown {
    from { opacity: 0; transform: translateY(-60px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes tvzpActZoomIn {
    from { opacity: 0; transform: scale(0.75); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes tvzpActZoomOut {
    from { opacity: 0; transform: scale(1.2); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes tvzpActFlipX {
    from { opacity: 0; transform: rotateX(90deg); }
    to { opacity: 1; transform: rotateX(0deg); }
}

@keyframes tvzpActFlipY {
    from { opacity: 0; transform: rotateY(90deg); }
    to { opacity: 1; transform: rotateY(0deg); }
}

@media (max-width: 767px) {
    .tvzp-search-popup__form {
        flex-direction: column;
    }

    .tvzp-search-popup__submit {
        width: 100%;
    }

    .tvzp-search-popup__result-link {
        padding: 12px;
    }

    .tvzp-slide-panel__panel {
        width: min(100vw, 100%);
    }
}

.tvzp-hero__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.25s ease;
}

.tvzp-hero__dot.is-active {
    width: 34px;
    background: #fff;
}

.tvzp-promise,
.tvzp-card-grid,
.tvzp-app-list,
.tvzp-trust {
    width: min(100%, var(--tvzp-container));
    margin: 0 auto;
}

.tvzp-promise__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 36px;
    align-items: center;
    padding: 30px;
    border-radius: var(--tvzp-radius-lg);
    background: var(--tvzp-surface);
    box-shadow: var(--tvzp-shadow);
}

.tvzp-promise__image img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
}

.tvzp-promise__title {
    margin: 0 0 14px;
    color: var(--tvzp-green-900);
    font-size: clamp(28px, 2.1vw, 36px);
    line-height: 1.2;
}

.tvzp-promise__description {
    color: rgba(15, 52, 39, 0.74);
    font-size: 15px;
    line-height: 1.8;
}

.tvzp-promise__description p {
    margin: 0;
}

.tvzp-promise__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.tvzp-promise__stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px;
    border: 1px solid rgba(16, 61, 47, 0.08);
    border-radius: 16px;
    background: var(--tvzp-surface-soft);
}

.tvzp-promise__stat-number {
    color: var(--tvzp-green-800);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.tvzp-promise__stat-label {
    color: rgba(15, 52, 39, 0.7);
    font-size: 13px;
    line-height: 1.5;
}

.tvzp-card-grid__items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.tvzp-card-grid__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 18px;
    border: 1px solid var(--tvzp-border);
    border-radius: 18px;
    background: var(--tvzp-surface);
    box-shadow: var(--tvzp-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tvzp-card-grid__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px rgba(12, 46, 35, 0.12);
}

.tvzp-card-grid__image {
    position: relative;
    margin-bottom: 16px;
    overflow: hidden;
}

.tvzp-card-grid__image img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.tvzp-card-grid__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.tvzp-card-grid__image-meta {
    position: absolute;
    left: 16px;
    bottom: auto;
    z-index: 2;
    top: 12px;
}

.tvzp-card-grid__meta {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    color: var(--tvzp-green-700);
    background: transparent;
    padding: 0;
    border-radius: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.tvzp-card-grid__date {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    color: rgba(15, 52, 39, 0.55);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: color 0.25s ease;
}

.tvzp-card-grid__title {
    margin: 0;
    color: var(--tvzp-green-900);
    font-size: 18px;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.tvzp-card-grid__description {
    margin: 10px 0 0;
    color: rgba(15, 52, 39, 0.72);
    font-size: 14px;
    line-height: 1.7;
    transition: color 0.25s ease;
}

.tvzp-card-grid__button {
    margin-top: 16px;
    color: #fff;
    background: var(--tvzp-green-700);
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.tvzp-card-grid--category .tvzp-card-grid__card {
    padding: 14px;
    text-align: center;
}

.tvzp-card-grid--category .tvzp-card-grid__image img {
    height: 90px;
}

.tvzp-card-grid--category .tvzp-card-grid__meta,
.tvzp-card-grid--category .tvzp-card-grid__description,
.tvzp-card-grid--category .tvzp-card-grid__button {
    display: none;
}

.tvzp-card-grid--category .tvzp-card-grid__title {
    font-size: 14px;
    margin-top: 2px;
}

.tvzp-card-grid--blog .tvzp-card-grid__card {
    overflow: hidden;
    padding: 0;
    border-radius: 18px;
}

.tvzp-card-grid--blog .tvzp-card-grid__image img {
    height: 190px;
    border-radius: 0;
}

.tvzp-card-grid--blog .tvzp-card-grid__image {
    margin-bottom: 0;
}

.tvzp-card-grid--blog .tvzp-card-grid__image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 72px;
    background: linear-gradient(180deg, rgba(9, 26, 20, 0) 0%, rgba(9, 26, 20, 0.45) 100%);
    pointer-events: none;
}

.tvzp-card-grid--blog .tvzp-card-grid__content {
    padding: 16px 18px 18px;
}

.tvzp-card-grid--blog .tvzp-card-grid__meta {
    margin-bottom: 0;
    padding: 7px 14px;
    border-radius: 999px;
    background: #17815e;
    color: #fff;
    letter-spacing: 0.05em;
}

.tvzp-card-grid--blog .tvzp-card-grid__date {
    margin-bottom: 9px;
}

.tvzp-card-grid--blog .tvzp-card-grid__title {
    font-size: 18px;
    line-height: 1.34;
}

.tvzp-card-grid--blog .tvzp-card-grid__description {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.75;
}

.tvzp-card-grid--blog .tvzp-card-grid__button {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--tvzp-green-800);
    font-size: 13px;
    font-weight: 700;
}

.tvzp-card-grid--blog .tvzp-card-grid__button::after {
    content: "\2192";
    margin-left: 8px;
    line-height: 1;
}

.tvzp-app-list__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tvzp-app-list__item {
    border-radius: 16px;
    border: 1px solid var(--tvzp-border);
    background: var(--tvzp-surface);
    box-shadow: 0 10px 22px rgba(12, 46, 35, 0.05);
}

.tvzp-app-list__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    color: var(--tvzp-green-900);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.tvzp-app-list__icon {
    color: var(--tvzp-green-700);
    font-size: 20px;
    font-weight: 700;
}

.tvzp-carousel {
    position: relative;
    padding: 0;
    --tvzp-carousel-gap: 20px;
    --tvzp-carousel-center-padding: 0px;
}

.tvzp-carousel--highlight {
    padding: 34px 36px 40px;
    border-radius: 24px;
    background: #17815e;
}

.tvzp-carousel--highlight .tvzp-section-heading__eyebrow,
.tvzp-carousel--highlight .tvzp-section-heading__title,
.tvzp-carousel--highlight .tvzp-section-heading__description {
    color: #fff;
}

.tvzp-carousel__viewport {
    box-sizing: border-box;
    overflow: hidden;
    padding-right: 0;
    padding-left: 0;
}

.tvzp-carousel__track {
    display: flex;
    gap: var(--tvzp-carousel-gap);
    transition: transform 0.4s ease;
    will-change: transform;
}

.tvzp-carousel__track.owl-carousel {
    gap: 0;
    transition: none;
}

.tvzp-carousel__track.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.tvzp-carousel__track.owl-carousel .owl-stage {
    display: block;
}

.tvzp-carousel__track.owl-carousel .owl-item {
    height: auto;
    display: flex;
    box-sizing: border-box;
}

.tvzp-carousel__track.owl-carousel .owl-item > .tvzp-carousel__item {
    width: 100%;
    height: 100%;
}

.tvzp-carousel__item {
    flex: 0 0 auto;
    width: 100%;
}

.tvzp-carousel__card {
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--tvzp-border);
    background: #fff;
    box-shadow: var(--tvzp-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tvzp-carousel__card:hover {
    transform: translateY(-4px);
}

.tvzp-carousel__image {
    max-width: 100%;
    overflow: hidden;
}

.tvzp-carousel__image img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.tvzp-carousel__content {
    padding: 18px;
}

.tvzp-carousel__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--tvzp-green-700);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.tvzp-carousel__title {
    margin: 0;
    color: var(--tvzp-green-900);
    font-size: 19px;
    line-height: 1.28;
    transition: color 0.25s ease;
}

.tvzp-carousel__description {
    margin: 10px 0 0;
    color: rgba(15, 52, 39, 0.72);
    font-size: 14px;
    line-height: 1.7;
    transition: color 0.25s ease;
}

.tvzp-carousel__button {
    margin-top: 16px;
    color: #fff;
    background: var(--tvzp-green-700);
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.tvzp-carousel__nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.tvzp-carousel__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--tvzp-green-100);
    color: var(--tvzp-green-900);
    cursor: pointer;
}

.tvzp-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.tvzp-carousel__dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 52, 39, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.tvzp-carousel__dot.is-active {
    width: 28px;
    background: var(--tvzp-green-900);
}

.tvzp-iconbox {
    --tvzp-carousel-gap: 24px;
}

.tvzp-iconbox__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    --tvzp-iconbox-gap: 24px;
}

.tvzp-iconbox__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 1 calc((100% - 2 * var(--tvzp-iconbox-gap, 24px)) / 3);
    max-width: calc((100% - 2 * var(--tvzp-iconbox-gap, 24px)) / 3);
    padding: 26px 24px;
    border: 1px solid var(--tvzp-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(8, 33, 25, 0.06);
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.tvzp-iconbox__card:hover {
    transform: translateY(-4px);
}

.tvzp-iconbox__icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: var(--tvzp-green-100);
    color: var(--tvzp-green-800);
    overflow: hidden;
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tvzp-iconbox__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    color: inherit;
    transition: color 0.25s ease;
}

.tvzp-iconbox__icon i,
.tvzp-iconbox__icon svg,
.tvzp-iconbox__button-icon i,
.tvzp-iconbox__button-icon svg {
    display: block;
}

.tvzp-iconbox__icon svg,
.tvzp-iconbox__button-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.tvzp-iconbox__content {
    width: 100%;
}

.tvzp-iconbox__subtitle {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--tvzp-green-700);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.tvzp-iconbox__title {
    margin: 0;
    color: var(--tvzp-green-900);
    font-size: 22px;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.tvzp-iconbox__description {
    margin: 12px 0 0;
    color: rgba(15, 52, 39, 0.72);
    font-size: 14px;
    line-height: 1.75;
    transition: color 0.25s ease;
}

.tvzp-iconbox__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 18px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--tvzp-green-700);
    color: #fff;
    text-decoration: none;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tvzp-iconbox__button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: inherit;
    transition: color 0.25s ease;
}

.tvzp-iconbox--layout-carousel .tvzp-carousel__track.owl-carousel .owl-item > .tvzp-carousel__item,
.tvzp-iconbox--layout-carousel .tvzp-carousel__item {
    height: 100%;
}

.tvzp-iconbox--layout-carousel .tvzp-iconbox__card {
    height: 100%;
}

/* ── Equal Height ──────────────────────────────────────────────────────────── */

/* Grid equal height — cards naturally stretch to the tallest in each row */
.tvzp-iconbox--equal-height .tvzp-iconbox__grid {
    align-items: stretch;
}

/* Push button to bottom when equal height is on */
.tvzp-iconbox--equal-height .tvzp-iconbox__card .tvzp-iconbox__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tvzp-iconbox--equal-height .tvzp-iconbox__card .tvzp-iconbox__button {
    margin-top: auto;
}

/* Carousel equal height */
.tvzp-iconbox--equal-height.tvzp-iconbox--layout-carousel .tvzp-carousel__track.owl-carousel .owl-item,
.tvzp-iconbox--equal-height.tvzp-iconbox--layout-carousel .tvzp-carousel__item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tvzp-iconbox--equal-height.tvzp-iconbox--layout-carousel .tvzp-iconbox__card {
    flex: 1;
    height: 100%;
}

.tvzp-trust {
    padding: 34px 24px;
    text-align: center;
}

.tvzp-trust__row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.tvzp-trust__left,
.tvzp-trust__right {
    color: var(--tvzp-green-900);
    font-size: clamp(30px, 2.6vw, 52px);
    font-weight: 700;
    line-height: 1.06;
}

.tvzp-trust__center img {
    width: 120px;
    max-width: 100%;
    height: auto;
}

.tvzp-trust__description {
    max-width: 740px;
    margin: 16px auto 0;
    color: rgba(15, 52, 39, 0.72);
    font-size: 15px;
    line-height: 1.7;
}

.tvzp-menu {
    position: relative;
    width: 100%;
    --tvzp-menu-gap: 28px;
    --tvzp-menu-drawer-width: 380px;
}

.tvzp-menu__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 50px;
}

.tvzp-menu__desktop {
    flex: 1 1 auto;
}

.tvzp-menu__desktop .tvzp-menu__list,
.tvzp-menu__mobile-nav .tvzp-menu__list,
.tvzp-menu__desktop .sub-menu,
.tvzp-menu__mobile-nav .sub-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tvzp-menu__desktop .tvzp-menu__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--tvzp-menu-gap);
}

.tvzp-menu__desktop .tvzp-menu__list > li {
    position: relative;
}

.tvzp-menu__desktop .tvzp-menu__list > li > a,
.tvzp-menu__mobile-nav .tvzp-menu__list > li > a {
    text-decoration: none;
    border: 1px solid transparent;
    background: transparent;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.tvzp-menu__desktop .tvzp-menu__list > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    color: var(--tvzp-green-900);
    font-size: 15px;
    font-weight: 600;
}

.tvzp-menu__desktop .menu-item-has-children > a::after {
    content: "\25BE";
    margin-left: 8px;
    font-size: 11px;
}

.tvzp-menu__desktop .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 30;
    min-width: 220px;
    padding: 12px 0;
    border: 1px solid rgba(15, 52, 39, 0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 32px rgba(8, 33, 25, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.tvzp-menu__desktop .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tvzp-menu__desktop .sub-menu a {
    display: block;
    padding: 9px 18px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--tvzp-green-900);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.tvzp-menu__toggle,
.tvzp-menu__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--tvzp-green-100);
    color: var(--tvzp-green-900);
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.tvzp-menu__toggle:hover,
.tvzp-menu__close:hover {
    transform: translateY(-1px);
}

.tvzp-menu__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
}

.tvzp-menu__icon i {
    display: block;
}

.tvzp-menu__icon svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.tvzp-menu__overlay {
    position: fixed;
    inset: 0;
    z-index: 99997;
    border: 0;
    background: rgba(11, 25, 20, 0.48);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.tvzp-menu__drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99998;
    width: min(100%, var(--tvzp-menu-drawer-width));
    height: 100vh;
    background: #fff;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.tvzp-menu--drawer-left .tvzp-menu__drawer {
    right: auto;
    left: 0;
    transform: translate3d(-100%, 0, 0);
}

.tvzp-menu__drawer-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    padding: 26px 24px;
}

.tvzp-menu__drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.tvzp-menu__mobile-logo,
.tvzp-menu__mobile-logo-link {
    display: inline-flex;
    align-items: center;
}

.tvzp-menu__mobile-logo img {
    display: block;
    width: 140px;
    max-width: 100%;
    height: auto;
}

.tvzp-menu__mobile-nav .tvzp-menu__list {
    display: flex;
    flex-direction: column;
}

.tvzp-menu__mobile-nav .tvzp-menu__mobile-item-row {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.tvzp-menu__mobile-nav .tvzp-menu__mobile-item-row > a,
.tvzp-menu__mobile-nav .tvzp-menu__list > li > a {
    display: block;
    flex: 1 1 auto;
    padding: 12px 0;
    border-bottom: 1px solid rgba(15, 52, 39, 0.08);
    color: var(--tvzp-green-900);
    font-size: 18px;
    font-weight: 600;
}

.tvzp-menu__submenu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 42px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(15, 52, 39, 0.08);
    background: transparent;
    color: var(--tvzp-green-900);
    cursor: pointer;
}

.tvzp-menu__submenu-toggle-icon {
    display: inline-flex;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
}

.tvzp-menu__mobile-nav .menu-item-has-children.is-submenu-open > .tvzp-menu__mobile-item-row .tvzp-menu__submenu-toggle-icon {
    transform: rotate(-135deg) translateY(1px);
}

.tvzp-menu__mobile-nav .sub-menu {
    padding-top: 8px;
    padding-left: 18px;
}

.tvzp-menu__mobile-nav .sub-menu[hidden] {
    display: none !important;
}

.tvzp-menu__mobile-nav .sub-menu > li > .tvzp-menu__mobile-item-row > a,
.tvzp-menu__mobile-nav .sub-menu a {
    display: block;
    padding: 8px 0;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(15, 52, 39, 0.72);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.tvzp-menu__mobile-nav .sub-menu .tvzp-menu__submenu-toggle {
    width: 34px;
    border-bottom-color: transparent;
}

.tvzp-menu__template {
    margin-top: 28px;
}

.tvzp-menu__template:empty {
    display: none;
}

.tvzp-menu__placeholder {
    color: rgba(15, 52, 39, 0.6);
    font-size: 14px;
}

.tvzp-menu__toggle,
.tvzp-menu__overlay,
.tvzp-menu__drawer {
    display: none;
}

.tvzp-menu.is-mobile .tvzp-menu__desktop {
    display: none;
}

.tvzp-menu.is-mobile .tvzp-menu__toggle,
.tvzp-menu.is-mobile .tvzp-menu__overlay,
.tvzp-menu.is-mobile .tvzp-menu__drawer {
    display: inline-flex;
}

.tvzp-menu.is-mobile .tvzp-menu__overlay {
    display: block;
}

.tvzp-menu.is-mobile .tvzp-menu__drawer {
    display: block;
}

.tvzp-menu.is-open .tvzp-menu__overlay {
    opacity: 1;
    visibility: visible;
}

.tvzp-menu.is-open .tvzp-menu__drawer {
    transform: translate3d(0, 0, 0);
}

body.tvzp-menu-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .tvzp-hero__inner {
        padding: 80px 36px 72px;
    }

    .tvzp-promise__inner,
    .tvzp-trust__row {
        grid-template-columns: 1fr;
    }

    .tvzp-card-grid__items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tvzp-iconbox__grid .tvzp-iconbox__card {
        flex: 0 1 calc((100% - var(--tvzp-iconbox-gap, 24px)) / 2);
        max-width: calc((100% - var(--tvzp-iconbox-gap, 24px)) / 2);
    }
}

@media (max-width: 767px) {
    .tvzp-hero {
        min-height: 560px;
    }

    .tvzp-hero__inner {
        width: 100%;
        padding: 64px 22px 80px;
    }

    .tvzp-iconbox__grid .tvzp-iconbox__card {
        flex: 0 1 100%;
        max-width: 100%;
    }

    .tvzp-hero__content::after {
        right: -16px;
        bottom: -18px;
        width: 58px;
        height: 58px;
        border-right-width: 8px;
        border-bottom-width: 8px;
    }

    .tvzp-hero__arrow {
        display: none;
    }

    .tvzp-promise__inner {
        padding: 18px;
    }

    .tvzp-promise__stats,
    .tvzp-card-grid__items,
    .tvzp-app-list__grid {
        grid-template-columns: 1fr;
    }

    .tvzp-carousel--highlight {
        padding: 24px 18px 32px;
    }

    .tvzp-trust {
        padding: 20px 12px;
    }
}

.tvzp-app-accordion__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tvzp-app-accordion__item {
    border-bottom: 1px solid rgba(16, 61, 47, 0.14);
}

.tvzp-app-accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 18px 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.tvzp-app-accordion__title {
    color: var(--tvzp-green-900);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.tvzp-app-accordion__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    color: var(--tvzp-green-700);
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    transition: transform 0.2s ease;
}

.tvzp-app-accordion__icon--active  { display: none; }
.tvzp-app-accordion__icon--inactive { display: inline-flex; align-items: center; }
.tvzp-app-accordion__item.is-active .tvzp-app-accordion__icon--active   { display: inline-flex; align-items: center; }
.tvzp-app-accordion__item.is-active .tvzp-app-accordion__icon--inactive { display: none; }

.tvzp-app-accordion__body {
    display: block;
}

.tvzp-app-accordion__body-inner {
    padding: 0 0 18px;
}

.tvzp-app-accordion__content {
    color: rgba(15, 52, 39, 0.74);
    font-size: 14px;
    line-height: 1.8;
}

.tvzp-app-accordion__content p {
    margin: 0;
}

.tvzp-app-accordion__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--tvzp-green-700);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.tvzp-card-grid--layout-carousel .tvzp-carousel__viewport {
    overflow: hidden;
}

.tvzp-card-grid--layout-carousel .tvzp-carousel__track:not(.owl-carousel) {
    display: flex;
    gap: var(--tvzp-carousel-gap, 20px);
    transition: transform 0.4s ease;
}

.tvzp-card-grid--layout-carousel .tvzp-carousel__item {
    flex: 0 0 auto;
}

.tvzp-card-grid--layout-carousel .tvzp-carousel__nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

.tvzp-card-grid--layout-carousel .tvzp-carousel__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--tvzp-green-100);
    color: var(--tvzp-green-900);
    cursor: pointer;
}

.tvzp-card-grid--layout-carousel .tvzp-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.tvzp-card-grid--layout-carousel .tvzp-carousel__dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 52, 39, 0.22);
}

.tvzp-card-grid--layout-carousel .tvzp-carousel__dot.is-active {
    width: 28px;
    background: var(--tvzp-green-900);
}

.tvzp-industries .tvzp-carousel__track {
    align-items: flex-end;
    justify-content: center;
    --tvzp-carousel-gap: 18px;
    padding-top: 28px;
}

.tvzp-industries .tvzp-carousel__track.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.tvzp-industries .tvzp-carousel__track.owl-carousel .owl-item {
    align-items: flex-end;
}

.tvzp-industries .tvzp-carousel__viewport {
    max-width: 1160px;
    margin: 0 auto;
    padding-top: 6px;
}

.tvzp-industries .tvzp-carousel__item {
    display: flex;
    align-items: flex-end;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.tvzp-industries__card {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--tvzp-shadow);
    transform-origin: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
}

.tvzp-industries__link {
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
}

.tvzp-industries__image {
    position: relative;
}

.tvzp-industries__image img {
    display: block;
    width: 100%;
    height: 290px;
    object-fit: cover;
}

.tvzp-industries__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 35, 27, 0.04) 0%, rgba(12, 35, 27, 0.72) 100%);
}

.tvzp-industries__content {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    text-align: center;
}

.tvzp-industries__subtitle {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tvzp-industries__title {
    margin: 0;
    color: #fff;
    font-size: 22px;
    line-height: 1.18;
}

@media (min-width: 768px) {
    .tvzp-industries {
        --tvzp-industries-focus-scale: 1.06;
        --tvzp-industries-near-scale: 0.92;
        --tvzp-industries-far-scale: 0.82;
    }

    .tvzp-industries .tvzp-carousel__item.is-focus {
        z-index: 3;
    }

    .tvzp-industries .owl-item.is-focus .tvzp-industries__card,
    .tvzp-industries .tvzp-carousel__item.is-focus .tvzp-industries__card {
        transform: scale(var(--tvzp-industries-focus-scale));
        box-shadow: 0 26px 48px rgba(8, 33, 25, 0.18);
    }

    .tvzp-industries .owl-item.is-near,
    .tvzp-industries .tvzp-carousel__item.is-near {
        z-index: 2;
    }

    .tvzp-industries .owl-item.is-near .tvzp-industries__card,
    .tvzp-industries .tvzp-carousel__item.is-near .tvzp-industries__card {
        transform: scale(var(--tvzp-industries-near-scale));
        opacity: 0.96;
    }

    .tvzp-industries .owl-item.is-far,
    .tvzp-industries .tvzp-carousel__item.is-far {
        z-index: 1;
    }

    .tvzp-industries .owl-item.is-far .tvzp-industries__card,
    .tvzp-industries .tvzp-carousel__item.is-far .tvzp-industries__card {
        transform: scale(var(--tvzp-industries-far-scale));
        opacity: 0.88;
    }
}

.tvzp-product-highlight {
    --tvzp-product-highlight-image-width: 160px;
    padding: 36px 30px 40px;
    border-radius: 0;
    background: #17815e;
}

.tvzp-product-highlight .tvzp-section-heading {
    text-align: center;
}

.tvzp-product-highlight .tvzp-section-heading__eyebrow,
.tvzp-product-highlight .tvzp-section-heading__title,
.tvzp-product-highlight .tvzp-section-heading__description {
    color: #fff;
}

.tvzp-product-highlight .tvzp-carousel__track {
    --tvzp-carousel-gap: 18px;
}

.tvzp-product-highlight__card {
    display: grid;
    grid-template-columns: minmax(0, var(--tvzp-product-highlight-image-width)) minmax(0, 1fr);
    gap: 0;
    min-height: 160px;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(8, 33, 25, 0.12);
}

.tvzp-product-highlight__image {
    max-width: 100%;
}

.tvzp-product-highlight__image img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.tvzp-product-highlight__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 20px;
}

.tvzp-product-highlight__badge {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--tvzp-green-700);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.tvzp-product-highlight__title {
    margin: 0;
    color: var(--tvzp-green-900);
    font-size: 20px;
    line-height: 1.2;
}

.tvzp-product-highlight__description {
    margin: 10px 0 0;
    color: rgba(15, 52, 39, 0.72);
    font-size: 14px;
    line-height: 1.7;
}

.tvzp-product-highlight__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 14px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--tvzp-green-700);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.tvzp-product-highlight .tvzp-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.tvzp-product-highlight .tvzp-carousel__dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
}

.tvzp-product-highlight .tvzp-carousel__dot.is-active {
    width: 28px;
    background: #fff;
}

@media (max-width: 991px) {
    .tvzp-app-accordion__grid {
        grid-template-columns: 1fr;
    }

    .tvzp-product-highlight {
        padding: 28px 18px 32px;
    }

    .tvzp-product-highlight__card {
        grid-template-columns: 1fr;
    }

    .tvzp-product-highlight__image img {
        height: 200px;
    }
}

.mobile-nav-body {
    flex: 1;
}
/* ============================================================
   ICON BOX — additional layout styles (icon left / icon right)
   ============================================================ */

/* ── Icon-Left layout ────────────────────────────────────── */
.tvzp-iconbox__card--icon-left,
.tvzp-iconbox__card--icon-right {
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
}

.tvzp-iconbox__card--icon-right {
    flex-direction: row-reverse;
}

.tvzp-iconbox__card--icon-left .tvzp-iconbox__icon-box,
.tvzp-iconbox__card--icon-right .tvzp-iconbox__icon-box {
    flex-shrink: 0;
    margin-bottom: 0;
}

.tvzp-iconbox__card--icon-left .tvzp-iconbox__content,
.tvzp-iconbox__card--icon-right .tvzp-iconbox__content {
    flex: 1;
}

/* RTL */
[dir="rtl"] .tvzp-iconbox__card--icon-left { flex-direction: row-reverse; }
[dir="rtl"] .tvzp-iconbox__card--icon-right { flex-direction: row; }

/* ============================================================
   PRICE BOX
   ============================================================ */

.tvzp-price-box {
    position: relative;
    overflow: hidden;
    text-align: left;
}

.tvzp-price-box__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 14px;
}

.tvzp-price-box__badge i,
.tvzp-price-box__badge svg {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

.tvzp-price-box__body {
    padding: 30px 35px;
}

.tvzp-price-box__title {
    margin: 0 0 8px;
    padding: 0;
}

.tvzp-price-box__subtitle {
    margin-bottom: 16px;
}

.tvzp-price-box__pricing {
    display: flex;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
}

.tvzp-price-box__old-price {
    position: relative;
    display: inline-block;
}

.tvzp-price-box__old-price::after {
    content: '';
    position: absolute;
    width: 110%;
    height: 2px;
    background: currentColor;
    top: 50%;
    inset-inline-start: -5%;
    transform: rotate(-8deg);
    border-radius: 2px;
    opacity: 0.7;
}

.tvzp-price-box__divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.tvzp-price-box__highlight-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    margin-bottom: 14px;
}

.tvzp-price-box__hf-icon {
    display: inline-flex;
    align-items: center;
}

.tvzp-price-box__hf-icon i { font-size: 22px; }
.tvzp-price-box__hf-icon svg { width: 22px; height: 22px; fill: currentColor; }

.tvzp-price-box__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tvzp-price-box__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.tvzp-price-box__feat-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.tvzp-price-box__feat-icon i  { font-size: 15px; }
.tvzp-price-box__feat-icon svg { width: 15px; height: 15px; fill: currentColor; }

.tvzp-price-box__btn {
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.tvzp-price-box__btn--pulse {
    animation: tvzpPriceBoxPulse 2s ease-in-out infinite;
}

.tvzp-price-box__btn--pulse:hover { animation: none; }

@keyframes tvzpPriceBoxPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.06); }
    100% { transform: scale(1); }
}

.tvzp-price-box__highlight { font-weight: 700; }

.tvzp-price-box__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.04em;
}

/* ============================================================
   CLIENT LOGO WIDGET
   ============================================================ */

.tvzp-logo-widget {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Filter Bar */
.tvzp-logo-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tvzp-logo-filter li a {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.tvzp-logo-filter li.is-active a,
.tvzp-logo-filter li a:hover {
    background: currentColor;
}

/* Grid */
.tvzp-logo-grid {
    display: flex;
    flex-flow: wrap;
}

/* Logo item */
.tvzp-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.tvzp-logo-grid .tvzp-logo-item {
    padding: 10px;
}
.tvzp-logo-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    
    transition: opacity 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.tvzp-logo-img img {
    display: block;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Carousel wrapper */
.tvzp-logo-carousel {
    --tvzp-carousel-gap: 30px;
}

/* Hidden items when filter active */
.tvzp-logo-item.is-hidden {
    display: none;
}

/* RTL */
[dir="rtl"] .tvzp-logo-filter {
    direction: rtl;
}

@media (max-width: 768px) {
    .tvzp-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ============================================================
   FOOTER MENU WIDGET
   ============================================================ */

.tvzp-footer-menu {
    --tvzp-fm-transition: 0.3s ease;
}

.tvzp-footer-menu__title-wrap {
    margin-bottom: 12px;
}

.tvzp-footer-menu__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

.tvzp-footer-menu__toggle {
    display: none; /* shown via JS on mobile */
    background: none;
    border: none;
    padding: 4px 6px;
    cursor: pointer;
    line-height: 1;
}

.tvzp-footer-menu__toggle-icon {
    display: block;
    font-style: normal;
    font-size: 18px;
    transition: transform var(--tvzp-fm-transition);
}

.tvzp-footer-menu__toggle[aria-expanded="true"] .tvzp-footer-menu__toggle-icon {
    transform: rotate(180deg);
}

/* Menu list */
.tvzp-footer-menu__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tvzp-footer-menu__nav ul li {
    margin-bottom: 4px;
}

.tvzp-footer-menu__nav ul li a {
    display: inline-block;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

/* Mobile collapsible — height animation */
.tvzp-footer-menu__list-wrap {
    overflow: hidden;
    transition: max-height var(--tvzp-fm-transition), opacity var(--tvzp-fm-transition);
}

/* When collapsed on mobile (class toggled by JS) */
.tvzp-footer-menu.is-mobile-mode .tvzp-footer-menu__toggle {
    display: flex;
    align-items: center;
}

.tvzp-footer-menu.is-mobile-mode .tvzp-footer-menu__list-wrap {
    max-height: 0;
    opacity: 0;
}

.tvzp-footer-menu.is-mobile-mode.is-open .tvzp-footer-menu__list-wrap {
    max-height: 1200px;
    opacity: 1;
}

/* RTL */
[dir="rtl"] .tvzp-footer-menu__title {
    flex-direction: row-reverse;
}

/* ============================================================
   IMAGE BOX WIDGET
   ============================================================ */

.tvzp-imgbox {
    --tvzp-carousel-gap: 24px;
}

/* Grid */
.tvzp-imgbox__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Card base */
.tvzp-imgbox__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: var(--tvzp-radius-md, 16px);
    background: #fff;
    border: 1px solid var(--tvzp-border, rgba(0,0,0,0.08));
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tvzp-imgbox__card:hover {
    transform: translateY(-4px);
}

.tvzp-imgbox__card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

/* Image */
.tvzp-imgbox__image {
    overflow: hidden;
    flex-shrink: 0;
}

.tvzp-imgbox__image img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.35s ease, opacity 0.25s ease;
}

/* Content */
.tvzp-imgbox__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

.tvzp-imgbox__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tvzp-imgbox__title {
    margin: 0 0 10px;
    line-height: 1.3;
}

.tvzp-imgbox__description {
    margin: 0 0 14px;
    flex: 1;
    line-height: 1.7;
}

.tvzp-imgbox__button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    text-decoration: none;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.tvzp-imgbox__btn-icon {
    display: inline-flex;
    align-items: center;
}

/* ── Image Overlay layout ─────────────────────────────────── */
.tvzp-imgbox--image-overlay .tvzp-imgbox__card {
    position: relative;
}

.tvzp-imgbox--image-overlay .tvzp-imgbox__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.tvzp-imgbox--image-overlay .tvzp-imgbox__image img {
    height: 100%;
}

.tvzp-imgbox--image-overlay .tvzp-imgbox__content-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
}

.tvzp-imgbox--image-overlay .tvzp-imgbox__content {
    color: #fff;
}

.tvzp-imgbox--image-overlay .tvzp-imgbox__title,
.tvzp-imgbox--image-overlay .tvzp-imgbox__description,
.tvzp-imgbox--image-overlay .tvzp-imgbox__eyebrow {
    color: inherit;
}

/* ── Image Left / Right layout ────────────────────────────── */
.tvzp-imgbox--image-left .tvzp-imgbox__card,
.tvzp-imgbox--image-right .tvzp-imgbox__card {
    flex-direction: row;
}

.tvzp-imgbox--image-right .tvzp-imgbox__card {
    flex-direction: row-reverse;
}

.tvzp-imgbox--image-left .tvzp-imgbox__image,
.tvzp-imgbox--image-right .tvzp-imgbox__image {
    flex: 0 0 40%;
    max-width: 40%;
}

.tvzp-imgbox--image-left .tvzp-imgbox__image img,
.tvzp-imgbox--image-right .tvzp-imgbox__image img {
    height: 100%;
    width: 100%;
}

/* RTL */
[dir="rtl"] .tvzp-imgbox--image-left .tvzp-imgbox__card { flex-direction: row-reverse; }
[dir="rtl"] .tvzp-imgbox--image-right .tvzp-imgbox__card { flex-direction: row; }

/* Carousel items */
.tvzp-imgbox--carousel .tvzp-carousel__item,
.tvzp-imgbox--carousel .tvzp-carousel__track.owl-carousel .owl-item > .tvzp-carousel__item {
    height: 100%;
}

.tvzp-imgbox--carousel .tvzp-imgbox__card {
    height: 100%;
}

@media (max-width: 768px) {
    .tvzp-imgbox__grid {
        grid-template-columns: 1fr;
    }

    .tvzp-imgbox--image-left .tvzp-imgbox__card,
    .tvzp-imgbox--image-right .tvzp-imgbox__card {
        flex-direction: column;
    }

    .tvzp-imgbox--image-left .tvzp-imgbox__image,
    .tvzp-imgbox--image-right .tvzp-imgbox__image {
        flex: none;
        max-width: 100%;
    }
}

/* ============================================================
   TEAM WIDGET
   ============================================================ */

.tvzp-team {
    --tvzp-carousel-gap: 0px;
}

/* Grid */
.tvzp-team__grid {
    display: flex;
    flex-wrap: wrap;
    --tvzp-cols: 4;
    --tvzp-gap: 0px;
    gap: 0;
}

/* Flexbox column sizing for non-layout2 grid cards */
.tvzp-team--grid:not(.tvzp-team--layout2) .tvzp-team__grid > .tvzp-team__card {
    flex: 0 0 calc((100% - (var(--tvzp-cols) - 1) * var(--tvzp-gap)) / var(--tvzp-cols));
    max-width: calc((100% - (var(--tvzp-cols) - 1) * var(--tvzp-gap)) / var(--tvzp-cols));
    min-width: 0;
    box-sizing: border-box;
}

/* Card — full-bleed, no radius by default (match screenshot) */
.tvzp-team__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.25s ease;
}

/* Photo wrapper — fills card, image fills wrapper */
.tvzp-team__photo {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #ddd;
    flex-shrink: 0;
}

.tvzp-team__photo a {
    display: block;
    width: 100%;
    height: 100%;
}

.tvzp-team__photo img,
.tvzp-team__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease!important;
}

.tvzp-team__card:hover .tvzp-team__img {
    transform: scale(1.06);
}

/* ── OVERLAY style (name on image) ────────────────────────── */
.tvzp-team--overlay .tvzp-team__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
    /* default gradient — overridden by Elementor selector */
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.82) 100%);
}

.tvzp-team--overlay .tvzp-team__overlay-content {
    pointer-events: auto;
    padding: 0 20px 20px;
}

/* ── BELOW style (info under image) ───────────────────────── */
.tvzp-team--below .tvzp-team__info {
    display: flex;
    flex-direction: column;
    padding: 16px 18px;
    background: #fff;
}

/* Name */
.tvzp-team__name {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.04em;
    color: #ffffff;
}

.tvzp-team__name a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

/* Location — shown in parens e.g. (QLD) */
.tvzp-team__location {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    margin: 0;
}

/* Position */
.tvzp-team__position {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.75;
    margin-bottom: 6px;
}

/* Excerpt */
.tvzp-team__excerpt {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
}

/* Social */
.tvzp-team__social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.tvzp-team__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: inherit;
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.tvzp-team__social-link:hover { opacity: 1; }
.tvzp-team__social-link svg   { fill: currentColor; }

/* Carousel full-height items */
.tvzp-team--carousel .tvzp-carousel__item,
.tvzp-team--carousel .tvzp-carousel__track.owl-carousel .owl-item > .tvzp-carousel__item {
    height: 100%;
}

.tvzp-team--carousel .tvzp-team__card { height: 100%; }

/* RTL */
[dir="rtl"] .tvzp-team__name,
[dir="rtl"] .tvzp-team__location { text-align: right; }

@media (max-width: 991px) {
    .tvzp-team--grid:not(.tvzp-team--layout2) .tvzp-team__grid { --tvzp-cols: 2; }
}

@media (max-width: 575px) {
    .tvzp-team--grid:not(.tvzp-team--layout2) .tvzp-team__grid { --tvzp-cols: 1; }
}

/* ── Layout 2: grid justify center (all styles) ─────────── */
.tvzp-team__grid {
    justify-content: center;
}

/* ── Layout 2: horizontal list card ─────────────────────── */

/* Grid: 2 columns by default for layout2 */
.tvzp-team--layout2 .tvzp-team__grid {
    --tvzp-cols: 2;
    --tvzp-gap: 40px;
    gap: 0 40px;
    align-items: flex-start;
    align-content: flex-start;
}

.tvzp-team--layout2 .tvzp-team__grid > .tvzp-team__card {
    flex: 0 0 calc((100% - (var(--tvzp-cols) - 1) * var(--tvzp-gap)) / var(--tvzp-cols));
    max-width: calc((100% - (var(--tvzp-cols) - 1) * var(--tvzp-gap)) / var(--tvzp-cols));
    min-width: 0;
    box-sizing: border-box;
}

/* Card: flip to row direction */
.tvzp-team--layout2 .tvzp-team__card {
    flex-direction: row;
    align-items: flex-start;
    height: auto;
    overflow: visible;
    border-radius: 0;
    border-bottom: 1px solid #e0e0e0;
    padding: 24px 0;
    box-shadow: none;
}

/* No image zoom on layout2 cards */
.tvzp-team--layout2 .tvzp-team__card:hover .tvzp-team__img {
    transform: none;
}

/* Thumbnail: fixed square on the left */
.tvzp-team--layout2 .tvzp-team__photo {
    width: 120px;
    min-width: 120px;
    height: 120px;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background: #ddd;
}

.tvzp-team--layout2 .tvzp-team__photo a {
    display: block;
    width: 100%;
    height: 100%;
}

.tvzp-team--layout2 .tvzp-team__photo img,
.tvzp-team--layout2 .tvzp-team__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: none;
}

/* Info panel: fills remaining space */
.tvzp-team__info-l2 {
    flex: 1;
    padding-left: 20px;
    min-width: 0;
}

/* Name: red, uppercase */
.tvzp-team--layout2 .tvzp-team__name {
    color: #c0392b;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 3px;
    line-height: 1.25;
}

.tvzp-team--layout2 .tvzp-team__name a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.tvzp-team--layout2 .tvzp-team__name a:hover {
    opacity: 0.75;
}

/* ACF designation subtitle */
.tvzp-team__designation-l2 {
    font-size: 13px;
    color: #666;
    margin: 0 0 10px;
    line-height: 1.4;
}

/* Dividers */
.tvzp-team__divider,
.tvzp-team__divider-meta {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0 0 10px;
    width: 100%;
}

/* Short description block */
.tvzp-team__desc-wrap {
    font-size: 14px;
    line-height: 1.65;
    color: #444;
    margin-bottom: 10px;
}

/* Collapsed: clamp to 2 lines */
.tvzp-team__desc-inner.is-collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Expanded: remove clamp */
.tvzp-team__desc-inner.is-expanded {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
}

/* Show More / Show Less button */
.tvzp-team__show-more {
    background: none;
    border: none;
    padding: 0;
    color: #c0392b;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    margin-top: 4px;
    line-height: 1.4;
    transition: opacity 0.2s ease;
}

.tvzp-team__show-more:hover {
    opacity: 0.75;
}

/* Meta rows (Area of Expertise, Location) */
.tvzp-team__meta-row {
    font-size: 13px;
    color: #444;
    margin: 4px 0 0;
    line-height: 1.5;
}

.tvzp-team__meta-label {
    font-weight: 700;
}

/* Override base location styles inside layout2 */
.tvzp-team--layout2 .tvzp-team__location {
    font-size: 13px;
    color: #444;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    margin: 4px 0 0;
}

/* Social row in layout2: left-aligned by default */
.tvzp-team--layout2 .tvzp-team__social {
    margin-top: 10px;
    justify-content: flex-start;
}

/* Carousel items: auto height for layout2 */
.tvzp-team--layout2.tvzp-team--carousel .tvzp-carousel__item,
.tvzp-team--layout2.tvzp-team--carousel .tvzp-carousel__track.owl-carousel .owl-item > .tvzp-carousel__item {
    height: auto;
}

.tvzp-team--layout2.tvzp-team--carousel .tvzp-team__card {
    height: auto;
}

/* Layout 2: responsive */
@media (max-width: 991px) {
    .tvzp-team--layout2 .tvzp-team__grid {
        --tvzp-cols: 1;
        --tvzp-gap: 0px;
        gap: 0;
    }
}

@media (max-width: 575px) {
    .tvzp-team--layout2 .tvzp-team__photo {
        width: 90px;
        min-width: 90px;
        height: 90px;
    }
    .tvzp-team__info-l2 {
        padding-left: 14px;
    }
    .tvzp-team--layout2 .tvzp-team__name {
        font-size: 13px;
    }
}

/* ============================================================
   VIDEO PLAY BUTTON — ANIMATION VARIANTS
   ============================================================ */

/* Pulse */
.tvzp-video-widget__single-trigger--anim-pulse {
    animation: tvzpVidPulse 2s ease-in-out infinite;
}

@keyframes tvzpVidPulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.12); }
}

/* Bounce */
.tvzp-video-widget__single-trigger--anim-bounce {
    animation: tvzpVidBounce 1.4s ease infinite;
}

@keyframes tvzpVidBounce {
    0%, 100% { transform: translateY(0); }
    40%       { transform: translateY(-10px); }
    60%       { transform: translateY(-5px); }
}

/* Float */
.tvzp-video-widget__single-trigger--anim-float {
    animation: tvzpVidFloat 2.5s ease-in-out infinite;
}

@keyframes tvzpVidFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* Shake */
.tvzp-video-widget__single-trigger--anim-shake {
    animation: tvzpVidShake 1.2s ease infinite;
}

@keyframes tvzpVidShake {
    0%, 100%  { transform: translateX(0); }
    20%        { transform: translateX(-5px) rotate(-2deg); }
    40%        { transform: translateX(5px) rotate(2deg); }
    60%        { transform: translateX(-3px) rotate(-1deg); }
    80%        { transform: translateX(3px) rotate(1deg); }
}

/* Heartbeat */
.tvzp-video-widget__single-trigger--anim-heartbeat {
    animation: tvzpVidHeartbeat 1.5s ease infinite;
}

@keyframes tvzpVidHeartbeat {
    0%         { transform: scale(1); }
    14%        { transform: scale(1.18); }
    28%        { transform: scale(1); }
    42%        { transform: scale(1.12); }
    70%        { transform: scale(1); }
}

/* Glow (box-shadow pulse) */
.tvzp-video-widget__single-trigger--anim-glow {
    animation: tvzpVidGlow 2s ease-in-out infinite;
}

@keyframes tvzpVidGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50%       { box-shadow: 0 0 0 16px rgba(255, 255, 255, 0); }
}

/* Stop all animations on hover */
.tvzp-video-widget__single-trigger[class*="--anim-"]:hover {
    animation: none;
}


/* ============================================================
   CONFERENCE SCHEDULE WIDGET
   ============================================================ */

.tvzp-cs-widget {
    font-family: inherit;
}

/* ── Tabs ─────────────────────────────────────────────────── */
.tvzp-cs-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 50px;
}

.tvzp-cs-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border: 1px solid #6a6a55;
    border-radius: 0;
    background: none;
    color: #9e9e80;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
    user-select: none;
    outline: none;
    transition: background-color 250ms ease, color 250ms ease, border-color 250ms ease;
}

.tvzp-cs-tab:focus-visible {
    outline: 2px solid #cc1a1a;
    outline-offset: 2px;
}

.tvzp-cs-tab.tvzp-cs-tab--active {
    background-color: #cc1a1a;
    color: #ffffff;
    border-color: #cc1a1a;
}

.tvzp-cs-tab:not(.tvzp-cs-tab--active):hover {
    background-color: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

/* ── Panels ───────────────────────────────────────────────── */
.tvzp-cs-panel {
    display: none;
    opacity: 0;
    transition: opacity 300ms ease;
}

.tvzp-cs-panel.tvzp-cs-panel--active {
    display: block;
}

.tvzp-cs-panel.tvzp-cs-panel--visible {
    opacity: 1;
}

/* ── Day Header ───────────────────────────────────────────── */
.tvzp-cs-header {
    padding-bottom: 40px;
    text-align: center;
}

.tvzp-cs-header__title {
    margin: 0 0 10px;
    text-transform: uppercase;
    line-height: 1.3;
    color: #cc1a1a;
}

.tvzp-cs-header__speakers {
    margin: 0;
    font-size: 15px;
    color: #c8c8b8;
}

/* ── Table ────────────────────────────────────────────────── */
.tvzp-cs-table {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.tvzp-cs-row {
    display: block;
    background-color: #2b2b2b;
    transition: background-color 200ms ease;
}

.tvzp-cs-row + .tvzp-cs-row {
    border-top: 1px solid #1e1e1e;
}

.tvzp-cs-row:hover {
    background-color: #333333;
}

.tvzp-cs-row--break {
    background-color: #252525 !important;
}

.tvzp-cs-row__inner {
    display: flex;
    align-items: flex-start;
    padding: 22px 30px;
}

/* Time column */
.tvzp-cs-row__time {
    flex-shrink: 0;
    width: 210px;
    color: #cc2222;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.5;
    padding-top: 2px;
    padding-inline-end: 20px;
}

/* Content column */
.tvzp-cs-row__content {
    flex: 1;
    min-width: 0;
}

.tvzp-cs-content__title {
    margin: 0;
    line-height: 1.4;
}

.tvzp-cs-content--lecture .tvzp-cs-content__title {
    color: #ffffff;
    font-size: 16px;
}

.tvzp-cs-content--break .tvzp-cs-content__title {
    color: #7a7a6a;
    font-size: 16px;
    font-style: italic;
}

.tvzp-cs-content--panel .tvzp-cs-content__title {
    color: #ffffff;
    font-size: 16px;
}

/* ── Bullet Points ────────────────────────────────────────── */
.tvzp-cs-bullets {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}

.tvzp-cs-bullets__item {
    position: relative;
    padding-inline-start: 16px;
    color: #9a9a88;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0!important;
}

.tvzp-cs-bullets__item::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0.6em;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #cc2222;
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 767px) {
    .tvzp-cs-row__inner {
        flex-direction: column;
    }

    .tvzp-cs-row__time {
        width: 100% !important;
        padding-inline-end: 0 !important;
        margin-bottom: 6px;
    }

    .tvzp-cs-tabs {
        justify-content: center;
    }
}

/* ── RTL ──────────────────────────────────────────────────── */
[dir="rtl"] .tvzp-cs-bullets__item::before {
    inset-inline-start: 0;
}

.tvzp-carousel__nav.disabled, .tvzp-carousel__dots.disabled {
    display: none;
}



/* ============================================================
   PROCESS STEPS WIDGET  (.tvzp-ps)
   ============================================================ */

/* ── Wrapper ───────────────────────────────────────────────── */
.tvzp-ps {
    width: 100%;
}

/* ── Row — flexbox container ───────────────────────────────── */
.tvzp-ps__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
}

/* ── Step — card + arrow pair ──────────────────────────────── */
.tvzp-ps__step {
    display: flex;
    align-items: center;
    flex: 1 1 200px;
    min-width: 0;
}

/* ── Card ──────────────────────────────────────────────────── */
.tvzp-ps__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 auto;
    min-width: 0;
    padding: 24px 32px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition: background-color 0.25s ease,
                border-color 0.25s ease,
                box-shadow 0.25s ease,
                transform 0.25s ease;
    cursor: default;
    height: 100%;
    justify-content: center;
}

a.tvzp-ps__card {
    cursor: pointer;
}

.tvzp-ps__card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* ── Accent line wrap — controls alignment ─────────────────── */
.tvzp-ps__accent-wrap {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 16px;
}

/* ── Accent line ───────────────────────────────────────────── */
.tvzp-ps__accent {
    display: block;
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: #cc1a1a;
    flex-shrink: 0;
    transition: background-color 0.25s ease;
}

/* ── Step label / eyebrow ──────────────────────────────────── */
.tvzp-ps__label {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45);
    transition: color 0.25s ease;
}

/* ── Title ─────────────────────────────────────────────────── */
.tvzp-ps__title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1a1a1a;
    transition: color 0.25s ease;
    width: 100%;
}

/* ── Description ───────────────────────────────────────────── */
.tvzp-ps__description {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.6);
    transition: color 0.25s ease;
    width: 100%;
}

/* ── Arrow wrap ────────────────────────────────────────────── */
.tvzp-ps__arrow-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 12px;
    transition: background-color 0.25s ease,
                border-color 0.25s ease,
                transform 0.3s ease;
}

/* ── Arrow icon ────────────────────────────────────────────── */
.tvzp-ps__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    color: #cc1a1a;
    transition: color 0.25s ease;
}

.tvzp-ps__arrow i,
.tvzp-ps__arrow svg {
    display: block;
}

.tvzp-ps__arrow svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

/* last step has no arrow — already handled in PHP but guard here */
.tvzp-ps__step--last .tvzp-ps__arrow-wrap {
    display: none;
}

/* ── Card text align utility ───────────────────────────────── */
.tvzp-ps__card[style*="text-align: center"] .tvzp-ps__accent-wrap,
.tvzp-ps__card[style*="text-align:center"] .tvzp-ps__accent-wrap {
    justify-content: center;
}

.tvzp-ps__card[style*="text-align: right"] .tvzp-ps__accent-wrap,
.tvzp-ps__card[style*="text-align:right"] .tvzp-ps__accent-wrap {
    justify-content: flex-end;
}

/* ── Transition helpers ────────────────────────────────────── */
.tvzp-ps__card * {
    transition-property: color, background-color, border-color, box-shadow, opacity;
    transition-duration: 0.25s;
    transition-timing-function: ease;
}

/* ── Responsive: tablet ────────────────────────────────────── */
@media (max-width: 991px) {
    .tvzp-ps__row {
        flex-wrap: wrap;
    }

    .tvzp-ps__step {
        flex: 1 1 calc(50% - 32px);
    }

    /* Arrow between steps becomes downward on wrap */
    .tvzp-ps__arrow-wrap {
        padding: 8px 0;
    }
}

/* ── Responsive: mobile ────────────────────────────────────── */
@media (max-width: 575px) {
    .tvzp-ps__row {
        align-items: stretch;
    }

    .tvzp-ps__step {
        flex-direction: column;
        flex: 1 1 100%;
        width: 100%;
    }

    .tvzp-ps__card {
        width: 100%;
    }

    /* Arrow rotates 90° by default on mobile (pointing down).
       Overrideable via Elementor's arrow_rotate_mobile control. */
    .tvzp-ps__arrow-wrap {
        transform: rotate(90deg);
        padding: 4px 0;
    }
}

/* ── RTL ───────────────────────────────────────────────────── */
[dir="rtl"] .tvzp-ps__row {
    flex-direction: row-reverse;
}

[dir="rtl"] .tvzp-ps__arrow-wrap {
    transform: scaleX(-1);
}

[dir="rtl"] @media (max-width: 575px) {
    .tvzp-ps__arrow-wrap {
        transform: rotate(90deg);
    }
}

table.tvzp-table {
    width: 100%;
}

/* ================================================================
   CLIENT LOGO WIDGET — Logo Card Layout
   .tvzp-logo-grid--cards        → CSS grid (card mode)
   .tvzp-logo-item--card         → grid cell wrapper
   .tvzp-logo-item--equal-h      → equal height (grid + carousel)
   .tvzp-logo-card               → white card shell
   ================================================================ */
 

/* Fallback for browsers without :has() */
.tvzp-logo-grid.tvzp-logo-grid--cards .tvzp-logo-item--equal-h {
    height: 100%;
}
 
/* ── Grid item wrapper ───────────────────────────────────────── */
.tvzp-logo-item.tvzp-logo-item--card {
    width         : 100%;
    max-width     : none;
    padding       : 0;
    display       : flex;
    flex-direction: column;
}
 
/* ── Card shell ──────────────────────────────────────────────── */
.tvzp-logo-card {
    display        : flex;
    flex-direction : column;
    align-items    : center;  /* overridden per card_image_align Elementor selector */
    text-align     : center;  /* overridden by card_text_align Elementor selector */
    width          : 100%;
    height         : 100%;
    background     : #ffffff;
    border-radius  : 16px;
    padding        : 28px 24px;
    box-shadow     : 0 2px 16px rgba(0, 0, 0, 0.08);
    transition     : transform 0.22s ease, box-shadow 0.22s ease;
    box-sizing     : border-box;
}
 
/* ── Logo area ───────────────────────────────────────────────── */
.tvzp-logo-card__logo {
    display        : flex;
    align-items    : center;
    justify-content: center; /* overridden by card_image_align Elementor selector */
    margin-bottom  : 16px;
    min-height     : 60px;
    width          : 100%;
}
 
.tvzp-logo-card__logo img {
    max-height : 70px;
    width      : auto;
    display    : block;
    object-fit : contain;
}
 
.tvzp-logo-card__logo a {
    display: inline-flex;
}
 
/* ── Company name ────────────────────────────────────────────── */
.tvzp-logo-card__name {
    font-size  : 18px;
    font-weight: 700;
    line-height: 1.25;
    margin     : 0 0 12px;
    color      : inherit;
    width      : 100%;
}
 
/* ── Description ─────────────────────────────────────────────── */
.tvzp-logo-card__desc {
    font-size  : 14px;
    line-height: 1.65;
    color      : #555;
    margin     : 0 0 16px;
    flex       : 1 1 auto;  /* grows to push website to bottom */
    width      : 100%;
}
.tvzp-logo-card__desc p {
    margin: 0 0 0.6em;
}
.tvzp-logo-card__desc p:last-child {
    margin-bottom: 0;
}
 
/* ── Website section ─────────────────────────────────────────── */
.tvzp-logo-card__website {
    margin-top: auto;
    width     : 100%;
}
 
.tvzp-logo-card__website-label {
    display      : block;
    font-weight  : 700;
    font-size    : 14px;
    margin-bottom: 0px;
    color        : inherit;
}
 
.tvzp-logo-card__website-link {
    display        : block;
    font-size      : 13px;
    color          : #444;
    text-decoration: none;
    word-break     : break-all;
    transition     : color 0.2s ease;
}
.tvzp-logo-card__website-link:hover {
    text-decoration: underline;
}
 
/* ── Carousel: equal-height via Owl flex hack ─────────────────── */
.tvzp-logo-carousel .owl-stage {
    display  : flex;
    flex-wrap: nowrap;
}
.tvzp-logo-carousel .owl-item {
    display       : flex;
    flex-direction: column;
}
/* Equal height ON */
.tvzp-logo-carousel .tvzp-logo-item--equal-h {
    flex  : 1;
    height: 100%;
}
.tvzp-logo-carousel .tvzp-logo-item--equal-h .tvzp-logo-card {
    height: 100%;
}
/* Equal height OFF: auto height (cards shrink to content) */
.tvzp-logo-carousel .tvzp-logo-item--card:not(.tvzp-logo-item--equal-h) .tvzp-logo-card {
    height: auto;
}
/* ============================================================
   TEAM SIDE POPUP — slide-in from right
   ============================================================ */

body.tvzp-team-popup-open {
    overflow: hidden;
}

.tvzp-team-popup__overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(0, 0, 0, 0.52);
    opacity: 0;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: opacity 0.35s ease;
}

.tvzp-team-popup__overlay.is-visible {
    opacity: 1;
}

.tvzp-team-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    width: min(480px, 100vw);
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: -8px 0 56px rgba(0, 0, 0, 0.18);
    transform: translateX(100%);
    transition: transform 0.46s cubic-bezier(0.32, 0.72, 0, 1);
    overflow: hidden;
}

.tvzp-team-popup.is-open {
    transform: translateX(0);
}

/* Close button */
.tvzp-team-popup__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.14);
    transition: background 0.2s ease, transform 0.28s ease;
    color: #333;
    padding: 0;
}

.tvzp-team-popup__close:hover {
    background: #fff;
    transform: scale(1.1) rotate(90deg);
}

.tvzp-team-popup__close svg {
    display: block;
}

/* Scrollable content area */

.tvzp-team-popup__scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.18) transparent;
	padding-top: 20px;
	text-align: center;
}
.tvzp-team-popup .tvzp-team-popup__content {
    text-align: justify;
}
.tvzp-team-popup__scroll::-webkit-scrollbar {
    width: 4px;
}

.tvzp-team-popup__scroll::-webkit-scrollbar-track {
    background: transparent;
}

.tvzp-team-popup__scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.18);
    border-radius: 2px;
}

/* Image */
.tvzp-team-popup__img-wrap {
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
    background: transparent;
    line-height: 0;
    height: 180px;
    width: 180px;
    margin: auto;
    border-radius: 100px;
    border: 1px solid #f3e8de;
    padding: 5px;
}

.tvzp-team-popup__img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
	border-radius: 100px;
}
.tvzp-team__photo{
    transition: all .3s ease-in-out;
}

/* Body */
.tvzp-team-popup__body {
    padding: 22px 26px 36px;
}

/* Name */
.tvzp-team-popup__name {
    margin: 0 0 5px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--tvzp-green-900, #0f3427);
    line-height: 1.25;
}

/* Designation */
.tvzp-team-popup__designation {
    font-size: 13px;
    color: #777;
    margin: 0 0 16px;
    line-height: 1.45;
}

/* Meta block */
.tvzp-team-popup__meta {
    margin-bottom: 18px;
    border-top: 1px solid #ededed;
    padding-top: 14px;
}

.tvzp-team-popup__meta-row {
    font-size: 13px;
    color: #444;
    margin: 4px 0 0;
    line-height: 1.55;
}

.tvzp-team-popup__meta-label {
    font-weight: 700;
    color: #333;
}

.tvzp-team-popup__profile-link-wrap {
    margin-top: 12px;
}

.tvzp-team-popup__profile-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: 999px;
    background: var(--tvzp-green-700, #18936c);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.22s ease, transform 0.22s ease;
}

.tvzp-team-popup__profile-link:hover {
    background: var(--tvzp-green-800, #12664d);
    color: #fff;
    transform: translateY(-1px);
}

/* Content (ACF description HTML) */
.tvzp-team-popup__content {
    font-size: 14px;
    line-height: 1.78;
    color: #444;
    margin-bottom: 0;
    border-top: 1px solid #ededed;
    padding-top: 16px;
}

.tvzp-team-popup__content p {
    margin: 0 0 0.85em;
}

.tvzp-team-popup__content p:last-child {
    margin-bottom: 0;
}

/* Social icons */
.tvzp-team-popup__social {
    border-top: 1px solid #ededed;
    padding-top: 16px;
    margin-top: 18px;
}

.tvzp-team-popup__social-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tvzp-team-popup__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f2f2f2;
    color: #444;
    text-decoration: none;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.tvzp-team-popup__social-link:hover {
    background: var(--tvzp-green-700, #18936c);
    color: #fff;
    transform: translateY(-2px);
}

.tvzp-team-popup__social-link svg {
    display: block;
    fill: currentColor;
    stroke: currentColor;
}

/* Staggered animation for popup elements */
.tvzp-popup-anim {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.42s ease, transform 0.42s ease;
}

.tvzp-popup-anim.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   LAYOUT 2 — FULL HEIGHT IMAGE
   ============================================================ */

.tvzp-team--img-full.tvzp-team--layout2 .tvzp-team__card {
    align-items: center;
}

.tvzp-team--img-full.tvzp-team--layout2 .tvzp-team__photo {
    width: 150px;
    min-width: 150px;
    height: auto;
    align-self: stretch;
/*    aspect-ratio: unset !important;*/
    height: auto!important;
}

@media (max-width: 575px) {
    .tvzp-team--img-full.tvzp-team--layout2 .tvzp-team__photo {
        width: 90px;
        min-width: 90px;
    }
}

/* ============================================================
   TVZP — KEY SPEAKER WIDGET
   ============================================================ */

/* ── Grid (flexbox) ────────────────────────────────────────── */
.tvzp-ks-widget {
    --tvzp-ks-cols: 2;
    position: relative;
}

.tvzp-ks-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ks-gap, 30px);
}

.tvzp-ks-grid > .tvzp-ks-card {
    flex: 0 0 calc( (100% - (var(--tvzp-ks-cols, 2) - 1) * var(--ks-gap, 30px)) / var(--tvzp-ks-cols, 2) );
    max-width: calc( (100% - (var(--tvzp-ks-cols, 2) - 1) * var(--ks-gap, 30px)) / var(--tvzp-ks-cols, 2) );
}

/* Equal height – flex column so body can stretch */
.tvzp-ks--equal-height .tvzp-ks-grid {
    align-items: stretch;
}

.tvzp-ks--equal-height .tvzp-ks-grid > .tvzp-ks-card {
    display: flex;
    flex-direction: column;
}

.tvzp-ks--equal-height .tvzp-ks-card--layout1 .tvzp-ks-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Equal height in carousel */
.tvzp-ks--equal-height .tvzp-ks-carousel .owl-stage {
    display: flex;
    flex-wrap: nowrap;
}

.tvzp-ks--equal-height .tvzp-ks-carousel .owl-item {
    display: flex;
    flex-direction: column;
}

.tvzp-ks--equal-height .tvzp-ks-carousel .tvzp-ks-card {
    flex: 1;
    height: 100%;
}

/* ── Card base ─────────────────────────────────────────────── */
.tvzp-ks-card {
    position: relative;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.38s ease, border-color 0.28s ease, background-color 0.28s ease;
    overflow: hidden;
}

.tvzp-ks-card:hover {
    will-change: transform;
}

/* ── Layout 1 — stacked (image top) ───────────────────────── */
.tvzp-ks-card--layout1 {
    display: flex;
    flex-direction: column;
}

.tvzp-ks-card--layout1 .tvzp-ks-card__thumb-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
    line-height: 0;
}

.tvzp-ks-card--layout1 .tvzp-ks-card__body {
    padding: 18px 0 0;
}

/* ── Layout 2 — horizontal (image left/right) ──────────────── */
.tvzp-ks-card--layout2 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.tvzp-ks-card--layout2.tvzp-ks-card--img-right {
    flex-direction: row-reverse;
}

.tvzp-ks-card--layout2 .tvzp-ks-card__thumb-wrap {
    width: 45%;
    min-width: 140px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    line-height: 0;
}

.tvzp-ks-card--layout2 .tvzp-ks-card__body {
    flex: 1;
    padding: 12px 0 12px 22px;
    min-width: 0;
}

.tvzp-ks-card--layout2.tvzp-ks-card--img-right .tvzp-ks-card__body {
    padding: 12px 22px 12px 0;
}

/* ── Shared: thumbnail image ───────────────────────────────── */
.tvzp-ks-card__thumb-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.45s ease, filter 0.45s ease;
}

/* ── Overlay ───────────────────────────────────────────────── */
.tvzp-ks-card__thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    pointer-events: none;
    transition: background-color 0.3s ease;
    z-index: 1;
}

/* ── Play button ───────────────────────────────────────────── */
.tvzp-ks-card__play {
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 2;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background-color: #cc0000;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.28s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}

.tvzp-ks-card__play i,
.tvzp-ks-card__play svg {
    display: block;
    font-size: 24px;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.tvzp-ks-card__play:hover {
    transform: scale(1.1);
}

/* Elementor hover scale control wrapper */
.elementor-widget-tvzp_key_speaker .tvzp-ks-card__play:hover {
    transform: scale(var(--tvzp-ks-play-scale, 1.1));
}

/* ── Body typography ───────────────────────────────────────── */
.tvzp-ks-card__body {
    transition: background-color 0.25s ease;
}

.tvzp-ks-card__name {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #cc0000;
    line-height: 1.25;
}

.tvzp-ks-card__designation {
    margin: 0 0 10px;
    font-size: 14px;
    color: #555;
    line-height: 1.45;
}

.tvzp-ks-card__description {
    margin: 0 0 12px;
    font-size: 14px;
    color: #444;
    line-height: 1.7;
}

/* ── Bio button ────────────────────────────────────────────── */
.tvzp-ks-card__bio-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 4px;
    background-color: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease,
                box-shadow 0.22s ease, transform 0.22s ease;
    cursor: pointer;
    line-height: 1;
}

.tvzp-ks-card__bio-btn:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-2px);
}

.tvzp-ks-card__bio-btn i,
.tvzp-ks-card__bio-btn svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

/* ── Carousel track ────────────────────────────────────────── */
.tvzp-ks-carousel {
    position: relative;
    overflow: hidden;
}

.tvzp-ks-track {
    display: block;
}

/* Carousel equal height via owl stage flex */
.tvzp-ks--equal-height .tvzp-ks-carousel .owl-stage {
    display: flex;
    flex-wrap: nowrap;
}

.tvzp-ks--equal-height .tvzp-ks-carousel .owl-item {
    display: flex;
    flex-direction: column;
}

.tvzp-ks--equal-height .tvzp-ks-carousel .tvzp-ks-card {
    flex: 1;
}

/* carousel: card should fill its owl item */
.tvzp-ks-carousel .tvzp-ks-card {
    margin: 0;
}

/* ── Carousel Navigation ───────────────────────────────────── */

/* Arrow container – only rendered by PHP when arrows = ON */
.tvzp-carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

/* Suppress any residual Owl-injected nav so arrows = OFF truly hides them */
.tvzp-carousel .owl-nav {
    display: none !important;
}

/* Arrow buttons – live inside tvzp-ks-carousel__nav, match video gallery style */
.tvzp-carousel__nav .tvzp-carousel__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #333;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.tvzp-carousel__nav .tvzp-carousel__arrow:hover {
    background: #cc0000;
    color: #fff;
    border-color: #cc0000;
}

.tvzp-carousel__nav .tvzp-carousel__arrow.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* Dot container – only rendered by PHP when dots = ON */
.tvzp-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

/* Suppress any residual Owl-injected dots so dots = OFF truly hides them */
.tvzp-carousel .owl-dots {
    display: none !important;
}

/* Dot buttons – live inside tvzp-ks-carousel__dots, match video gallery style */
.tvzp-carousel__dots .tvzp-carousel__dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 52, 39, 0.2);
    cursor: pointer;
    transition: width 0.22s ease, background 0.22s ease;
}

.tvzp-carousel__dots .tvzp-carousel__dot.is-active,
.tvzp-carousel__dots .tvzp-carousel__dot:hover {
    width: 28px;
    background: #cc0000;
    border-radius: 99px;
}

/* ── Lightbox ──────────────────────────────────────────────── */
#tvzp-ks-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99990;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#tvzp-ks-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
}

#tvzp-ks-lightbox-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
                opacity 0.35s ease;
}

#tvzp-ks-lightbox.is-open #tvzp-ks-lightbox-inner {
    transform: scale(1);
    opacity: 1;
}

#tvzp-ks-lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(4px);
}

#tvzp-ks-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

#tvzp-ks-lightbox-close svg {
    display: block;
}

#tvzp-ks-lightbox-media {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 default */
    height: 0;
}

#tvzp-ks-lightbox-media iframe,
#tvzp-ks-lightbox-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* ── Key Speaker scroll-in animations (grid only) ───────────── */
/* In carousel mode cards are always visible; observer targets grid only */
.tvzp-ks-grid .tvzp-ks-anim {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    /* transition-delay is set inline via JS stagger */
}

.tvzp-ks-grid .tvzp-ks-anim.tvzp-ks-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sub-element staggered delays */
.tvzp-ks-grid .tvzp-ks-anim.tvzp-ks-visible .tvzp-ks-card__thumb-wrap {
    animation: ks-media-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.tvzp-ks-grid .tvzp-ks-anim.tvzp-ks-visible .tvzp-ks-card__name {
    animation: ks-slide-up 0.45s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.tvzp-ks-grid .tvzp-ks-anim.tvzp-ks-visible .tvzp-ks-card__designation {
    animation: ks-slide-up 0.45s 0.20s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.tvzp-ks-grid .tvzp-ks-anim.tvzp-ks-visible .tvzp-ks-card__description {
    animation: ks-slide-up 0.45s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.tvzp-ks-grid .tvzp-ks-anim.tvzp-ks-visible .tvzp-ks-card__bio-btn {
    animation: ks-slide-up 0.45s 0.36s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.tvzp-ks-grid .tvzp-ks-anim.tvzp-ks-visible .tvzp-ks-card__play {
    animation: ks-play-pop 0.45s 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes ks-media-in {
    from { opacity: 0; transform: scale(0.96); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes ks-slide-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes ks-play-pop {
    from { opacity: 0; transform: scale(0.6); }
    to   { opacity: 1; transform: scale(1); }
}

/* Prevent flicker before JS kicks in — hide nothing if JS disabled */
@media (prefers-reduced-motion: reduce) {
    .tvzp-ks-anim {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .tvzp-ks-anim.tvzp-ks-visible .tvzp-ks-card__thumb-wrap,
    .tvzp-ks-anim.tvzp-ks-visible .tvzp-ks-card__name,
    .tvzp-ks-anim.tvzp-ks-visible .tvzp-ks-card__designation,
    .tvzp-ks-anim.tvzp-ks-visible .tvzp-ks-card__description,
    .tvzp-ks-anim.tvzp-ks-visible .tvzp-ks-card__bio-btn,
    .tvzp-ks-grid .tvzp-ks-anim.tvzp-ks-visible .tvzp-ks-card__play {
        animation: none;
    }
}

/* ── Lightbox display fix ─────────────────────────────────────── */
#tvzp-ks-lightbox[style*="display: flex"],
#tvzp-ks-lightbox.is-open {
    display: flex !important;
}


/* ── Body lock when lightbox open ─────────────────────────── */
body.tvzp-ks-lightbox-open {
    overflow: hidden;
}

/* ── Key Speaker link trigger + side popup ───────────────────── */
.tvzp-ks-card__global-trigger {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

/* Play button keeps position:absolute from its base rule — only raise z-index */
.tvzp-ks-card__play {
    z-index: 3;
}

/* Bio button sits in normal flow above the global trigger overlay */
.tvzp-ks-card__bio-btn {
    position: relative;
    z-index: 4;
}

body.tvzp-ks-popup-open {
    overflow: hidden;
}

.tvzp-ks-popup__overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(0, 0, 0, 0.52);
    opacity: 0;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: opacity 0.35s ease;
}

.tvzp-ks-popup__overlay.is-visible {
    opacity: 1;
}

.tvzp-ks-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    width: min(480px, 100vw);
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: -8px 0 56px rgba(0, 0, 0, 0.18);
    transform: translateX(100%);
    transition: transform 0.46s cubic-bezier(0.32, 0.72, 0, 1);
    overflow: hidden;
}

.tvzp-ks-popup--left {
    left: 0;
    right: auto;
    transform: translateX(-100%);
    box-shadow: 8px 0 56px rgba(0, 0, 0, 0.18);
}

.tvzp-ks-popup--right {
    right: 0;
    left: auto;
}

.tvzp-ks-popup.is-open {
    transform: translateX(0);
}

.tvzp-ks-popup__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.14);
    transition: background 0.22s ease, transform 0.3s ease;
    color: #333;
    padding: 0;
}

.tvzp-ks-popup__close:hover {
    background: #fff;
    transform: scale(1.1) rotate(90deg);
}

.tvzp-ks-popup__scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.18) transparent;
}

.tvzp-ks-popup__scroll::-webkit-scrollbar {
    width: 4px;
}

.tvzp-ks-popup__scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.18);
    border-radius: 2px;
}

.tvzp-ks-popup__img-wrap {
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
    background: #e8e8e8;
    line-height: 0;
}

.tvzp-ks-popup__img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center top;
}

.tvzp-ks-popup__body {
    padding: 22px 26px 36px;
}

.tvzp-ks-popup__name {
    margin: 0 0 5px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #cc0000;
    line-height: 1.25;
}

.tvzp-ks-popup__designation {
    font-size: 14px;
    color: #777;
    margin: 0 0 16px;
    line-height: 1.45;
}

.tvzp-ks-popup__content {
    font-size: 14px;
    line-height: 1.78;
    color: #444;
    border-top: 1px solid #ededed;
    padding-top: 16px;
}

.tvzp-ks-popup__content p {
    margin: 0 0 0.85em;
}

.tvzp-ks-popup__content p:last-child {
    margin-bottom: 0;
}

.tvzp-ks-popup__profile-link-wrap {
    margin-top: 18px;
}

.tvzp-ks-popup__profile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.tvzp-ks-popup__profile-link:hover {
    background: #cc0000;
    color: #fff;
    transform: translateY(-2px);
}

.tvzp-ks-popup-anim {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.42s ease, transform 0.42s ease;
}

.tvzp-ks-popup-anim.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .tvzp-ks-card--layout2 .tvzp-ks-card__thumb-wrap {
        width: 40%;
    }
}

@media (max-width: 767px) {
    .tvzp-ks-card--layout2 {
        flex-direction: column !important;
    }

    .tvzp-ks-card--layout2 .tvzp-ks-card__thumb-wrap {
        width: 100%;
    }

    .tvzp-ks-card--layout2 .tvzp-ks-card__body,
    .tvzp-ks-card--layout2.tvzp-ks-card--img-right .tvzp-ks-card__body {
        padding: 16px 0 0;
    }
}

.tvzp-team__card a.global-trigger {
    position: absolute;
    top: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 999;
}
