/**
 * Vedic Whisper homepage theme tokens + component styles
 * Replaces WordPress salient-dynamic-styles.css
 */
:root {
    --nectar-accent-color: #2c4de0;
    --nectar-extra-color-1: #2c4de0;
    --nectar-extra-color-2: #121f5a;
    --nectar-extra-color-3: #090f2d;
    --header-nav-height: 72px;
    --vw-font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --vw-font-heading: 'Instrument Serif', Georgia, 'Times New Roman', serif;
    --vw-font-button: 'Montserrat', 'Manrope', sans-serif;
}

/* ── Typography (Salient: Manrope body + Instrument Serif headings) ── */
body,
body #ajax-content-wrap,
body .container-wrap,
#header-outer,
.nectar-responsive-text,
.nectar-inherit-body,
.nectar-badge,
.toggle-title a,
p,
li,
label,
input,
textarea,
select,
button {
    font-family: var(--vw-font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.nectar-inherit-h1,
.nectar-inherit-h2,
.nectar-inherit-h3,
.nectar-inherit-h4,
.nectar-inherit-h5,
.nectar-inherit-h6,
.nectar-split-heading,
.nectar-milestone .number {
    font-family: var(--vw-font-heading);
    font-style: italic;
    font-weight: 400;
}

#header-outer #top nav > ul.sf-menu > li > a,
.nectar-cta .link_wrap,
.nectar-button-type,
.nectar-text-reveal-button__text {
    font-family: var(--vw-font-body);
}

#header-outer #top nav > ul > li[class*="menu-item-btn-style-button"] > a,
#header-outer #top nav > ul > li[class*="menu-item-btn-style-button"] .nectar-text-reveal-button__text {
    font-family: var(--vw-font-button);
    font-weight: 600;
    font-style: normal;
}

.nectar-star-rating__icon::before,
[class^="icon-"]::before,
[class*=" icon-"]::before {
    font-family: icomoon !important;
    font-style: normal;
    font-weight: normal;
}

@media (min-width: 1000px) {
    #header-outer .nectar-mobile-only,
    #header-outer .nectar-mobile-only.mobile-header {
        display: none !important;
    }
}

/* ── Salient navbar (replaces WP menu-dynamic.css) ── */
#header-outer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 0 !important;
    transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

#header-outer.transparent:not(.dark-text) {
    background-color: transparent !important;
    box-shadow: none !important;
}

#header-outer.dark-text {
    background-color: #fff !important;
    box-shadow: 0 1px 0 rgba(9, 15, 45, 0.06), 0 8px 32px rgba(9, 15, 45, 0.08) !important;
}

#header-outer #top {
    padding: 8px 0;
    min-height: var(--header-nav-height);
}

#header-outer #top #logo {
    position: relative;
    display: block;
    line-height: 0;
}

#header-outer.force-contained-rows #top > .container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

#header-outer #top .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header-outer #top #logo img {
    height: 64px;
    width: auto;
    max-height: 64px;
}

#header-outer #top #logo .starting-logo {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

#header-outer.transparent:not(.dark-text) #top #logo img.stnd {
    opacity: 0;
}

#header-outer.transparent:not(.dark-text) #top #logo img.starting-logo {
    opacity: 1;
}

#header-outer.dark-text #top #logo img.starting-logo {
    opacity: 0;
}

#header-outer.dark-text #top #logo img.stnd {
    opacity: 1;
}

#header-outer #top .col.span_9 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

#header-outer #top nav {
    float: right;
}

@media (min-width: 1000px) {
    #header-outer #top nav > ul.sf-menu {
        display: flex;
        align-items: center;
        gap: 8px;
        float: none;
        margin: 0;
        padding: 0;
        list-style: none;
    }
}

#header-outer #top nav > ul.sf-menu > li {
    float: none;
    line-height: 1;
}

#header-outer[data-lhe="text_reveal"] #top nav > ul > li > a {
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    color: #555;
    text-decoration: none;
}

#header-outer[data-lhe="text_reveal"] #top nav > ul > li[class*="menu-item-btn-style"] > a {
    padding-left: 22px;
    padding-right: 22px;
    margin-left: 6px;
}

#header-outer #top nav > ul > li[class*="menu-item-btn-style-button"] > a,
#header-outer .nectar-mobile-only li[class*="menu-item-btn-style-button"] > a {
    position: relative;
    display: inline-block;
    color: #fff !important;
    min-width: 96px;
    text-align: center;
    font-family: var(--vw-font-button);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 1;
    z-index: 0;
}

#header-outer #top nav > ul > li[class*="menu-item-btn-style-button"] > a::before,
#header-outer .nectar-mobile-only li[class*="menu-item-btn-style-button"] > a::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 38px;
    border-radius: 100px;
    background-color: var(--nectar-accent-color);
    z-index: -1;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

#header-outer #top nav > ul > li[class*="menu-item-btn-style-button"] > a:hover::before,
#header-outer .nectar-mobile-only li[class*="menu-item-btn-style-button"] > a:hover::before {
    transform: translateY(-50%) scale(1.03);
    box-shadow: 0 6px 20px rgba(44, 77, 224, 0.35);
}

#header-outer #top nav > ul > li[class*="menu-item-btn-style-button"] .nectar-text-reveal-button__text,
#header-outer #top nav > ul > li[class*="menu-item-btn-style-button"] .nectar-text-reveal-button__text::after,
#header-outer .nectar-mobile-only li[class*="menu-item-btn-style-button"] .menu-title-text {
    color: #fff !important;
}

#header-outer #top .nectar-text-reveal-button {
    overflow: hidden;
    display: block;
    line-height: 1.3;
}

#header-outer #top .nectar-text-reveal-button__text {
    display: block;
    position: relative;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.33, 1) !important;
}

#header-outer #top .nectar-text-reveal-button__text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    bottom: -120%;
    width: 100%;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.33, 1);
}

#header-outer #top nav > ul > li > a:hover .nectar-text-reveal-button__text {
    transform: translateY(-100%);
}

#header-outer #top nav > ul > li > a:hover .nectar-text-reveal-button__text::after {
    transform: translateY(-20%);
}

/* ── Mobile & tablet navbar (logo left | login/dashboard + hamburger right) ── */
@media (max-width: 999px) {
    #header-outer #top {
        padding: 12px 0;
    }

    #header-outer #top .container {
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
    }

    #header-outer #top .row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        gap: 10px;
        position: relative;
        min-height: 32px;
    }

    #header-outer #top .col.span_3 {
        flex: 1 1 auto !important;
        width: auto !important;
        min-width: 0 !important;
        position: relative !important;
        left: auto !important;
        top: auto !important;
        z-index: 1;
        text-align: left !important;
        margin-bottom: 0 !important;
        overflow: hidden;
        display: flex !important;
        align-items: center !important;
        line-height: normal !important;
    }

    #header-outer #top #logo {
        position: relative;
        display: block;
        max-width: 100%;
        line-height: 0;
        height: 30px;
        min-height: 30px;
        width: fit-content;
    }

    #header-outer #top #logo img,
    #header-outer #top #logo .starting-logo,
    #header-outer #top #logo img.stnd {
        height: 30px;
        max-height: 30px;
        width: auto;
        max-width: min(180px, 50vw);
        top: 50% !important;
        margin-top: 0 !important;
        left: 0 !important;
        position: absolute !important;
        transform: translateY(-50%) !important;
        vertical-align: middle;
    }

    #header-outer #top .col.span_9 {
        flex: 0 0 auto !important;
        width: auto !important;
        position: relative !important;
        right: auto !important;
        top: auto !important;
        height: auto !important;
        min-height: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 8px;
        margin-left: auto !important;
        z-index: 2;
        line-height: normal !important;
    }

    #header-outer #top .col.span_9 > nav {
        display: none !important;
    }

    #header-outer .nectar-mobile-only.mobile-header {
        display: block !important;
        flex-shrink: 0;
    }

    #header-outer .nectar-mobile-only .inner > ul.sf-menu {
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    #header-outer .nectar-mobile-only li[class*="menu-item-btn-style-button"] {
        margin: 0 !important;
    }

    #header-outer .nectar-mobile-only li[class*="menu-item-btn-style-button"] > a {
        padding: 8px 14px;
        min-width: 0;
        font-size: 13px;
        white-space: nowrap;
    }

    #header-outer .nectar-mobile-only li[class*="menu-item-btn-style-button"] > a::before {
        height: 32px;
    }

    #header-outer .slide-out-widget-area-toggle.mobile-icon {
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0;
        margin: 0;
        padding: 0 !important;
        height: auto !important;
        line-height: 1 !important;
        top: auto !important;
        transform: none !important;
        vertical-align: middle !important;
        position: relative !important;
        z-index: 10002 !important;
        pointer-events: auto !important;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    #header-outer .slide-out-widget-area-toggle.mobile-icon > div {
        position: relative !important;
        top: auto !important;
        transform: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px;
        height: 44px;
        line-height: 1 !important;
        pointer-events: auto !important;
    }

    #header-outer .slide-out-widget-area-toggle.mobile-icon a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px;
        height: 44px !important;
        padding: 0;
        line-height: 1 !important;
        pointer-events: auto !important;
        cursor: pointer;
        position: relative;
        z-index: 1;
        -webkit-tap-highlight-color: transparent;
    }

    body #header-outer .slide-out-widget-area-toggle.mobile-icon .lines-button {
        top: 0 !important;
        position: relative !important;
        margin: 0 !important;
        display: inline-block !important;
    }

    #header-outer.transparent:not(.dark-text) .slide-out-widget-area-toggle .lines-button .lines,
    #header-outer.transparent:not(.dark-text) .slide-out-widget-area-toggle .lines-button .lines::before,
    #header-outer.transparent:not(.dark-text) .slide-out-widget-area-toggle .lines-button .lines::after {
        background-color: #fff !important;
    }

    #header-outer.dark-text .slide-out-widget-area-toggle .lines-button .lines,
    #header-outer.dark-text .slide-out-widget-area-toggle .lines-button .lines::before,
    #header-outer.dark-text .slide-out-widget-area-toggle .lines-button .lines::after {
        background-color: #090f2d !important;
    }
}

/* ── Mobile off-canvas menu (fullscreen-alt) ── */
body.ocm-open {
    overflow: hidden !important;
}

#slide-out-widget-area-bg.fullscreen-alt {
    position: fixed;
    inset: 0;
    z-index: 10049 !important;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    left: 0 !important;
    transform: none !important;
    background-color: rgba(9, 15, 45, 0.97) !important;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#slide-out-widget-area-bg.fullscreen-alt.open {
    opacity: 1 !important;
    visibility: visible;
    pointer-events: auto;
}

#slide-out-widget-area.fullscreen-alt {
    position: fixed;
    inset: 0;
    z-index: 10050 !important;
    display: none !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: transparent !important;
    text-align: center;
    padding: 0;
}

body.ocm-open #slide-out-widget-area.fullscreen-alt.open,
#slide-out-widget-area.fullscreen-alt.open {
    display: block !important;
    background-color: rgba(9, 15, 45, 0.98) !important;
}

#slide-out-widget-area.fullscreen-alt .inner-wrap {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
}

#slide-out-widget-area.fullscreen-alt .inner-wrap > .inner {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 88px 24px 48px;
    position: relative;
}

body #slide-out-widget-area.fullscreen-alt .slide_out_area_close {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    z-index: 10051 !important;
    text-decoration: none;
}

#slide-out-widget-area.fullscreen-alt .slide_out_area_close .close-wrap {
    display: block;
    position: relative;
    width: 22px;
    height: 22px;
}

#slide-out-widget-area.fullscreen-alt .slide_out_area_close .close-line {
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease;
}

#slide-out-widget-area.fullscreen-alt .slide_out_area_close .close-line1 {
    transform: translateY(-50%) rotate(45deg);
}

#slide-out-widget-area.fullscreen-alt .slide_out_area_close .close-line2 {
    transform: translateY(-50%) rotate(-45deg);
}

#slide-out-widget-area.fullscreen-alt .off-canvas-menu-container {
    padding: 0;
    margin: 0;
}

#slide-out-widget-area.fullscreen-alt .off-canvas-menu-container .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

#slide-out-widget-area.fullscreen-alt .off-canvas-menu-container .menu > li {
    margin: 0 0 14px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

#slide-out-widget-area.fullscreen-alt.open .off-canvas-menu-container .menu > li {
    opacity: 1 !important;
    transform: none !important;
}

#slide-out-widget-area.fullscreen-alt.open .off-canvas-menu-container .menu > li:nth-child(1) { transition-delay: 0.04s; }
#slide-out-widget-area.fullscreen-alt.open .off-canvas-menu-container .menu > li:nth-child(2) { transition-delay: 0.08s; }
#slide-out-widget-area.fullscreen-alt.open .off-canvas-menu-container .menu > li:nth-child(3) { transition-delay: 0.12s; }
#slide-out-widget-area.fullscreen-alt.open .off-canvas-menu-container .menu > li:nth-child(4) { transition-delay: 0.16s; }
#slide-out-widget-area.fullscreen-alt.open .off-canvas-menu-container .menu > li:nth-child(5) { transition-delay: 0.2s; }
#slide-out-widget-area.fullscreen-alt.open .off-canvas-menu-container .menu > li:nth-child(6) { transition-delay: 0.24s; }

#slide-out-widget-area.fullscreen-alt .off-canvas-menu-container .menu > li > a {
    display: inline-block;
    font-family: var(--vw-font-body);
    font-size: clamp(26px, 7vw, 42px);
    font-weight: 600;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.2s ease;
}

#slide-out-widget-area.fullscreen-alt .off-canvas-menu-container .menu > li > a:hover,
#slide-out-widget-area.fullscreen-alt .off-canvas-menu-container .menu > li > a:focus {
    color: #fff;
}

/* Hamburger → X when menu open */
#header-outer .slide-out-widget-area-toggle.mobile-icon a.open .lines-button.x2 .lines {
    background-color: transparent !important;
}

#header-outer .slide-out-widget-area-toggle.mobile-icon a.open .lines-button.x2 .lines::before {
    top: 0 !important;
    transform: rotate(45deg);
}

#header-outer .slide-out-widget-area-toggle.mobile-icon a.open .lines-button.x2 .lines::after {
    top: 0 !important;
    transform: rotate(-45deg);
}

#header-outer .slide-out-widget-area-toggle.mobile-icon a.open .lines-button.x2 .lines::before,
#header-outer .slide-out-widget-area-toggle.mobile-icon a.open .lines-button.x2 .lines::after {
    transition: transform 0.25s ease, top 0.25s ease;
}

@media (max-width: 999px) {
    #header-outer #top .col.span_9 {
        pointer-events: auto !important;
        z-index: 10001 !important;
    }

    #header-outer #top .col.span_3 {
        pointer-events: none !important;
        z-index: 1 !important;
    }

    #header-outer #top .col.span_3 #logo {
        pointer-events: auto !important;
    }

    #header-outer .slide-out-widget-area-toggle.mobile-icon a {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        position: relative;
        z-index: 3;
    }
}

@media (max-width: 399px) {
    #header-outer .nectar-mobile-only.mobile-header {
        display: none !important;
    }

    #header-outer #top #logo img {
        max-width: min(220px, 65vw);
    }
}

@media (min-width: 691px) and (max-width: 999px) {
    #header-outer #top .container {
        padding-left: 32px;
        padding-right: 32px;
    }

    #header-outer #top #logo img {
        max-width: 220px;
    }

    #header-outer .nectar-mobile-only li[class*="menu-item-btn-style-button"] > a {
        padding: 8px 18px;
        font-size: 14px;
    }
}

@media (min-width: 1000px) and (max-width: 1200px) {
    #header-outer.force-contained-rows #top > .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    #header-outer[data-lhe="text_reveal"] #top nav > ul > li > a {
        padding: 10px 10px;
        font-size: 14px;
    }

    #header-outer[data-lhe="text_reveal"] #top nav > ul > li[class*="menu-item-btn-style"] > a {
        padding-left: 16px;
        padding-right: 16px;
    }

    #header-outer #top nav > ul.sf-menu {
        gap: 4px;
    }
}

/* Pre-footer CTA — galaxy full-bleed background */
body #fws_69cb7cdd5e484.parallax_section,
.wpb_row.parallax_section[data-br-applies="bg"] {
    position: relative !important;
    overflow: hidden;
}

body #fws_69cb7cdd5e484.parallax_section > .row-bg-wrap,
.wpb_row.parallax_section > .row-bg-wrap {
    position: absolute !important;
    top: 0;
    left: 0 !important;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    z-index: 0;
    overflow: hidden;
    flex: none !important;
}

#fws_69cb7cdd5e484.parallax_section > .row-bg-wrap .inner-wrap,
#fws_69cb7cdd5e484.parallax_section > .row-bg-wrap .row-bg-layer,
#fws_69cb7cdd5e484.parallax_section > .row-bg-wrap .row-bg.using-image,
.wpb_row.parallax_section > .row-bg-wrap .inner-wrap,
.wpb_row.parallax_section > .row-bg-wrap .row-bg-layer,
.wpb_row.parallax_section > .row-bg-wrap .row-bg.using-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

#fws_69cb7cdd5e484.parallax_section > .row-bg-wrap .row-bg.using-image,
.wpb_row.parallax_section > .row-bg-wrap .row-bg.using-image {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    opacity: 1 !important;
}

#fws_69cb7cdd5e484.parallax_section > .row-bg-wrap .row-bg-overlay,
.wpb_row.parallax_section > .row-bg-wrap .row-bg-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#fws_69cb7cdd5e484.parallax_section > .row_col_wrap_12,
.wpb_row.parallax_section > .row_col_wrap_12 {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Pre-footer CTA — centered content */
#fws_69cb7cdd5e484 .row_col_wrap_12 .wpb_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

#fws_69cb7cdd5e484 .nectar-responsive-text {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

#fws_69cb7cdd5e484 .nectar-responsive-text h2 {
    color: #fff;
    text-align: center;
}

#fws_69cb7cdd5e484 .nectar-responsive-text p {
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
    line-height: 1.6;
}

#fws_69cb7cdd5e484 .nectar-cta {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#fws_69cb7cdd5e484 .nectar-cta .link_wrap {
    display: inline-block;
}

#fws_69cb7cdd5e484 .vw-cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 28px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

#fws_69cb7cdd5e484 .vw-cta-features span:not(:last-child)::after {
    content: "•";
    margin-left: 28px;
    opacity: 0.45;
    font-weight: 400;
}

/* Transparent header — light nav on hero (Salient behaviour) */
body[data-force-header-trans-color="light"] #header-outer.transparent:not(.dark-text) #top nav > ul.sf-menu > li.nectar-regular-menu-item > a,
body[data-force-header-trans-color="light"] #header-outer.transparent:not(.dark-text) #top nav > ul.sf-menu > li.nectar-regular-menu-item > a .menu-title-text,
body[data-force-header-trans-color="light"] #header-outer.transparent:not(.dark-text) #top nav > ul.sf-menu > li.nectar-regular-menu-item > a .nectar-text-reveal-button__text,
body[data-force-header-trans-color="light"] #header-outer.transparent:not(.dark-text) #top nav > ul.sf-menu > li.nectar-regular-menu-item > a .nectar-text-reveal-button__text::after {
    color: #fff !important;
}

body[data-force-header-trans-color="light"] #header-outer.dark-text {
    background-color: #fff !important;
    box-shadow: 0 1px 0 rgba(9, 15, 45, 0.06), 0 8px 32px rgba(9, 15, 45, 0.08) !important;
}

body[data-force-header-trans-color="light"] #header-outer.dark-text #top nav > ul.sf-menu > li.nectar-regular-menu-item:not([class*="menu-item-btn-style"]) > a,
body[data-force-header-trans-color="light"] #header-outer.dark-text #top nav > ul.sf-menu > li.nectar-regular-menu-item:not([class*="menu-item-btn-style"]) > a .menu-title-text,
body[data-force-header-trans-color="light"] #header-outer.dark-text #top nav > ul.sf-menu > li.nectar-regular-menu-item:not([class*="menu-item-btn-style"]) > a .nectar-text-reveal-button__text,
body[data-force-header-trans-color="light"] #header-outer.dark-text #top nav > ul.sf-menu > li.nectar-regular-menu-item:not([class*="menu-item-btn-style"]) > a .nectar-text-reveal-button__text::after {
    color: #090f2d !important;
}

/* ── CTA buttons ── */
.nectar-cta[data-using-bg="true"] .link_wrap {
    background-color: var(--nectar-button-color, var(--nectar-accent-color));
    border-radius: 100px;
    display: inline-block;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.nectar-cta[data-using-bg="true"] .link_wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 77, 224, 0.35);
}

.nectar-cta .link_wrap a {
    color: var(--nectar-text-color, #fff);
    text-decoration: none;
    font-weight: 600;
}

.nectar-cta .link_text,
.nectar-cta .nectar-text-reveal-button__text {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* ── Scroll fade-in animations ── */
.has-animation[data-animation="slight-fade-in-from-bottom"]:not(.animated-in) {
    opacity: 0;
    transform: translateY(45px);
    will-change: opacity, transform;
}

.has-animation.animated-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.85s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
}

.nectar-milestone.animated-in {
    opacity: 1 !important;
}

/* ── Sticky media section images ── */
.wpb_column[data-using-bg="true"] > .vc_column-inner {
    position: relative;
    min-height: 320px;
}

.wpb_column[data-border-radius="15px"] > .vc_column-inner {
    border-radius: 15px;
    overflow: hidden;
}

.wpb_column[data-using-bg="true"] .column-image-bg-wrap.column-bg-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.wpb_column[data-using-bg="true"] .column-image-bg-wrap .inner-wrap,
.wpb_column[data-using-bg="true"] .column-image-bg-wrap .column-image-bg {
    width: 100%;
    height: 100%;
}

.vw-sticky-feature-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: 15px;
}

.nectar-sticky-media-section__content-section-inner .vc_col-sm-6[data-using-bg="true"] > .vc_column-inner {
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.nectar-sticky-media-section__content-section-inner .vc_col-sm-6[data-using-bg="true"] .wpb_wrapper {
    flex: 1;
    min-height: 280px;
}

.nectar-sticky-media-sections .column-image-bg-wrap {
    position: relative;
    min-height: 320px;
    border-radius: 15px;
    overflow: hidden;
}

.nectar-sticky-media-sections .column-image-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.nectar-sticky-media-sections .vc_col-sm-6[data-using-bg="true"] .vc_column-inner {
    min-height: 320px;
    border-radius: 15px;
    overflow: hidden;
}

/* ── Brand logo ticker ── */
.nectar-flickity .cell[data-lazy="true"] img,
.nectar-flickity .cell img.nectar-lazy {
    opacity: 1 !important;
}

.wpb_gallery_slidesflickity_static_height_style .nectar-flickity .flickity-viewport {
    height: auto !important;
    min-height: 50px;
}

.wpb_gallery_slidesflickity_static_height_style .nectar-flickity.ticker-active,
.wpb_gallery_slidesflickity_static_height_style .nectar-flickity.not-initialized {
    min-height: 50px;
}

.nectar-flickity.ticker-active {
    overflow: hidden;
}

.nectar-flickity.ticker-active .flickity-viewport {
    overflow: visible !important;
    height: auto !important;
}

.nectar-flickity.ticker-active .flickity-slider {
    display: flex !important;
    width: max-content !important;
    animation: vw-ticker-scroll var(--ticker-duration, 40s) linear infinite;
    will-change: transform;
}

.nectar-flickity.ticker-active[data-ticker-speed="slow"] {
    --ticker-duration: 55s;
}

.nectar-flickity.ticker-active .cell {
    flex: 0 0 auto;
    position: static !important;
    transform: none !important;
    margin-right: 30px;
}

.nectar-flickity.ticker-active .cell img,
.nectar-flickity.not-initialized .cell img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    height: 35px !important;
    width: auto !important;
    object-fit: contain;
    display: block;
}

@keyframes vw-ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── Testimonial carousel ── */
.nectar-flickity.nectar-carousel.carousel-active {
    overflow: visible;
}

.nectar-flickity.nectar-carousel.carousel-active .flickity-viewport {
    overflow: hidden;
    transition: height 0.3s ease;
}

.nectar-flickity.nectar-carousel.carousel-active .cell {
    min-height: 100%;
    padding: 0 5px;
}

.nectar-flickity.nectar-carousel.carousel-active .inner-wrap {
    border-radius: 15px;
    overflow: hidden;
    padding: 30px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nectar-flickity.nectar-carousel.carousel-active .flickity-page-dots {
    bottom: -30px;
}

.nectar-flickity.nectar-carousel.carousel-active .flickity-page-dots .dot {
    background: rgba(255, 255, 255, 0.4);
}

.nectar-flickity.nectar-carousel.carousel-active .flickity-page-dots .dot.is-selected {
    background: #fff;
}

/* ── Chat thread ── */
.nectar-chat-thread.is-animating .nectar-chat-thread__bubble {
    transition: opacity 0.4s ease, max-height 0.5s ease;
}

.nectar-chat-thread.is-animated .nectar-chat-thread__bubble {
    opacity: 1 !important;
    max-height: 500px !important;
}

.nectar-chat-thread.is-animated .nectar-chat-thread__bubble[data-direction="incoming"]:not(:first-child) .nectar-chat-thread__bubble-content,
.nectar-chat-thread.is-animated .nectar-chat-thread__bubble[data-direction="outgoing"]:not(:first-child) .nectar-chat-thread__bubble-content {
    clip-path: inset(0 0 0 0) !important;
    -webkit-clip-path: inset(0 0 0 0) !important;
}

.nectar-chat-thread.is-animated .nectar-chat-thread__word {
    opacity: 1 !important;
}

.nectar-chat-thread__bubble-image {
    object-fit: cover;
    border-radius: 50%;
}

/* ── Sticky horizontal sections ── */
.nectar-sticky-media-sections.is-scroll-ready .nectar-sticky-media-section__content__wrap {
    transition: transform 0.08s linear;
    will-change: transform;
}

/* ── Parallax row backgrounds ── */
.row-bg[data-parallax-speed],
.row-bg.using-image {
    background-size: cover !important;
    background-position: center center !important;
}

@media (max-width: 999px) {
    .nectar-flickity.ticker-active .flickity-slider {
        animation-duration: 35s;
    }

    /* Feature cards: drop desktop 80vh stretch — height follows content */
    body .nectar-sticky-media-sections.type--horizontal-scrolling.section-height-80vh.subtract-nav-height.section-gap-desktop-10px {
        height: auto !important;
        --section-height: auto !important;
        --section-offset: 0px !important;
    }

    body .nectar-sticky-media-sections.type--horizontal-scrolling .nectar-sticky-media-section__content__wrap {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 16px !important;
        position: static !important;
        top: auto !important;
        transform: none !important;
        height: auto !important;
    }

    body .nectar-sticky-media-sections.type--horizontal-scrolling .nectar-sticky-media-section__content-section {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        margin-bottom: 0 !important;
    }

    body .nectar-sticky-media-sections.type--horizontal-scrolling .nectar-sticky-media-section__content-section__wrap {
        height: auto !important;
        min-height: 0 !important;
        justify-content: flex-start !important;
        overflow: visible !important;
        border-radius: 18px;
        position: relative !important;
        display: block !important;
    }

    body .type--horizontal-scrolling.content-alignment-stretch .nectar-sticky-media-section__content-section__wrap {
        justify-content: flex-start !important;
    }

    body .type--horizontal-scrolling.content-alignment-stretch .nectar-sticky-media-section__content-section__wrap > * {
        flex: none !important;
        height: auto !important;
        min-height: 0 !important;
    }

    body .type--horizontal-scrolling.content-alignment-stretch .nectar-sticky-media-section__content-section__wrap > * > .wpb_row:is(:first-child):is(:last-child) {
        flex: none !important;
        height: auto !important;
        min-height: 0 !important;
    }

    body .type--horizontal-scrolling.content-alignment-stretch .nectar-sticky-media-section__content-section__wrap > * > .wpb_row:is(:first-child):is(:last-child) > .span_12 {
        height: auto !important;
        min-height: 0 !important;
    }

    /* Colored card background — fill the card without forcing tall height */
    body .type--horizontal-scrolling .nectar-sticky-media-content__media-wrap {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        border-radius: 18px;
        overflow: hidden;
        z-index: 0;
        pointer-events: none;
    }

    body .type--horizontal-scrolling .nectar-sticky-media-content__media-wrap > * {
        height: 100% !important;
        min-height: 0 !important;
        border-radius: 18px;
    }

    body .nectar-sticky-media-sections.type--horizontal-scrolling .nectar-sticky-media-section__content-section-inner {
        display: block !important;
        height: auto !important;
        min-height: 0 !important;
        position: relative !important;
        z-index: 1;
    }

    body .nectar-sticky-media-sections.type--horizontal-scrolling .nectar-sticky-media-section__content-section-inner .wpb_row {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
        height: auto !important;
        min-height: 0 !important;
    }

    body .nectar-sticky-media-section__content-section-inner .row_col_wrap_12_inner,
    body .nectar-sticky-media-section__content-section-inner .row_col_wrap_12_inner.span_12 {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        gap: 16px;
        align-items: stretch !important;
        justify-content: flex-start !important;
    }

    .nectar-sticky-media-section__content-section-inner .vc_col-sm-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        float: none !important;
        margin: 0 !important;
        margin-bottom: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .nectar-sticky-media-section__content-section-inner .vc_col-sm-6 > .vc_column-inner {
        padding: 0 !important;
        min-height: 0 !important;
        height: auto !important;
    }

    /* Text column */
    .nectar-sticky-media-section__content-section-inner .vc_col-sm-6:not([data-using-bg="true"]) .wpb_wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .nectar-sticky-media-section__content-section-inner .nectar-responsive-text h2 {
        font-size: clamp(26px, 7vw, 34px) !important;
        line-height: 1.2 !important;
        margin: 0 !important;
    }

    .nectar-sticky-media-section__content-section-inner .nectar-responsive-text p {
        margin: 0 !important;
        line-height: 1.55 !important;
    }

    .nectar-sticky-media-section__content-section-inner .nectar-cta {
        margin-top: 8px !important;
        margin-bottom: 0 !important;
    }

    /* Image column — full width, no tall empty stretch */
    .wpb_column[data-using-bg="true"] > .vc_column-inner,
    .nectar-sticky-media-section__content-section-inner .vc_col-sm-6[data-using-bg="true"] > .vc_column-inner,
    .nectar-sticky-media-sections .vc_col-sm-6[data-using-bg="true"] .vc_column-inner,
    .nectar-sticky-media-sections .column-image-bg-wrap {
        min-height: 0 !important;
        height: auto !important;
    }

    .nectar-sticky-media-section__content-section-inner .vc_col-sm-6[data-using-bg="true"] .wpb_wrapper {
        flex: none !important;
        min-height: 0 !important;
        height: auto !important;
    }

    .nectar-sticky-media-sections .column-image-bg-wrap {
        position: relative !important;
        display: none !important; /* use <img> on mobile; bg layer was empty-stretching */
    }

    .vw-sticky-feature-image {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-radius: 15px;
    }
}

@media (max-width: 690px) {
    .nectar-sticky-media-sections.type--horizontal-scrolling .nectar-sticky-media-section__content__wrap {
        gap: 14px !important;
    }

    .nectar-sticky-media-sections.type--horizontal-scrolling .nectar-sticky-media-section__content-section-inner .wpb_row {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .vw-sticky-feature-image {
        aspect-ratio: 1 / 1;
    }
}

@media (min-width: 691px) and (max-width: 999px) {
    .vw-sticky-feature-image {
        aspect-ratio: 16 / 10;
    }
}

@media (min-width: 1000px) {
    .nectar-sticky-media-section__content-section-inner .row_col_wrap_12_inner {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100%;
    }

    .nectar-sticky-media-section__content-section-inner .vc_col-sm-6 {
        width: 50%;
        flex: 0 0 50%;
    }

    .vw-sticky-feature-image {
        min-height: 360px;
    }
}

/* Seamless transition into global footer — no white gap */
#ajax-content-wrap > .container-wrap {
    padding-bottom: 0 !important;
}

#ajax-content-wrap > .container-wrap:has(.nectar_hook_global_section_footer) {
    background-color: #090f2d !important;
}

.nectar-global-section.nectar_hook_global_section_footer {
    margin-top: 0 !important;
}

#footer-outer[data-using-widget-area="false"][data-disable-copyright="true"]:empty {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* FAQ accordion — panels collapse via JS max-height; keep overflow clipped */
.toggles.accordion .toggle[data-inner-wrap="true"] > div {
    overflow: hidden;
}

.toggles.accordion .toggle[data-inner-wrap="true"]:not(.open) > div:not([style*="max-height"]) {
    max-height: 0 !important;
}

.toggles.accordion .toggle-heading {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* FAQ plus/minus icons — high contrast on dark accordion panels */
.toggles.accordion[data-style="animated_circle"] {
    --nectar-toggle-color: #ffffff;
}

.toggles.accordion[data-style="animated_circle"] .toggle.extra-color-3 {
    --nectar-toggle-color: #ffffff;
}

.toggles.accordion[data-style="animated_circle"] .toggle > .toggle-title a .nectar-toggle-icon-circle {
    opacity: 0.5 !important;
    stroke: rgba(255, 255, 255, 0.5) !important;
    stroke-width: 1.5px !important;
}

.toggles.accordion[data-style="animated_circle"] .toggle.open > .toggle-title a .nectar-toggle-icon-circle {
    opacity: 0.85 !important;
    stroke: rgba(255, 255, 255, 0.85) !important;
}

.toggles.accordion[data-style="animated_circle"] .toggle > .toggle-title a .nectar-toggle-icon-circle-hover,
.toggles.accordion[data-style="animated_circle"] .nectar-toggle-icon circle,
.toggles.accordion[data-style="animated_circle"] .plus-line {
    stroke: #ffffff !important;
}

.toggles.accordion[data-style="animated_circle"] .plus-line {
    stroke-width: 2px !important;
}

.toggles.accordion[data-style="animated_circle"] .toggle.open > .toggle-title a .nectar-toggle-icon-circle-hover {
    stroke: #6b9fff !important;
    stroke-width: 1.5px !important;
}

.toggles.accordion[data-style="animated_circle"] .toggle > .toggle-title a:hover .nectar-toggle-icon-circle {
    opacity: 0.75 !important;
    stroke: rgba(255, 255, 255, 0.75) !important;
}

.toggles.accordion[data-style="animated_circle"] .nectar-toggle-icon {
    width: var(--ac-size, 40px) !important;
    height: var(--ac-size, 40px) !important;
    min-width: var(--ac-size, 40px);
}
