:root {

    --ink: #0D1B2A;

    --ink2: #131629;

    --ink3: #1A1F38;

    --jade: #0078c2;

    --jade2: #0078c2;

    --jade3: #8FD14F;

    --jade-pale: #D4F4EA;

    --indigo: #2A4080;

    --indigo2: #3B5CB8;

    --amber: #C8922A;

    --amber2: #8fd14f;

    --parchment: #F5F0E8;

    --linen: #EDE6D9;

    --text: #1A2028;

    --muted: #6B7C88;

    --white: #FFFFFF;
    --deep-green: #0b4a2f;

}



*,

*::before,

*::after {

    box-sizing: border-box;

    margin: 0;

    padding: 0;

}



html {

    scroll-behavior: smooth;

}



body {

    font-family: 'Jost', sans-serif;

    color: var(--text);

    background: var(--white);

    overflow-x: hidden;

}



img {

    display: block;

}



/* NAV */

#mainNav {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    z-index: 1000;

    transition: all .4s ease;

    background: #ffffffe6;

    border-bottom: 1px solid rgba(230, 209, 204, 0.5);

}



#mainNav.scrolled {

    background: rgb(255 255 255 / 97%);

    backdrop-filter: blur(24px);

    box-shadow: 0 2px 40px rgba(0, 0, 0, .5);

    padding: .55rem 0;

}



.nav-logo {

    display: flex;

    align-items: center;

    gap: .75rem;

    text-decoration: none;

}



.nav-logo img {

    height: 65px;

    width: auto;

}



.nav-logo .vp-name {

    font-family: 'Jost', sans-serif;

    font-size: 1.28rem;

    color: #fff;

    letter-spacing: .04em;

    display: block;

    line-height: 1;

}



.nav-logo .vp-sub {

    font-size: .52rem;

    color: var(--jade3);

    letter-spacing: .24em;

    text-transform: uppercase;

    display: block;

    margin-top: 2px;

}



.navbar-nav .nav-link {

    color: #000;

    font-size: .77rem;

    font-weight: 400;

    letter-spacing: .1em;

    text-transform: uppercase;

    padding: .6rem .85rem !important;

    transition: color .2s;

    position: relative;

    display: flex;

    align-items: center;

    gap: .4rem;

}



.navbar-nav li:last-child .nav-link {

    border-bottom: none;

}



.dropdown-toggle::after {

    content: '▼';

    display: inline-block;

    margin-left: .3rem;

    font-size: .6rem;

    transition: transform .3s ease;

}



.dropdown-toggle[aria-expanded="true"]::after {

    transform: rotate(180deg);

}



/* Dropdown hover effect on desktop */

@media (min-width: 992px) {

    .nav-item.dropdown:hover .dropdown-menu {

        display: block !important;

        opacity: 1 !important;

        visibility: visible !important;

        animation: slideDown 0.3s ease;

    }



    .nav-item.dropdown:hover>.dropdown-toggle {

        color: #173d2f !important;

    }



    .nav-item.dropdown:hover>.dropdown-toggle::after {

        transform: rotate(180deg);

    }



    @keyframes slideDown {

        from {

            opacity: 0;

            transform: translateY(-10px);

        }



        to {

            opacity: 1;

            transform: translateY(0);

        }

    }

}



.navbar-nav .nav-link::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: .85rem;

    right: .85rem;

    height: 1px;

    background: #1a3d2f;

    transform: scaleX(0);

    transition: transform .3s;

    transform-origin: left;

}



.nav-link.dropdown-toggle::after {

    transform-origin: center;

}



li.nav-item.dropdown ul.dropdown-menu {

    margin-top: 1px;

}



.dropdown-toggle::after {

    border-top: 1px solid;

}



.navbar-nav .nav-link:hover {

    color: #1a3d2f !important;

}



.navbar-nav .nav-link:hover::after {

    transform: scaleX(1);

}



.btn-nav {

    background: linear-gradient(135deg, var(--jade), var(--jade2));

    color: #fff !important;

    border: none;

    border-radius: 12px;

    padding: .55rem 1.4rem !important;

    font-size: .75rem !important;

    font-weight: 600 !important;

    letter-spacing: .12em !important;

    text-transform: uppercase !important;

    transition: transform .2s, box-shadow .2s !important;

    cursor: pointer;

}



.btn-nav:hover {

    transform: translateY(-1px);

    box-shadow: 0 8px 24px rgba(18, 122, 90, .4);

}



.navbar-toggler {

    padding: .3rem .5rem;

    border: none !important;

    box-shadow: none !important;

}



.navbar-toggler-icon {

    height: 1rem;

    background-image: none !important;

}



.navbar-toggler:focus,

.navbar-toggler:active,

.navbar-toggler:focus-visible {

    outline: none !important;

    box-shadow: none !important;

    border: none !important;

}



.navbar-toggler:hover {

    border: none;

    box-shadow: none;

}



span.navbar-toggler-icon:before {

    content: "\2630";

    font-size: 30px;

    color: #0b4a2f;

    transition: transform .3s ease, opacity .3s ease;

    display: inline-block;

}



.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {

    content: "\2715";

    transform: rotate(90deg);

}



/* FLOAT */

#floatBook {

    position: fixed;

    left: 16px;

    top: 50%;

    transform: translateY(-50%);

    z-index: 990;

    border: none;

    cursor: pointer;

    background: radial-gradient(circle at 0% 0%, rgb(140 255 180 / 41%), transparent 40%), #0b4a2f;

    color: #fff;

    writing-mode: vertical-rl;

    text-orientation: mixed;

    padding: 1rem .68rem;

    border-radius: 12px;

    font-family: 'Jost', sans-serif;

    font-size: .68rem;

    font-weight: 600;

    letter-spacing: .2em;

    text-transform: uppercase;

    box-shadow: 0 8px 32px rgba(18, 122, 90, .45);

    display: flex;

    align-items: center;

    gap: .45rem;

    opacity: 0;

    pointer-events: none;

    transition: opacity .4s, transform .3s;

}



#floatBook.show {

    opacity: 1;

    pointer-events: all;

}



#floatBook:hover {

    transform: translateY(-50%) translateX(3px);

    box-shadow: 0 14px 40px rgba(18, 122, 90, .6);

}



.fb-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--amber2);

    flex-shrink: 0;

    animation: ping 2s ease-in-out infinite;

}



@keyframes ping {



    0%,

    100% {

        box-shadow: 0 0 0 0 rgba(230, 184, 74, .7);

    }



    50% {

        box-shadow: 0 0 0 5px rgba(230, 184, 74, 0);

    }

}



/* MODAL */

#bookModal .modal-content {

    background: linear-gradient(135deg, #0D4D3D 0%, #1A3D2F 100%);

    border: 1px solid rgba(255, 255, 255, 0.993);

    border-radius: 10px;

    overflow: hidden;

}



#bookModal .modal-header {

    background: linear-gradient(135deg, #0D4D3D 0%, #1A3D2F 100%);

    border-bottom: 1px solid rgba(255, 255, 255, .06);

    padding: 1.8rem 2rem 1.4rem;

}



#bookModal .modal-title {

    font-family: 'Jost', sans-serif;

    font-size: 1.6rem;

    color: #fff;

    font-weight: 400;

}



#bookModal .modal-title em {

    color: var(--jade3);

    font-style: italic;

}



#bookModal .modal-sub {

    font-size: .78rem;

    color: rgb(255 255 255);

    margin-top: 3px;

}



#bookModal .btn-close {

    filter: invert(1) brightness(.5);

}



#bookModal .modal-body {

    padding: 2rem;

}


/* APPOINTMENT MODAL */

#appointmentModal .modal-content {

    background: linear-gradient(135deg, #0D4D3D 0%, #1A3D2F 100%);
    border: 1px solid rgba(255, 255, 255, 0.993);
    border-radius: 10px;
    overflow: hidden;

}

#appointmentModal .modal-header {

    background: linear-gradient(135deg, #0D4D3D 0%, #1A3D2F 100%);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 1.8rem 2rem 1.4rem;

}

#appointmentModal .modal-title {

    font-family: 'Jost', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 400;

}

#appointmentModal .modal-title em {

    color: var(--jade3);
    font-style: italic;

}

#appointmentModal .modal-sub {

    font-size: .78rem;
    color: rgb(255 255 255);
    margin-top: 3px;

}

#appointmentModal .btn-close {

    filter: invert(1) brightness(.5);

}

#appointmentModal .modal-body {

    padding: 2rem;

}

#appointmentModal .ml {

    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

}

#appointmentModal .mi {

    width: 100%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    border-radius: 8px;
    padding: 12px 14px;

}

#appointmentModal .mi::placeholder {

    color: rgba(255, 255, 255, .5);

}

#appointmentModal textarea {

    resize: none;

}

#appointmentModal .btn-submit {

    width: 100%;
    border: none;
    border-radius: 8px;
    background: #fff;
    color: #0D4D3D;
    font-weight: 700;
    padding: 14px 20px;
    transition: .3s;

}

#appointmentModal .btn-submit:hover {

    transform: translateY(-2px);

}



.mi {

    background: rgba(255, 255, 255, .06) !important;

    border: 1px solid rgba(255, 255, 255, .1) !important;

    color: #fff !important;

    border-radius: 4px;

    font-size: 1rem;

    transition: all .2s;

}



.mi:focus {

    background: rgba(62, 207, 160, .07) !important;

    border-color: var(--jade3) !important;

    box-shadow: 0 0 0 3px rgba(62, 207, 160, .12) !important;

    color: #fff !important;

}



.mi::placeholder {

    color: rgba(255, 255, 255, .28) !important;

}



.mi option {

    background: var(--ink2);

    color: #fff;

}



/* ============ CUSTOM DROPDOWN ============ */

.custom-dropdown {
    position: relative;
}



.cd-trigger {

    background: rgba(255, 255, 255, .06) !important;

    border: 1px solid rgba(255, 255, 255, .1) !important;

    color: rgba(255, 255, 255, .7) !important;

    padding: .6rem .9rem;

    border-radius: 4px;

    font-size: 1rem;

    cursor: pointer;

    transition: all .2s;

    display: flex;

    justify-content: space-between;

    align-items: center;

    user-select: none;

}



.cd-trigger::after {

    content: '▼';

    font-size: .6rem;

    color: rgba(255, 255, 255, .4);

    transition: transform .2s;

}



.custom-dropdown.open .cd-trigger {

    background: rgba(62, 207, 160, .07) !important;

    border-color: var(--jade3) !important;

    box-shadow: 0 0 0 3px rgba(62, 207, 160, .12) !important;

    color: #fff !important;

}



.custom-dropdown.open .cd-trigger::after {

    transform: rotate(180deg);

    color: var(--jade3);

}



.cd-menu {

    position: absolute;

    top: 100%;

    left: 0;

    right: 0;

    background: rgba(13, 15, 28, .98);

    border: 1px solid rgba(62, 207, 160, .18);

    border-radius: 6px;

    margin-top: .4rem;

    max-height: 0;

    overflow-y: hidden;

    opacity: 0;

    visibility: hidden;

    transition: all .3s ease;

    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);

    backdrop-filter: blur(12px);

    z-index: 1000;

}



.custom-dropdown.open .cd-menu {

    max-height: 300px;

    overflow-y: auto;

    opacity: 1;

    visibility: visible;

}



/* ============ SCROLLBAR STYLING ============ */

.cd-menu::-webkit-scrollbar {

    width: 6px;

}



.cd-menu::-webkit-scrollbar-track {

    background: rgba(255, 255, 255, .03);

    border-radius: 3px;

}



.cd-menu::-webkit-scrollbar-thumb {

    background: rgba(62, 207, 160, .3);

    border-radius: 3px;

    transition: all .2s;

}



.cd-menu::-webkit-scrollbar-thumb:hover {

    background: rgba(62, 207, 160, .5);

}



.cd-group {

    padding: .4rem 0;

}



.cd-group-label {

    font-size: .65rem;

    letter-spacing: .15em;

    text-transform: uppercase;

    color: rgba(62, 207, 160, .5);

    padding: .4rem .9rem .2rem .9rem;

    font-weight: 600;

}



.cd-option {

    padding: .5rem .9rem;

    color: rgba(255, 255, 255, .65);

    font-size: 1rem;

    cursor: pointer;

    transition: all .15s;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

}



.cd-option:hover {

    background: rgba(62, 207, 160, .12);

    color: var(--jade3);

    padding-left: 1rem;

}



.cd-option.selected {

    background: rgba(62, 207, 160, .15);

    color: var(--jade3);

    font-weight: 500;

}



.mi:disabled {

    opacity: .5;

}



.dropdown-menu {

    background: rgb(23 61 47);

    border: 1px solid rgba(62, 207, 160, .18);

    border-radius: 8px;

    box-shadow: 0 8px 32px rgba(0, 0, 0, .3);

    backdrop-filter: blur(12px);

    min-width: auto;

}

.mobile_down_icon {
    display: none;
}

@media (max-width: 991px) {

    .dropdown-menu {

        background: transparent;

        border: none;

        box-shadow: none;

        backdrop-filter: none;

        padding: 0;

        display: none;

        position: static;

    }



    .dropdown-menu.show {

        display: block !important;

    }

    .mobile_down_icon {
        display: block;
        padding-right: 10px;
        font-size: 14px;
    }

    .nav-item.dropdown .mobile_menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(230, 209, 204, 0.5);
    }

    .dropdown-menu {
        display: none;
    }

    .dropdown-menu.show {
        display: block;
        background-color: #f5f0e8;
        padding-left: 10px;
    }

    .dropdown-menu .dropdown-item {

        border-bottom: 1px solid rgba(230, 209, 204, 0.5);

        padding: .6rem .85rem !important;

    }



    .dropdown-menu .dropdown-item:last-child {

        border-bottom: none;

    }

}



.dropdown-item {

    color: rgb(255 255 255);

    font-size: .77rem;

    letter-spacing: .1em;

    text-transform: uppercase;

    padding: .5rem 1rem;

    transition: all .2s;

}



.dropdown-item:hover {

    background: rgba(62, 207, 160, .1);

    color: var(--jade3);

}



.ml {

    font-size: .71rem;

    letter-spacing: .12em;

    text-transform: uppercase;

    color: rgb(255 255 255);

    margin-bottom: .4rem;

    font-weight: 500;

    display: block;

}



.btn-submit {

    width: 100%;

    padding: .95rem;

    border: none;

    border-radius: 4px;

    background: #fff;

    font-family: 'Jost', sans-serif;

    font-size: .85rem;

    font-weight: 600;

    letter-spacing: .1em;

    text-transform: uppercase;

    cursor: pointer;

    transition: opacity .2s, transform .2s;

}



.btn-submit:hover {

    opacity: .88;

    transform: translateY(-1px);

}



.cf-submit.btn {

    width: auto;

    padding: .55rem 1.4rem !important;

    font-size: .75rem !important;

    font-weight: 600 !important;

    letter-spacing: .12em !important;

}



.cf-submit {

    width: 100%;

    padding: 1rem;

    border: none;

    border-radius: 10px;

    background: linear-gradient(135deg, #0b4a2f, var(--jade));

    color: #fff;

    font-family: 'Jost', sans-serif;

    font-size: 1rem;

    font-weight: 600;

    letter-spacing: .1em;

    text-transform: uppercase;

    cursor: pointer;

    transition: opacity .2s, transform .2s;

    box-shadow: 0 8px 24px rgba(11, 74, 47, .35);

}



.cf-submit:hover {

    opacity: .9;

    transform: translateY(-2px);

    color: #fff;

}



.cf-note {

    font-size: .7rem;

    color: var(--muted);

    margin-top: .8rem;

    line-height: 1.7;

}



.cf-success {

    text-align: center;

    padding: 3rem 2rem;

}



.cfs-icon {

    font-size: 3rem;

    margin-bottom: 1rem;

}



.cf-success h3 {

    font-family: 'Jost', sans-serif;

    font-size: 1.8rem;

    color: var(--jade);

    margin-bottom: .5rem;

}



.cf-success p {

    font-size: .92rem;

    color: var(--muted);

    line-height: 1.7;

}



.modal-note {

    font-size: .68rem;

    color: rgb(255 255 255 / 71%);

    text-align: center;

    margin-top: .7rem;

}



.mdivider {

    border: none;

    border-top: 1px solid rgba(255, 255, 255, .07);

    margin: 1.2rem 0;

}



/* HERO */

.hero {

    min-height: 100vh;

    background: url(../images/VAYU-PRANA-banner.webp) center top / cover no-repeat;

    display: flex;

    align-items: center;

    padding: 8rem 0 5rem;

    position: relative;

    overflow: hidden;

    background-attachment: fixed;

    background-position: center;

    background-repeat: no-repeat;

    background-size: cover;

}



.hero-glow {

    position: absolute;

    pointer-events: none;

    border-radius: 50%;

    filter: blur(80px);

}



.hg1 {

    width: 600px;

    height: 600px;

    background: rgba(18, 122, 90, .18);

    top: -10%;

    right: 5%;

    animation: glowP 10s ease-in-out infinite alternate;

}



.hg2 {

    width: 400px;

    height: 400px;

    background: rgba(42, 64, 128, .15);

    bottom: 0;

    left: 10%;

    animation: glowP 14s ease-in-out infinite alternate-reverse;

}



.hg3 {

    width: 250px;

    height: 250px;

    background: rgba(200, 146, 42, .09);

    top: 30%;

    left: 40%;

    animation: glowP 8s ease-in-out infinite alternate;

}



@keyframes glowP {

    0% {

        opacity: .5;

        transform: scale(1);

    }



    100% {

        opacity: 1;

        transform: scale(1.15);

    }

}



.hero-content {

    position: relative;

    z-index: 2;

}



.hero-full {

    background: radial-gradient(circle at 0% 0%, rgb(140 255 180 / 41%), transparent 40%), #0b4a2f;

    border-radius: 20px;

}



.hero-card {

    background: radial-gradient(circle at 0% 0%, rgb(140 255 180 / 41%), transparent 40%), #0b4a2f;

    padding: 30px;

    border-radius: 20px;

}



.hero-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: .7rem;

    border: 1px solid rgba(62, 207, 160, .28);

    border-radius: 50px;

    padding: .36rem 1rem;

    margin-bottom: 2rem;

    font-size: 16px;

    font-weight: 600;
    background: #AC8E2C;
    /* background: rgba(143, 209, 79, .2); */

    color: #ffffff;

    border-color: #8FD14F66;

    letter-spacing: .24em;

    text-transform: uppercase;

    animation: riseIn .7s ease .15s both;

}



.hero-eyebrow-dot {

    width: 10px;

    height: 10px;

    border-radius: 50%;
    background: #F5BC11;
    /* background: var(--jade3); */

    flex-shrink: 0;

    animation: ping 2s ease-in-out infinite;

}



.hero h1 {

    font-family: 'Jost', sans-serif;

    font-size: clamp(2rem, 5.8vw, 4.0rem);

    color: #fff;

    font-weight: bold;

    line-height: 1.06;

    letter-spacing: -.01em;

    margin-bottom: 1.6rem;

    animation: riseIn .7s ease .3s both;

    text-transform: uppercase;

}



.hero h1 em {

    color: #8FD14F;

    font-style: normal;

    font-weight: bold;

}



.hero h1 .hl {

    color: var(--amber2);

}



.hero-body {

    font-size: 1rem;

    color: rgba(255, 255, 255, .5);

    line-height: 1.85;

    font-weight: 300;

    max-width: 480px;

    margin-bottom: 2.6rem;

    animation: riseIn .7s ease .45s both;

}



.hero-btns {

    display: flex;

    gap: 1rem;

    flex-wrap: wrap;

    animation: riseIn .7s ease .6s both;

}



.btn-prim {

    background: linear-gradient(135deg, var(--jade), var(--jade2));

    color: #fff;

    border: none;

    border-radius: 12px;

    padding: .9rem 2.2rem;

    font-family: 'Jost', sans-serif;

    font-size: .83rem;

    font-weight: 600;

    letter-spacing: .1em;

    text-transform: uppercase;

    cursor: pointer;

    transition: transform .2s, box-shadow .2s;

    box-shadow: 0 8px 28px rgba(18, 122, 90, .38);

}



.btn-prim:hover {

    transform: translateY(-2px);

    box-shadow: 0 14px 38px rgba(18, 122, 90, .55);

}



.btn-ghost {

    background: transparent;

    color: rgba(255, 255, 255, .75);

    border: 1px solid rgba(255, 255, 255, .2);

    border-radius: 12px;

    padding: .9rem 2.2rem;

    font-family: 'Jost', sans-serif;

    font-size: .83rem;

    font-weight: 400;

    letter-spacing: .1em;

    text-transform: uppercase;

    cursor: pointer;

    transition: all .2s;
}

.btn-ghost:hover {
    border-color: #8fd14f;
    color: #fff;
}

.hero-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    animation: riseIn .7s ease .75s both;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 20px;
}

.hm-item {
    padding: 0 2.5rem 0 0;
    padding-left: 2.5rem;
}

.hm-item+.hm-item {
    padding-left: 2.5rem;
    border-left: 1px solid rgb(11 74 47 / 32%);
}

.hm-num {
    font-family: 'Jost', sans-serif;
    font-size: 2.5rem;
    color: #0b4a2f;
    font-weight: 300;
    line-height: 1;
}

.hm-num sup {
    font-size: 1.2rem;
    color: #0b4a2f;
}

.hm-label {

    font-size: .65rem;

    color: #0b4a2f;

    letter-spacing: .16em;

    text-transform: uppercase;

    margin-top: 4px;

}



/* HERO RIGHT - molecule */

.hero-right {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;

    animation: riseIn .9s ease .35s both;

}



.mol-stage {

    position: relative;

    width: 500px;

    height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

}



/* MAIN STAGE GLOW */

.mol-stage::before {

    content: '';

    position: absolute;

    width: 480px;

    height: 480px;

    border-radius: 50%;

    background: radial-gradient(circle,

            rgba(62, 207, 160, 0.25) 0%,

            rgba(62, 207, 160, 0.08) 40%,

            transparent 70%);

    filter: blur(60px);

    z-index: 0;

}



/* COMMON ARC STYLE */

.arc {

    position: absolute;

    border-radius: 50%;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;

}



/* OUTER RING (soft + subtle) */

.arc:nth-child(1) {

    width: 500px;

    height: 500px;

    border: 1px solid rgba(62, 207, 160, 0.55);

    box-shadow:

        0 0 40px rgba(62, 207, 160, 0.08),

        inset 0 0 30px rgba(62, 207, 160, 0.05);

    animation: spin 40s linear infinite;

}



/* SECOND RING */

.arc:nth-child(2) {

    width: 410px;

    height: 410px;

    border: 1px solid rgba(62, 207, 160, 0.65);

    box-shadow:

        0 0 60px rgba(62, 207, 160, 0.15),

        inset 0 0 40px rgba(62, 207, 160, 0.08);

    animation: spin 30s linear infinite reverse;

}



/* THIRD RING */

.arc:nth-child(3) {

    width: 320px;

    height: 320px;

    border: 1px solid rgba(62, 207, 160, 0.75);

    box-shadow:

        0 0 80px rgba(62, 207, 160, 0.2),

        inset 0 0 50px rgba(62, 207, 160, 0.12);

    animation: spin 22s linear infinite;

}



/* INNER RING (MOST GLOW) */

.arc:nth-child(4) {

    width: 230px;

    height: 230px;

    border: 1px solid rgba(62, 207, 160, 0.85);

    box-shadow:

        0 0 120px rgba(62, 207, 160, 0.35),

        0 0 200px rgba(62, 207, 160, 0.2),

        inset 0 0 60px rgba(62, 207, 160, 0.2);

    animation: spin 15s linear infinite reverse;

}



@keyframes spin {

    from {

        transform: translate(-50%, -50%) rotate(0deg);

    }



    to {

        transform: translate(-50%, -50%) rotate(360deg);

    }

}



.arc-particle {

    position: absolute;

    border-radius: 50%;

    top: -5px;

    left: 50%;

    transform: translateX(-50%);

    box-shadow: 0 0 10px currentColor;

}



.ap-jade {

    width: 10px;

    height: 10px;

    background: var(--jade3);

    color: var(--jade3);

}



.ap-amber {

    width: 8px;

    height: 8px;

    background: var(--amber2);

    color: var(--amber2);

}



.ap-indigo {

    width: 7px;

    height: 7px;

    background: var(--indigo2);

    color: var(--indigo2);

}



.mol-center {

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background: linear-gradient(150deg, #101830, #122A3A);

    border: 1.5px solid rgba(62, 207, 160, 0.6);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 4px;

    position: relative;

    z-index: 10;

    box-shadow:

        0 0 80px rgba(18, 122, 90, .45),

        0 0 160px rgba(18, 122, 90, .25),

        inset 0 0 40px rgba(62, 207, 160, .2);

    animation: breathe 6s ease-in-out infinite;

}



@keyframes breathe {



    0%,

    100% {

        box-shadow: 0 0 60px rgba(18, 122, 90, .25), 0 0 120px rgba(18, 122, 90, .1);

    }



    50% {

        box-shadow: 0 0 90px rgba(18, 122, 90, .38), 0 0 160px rgba(18, 122, 90, .15);

    }

}



.mol-o2 {

    font-family: 'Jost', sans-serif;

    font-size: 3.8rem;

    color: var(--jade3);

    line-height: 1;

    font-weight: 300;

    letter-spacing: -.04em;

}



.mol-label {

    font-size: .56rem;

    color: rgb(255 255 255 / 72%);

    letter-spacing: .24em;

    text-transform: uppercase;

}



.hero-chip {

    position: absolute;

    background: rgba(13, 15, 28, .92);

    backdrop-filter: blur(14px);

    border: 1px solid rgba(62, 207, 160, .3);

    border-radius: 16px;

    padding: .75rem 1rem;

    z-index: 20;

    box-shadow: 0 0 20px rgba(62, 207, 160, .15);

}



.chip-val {

    font-family: 'Jost', sans-serif;

    font-size: 1.4rem;

    color: var(--jade3);

    line-height: 1;

}



.chip-lbl {

    font-size: .6rem;

    color: rgb(255 255 255 / 72%);

    letter-spacing: .1em;

    margin-top: 2px;

}



.hc1 {

    bottom: 60px;

    left: 20px;

    animation: chipFloat 7s ease-in-out infinite;

}



.hc1 .chip-val {

    color: var(--amber2);

}



.hc2 {

    top: 80px;

    right: 20px;

    animation: chipFloat 7s ease-in-out infinite;

    animation-delay: -3.5s;

}



.hc2 .chip-val {

    color: var(--amber2);

}



.hc3 {

    top: 50%;

    left: -10px;

    transform: translateY(-50%);

    animation: chipFloat 9s ease-in-out infinite;

    animation-delay: -1.5s;

    padding: .6rem .85rem;

}



.hc3 .chip-val {

    font-size: 1rem;

    color: var(--jade3);

}



@keyframes chipFloat {



    0%,

    100% {

        transform: translateY(0);

    }



    50% {

        transform: translateY(-12px);

    }

}



@keyframes riseIn {

    from {

        opacity: 0;

        transform: translateY(28px);

    }



    to {

        opacity: 1;

        transform: translateY(0);

    }

}



/* STRIP */

.strip {

    background: linear-gradient(90deg, var(--jade), var(--jade2));

    padding: .95rem 0;

    overflow: hidden;

}



.strip-track {

    display: inline-flex;

    gap: 3.5rem;

    align-items: center;

    white-space: nowrap;

    animation: ticker 20s linear infinite;

}



@keyframes ticker {

    from {

        transform: translateX(0);

    }



    to {

        transform: translateX(-50%);

    }

}



.strip-item {

    font-size: .79rem;

    color: rgba(255, 255, 255, .88);

    display: flex;

    align-items: center;

    gap: .5rem;

}



.strip-sep {

    width: 4px;

    height: 4px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .4);

}



/* SHARED */

.section-tag {

    font-size: 17px;

    letter-spacing: .28em;

    text-transform: uppercase;

    color: var(--deep-green);

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: .6rem;

    margin-bottom: .7rem;

}



.section-tag::before {

    content: '';

    width: 20px;

    height: 1px;

    background: var(--deep-green);

}



.section-tag.lt {

    color: var(--deep-green);

}



.section-tag.lt::before {

    background: var(--deep-green);

}



.section-h {

    font-family: 'Jost', sans-serif;

    font-size: clamp(2rem, 3.5vw, 3.1rem);

    font-weight: 400;

    line-height: 1.12;

}



.section-h.wh {

    color: #fff;

}



.section-body {

    font-size: 1rem;

    color: var(--muted);

    line-height: 1.85;

}



.reveal {

    opacity: 0;

    transform: translateY(32px);

    transition: opacity .75s ease, transform .75s ease;

}



.reveal.on {

    opacity: 1;

    transform: translateY(0);

}



.rd1 {

    transition-delay: .1s;

}



.rd2 {

    transition-delay: .2s;

}



.rd3 {

    transition-delay: .3s;

}



.rd4 {

    transition-delay: .4s;

}



/* ============================================

   BREATHING SECTION

   ============================================ */

.breathe-sec {

    padding: 8rem 0;

    background: linear-gradient(135deg, rgb(5 12 26 / 0%) 0%, rgba(13, 15, 28, .88) 100%), url(../images/breathing.webp) center / cover;

    position: relative;

    overflow: hidden;

}



.breathe-sec::before {

    content: '';

    position: absolute;

    inset: 0;

    pointer-events: none;

    background: radial-gradient(ellipse at 50% 50%, rgba(18, 122, 90, .12) 0%, transparent 65%);

}



.breathe-label {

    font-size: 17px;

    letter-spacing: .28em;

    text-transform: uppercase;

    color: var(--jade3);

    font-weight: 600;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: .6rem;

    margin-bottom: .7rem;

}



.breathe-label::before {

    content: '';

    width: 20px;

    height: 1px;

    background: var(--jade3);

}



.breathe-title {

    font-family: 'Jost', sans-serif;

    font-size: clamp(2rem, 3.5vw, 3rem);

    color: #fff;

    font-weight: 300;

    text-align: center;

    margin-bottom: .7rem;

}



.breathe-title em {

    color: var(--jade3);

    font-style: italic;

}



.breathe-sub {

    font-size: 1rem;

    color: rgb(255 255 255 / 72%);

    text-align: center;

    max-width: 500px;

    margin: 0 auto 4rem;

    font-weight: 300;

    line-height: 1.75;

}



/* Breath ring animation */

.breath-ring-wrap {

    display: flex;

    justify-content: center;

    align-items: center;

    position: relative;

    margin-bottom: 3rem;

}



.breath-outer {

    width: 260px;

    height: 260px;

    border-radius: 50%;

    border: 1px solid rgba(62, 207, 160, .15);

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

}



.breath-mid {

    width: 200px;

    height: 200px;

    border-radius: 50%;

    border: 1px solid rgba(62, 207, 160, .25);

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

}



.breath-inner {

    width: 140px;

    height: 140px;

    border-radius: 50%;

    background: radial-gradient(circle at 40% 35%, rgba(62, 207, 160, .3), rgba(18, 122, 90, .6));

    border: 1px solid rgba(62, 207, 160, .5);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    box-shadow: 0 0 40px rgba(62, 207, 160, .2);

    transform: scale(1);

    transition: transform linear;

}



@keyframes breatheAnim {



    0%,

    100% {

        transform: scale(1);

        box-shadow: 0 0 30px rgba(62, 207, 160, .2);

    }



    30% {

        transform: scale(1.3);

        box-shadow: 0 0 70px rgba(62, 207, 160, .45);

    }



    60% {

        transform: scale(1.3);

        box-shadow: 0 0 70px rgba(62, 207, 160, .45);

    }



    80% {

        transform: scale(0.92);

        box-shadow: 0 0 20px rgba(62, 207, 160, .15);

    }

}



.breath-text-main {

    font-family: 'Jost', sans-serif;

    font-size: 1rem;

    color: #fff;

    font-weight: 300;

    letter-spacing: .05em;

}



.breath-text-sub {

    font-size: .52rem;

    color: rgba(255, 255, 255, .4);

    letter-spacing: .22em;

    text-transform: uppercase;

    margin-top: 2px;

}



/* orbit dots */

.breath-orbit {

    position: absolute;

    width: 100%;

    height: 100%;

    border-radius: 50%;

    animation: orbitSpin 12s linear infinite;

}



.breath-orbit::after {

    content: '';

    position: absolute;

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: var(--jade3);

    top: -4px;

    left: 50%;

    transform: translateX(-50%);

    box-shadow: 0 0 8px var(--jade3);

}



.breath-orbit-2 {

    animation-duration: 20s;

    animation-direction: reverse;

}



.breath-orbit-2::after {

    background: var(--amber2);

    box-shadow: 0 0 8px var(--amber2);

    width: 6px;

    height: 6px;

    top: -3px;

}



@keyframes orbitSpin {

    from {

        transform: rotate(0deg);

    }



    to {

        transform: rotate(360deg);

    }

}



/* Phase indicator */

.breath-phase-label {

    font-size: 1rem;

    color: rgba(255, 255, 255, .6);

    letter-spacing: .22em;

    text-transform: uppercase;

    text-align: center;

    font-weight: 300;

    min-height: 28px;

    transition: all .5s;

}



.breath-phase-label span {

    color: var(--jade3);

}



/* Benefits strip under breath */

.breath-benefits {

    display: flex;

    justify-content: center;

    gap: 2rem;

    flex-wrap: wrap;

    margin-top: 3.5rem;

}



.bb-item {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: .5rem;

    padding: 1.4rem 1.8rem;

    border: 1px solid rgba(62, 207, 160, .12);

    border-radius: 10px;

    background: rgba(255, 255, 255, .03);

    min-width: 130px;

    transition: transform .3s, border-color .3s;

}



.bb-item:hover {

    transform: translateY(-4px);

    border-color: rgba(62, 207, 160, .28);

}



.bb-icon {

    font-size: 1.5rem;

    line-height: 1;

}



.bb-val {

    font-family: 'Jost', sans-serif;

    font-size: 1.7rem;

    color: #fff;

    font-weight: 300;

}



.bb-lbl {

    font-size: .62rem;

    color: rgb(255 255 255 / 72%);

    letter-spacing: .14em;

    text-transform: uppercase;

    text-align: center;

}



/* ============================================

   SPECIALIST SECTION

   ============================================ */

.specialist-sec {

    padding: 8rem 0;

    background: var(--parchment);

    overflow: hidden;

}



.spec-img-wrap {

    position: relative;

}



.spec-img-frame {

    border-radius: 16px;

    overflow: hidden;

    background: linear-gradient(155deg, #0C1A2E 0%, #0D3328 50%, #133C32 100%);

    max-width: 380px;

    margin: 0 auto;

    box-shadow: 0 30px 80px rgba(0, 0, 0, .22), 0 0 0 1px rgba(62, 207, 160, .12);

    position: relative;

}



.spec-img-frame::before {

    content: '';

    position: absolute;

    top: -30%;

    left: -30%;

    width: 160%;

    height: 160%;

    background: radial-gradient(circle at 50% 40%, rgba(62, 207, 160, .15) 0%, transparent 55%);

    z-index: 0;

    pointer-events: none;

}



.spec-img-frame img {

    width: 100%;

    height: auto;

    display: block;

    position: relative;

    z-index: 1;

    filter: drop-shadow(0 0 20px rgba(62, 207, 160, .15));

}



.spec-badge {

    position: absolute;

    bottom: -16px;

    right: 10%;

    background: var(--white);

    border-radius: 10px;

    padding: .9rem 1.3rem;

    box-shadow: 0 12px 40px rgba(0, 0, 0, .14);

    z-index: 5;

    display: flex;

    align-items: center;

    gap: .9rem;

}



.sb-ico {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: linear-gradient(135deg, var(--jade), var(--jade2));

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    font-size: 1rem;

}



.sb-val {

    font-family: 'Jost', sans-serif;

    font-size: 1.5rem;

    color: var(--jade);

    line-height: 1;

}



.sb-lbl {

    font-size: .62rem;

    color: var(--muted);

    letter-spacing: .1em;

    margin-top: 1px;

}



.spec-quote-card {

    background: var(--ink);

    border-radius: 14px;

    padding: 3rem 2.8rem;

    position: relative;

    overflow: hidden;

    box-shadow: 0 24px 60px rgba(0, 0, 0, .18);

    margin-bottom: 2rem;

}



.spec-quote-card::before {

    content: '\201C';

    font-family: 'Jost', sans-serif;

    font-size: 10rem;

    color: rgba(62, 207, 160, .06);

    line-height: .7;

    position: absolute;

    top: -1rem;

    left: 1.2rem;

    pointer-events: none;

    user-select: none;

}



.spec-quote-card blockquote {

    font-family: 'Jost', sans-serif;

    font-size: clamp(1.05rem, 1.7vw, 1.35rem);

    color: rgba(255, 255, 255, .88);

    font-style: italic;

    font-weight: 300;

    line-height: 1.75;

    position: relative;

    z-index: 1;

}



.spec-byline {

    margin-top: 1.8rem;

    padding-top: 1.4rem;

    border-top: 1px solid rgba(255, 255, 255, .08);

}



.spec-name {

    font-family: 'Jost', sans-serif;

    font-size: 1.12rem;

    color: var(--jade3);

    font-weight: 400;

    display: block;

}



.spec-role {

    font-size: .72rem;

    color: rgba(255, 255, 255, .32);

    letter-spacing: .1em;

    display: block;

    margin-top: 2px;

}



.cred-row {

    display: flex;

    gap: .9rem;

    align-items: flex-start;

    padding: 1rem 1.2rem;

    background: #fff;

    border-radius: 8px;

    border: 1px solid var(--linen);

    margin-bottom: .7rem;

    transition: transform .2s, box-shadow .2s;

}



.cred-row:hover {

    transform: translateX(4px);

    box-shadow: 0 4px 18px rgba(18, 122, 90, .08);

}



.cred-ico {

    width: 30px;

    height: 30px;

    border-radius: 50%;

    flex-shrink: 0;

    background: linear-gradient(135deg, var(--jade), var(--jade2));

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: .95rem;

}



.cred-txt {

    font-size: .84rem;

    color: var(--muted);

    font-weight: 300;

    line-height: 1.55;

    padding-top: 4px;

}



/* ============================================

   SERVICES

   ============================================ */

.services-sec {

    padding: 8rem 0 6rem;

    background: linear-gradient(135deg, #0D4D3D 0%, #1A3D2F 100%);

    position: relative;

    overflow: hidden;

}



.svc-card {

    background: rgba(26, 61, 47, .7);

    border: 1.5px solid rgba(62, 207, 160, .32);

    border-radius: 18px;

    padding: 2rem 1.8rem;

    height: 100%;

    position: relative;

    overflow: hidden;

    transition: transform .3s, border-color .3s, background .3s;

    text-align: left;

    display: flex;

    flex-direction: row;

    align-items: flex-start;

    gap: 1.6rem;

}



.svc-card::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    height: 2px;

    background: linear-gradient(90deg, var(--jade), var(--jade3));

    transform: scaleX(0);

    transition: transform .35s;

    transform-origin: left;

}



.svc-card:hover {

    transform: translateY(-6px);

    border-color: rgba(62, 207, 160, .5);

    background: rgba(18, 122, 90, .35);

}



.svc-card:hover::after {

    transform: scaleX(1);

}



.svc-ico-wrap {

    width: 75px;

    height: 75px;

    min-width: 75px;

    border-radius: 50%;

    background: linear-gradient(135deg, rgba(143, 209, 79, .25), rgba(62, 207, 160, .15));

    border: 2.5px solid rgba(143, 209, 79, .4);

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    flex-shrink: 0;

    margin-top: 0;

}



.svc-ico-wrap img {

    width: 36px;

    height: 36px;

    object-fit: contain;

    filter: brightness(0) saturate(100%) invert(73%) sepia(38%) saturate(520%) hue-rotate(55deg) brightness(100%) contrast(95%);

}



.svc-pill {

    display: block;

    font-size: .56rem;

    letter-spacing: .18em;

    text-transform: uppercase;

    border-radius: 0;

    padding: 0;

    margin-bottom: .6rem;

    font-weight: 600;

}



.svc-pill.w {

    color: var(--amber2);

}



.svc-pill.h {

    color: var(--jade3);

    background: transparent;

    border: none;

}



.svc-content {

    flex: 1;

    display: flex;

    flex-direction: column;

    gap: 0;

}



.svc-card h4 {

    font-family: 'Jost', sans-serif;

    font-size: 1.02rem;

    color: #fff;

    font-weight: 600;

    margin-bottom: .4rem;

    line-height: 1.3;

    letter-spacing: .02em;

}



.svc-card p {

    font-size: 1rem;

    color: rgba(255, 255, 255, .68);

    line-height: 1.65;

    font-weight: 300;

    margin: 0;

}



.svc-cta-card {

    background: rgba(18, 122, 90, .28);

    border-color: rgba(62, 207, 160, .28);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    gap: 0;

}



.svc-cta-card .svc-ico-wrap {

    background: linear-gradient(135deg, rgba(62, 207, 160, .25), rgba(18, 122, 90, .15));

    border-color: rgba(62, 207, 160, .35);

}



.svc-cta-card p.qt {

    font-family: 'Jost', sans-serif;

    font-size: 1.05rem;

    color: rgba(255, 255, 255, .65);

    font-style: italic;

    line-height: 1.65;

    margin-bottom: 1.2rem !important;

}



/* ============================================

   JOURNEY — REDESIGNED

   ============================================ */

.journey-sec {

    padding: 8rem 0;

    background: var(--white);

    position: relative;

    overflow: hidden;

}



.journey-intro {

    max-width: 520px;

    margin: 0 auto 5rem;

    text-align: center;

}



/* horizontal timeline for desktop */

.jt-wrap {

    position: relative;

}



.jt-line {

    position: absolute;

    top: 56px;

    left: 0;

    right: 0;

    height: 2px;

    background: linear-gradient(90deg, transparent, var(--linen) 8%, var(--linen) 92%, transparent);

    z-index: 0;

}



.jt-progress {

    position: absolute;

    top: 56px;

    left: 0;

    height: 2px;

    width: 0%;

    background: linear-gradient(90deg, var(--jade), var(--jade3));

    z-index: 1;

    transition: width .8s ease;

}



.jt-steps {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 0;

    position: relative;

    z-index: 2;

}



.jt-step {

    display: flex;

    flex-direction: column;

    align-items: center;

    padding: 0 1rem;

    cursor: pointer;

}



.jt-node-wrap {

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 1.8rem;

}



.jt-node {

    width: 56px;

    height: 56px;

    border-radius: 50%;

    background: #fff;

    border: 2px solid var(--linen);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all .35s;

    position: relative;

    font-size: 1.4rem;

}



.jt-step.active .jt-node,

.jt-step:hover .jt-node {

    background: linear-gradient(145deg, #9EDB5A 0%, #6CC06B 40%, #4FAF5A 100%);

    box-shadow: 0 0 0 8px rgba(143, 209, 79, 0.18), inset 0 0 0 4px #ffffff, 0 10px 25px rgba(79, 175, 90, 0.25);

    border: 2px solid #8FD14F;

    transform: scale(1.1);

}



.jt-step.active .jt-node-emoji,

.jt-step:hover .jt-node-emoji {

    filter: brightness(0) invert(1);

}



.jt-node-emoji {

    font-size: 1.3rem;

    transition: filter .35s;

}



.jt-step-num {

    font-family: 'Jost', sans-serif;

    font-size: 15px;

    color: var(--muted);

    letter-spacing: .18em;

    text-transform: uppercase;

    margin-bottom: .4rem;

    font-weight: bold;

}



.jt-step.active .jt-step-num,

.jt-step:hover .jt-step-num {

    color: #58b45f;

}



.jt-step-title {

    font-size: 17px;

    font-weight: 600;

    color: var(--text);

    text-align: center;

    margin-bottom: .4rem;

}



.jt-step-hint {

    font-size: 15px;

    color: var(--muted);

    text-align: center;

    font-weight: bold;

}



/* Journey detail panel */

.jt-detail {

    margin-top: 3.5rem;

    background: var(--parchment);

    border-radius: 14px;

    border: 1px solid var(--linen);

    overflow: hidden;

    min-height: 220px;

}



.jt-detail-inner {

    display: none;

    padding: 3rem;

    animation: fadeSlide .4s ease;

}



.jt-detail-inner.active {

    display: flex;

    gap: 2.5rem;

    align-items: flex-start;

}



@keyframes fadeSlide {

    from {

        opacity: 0;

        transform: translateY(16px);

    }



    to {

        opacity: 1;

        transform: translateY(0);

    }

}



.jt-detail-icon {

    width: 80px;

    height: 80px;

    border-radius: 16px;

    flex-shrink: 0;

    background: linear-gradient(145deg, #9EDB5A 0%, #6CC06B 40%, #4FAF5A 100%);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2.2rem;

}



.jt-detail-step {

    font-size: 13px;

    letter-spacing: .22em;

    text-transform: uppercase;

    color: #58b45f;

    font-weight: 600;

    margin-bottom: .5rem;

}



.jt-detail-content h3 {

    font-family: 'Jost', sans-serif;

    font-size: 1.6rem;

    color: var(--text);

    font-weight: 400;

    margin-bottom: .75rem;

}



.jt-detail-content p {

    font-size: 1rem;

    color: var(--muted);

    font-weight: 300;

    margin-bottom: 1rem;

}



.jt-tags {

    display: flex;

    gap: .5rem;

    flex-wrap: wrap;

}



.jt-tag {

    font-size: .7rem;

    padding: .28rem .85rem;

    border-radius: 50px;

    background: radial-gradient(circle at 0% 0%, rgb(140 255 180 / 41%), transparent 40%), #0b4a2f;

    color: #ffffff;

    font-weight: 600;

    letter-spacing: .06em;

}



/* Mobile steps */

.jt-mobile {

    display: none;

}



.jt-mobile-step {

    display: flex;

    gap: 1.4rem;

    padding: 1.5rem 0;

    border-bottom: 1px solid var(--linen);

}



.jt-mobile-step:last-child {

    border-bottom: none;

}



.jt-mob-node {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    flex-shrink: 0;

    background: linear-gradient(135deg, var(--jade), var(--jade2));

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.2rem;

    box-shadow: 0 6px 18px rgba(18, 122, 90, .25);

}



.jt-mob-num {

    font-size: .62rem;

    letter-spacing: .18em;

    text-transform: uppercase;

    color: var(--jade);

    font-weight: 600;

    margin-bottom: .3rem;

}



.jt-mob-content h4 {

    font-size: .97rem;

    font-weight: 600;

    color: var(--text);

    margin-bottom: .35rem;

}



.jt-mob-content p {

    font-size: .83rem;

    color: var(--muted);

    line-height: 1.75;

    font-weight: 300;

    margin: 0;

}



/* ============================================

   TESTIMONIALS REDESIGN — CAROUSEL

   ============================================ */

.testi-sec {

    padding: 8rem 0;

    background: #F8F6F3;

    position: relative;

    overflow: hidden;

}



.testi-sec::before {

    content: '';

    position: absolute;

    top: -200px;

    right: -200px;

    width: 600px;

    height: 600px;

    border-radius: 50%;

    background: radial-gradient(circle, rgba(18, 122, 90, .12) 0%, transparent 65%);

    pointer-events: none;

}



/* Carousel wrapper */

.testi-carousel-outer {

    position: relative;

    overflow: hidden;

}



.testi-track {

    display: flex;

    transition: transform .6s cubic-bezier(.4, 0, .2, 1);

}



.testi-slide {

    min-width: calc(33.333% - 12px);

    margin-right: 18px;

    display: flex;

}



.testi-card {

    background: #fff;

    border: 1px solid var(--linen);

    border-radius: 14px;

    padding: 2.4rem 2.2rem;

    width: 100%;

    position: relative;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    transition: border-color .3s;

    text-align: left;

}



.testi-card:hover {

    border-color: var(--jade);

}



.testi-card::before {

    content: '\201C';

    font-family: 'Jost', sans-serif;

    font-size: 7rem;

    color: rgba(62, 207, 160, .07);

    line-height: 1;

    position: absolute;

    top: -.4rem;

    left: 1rem;

    pointer-events: none;

}



.testi-stars {

    display: flex;

    gap: 3px;

    margin-bottom: 1.2rem;

}



.tstar {

    width: 14px;

    height: 14px;

    filter: sepia(1) saturate(4) hue-rotate(5deg);

}



.testi-quote {

    font-family: 'Jost', sans-serif;

    font-size: 1.02rem;

    color: var(--text);

    line-height: 1.78;

    font-style: italic;

    font-weight: 300;

    flex: 1;

    margin-bottom: 1.6rem;

    position: relative;

    z-index: 1;

}



.testi-author {

    display: flex;

    align-items: center;

    gap: 1rem;

    padding-top: 1.3rem;

    border-top: 1px solid var(--linen);

}



.testi-avatar {

    width: 44px;

    height: 44px;

    border-radius: 50%;

    flex-shrink: 0;

    background: linear-gradient(135deg, var(--jade), var(--jade2));

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: 'Jost', sans-serif;

    font-size: 1.2rem;

    color: #fff;

    font-weight: 600;

}



.testi-name {

    font-size: 1rem;

    font-weight: 600;

    color: var(--text);

    display: block;

    letter-spacing: .03em;

}



.testi-role {

    font-size: .71rem;

    color: var(--muted);

    margin-top: 1px;

    display: block;

}



/* Carousel controls */

.testi-controls {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 1.2rem;

    margin-top: 2.5rem;

}



.tc-btn {

    width: 46px;

    height: 46px;

    border-radius: 50%;

    border: 1px solid var(--linen);

    background: #fff;

    color: var(--text);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: all .25s;

    font-size: 1rem;

}



.tc-btn:hover {

    border-color: #0b4a2f;

    color: #0b4a2f;

    background: var(--jade-pale);

}



.tc-dots {

    display: flex;

    gap: .5rem;

    align-items: center;

}



.tc-dot {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: rgba(200, 146, 42, .3);

    cursor: pointer;

    transition: all .3s;

}



.tc-dot.active {

    background: var(--amber2);

    transform: scale(1.25);

    width: 28px;

    border-radius: 5px;

}



/* highlight card */

.testi-card.featured {

    border-color: var(--jade);

    background: var(--jade-pale);

}



/* ============================================

   FAQ

   ============================================ */

.faq-sec {

    padding: 0;

    background: linear-gradient(135deg, rgba(11, 74, 47, 0.9) 0%, rgba(48, 125, 85, 0.9) 100%),

        url('../images/faq-bg.webp') center / cover no-repeat;

    background-attachment: fixed;

}



.faq-sec-content {

    padding: 8rem 0;

}



.faq-sec .section-tag {

    color: var(--jade3);

    font-size: 17px;

    letter-spacing: .28em;

    text-transform: uppercase;

    font-weight: 600;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: .6rem;

    margin-bottom: .7rem;

}



.faq-sec .section-tag::before {

    content: '';

    width: 20px;

    height: 1px;

    background: var(--jade3);

}



.faq-sec .section-h {

    font-family: 'Jost', sans-serif;

    font-size: clamp(2rem, 3.5vw, 3.1rem);

    font-weight: 400;

    line-height: 1.12;

    color: #fff;

}



/* LEFT QUOTE CARD */

.faq-testimonial {

    background: linear-gradient(145deg,

            rgba(5, 40, 25, 0.85),

            rgba(20, 90, 60, 0.75));

    backdrop-filter: blur(18px);

    border: 1px solid rgba(143, 209, 79, 0.15);

    border-radius: 14px;

    padding: 3rem 2.8rem;

    position: relative;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    min-height: 100%;

    height: 100%;

}



.faq-testimonial::before {

    content: '\201C';

    font-family: 'Jost', sans-serif;

    font-size: 10rem;

    color: rgb(140 199 79);

    line-height: .7;

    position: absolute;

    top: 0;

    left: 1.2rem;

    pointer-events: none;

    user-select: none;

    padding-top: 30px;

}



.faq-quote-icon {

    font-family: 'Jost', sans-serif;

    font-size: 4rem;

    color: var(--jade3);

    line-height: 1;

    margin-bottom: 1.5rem;

    position: relative;

    z-index: 1;

    opacity: .7;

}



.faq-testimonial blockquote {

    font-family: 'Jost', sans-serif;

    font-size: clamp(1.05rem, 1.7vw, 1.35rem);

    color: rgba(255, 255, 255, .88);

    font-style: italic;

    font-weight: 300;

    line-height: 1.75;

    position: relative;

    z-index: 1;

    margin-bottom: 2rem;

    margin: 0;

    padding-top: 30px;

}



.faq-testimonial-byline {

    margin-top: auto;

    padding-top: 1.4rem;

    border-top: 1px solid rgba(255, 255, 255, .08);

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    padding-bottom: 1.4rem;

    margin-bottom: auto;

}



.faq-testimonial-name {

    font-family: 'Jost', sans-serif;

    font-size: 1.2rem;

    color: var(--jade3);

    font-weight: 400;

    display: block;

    margin-bottom: .25rem;

}



.faq-testimonial-role {

    font-size: .8rem;

    color: rgb(255 255 255);

    letter-spacing: .1em;

    display: block;

    margin-top: 2px;

}



/* Stats row inside left card */

.faq-stats {

    display: flex;

    gap: 0;

    position: relative;

    z-index: 1;

}



.faq-stat {

    flex: 1;

    display: flex;

    align-items: center;

    gap: .8rem;

    padding: .9rem 1rem;

    border: 1px solid rgba(143, 209, 79, .2);

    border-radius: 10px;

    background: rgba(0, 0, 0, .15);

}



.faq-stat+.faq-stat {

    margin-left: .8rem;

}



.faq-stat-ico {

    width: 36px;

    height: 36px;

    border-radius: 8px;

    border: 1.5px solid rgba(143, 209, 79, .4);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}



.faq-stat-ico svg {

    width: 18px;

    height: 18px;

    stroke: var(--jade3);

    fill: none;

    stroke-width: 1.8;

}



.faq-stat-val {

    font-family: 'Jost', sans-serif;

    font-size: 1.4rem;

    color: #fff;

    line-height: 1;

    font-weight: 300;

}



.faq-stat-lbl {

    font-size: .55rem;

    color: rgba(255, 255, 255, .45);

    letter-spacing: .14em;

    text-transform: uppercase;

    margin-top: 2px;

}



/* Gallery images inside left card */

.faq-gallery {

    display: flex;

    gap: .6rem;

    margin-top: 1.5rem;

    position: relative;

    z-index: 1;

}



.faq-gallery-img {

    flex: 1;

    height: 100%;

    border-radius: 8px;

    overflow: hidden;

    border: 1px solid rgba(143, 209, 79, .15);

}



.faq-gallery-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}



/* RIGHT ACCORDION */

.faq-wrap {

    border: 1px solid rgba(62, 207, 160, .18);

    border-radius: 10px;

    overflow: hidden;

    margin-bottom: .7rem;

}



.faq-btn {

    width: 100%;

    text-align: left;

    background: linear-gradient(145deg, rgba(5, 40, 25, 0.85), rgba(20, 90, 60, 0.75));

    border: none;

    padding: 1.3rem 1.6rem;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 1rem;

    transition: all .3s ease;

}



.faq-btn:hover {

    background: linear-gradient(145deg, rgba(10, 60, 35, 0.95), rgba(30, 110, 80, 0.95));

    box-shadow: 0 4px 12px rgba(143, 209, 79, 0.15);

}



.faq-btn.open {

    background: linear-gradient(145deg, rgba(10, 60, 35, 0.95), rgba(30, 110, 80, 0.95));

}



.faq-btn-text {

    font-family: 'Jost', sans-serif;

    font-size: 1.02rem;

    font-weight: 400;

    color: #fff;

    text-align: left;

}



.faq-icon-btn {

    border: 1px solid rgba(62, 207, 160, .4);

    width: 32px;

    height: 32px;

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    transition: transform 0.3s, background 0.3s, border-color 0.3s;

    color: #fff;

    font-size: 1.2rem;

    font-family: 'Jost', sans-serif;

    font-weight: 300;

    line-height: 1;

}



.faq-btn.open .faq-icon-btn {

    background: #8ecf4e;

    color: #fff;

    border-color: #8ecf4e;

    transform: rotate(45deg);

}



.faq-collapse-body {

    background: rgba(62, 207, 160, .06);

    max-height: 0;

    overflow: hidden;

    transition: max-height .4s ease, padding .3s ease;

}



.faq-collapse-body.open {

    max-height: 400px;

}



.faq-collapse-body p {

    padding: 1.6rem 1.3rem;

    font-size: .86rem;

    color: rgba(255, 255, 255, .65);

    line-height: 1.82;

    font-weight: 300;

    margin: 0;

    text-align: left;

}

/* About Section */
a.svc-card-link {
    text-decoration: none;
    color: inherit;
}

/* FOOTER - REDESIGNED */

footer {

    background: #1A3D2F;

    padding: 0;

}



.fp-contact-row {

    display: flex;

    justify-content: space-between;

    gap: 3rem;

}



.fp-contact-right {

    width: 250px;

}



.fp-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 8px;

}



.fp-body .f-name {

    font-family: 'Jost', sans-serif;

    font-size: 1.4rem;

    color: var(--white);

    letter-spacing: 0.04em;

    margin-bottom: 1rem;

}



.ft-logo img {

    height: auto;

    width: 30%;

    margin-bottom: .8rem;

}



.fp {

    font-family: 'Jost', sans-serif;

}



.fp-band {

    background: linear-gradient(90deg, #0F2D22 0%, #0D1E32 100%);

    border-top: 1px solid rgba(62, 207, 160, 0.15);

    border-bottom: 1px solid rgba(255, 255, 255, 0.04);

    padding: 1.4rem 4rem;

    display: flex;

    align-items: center;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 1.5rem;

}



.fp-band-text {

    font-family: 'Jost', sans-serif;

    font-size: 1.15rem;

    font-style: italic;

    color: rgba(255, 255, 255, 0.75);

    font-weight: 300;

    letter-spacing: 0.01em;

}



.fp-band-text span {

    color: #8FD14F;

}

/* FOOTER SOCIAL */

.fp-social-wrap {
    margin-top: 1.5rem;
}

.fp-social-title {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .22em;
    color: #ffffff;
    margin-bottom: 14px;
}

.fp-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fp-social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s ease;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .04);
    color: #fff;
}

.fp-social svg {
    width: 18px;
    height: 18px;
}

.fp-social:hover {
    transform: translateY(-3px);
    border-color: #8FD14F;
    box-shadow: 0 8px 20px rgba(143, 209, 79, .25);
}

/* Brand Colors */

.fp-social:nth-child(1) {
    background: #1877F2;
}

.fp-social:nth-child(2) {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.fp-social:nth-child(3) {
    background: #0A66C2;
}

.fp-social:nth-child(4) {
    background: #FF0000;
}

.fp-band-btn {

    background: linear-gradient(135deg, #0078c2, #1BAD80);

    color: #fff;

    font-family: 'Jost', sans-serif;

    font-size: 0.72rem;

    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    padding: 0.65rem 1.6rem;

    border: none;

    border-radius: 3px;

    cursor: pointer;

    white-space: nowrap;

    transition: all 0.2s ease;

}



.fp-band-btn:hover {

    background: linear-gradient(135deg, #1BAD80, #0078c2);

}



.fp-body {

    padding: 2.5rem 4rem 1.8rem;

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;

    gap: 3rem;

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

}



.fp-brand-name {

    font-family: 'Jost', sans-serif;

    font-size: 1.35rem;

    color: #fff;

    letter-spacing: 0.03em;

    line-height: 1;

    display: block;

}



.fp-brand-sub {

    font-size: 0.5rem;

    color: #8FD14F;

    letter-spacing: 0.25em;

    text-transform: uppercase;

    display: block;

    margin-top: 3px;

    margin-bottom: 0.9rem;

}



.fp-brand-desc {

    font-size: 0.9rem;

    color: rgb(255 255 255);

    line-height: 1.7;

    font-weight: 300;

    max-width: 66%;

}



.fp-col-head {

    font-size: .95rem;

    letter-spacing: 0.22em;

    text-transform: uppercase;

    color: #8FD14F;

    font-weight: 600;

    display: block;

    margin-bottom: 0.9rem;

}



.fp-link {

    display: block;

    font-size: 0.90rem;

    color: rgb(255 255 255);

    font-weight: 300;

    text-decoration: none;

    margin-bottom: 0.28rem;

    line-height: 1.5;

    transition: color 0.18s, opacity 0.18s;

}



.fp-link:hover {

    color: #8FD14F;

    opacity: 0.9;

}



.fp-addr-block {

    margin-bottom: 0.9rem;

}



.fp-addr-name {

    font-size: 0.78rem;

    font-weight: 500;

    color: rgb(255 255 255);

    display: block;

    margin-bottom: 0.15rem;

}



.fp-contact-heading {

    font-size: 0.78rem;

    font-weight: 500;

    color: rgb(255 255 255);

    display: block;

    margin-bottom: 0.6rem;

}



.fp-addr-line {

    font-size: 0.9rem;

    color: rgb(255 255 255);

    font-weight: 300;

    line-height: 1.55;

    font-style: normal;

}



.fp-divider-thin {

    border: none;

    border-top: 1px solid rgb(255 255 255 / 27%);

    margin: 0.75rem 0;

}



.fp-contact-addresses {

    margin-bottom: 0.5rem;

}



.fp-contact-details {

    margin-top: 0.5rem;

}



.fp-addr-block+.fp-addr-block {

    margin-top: 0.8rem;

}



.fp-addr-block+.fp-divider-thin {

    margin-top: 1rem;

    margin-bottom: 1rem;

}



.fp-contact-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    opacity: 0.6;
    stroke: rgba(255, 255, 255, 0.7);
    fill: none;
    stroke-width: 2;
    margin-top: 5px;
}



.fp-contact-val {

    font-size: 0.9rem;

    color: rgb(255 255 255);

    font-weight: 300;

    text-decoration: none;

    transition: color 0.18s;

}



.fp-contact-item a.fp-contact-val:hover {

    color: #8FD14F;

}



.fp-bottom {

    padding: 1.2rem 4rem;

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 1rem;

}



.fp-bottom p {

    margin: 0;

}



.fp-copy {

    font-size: 0.9rem;

    color: rgb(255 255 255 / 34%);

}



.fp-disclaimer {

    font-size: 0.9rem;

    color: rgb(255 255 255 / 34%);

    line-height: 1.5;

    max-width: 480px;

    text-align: right;

}



@media(max-width: 768px) {

    .dropdown-toggle::after {

        content: '▼';

        border: none !important;

        margin-left: auto;

        transition: transform 0.3s ease;

    }



    .dropdown-toggle[aria-expanded="true"]::after {

        transform: rotate(180deg);

    }



    .fp-body {

        grid-template-columns: 1fr;

        gap: 1.5rem;

    }



    .fp-contact-row {

        flex-direction: column;

    }



    .fp-contact-right {

        width: 100%;

    }



    .navbar-nav .nav-link {

        border-bottom: 1px solid rgba(230, 209, 204, 0.5);

    }

    .navbar-nav .mobile_menu .nav-link {
        border-bottom: none;
    }

    .navbar-nav li:first-child {

        padding-top: 13px;

    }



    #floatBook.show {

        display: none;

    }



    .faq-sec-content {

        padding: 0;

    }



    .col-lg-6 {

        flex: 0 0 100%;

        max-width: 100%;

    }



    .faq-testimonial {

        min-height: auto;

        margin-bottom: 2rem;

    }



    .faq-stats {

        flex-direction: column;

    }



    .faq-stat+.faq-stat {

        margin-left: 0;

        margin-top: .6rem;

    }



    .faq-gallery {

        gap: .4rem;

    }



    .faq-gallery-img {

        height: 80px;

    }



    .fp-band {

        padding: 1rem 1.5rem;

        font-size: 0.9rem;

    }



    .fp-bottom {

        flex-direction: column;

        text-align: center;

    }



    .fp-disclaimer {

        text-align: left;

    }

}



footer {

    border-top: 1px solid rgba(62, 207, 160, 0.08);

}



/* HBOT section */

.hbot-sec {

    padding: 8rem 0;

    background: var(--parchment);

}



.hbot-sec .row {

    align-items: stretch;

    display: flex;

}



.hbot-sec .col-lg-5,

.hbot-sec .col-lg-7 {

    display: flex;

    flex-direction: column;

}



.hbot-feat {

    display: flex;

    gap: 1.2rem;

    align-items: flex-start;

    padding: 1.4rem 1.6rem;

    background: #fff;

    border-radius: 10px;

    border: 1px solid var(--linen);

    margin-bottom: 1rem;

    transition: transform .25s, box-shadow .25s;

}



.hbot-feat:hover {

    transform: translateX(6px);

    box-shadow: 0 12px 32px rgba(18, 122, 90, .12);

}



.hbot-feat-ico {

    width: 52px;

    height: 52px;

    flex-shrink: 0;

    border-radius: 12px;

    background: radial-gradient(circle at 0% 0%, rgb(140 255 180 / 41%), transparent 40%), #0b4a2f;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}



.hbot-feat-ico img {

    width: 24px;

    height: 24px;

    object-fit: contain;

    filter: brightness(0) invert(1);

}



.hbot-feat h5 {
    font-size: 17px;
    font-weight: bold;
    color: var(--text);
    margin-bottom: .25rem;
    font-family: 'Jost', sans-serif;
}



.hbot-feat p {

    font-size: 1rem;

    color: #000000;

    line-height: 1.7;

    font-weight: 300;

    margin: 0;

}



.divider {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

}

.divider span a {
    text-decoration: none;
    color: inherit;
}


.divider::before,

.divider::after {

    content: "";

    flex: 1;

    height: 2px;

    background-color: #2f6f5f;

    /* green line */

    opacity: 0.4;

}



.divider span {

    font-size: 14px;

    letter-spacing: 2px;

    color: #2f6f5f;

    font-weight: 600;

    text-transform: uppercase;

}

@media(max-width: 1366px) {
    .hero-eyebrow {
        font-size: 12px;
    }
}


@media(max-width:991px) {

    .dropdown-item {
        color: #000;
    }

    .services-sec {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .mol-stage {

        width: 340px;

        height: 340px;

    }



    .arc:nth-child(1) {

        width: 320px;

        height: 320px;

    }



    .arc:nth-child(2) {

        width: 270px;

        height: 270px;

    }



    .arc:nth-child(3) {

        width: 220px;

        height: 220px;

    }



    .arc:nth-child(4) {

        width: 170px;

        height: 170px;

    }



    .mol-center {

        width: 140px;

        height: 140px;

    }



    .mol-o2 {

        font-size: 3rem;

    }



    .hero-chip {

        display: none;

    }



    .testi-slide {

        min-width: calc(50% - 9px);

    }

}



@media(max-width:768px) {

    #floatBook {

        left: 10px;

        padding: .9rem .55rem;

    }



    .testi-slide {

        min-width: calc(100% - 0px);

        margin-right: 0;

    }



    .breath-benefits {

        gap: 1rem;

    }



    .bb-item {

        min-width: 110px;

        padding: 1rem 1.2rem;

    }



    .breath-outer {

        width: 200px;

        height: 200px;

    }



    .breath-mid {

        width: 156px;

        height: 156px;

    }



    .breath-inner {

        width: 110px;

        height: 110px;

    }



    /* ============ MOBILE JOURNEY — 2×2 GRID ============ */

    .jt-wrap {

        display: block;

    }



    .jt-mobile {

        display: none !important;

    }



    .jt-line,

    .jt-progress {

        display: none;

    }



    .jt-steps {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 10px;

    }



    .jt-step {

        background: #fff;

        border: 1.5px solid var(--linen);

        border-radius: 12px;

        padding: 1rem .75rem;

        transition: all .3s;

    }



    .jt-step.active {

        border-color: var(--jade2);

        background: var(--jade-pale);

    }



    .jt-node {

        width: 44px;

        height: 44px;

    }



    .jt-node-wrap {

        margin-bottom: 1rem;

    }



    .jt-step-num {

        font-size: .62rem;

    }



    .jt-step-title {

        font-size: 1rem;

    }



    .jt-step-hint {

        font-size: .68rem;

    }



    .jt-detail {

        margin-top: 1.5rem;

    }



    .jt-detail-inner.active {

        flex-direction: column;

        padding: 1.8rem 1.4rem;

        gap: 1.2rem;

    }



    .jt-detail-icon {

        width: 56px;

        height: 56px;

        border-radius: 12px;

    }



    .jt-detail-icon img {

        width: 32px !important;

        height: 32px !important;

    }



    .jt-detail-content h3 {

        font-size: 1.3rem;

    }



    .jt-detail-content p {

        font-size: .85rem;

    }

    .jt-step.active .jt-node img,
    .jt-step:hover .jt-node img {
        filter: brightness(0) invert(1);
    }

    /* HERO METRICS FULL WIDTH */

    .hero-metrics {
        /* display: flex;
        flex-direction: row;
        gap: 1rem;
        justify-content: space-around; */
        width: 100%;
    }

    .hm-item {
        padding: 0 1rem !important;
        flex: 1;
        text-align: center;
    }

    .hm-item+.hm-item {
        padding-left: 1rem !important;
        /* border-left: 1px solid rgba(255, 255, 255, .08) !important; */
        border-top: none !important;
        padding-top: 0 !important;
    }



    /* REDUCE PADDING ON ALL SECTIONS */

    section#home {

        padding-top: 8rem !important;

    }



    /* section {

        padding-top: 4rem !important;

        padding-bottom: 4rem !important;

    } */



    .hero-sec {

        padding-top: 2rem !important;

        padding-bottom: 3rem !important;

    }



    .hbot-sec,

    .srv-sec,

    .breath-sec,

    .journey-sec,

    .testi-sec,

    .faq-sec {

        padding-top: 4rem !important;

        padding-bottom: 4rem !important;

    }



    /* HBOT Section Mobile Adjustments */

    .hbot-sec .col-lg-5 {

        margin-bottom: 2rem;

        min-height: 350px;

    }



    .hbot-image-wrapper {

        border-radius: 20px;

    }



    .hbot-feat {

        padding: 1rem 1.2rem;

        margin-bottom: 0.8rem;

    }



    .hbot-feat-ico {

        width: 44px;

        height: 44px;

    }



    .hbot-feat h5 {

        font-size: 15px;

    }



    .hbot-feat p {

        font-size: 14px;

    }



    footer {

        /* padding-top: 3rem !important; */

        padding-bottom: 1.5rem !important;

    }

    .fp-body {
        padding: 2.5rem 2rem 1.8rem;
    }
}



@media(max-width:576px) {

    .hero-btns {

        flex-direction: column;

    }



    .hm-item {
        padding: 0 !important;
        padding-right: 0 !important;
    }

}



/* ============ BLOG SECTION ============ */

.blog-sec {

    padding: 8rem 0;

    background: #F8F6F3;

    position: relative;

    overflow: hidden;

}



.blog-sec::before {

    content: '';

    position: absolute;

    top: -150px;

    left: -200px;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: radial-gradient(circle, rgba(62, 207, 160, .08) 0%, transparent 65%);

    pointer-events: none;

}



.blog-sec::after {

    content: '';

    position: absolute;

    bottom: -100px;

    right: -150px;

    width: 400px;

    height: 400px;

    border-radius: 50%;

    background: radial-gradient(circle, rgba(27, 173, 128, .06) 0%, transparent 70%);

    pointer-events: none;

}



.blog-sub {

    font-size: 1rem;

    color: #6B7C88;

    margin-top: 1rem;

    max-width: 500px;

    margin-left: auto;

    margin-right: auto;

    text-align: center;

}



.blog-carousel-wrap {

    position: relative;

    overflow: hidden;

    margin-top: 3.5rem;

}



.blog-track {

    display: flex;

    transition: transform .6s cubic-bezier(.4, 0, .2, 1);

}



.blog-slide {

    min-width: calc(33.333% - 12px);

    margin-right: 18px;

    display: flex;

}



.blog-card {

    background: linear-gradient(135deg, #0D4D3D 0%, #1A3D2F 100%);

    border: 1px solid rgba(62, 207, 160, .15);

    border-radius: 16px;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    transition: all .4s cubic-bezier(.4, 0, .2, 1);

    height: 100%;

    box-shadow: 0 8px 32px rgba(0, 0, 0, .3);

}



.blog-card:hover {

    border-color: rgba(62, 207, 160, .4);

    box-shadow: 0 16px 48px rgba(62, 207, 160, .15);

    transform: translateY(-8px);

}



.blog-img-wrap {

    position: relative;

    width: 100%;

    height: 220px;

    overflow: hidden;

    background: linear-gradient(135deg, #1A2A3A, #0F1F2F);

}



.blog-img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;

}



.blog-card:hover .blog-img {

    transform: scale(1.08);

}



.blog-tag {

    position: absolute;

    top: 1rem;

    right: 1rem;

    background: #000000a1;

    color: var(--jade3);

    font-size: .65rem;

    font-weight: 600;

    letter-spacing: .12em;

    text-transform: uppercase;

    padding: .5rem 1rem;

    border-radius: 20px;

    z-index: 2;

    border: none;

}



.blog-content {

    padding: 1.8rem;

    display: flex;

    flex-direction: column;

    flex-grow: 1;

}



.blog-date {

    font-size: .72rem;

    color: var(--jade3);

    letter-spacing: .08em;

    text-transform: uppercase;

    font-weight: 500;

    display: block;

    margin-bottom: .8rem;

}



.blog-title {

    font-family: 'Jost', sans-serif;

    font-size: 1.35rem;

    color: #fff;

    line-height: 1.3;

    margin-bottom: 1rem;

    font-weight: 400;

}



.blog-title a {

    color: #fff;

    text-decoration: none;

    transition: all .3s ease;

}



.blog-title a:hover {

    color: var(--jade3);

}



.blog-excerpt {

    font-size: 1rem;

    color: rgb(255 255 255 / 82%);

    line-height: 1.7;

    margin-bottom: auto;

    font-weight: 300;

}



.blog-read-more {
    display: inline-block;
    font-size: .8rem;
    color: var(--jade3);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: .1em;
    transition: all .3s ease;
    position: relative;
    width: max-content;
}



.blog-read-more::after {

    content: '';

    position: absolute;

    bottom: -2px;

    left: 0;

    width: 0;

    height: 1px;

    background: var(--jade3);

    transition: width .3s ease;

}



.blog-read-more:hover::after {

    width: 100%;

}



.blog-controls {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 2rem;

    margin-top: 2.5rem;

}



.blog-btn {

    width: 46px;

    height: 46px;

    border-radius: 50%;

    border: 1px solid var(--linen);

    background: #fff;

    color: var(--text);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: all .25s;

    font-size: 1rem;

}



.blog-btn:hover {

    background: rgba(62, 207, 160, .25);

    border-color: #0b4a2f;

    color: #0b4a2f;

}



.blog-dots {

    display: flex;

    gap: .6rem;

}



.blog-dot {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: rgba(62, 207, 160, .2);

    cursor: pointer;

    transition: all .3s ease;

    border: 1px solid rgba(62, 207, 160, .3);

}



.blog-dot.active {

    background: var(--jade3);

    width: 28px;

    border-radius: 5px;

    border-color: var(--jade3);

}



.blog-dot:hover {

    background: rgba(62, 207, 160, .4);

}



@media(max-width: 992px) {

    .blog-slide {

        min-width: calc(50% - 9px);

    }



    .blog-title {

        font-size: 1.15rem;

    }

}



@media(max-width: 768px) {

    .blog-sec {

        padding: 4rem 0;

    }



    .blog-slide {

        min-width: calc(100% - 0px);

        margin-right: 0;

    }



    .blog-img-wrap {

        height: 200px;

    }



    .blog-content {

        padding: 1.5rem;

    }



    .blog-title {

        font-size: 1rem;

        margin-bottom: .8rem;

    }



    .blog-excerpt {

        font-size: 1rem;

    }

}



/* ============================================

   INLINE STYLES CONVERTED TO CLASSES

   ============================================ */



/* Textarea */

.textarea-no-resize {

    resize: none !important;

}



/* HBOT Image Section */

.hbot-image-wrapper {

    position: relative;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

}



.profile-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    border-radius: 20px;

    display: block;

}



.profile-badge {

    position: absolute;

    top: 20px;

    left: 20px;

    background: rgba(0, 0, 0, 0.7);

    padding: 10px 14px;

    border-radius: 8px;

    backdrop-filter: blur(10px);

    z-index: 10;

}



.profile-badge-title {

    font-family: 'Jost', sans-serif;

    font-size: 1rem;

    color: #fff;

    font-weight: 500;

    line-height: 1.2;

}



.profile-badge-subtitle {

    font-size: .62rem;

    color: rgba(255, 255, 255, .7);

    letter-spacing: .12em;

    text-transform: uppercase;

    margin-top: 3px;

}



/* Rating Badge */

.rating-badge {

    position: absolute;

    top: 20px;

    right: 20px;

    background: #fff;

    border-radius: 12px;

    padding: 12px 16px;

    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);

    z-index: 10;

    text-align: center;

}



.rating-value {

    font-family: 'Jost', sans-serif;

    font-size: 1.8rem;

    color: var(--jade);

    line-height: 1;

    font-weight: 600;

}



.rating-label {

    font-size: .58rem;

    color: var(--muted);

    letter-spacing: .12em;

    text-transform: uppercase;

    margin-top: 4px;

}



/* Clients Badge */

.clients-badge {

    position: absolute;

    bottom: 20px;

    left: 20px;

    background: #fff;

    border-radius: 12px;

    padding: 12px 16px;

    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);

    z-index: 10;

    text-align: center;

}



.clients-value {

    font-family: 'Jost', sans-serif;

    font-size: 1.8rem;

    color: var(--amber);

    line-height: 1;

    font-weight: 600;

}



.clients-label {

    font-size: .58rem;

    color: var(--muted);

    letter-spacing: .12em;

    text-transform: uppercase;

    margin-top: 4px;

}



/* HBOT Quote Box */

.hbot-quote-box {

    background: radial-gradient(circle at 0% 0%, rgb(140 255 180 / 41%), transparent 40%), #0b4a2f;

    border-left: 3px solid #8fd14f;

    border-radius: 0 8px 8px 0;

    padding: 1rem 1.4rem;

    margin: 1.2rem 0 1.6rem;

}



.hbot-quote-text {

    font-family: 'Jost', sans-serif;

    font-size: 1.08rem;

    color: #ffffff;

    font-style: italic;

    line-height: 1.7;

    margin: 0;

}



/* Padding utilities */

.pt-custom-1 {

    padding-top: 1rem;

}



/* Text utilities */

.body-light {

    font-size: 1rem;

    color: rgba(255, 255, 255, .65);

    line-height: 1.8;

    font-weight: 300;

}



/* Service card hover gradient */

.svc-card-hover-gradient {

    background: linear-gradient(135deg, rgba(62, 207, 160, .25), rgba(18, 122, 90, .15));

    border-color: rgba(62, 207, 160, .35);

}



/* Icon filter bright */

.icon-filter-bright {

    filter: brightness(0) saturate(100%) invert(77%) sepia(35%) saturate(500%) hue-rotate(50deg) brightness(95%) contrast(90%);

}



/* Label light text */

.label-light {

    margin-bottom: 1.2rem;

    font-size: 1rem;

    color: rgba(255, 255, 255, .75);

    margin-top: 0.5rem;

}



/* CTA Button Style */

.btn-cta-service {

    font-size: .78rem;

    padding: .7rem 1.8rem;

    background: #8fd14f;

    color: #0b4a2f;

    border: none;

    font-weight: 600;

}



/* Image size utilities */

.img-sm {

    width: 32px;

    height: 32px;

    object-fit: contain;

}



.img-md {

    width: 48px;

    height: 48px;

    object-fit: contain;

}



/* Section heading with dark text */

.section-h-dark {

    color: #1A2028;

}



/* Testimonial subtitle */

.testi-sub {

    font-size: 1rem;

    color: #6B7C88;

    margin-top: .7rem;

}



/* Avatar gradient utilities */

.avatar-indigo {

    background: linear-gradient(135deg, var(--indigo), var(--indigo2));

}



.avatar-amber {

    background: linear-gradient(135deg, var(--amber), var(--amber2));

}



.avatar-purple {

    background: linear-gradient(135deg, #7A3D80, #B05CB8);

}



.avatar-blue {

    background: linear-gradient(135deg, #2A6080, #3B9AB8);

}



.avatar-jade {

    background: linear-gradient(135deg, var(--jade), var(--jade2));

}



/* Mobile node gradient utilities */

.jt-mob-node-indigo {

    background: linear-gradient(135deg, var(--indigo), var(--indigo2));

}



.jt-mob-node-amber {

    background: linear-gradient(135deg, var(--amber), var(--amber2));

}



/* =============================================

   HOME PAGE BUTTONS - SERVICES & BLOG

   ============================================= */



/* Explore Services Button */

.btn-explore-services {

    display: inline-block;

    font-size: .8rem;

    color: #164233;

    text-decoration: none;

    font-weight: 500;

    letter-spacing: .1em;

    margin-top: 1.2rem;

    transition: all .3s ease;

    position: relative;

}



.btn-explore-services::after {

    content: '';

    position: absolute;

    bottom: -2px;

    left: 0;

    width: 0;

    height: 1px;

    background: #164233;

    transition: width .3s ease;



}



.btn-explore-services:hover::after {

    width: 100%;

}



/* Blog Section - Uses same layout as Services section */

/* Left and right column layout handled by Bootstrap grid system */



/* Blog Page Header */

.blog-page-header {

    background: linear-gradient(135deg, rgba(0, 120, 194, .12) 0%, rgba(140, 255, 180, .08) 50%, rgba(18, 122, 90, .08) 100%);

    padding: 7rem 0 5rem;

    margin-top: 80px;

    position: relative;

    overflow: hidden;

}



.blog-page-header::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: radial-gradient(circle at 20% 50%, rgba(62, 207, 160, .05) 0%, transparent 50%),

        radial-gradient(circle at 80% 80%, rgba(0, 120, 194, .04) 0%, transparent 50%);

    pointer-events: none;

}



.blog-page-header .container {

    position: relative;

    z-index: 1;

}



.blog-page-title {

    font-family: 'Jost', sans-serif;

    font-size: 3.2rem;

    color: var(--ink);

    margin-bottom: 1rem;

    font-weight: 600;

    letter-spacing: -.02em;

    line-height: 1.2;

}



.blog-page-subtitle {

    font-size: 1rem;

    color: var(--muted);

    line-height: 1.8;

    max-width: 600px;

    margin: 0 auto;

}



/* Blog Listing Main */

.blog-listing-main {

    padding: 4rem 0;

    min-height: 60vh;

}



/* Blog Posts Grid */

.blog-posts-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));

    gap: 2.5rem;

    margin-bottom: 4rem;

}



/* Blog Listing Card */

.blog-listing-card {

    display: flex;

    flex-direction: column;

    height: 100%;

    padding: 0;

    border-radius: 12px;

    overflow: hidden;

    transition: all 0.3s ease;

    background: rgba(255, 255, 255, 0.5);

    border: 1px solid rgba(230, 209, 204, 0.3);

}



.blog-listing-card:hover {

    border-color: var(--jade);

    box-shadow: 0 12px 40px rgba(0, 120, 194, 0.1);

    transform: translateY(-8px);

    background: rgba(255, 255, 255, 0.95);

}



/* Blog Listing Image */

.blog-listing-img-wrap {

    position: relative;

    height: 220px;

    border-radius: 12px 12px 0 0;

    overflow: hidden;

}



.blog-listing-img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;

}



.blog-listing-card:hover .blog-listing-img {

    transform: scale(1.08);

}



/* Blog Listing Content */

.blog-listing-content {

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    flex: 1;

    padding: 1.8rem;

}



/* Blog Listing Title */

.blog-listing-title {

    font-family: 'Jost', sans-serif;

    font-size: 1.3rem;

    color: var(--ink);

    margin: 0.8rem 0;

    line-height: 1.4;

    font-weight: 600;

}



.blog-listing-title a {

    color: inherit;

    text-decoration: none;

    transition: color 0.3s ease;

}



.blog-listing-title a:hover {

    color: var(--jade);

}



/* Blog Listing Excerpt */

.blog-listing-excerpt {

    font-size: 0.9rem;

    color: var(--muted);

    line-height: 1.7;

    margin-bottom: 1.2rem;

}



/* Blog Listing Read More */

.blog-listing-read-more {

    display: inline-block;

    font-size: 0.85rem;

    color: var(--jade);

    text-decoration: none;

    font-weight: 600;

    letter-spacing: 0.05em;

    transition: all 0.3s ease;

    width: fit-content;

}



.blog-listing-read-more:hover {

    color: var(--indigo);

    gap: 0.5rem;

}



/* Blog Date and Tag */

/* .blog-date {

    font-size: 0.75rem;

    color: var(--muted);

    text-transform: uppercase;

    letter-spacing: 0.1em;

    margin-bottom: 0.5rem;

} */



.blog-tag {

    position: absolute;

    top: 12px;

    right: 12px;

    background: var(--jade);

    color: white;

    padding: 0.4rem 0.9rem;

    border-radius: 4px;

    font-size: 0.75rem;

    font-weight: 600;

    letter-spacing: 0.05em;

    text-transform: capitalize;

}



/* Blog Pagination */

.blog-pagination {

    padding: 3rem 0;

    border-top: 1px solid rgba(230, 209, 204, 0.3);

    margin-top: 2rem;

}



.pagination-wrapper {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 0.8rem;

    flex-wrap: wrap;

}



.pagination-num,

.pagination-btn {

    padding: 0.7rem 1rem;

    border-radius: 6px;

    font-size: 0.9rem;

    font-weight: 600;

    transition: all 0.3s ease;

    cursor: pointer;

    background: transparent;

    border: 1px solid transparent;

    color: var(--ink);

    text-decoration: none;

}



.pagination-num:hover,

.pagination-btn:hover:not(.disabled) {

    background: rgba(0, 120, 194, 0.1);

    border-color: var(--jade);

    color: var(--jade);

}



.pagination-num.active {

    background: var(--jade);

    color: white;

    border-color: var(--jade);

}



.pagination-btn.disabled {

    opacity: 0.5;

    cursor: not-allowed;

}



/* No Posts Message */

.no-posts-message {

    text-align: center;

    font-size: 1rem;

    color: var(--muted);

    padding: 4rem 0;

}



/* Responsive */

@media (max-width: 768px) {

    .blog-page-title {

        font-size: 2rem;

    }



    .blog-page-subtitle {

        font-size: 0.95rem;

    }



    .blog-posts-grid {

        grid-template-columns: 1fr;

        gap: 2rem;

    }



    .blog-listing-img-wrap {

        height: 250px;

    }



    .pagination-num,

    .pagination-btn {

        padding: 0.5rem 0.8rem;

        font-size: 0.8rem;

    }

}



/* =============================================

   SINGLE BLOG POST STYLES

   ============================================= */



/* Single Post Header */

.single-post-header {

    background: linear-gradient(135deg, rgba(0, 120, 194, .12) 0%, rgba(140, 255, 180, .08) 50%, rgba(18, 122, 90, .08) 100%);

    padding: 6rem 0 3rem;

    margin-top: 80px;

    position: relative;

    overflow: hidden;

}



.single-post-header::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: radial-gradient(circle at 20% 50%, rgba(62, 207, 160, .05) 0%, transparent 50%),

        radial-gradient(circle at 80% 80%, rgba(0, 120, 194, .04) 0%, transparent 50%);

    pointer-events: none;

}



.single-post-header .container {

    position: relative;

    z-index: 1;

}



.single-post-header-content {

    text-align: center;

}



.single-post-category {

    display: inline-block;

    background: linear-gradient(135deg, var(--jade), var(--jade2));

    color: white;

    padding: 0.6rem 1.2rem;

    border-radius: 6px;

    font-size: 0.75rem;

    font-weight: 600;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    margin-bottom: 1.5rem;

    box-shadow: 0 4px 16px rgba(0, 120, 194, 0.25);

}



.single-post-title {

    font-family: 'Jost', sans-serif;

    font-size: 2.8rem;

    color: var(--ink);

    margin-bottom: 1.5rem;

    font-weight: 600;

    letter-spacing: -.02em;

    line-height: 1.3;

}



.single-post-meta {

    display: flex;

    justify-content: center;

    gap: 2.5rem;

    flex-wrap: wrap;

    font-size: 0.95rem;

    color: var(--muted);

    border-top: 1px solid rgba(230, 209, 204, 0.3);

    border-bottom: 1px solid rgba(230, 209, 204, 0.3);

    padding: 1.5rem 0;

}



.single-post-meta span {

    display: flex;

    align-items: center;

    gap: 0.5rem;

}



/* Single Post Featured Image */

.single-post-featured {

    padding: 2rem 0 0;

}



.single-post-featured-img {

    width: 100%;

    height: auto;

    border-radius: 12px;

    display: block;

}



/* Single Post Main Content */

.single-post-main {

    padding: 4rem 0;

}



.single-post-content {

    font-size: 1.05rem;

    line-height: 1.9;

    color: var(--text);

}



.single-post-content p {

    margin-bottom: 1.8rem;

}



.single-post-content h2,

.single-post-content h3,

.single-post-content h4 {

    font-family: 'Jost', sans-serif;

    margin: 2rem 0 1rem;

    color: var(--ink);

    font-weight: 600;

}



.single-post-content h2 {

    font-size: 1.8rem;

}



.single-post-content h3 {

    font-size: 1.5rem;

}



.single-post-content h4 {

    font-size: 1.2rem;

}



.single-post-content ul,

.single-post-content ol {

    margin-bottom: 1.8rem;

    margin-left: 2rem;

}



.single-post-content li {

    margin-bottom: 0.8rem;

}



.single-post-content blockquote {

    border-left: 4px solid var(--jade);

    padding-left: 1.5rem;

    margin: 2rem 0;

    font-style: italic;

    color: var(--muted);

}



.single-post-content img {

    max-width: 100%;

    height: auto;

    border-radius: 8px;

    margin: 2rem 0;

}



/* Post Navigation */

.post-navigation {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 2rem;

    padding: 2rem 0;

    margin: 3rem 0;

    border-top: 1px solid rgba(230, 209, 204, 0.3);

    border-bottom: 1px solid rgba(230, 209, 204, 0.3);

}



.nav-prev,

.nav-next {

    display: flex;

}



.nav-next {

    justify-content: flex-end;

}



.post-navigation a {

    color: var(--jade);

    text-decoration: none;

    font-weight: 600;

    font-size: 0.95rem;

    transition: all 0.3s ease;

}



.post-navigation a:hover {

    color: var(--indigo);

    gap: 0.5rem;

}



/* Back to Blog */

.back-to-blog {

    margin-top: 3rem;

    text-align: center;

}



.btn-back-blog {

    display: inline-block;

    padding: 0.7rem 1.6rem;

    background: transparent;

    border: 2px solid var(--jade);

    border-radius: 6px;

    color: var(--jade);

    text-decoration: none;

    font-size: 0.9rem;

    font-weight: 600;

    letter-spacing: 0.05em;

    transition: all 0.3s ease;

}



.btn-back-blog:hover {

    background: var(--jade);

    color: white;

}



/* Related Posts Section */

.related-posts-section {

    background: rgba(255, 255, 255, 0.5);

    padding: 4rem 0;

    border-top: 1px solid rgba(230, 209, 204, 0.3);

}



.related-posts-title {

    font-family: 'Jost', sans-serif;

    font-size: 2rem;

    color: var(--ink);

    margin-bottom: 3rem;

    text-align: center;

    font-weight: 600;

}



.related-posts-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 2rem;

}



.related-post-card {

    background: white;

    border-radius: 12px;

    overflow: hidden;

    border: 1px solid rgba(230, 209, 204, 0.3);

    transition: all 0.3s ease;

}



.related-post-card:hover {

    border-color: var(--jade);

    box-shadow: 0 8px 24px rgba(0, 120, 194, 0.08);

    transform: translateY(-4px);

}



.related-post-img {

    height: 200px;

    overflow: hidden;

}



.related-post-img-tag {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;

}



.related-post-card:hover .related-post-img-tag {

    transform: scale(1.08);

}



.related-post-content {

    padding: 1.5rem;

}



.related-post-date {

    font-size: 0.75rem;

    color: var(--muted);

    text-transform: uppercase;

    letter-spacing: 0.1em;

}



.related-post-title {

    font-family: 'Jost', sans-serif;

    font-size: 1rem;

    color: var(--ink);

    margin: 0.8rem 0;

    font-weight: 600;

    line-height: 1.4;

}



.related-post-title a {

    color: inherit;

    text-decoration: none;

    transition: color 0.3s ease;

}



.related-post-title a:hover {

    color: var(--jade);

}



.related-post-link {

    display: inline-block;

    color: var(--jade);

    text-decoration: none;

    font-size: 0.85rem;

    font-weight: 600;

    transition: all 0.3s ease;

}



.related-post-link:hover {

    color: var(--indigo);

}



/* Responsive Single Post */

@media (max-width: 768px) {

    .single-post-header {

        padding: 4rem 0 2rem;

    }



    .single-post-title {

        font-size: 2rem;

    }



    .single-post-meta {

        gap: 1rem;

        font-size: 0.8rem;

    }



    .single-post-content {

        font-size: 1rem;

    }



    .post-navigation {

        grid-template-columns: 1fr;

        gap: 1rem;

    }



    .nav-next {

        justify-content: flex-start;

    }



    .blog-page-title {

        font-size: 2.2rem;

    }



    .blog-page-subtitle {

        font-size: 0.95rem;

    }



    .blog-posts-grid {

        grid-template-columns: 1fr;

        gap: 2rem;

    }



    .btn-explore-services {

        width: auto;

    }

}



/* =============================================

   BLOG LISTING PAGE - COMPREHENSIVE STYLES

   ============================================= */



/* BLOG LISTING HEADER */

.blog-listing-header {

    min-height: 55vh;

    background: linear-gradient(135deg, #0D4D3D 0%, #0b4a2f 40%, #1A3D2F 100%);

    display: flex;

    align-items: flex-end;

    padding: 130px 0 5rem;

    position: relative;

    overflow: hidden;

}



.blog-listing-header::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: url(../images/default-bg.webp) center / cover no-repeat;

    opacity: 0.1;

}



.blog-listing-header::after {

    content: '';

    position: absolute;

    top: -200px;

    right: -100px;

    width: 600px;

    height: 600px;

    border-radius: 50%;

    background: radial-gradient(circle, rgba(143, 209, 79, .15) 0%, transparent 65%);

    pointer-events: none;

}



.blh-inner {

    position: relative;

    z-index: 2;

}



.blh-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: .7rem;

    border: 1px solid rgba(143, 209, 79, .28);

    border-radius: 50px;

    padding: .36rem 1rem;

    margin-bottom: 1.5rem;

    font-size: .65rem;

    font-weight: 600;

    color: #8FD14F;

    letter-spacing: .24em;

    text-transform: uppercase;

}



.blh-eyebrow-dot {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: var(--jade3);

    flex-shrink: 0;

    animation: ping 2s ease-in-out infinite;

}



.blh-title {

    font-family: 'Jost', sans-serif;

    font-size: clamp(2.5rem, 6vw, 4.5rem);

    color: #fff;

    font-weight: 400;

    line-height: 1.05;

    margin-bottom: 1.2rem;

}



.blh-title em {

    color: var(--jade3);

    font-style: italic;

}



.blh-desc {

    font-size: 1rem;

    color: rgba(255, 255, 255, .6);

    max-width: 520px;

    line-height: 1.8;

    font-weight: 300;

    margin-bottom: 2rem;

}



.blh-stats {

    display: flex;

    gap: 2.5rem;

    flex-wrap: wrap;

}



.blh-stat-num {

    font-family: 'Jost', sans-serif;

    font-size: 2.2rem;

    color: #fff;

    line-height: 1;

    font-weight: 300;

}



.blh-stat-num sup {

    font-size: 1rem;

    color: var(--jade3);

}



.blh-stat-lbl {

    font-size: .62rem;

    color: rgba(255, 255, 255, .4);

    letter-spacing: .16em;

    text-transform: uppercase;

    margin-top: 3px;

}



.blh-stat+.blh-stat {

    padding-left: 2.5rem;

    border-left: 1px solid rgba(255, 255, 255, .12);

}



/* FILTER BAR */

.filter-bar {

    background: #fff;

    border-bottom: 1px solid var(--linen);

    padding: 1.2rem 0;

    position: sticky;

    top: 80px;

    z-index: 100;

    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);

}



.filter-inner {

    display: flex;

    align-items: center;

    gap: 1rem;

    flex-wrap: wrap;

}



.filter-label {

    font-size: .72rem;

    letter-spacing: .18em;

    text-transform: uppercase;

    color: var(--muted);

    font-weight: 600;

    white-space: nowrap;

}



.filter-pills {

    display: flex;

    gap: .5rem;

    flex-wrap: wrap;

}



.filter-pill {

    padding: .4rem 1rem;

    border-radius: 50px;

    font-size: .75rem;

    font-weight: 500;

    letter-spacing: .06em;

    cursor: pointer;

    border: 1px solid var(--linen);

    background: transparent;

    color: var(--muted);

    transition: all .25s;

    white-space: nowrap;

}



.filter-pill:hover {

    border-color: var(--jade3);

    color: var(--jade3);

}



.filter-pill.active {

    background: #0b4a2f;

    color: #fff;

    border-color: #0b4a2f;

}



.filter-search-wrap {

    margin-left: auto;

}



.filter-search {

    background: var(--parchment);

    border: 1px solid var(--linen);

    border-radius: 8px;

    padding: .45rem 1rem;

    font-size: 1rem;

    font-family: 'Jost', sans-serif;

    color: var(--text);

    width: 240px;

    transition: all .2s;

}



.filter-search:focus {

    outline: none;

    border-color: var(--jade3);

    box-shadow: 0 0 0 3px rgba(143, 209, 79, .12);

}



.filter-search::placeholder {

    color: var(--muted);

}



/* BLOG LISTING MAIN */

.blog-listing-main {

    padding: 5rem 0;

    min-height: 60vh;

    background: #F8F6F3;

}



.blog-posts-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2rem;

    margin-bottom: 4rem;

}



/* BLOG CARD */

.bp-card {

    background: #fff;

    border: 1px solid var(--linen);

    border-radius: 16px;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    transition: all .4s cubic-bezier(.4, 0, .2, 1);

    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);

}



.bp-card:hover {

    border-color: rgba(0, 120, 194, .3);

    box-shadow: 0 16px 48px rgba(0, 120, 194, .12);

    transform: translateY(-8px);

}



.bp-img-wrap {

    position: relative;

    height: 230px;

    overflow: hidden;

    background: #0b4a2f;

}



.bp-img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;

}



.bp-card:hover .bp-img {

    transform: scale(1.07);

}



.bp-img-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

}



.bp-img-placeholder-icon {

    font-size: 3rem;

    opacity: .4;

}



.bp-category {

    position: absolute;

    top: 1rem;

    left: 1rem;

    font-size: .62rem;

    font-weight: 600;

    letter-spacing: .14em;

    text-transform: uppercase;

    padding: .38rem .9rem;

    border-radius: 50px;

    z-index: 2;

}



.bp-category.wellness {

    background: rgba(143, 209, 79, .2);

    color: var(--jade3);

    border: 1px solid rgba(143, 209, 79, .35);

}



.bp-category.healthcare {

    background: rgba(0, 120, 194, .2);

    color: #5bb8f5;

    border: 1px solid rgba(0, 120, 194, .35);

}



.bp-category.general {

    background: rgba(200, 146, 42, .2);

    color: #e8a83a;

    border: 1px solid rgba(200, 146, 42, .35);

}



.bp-content {

    padding: 1.8rem;

    display: flex;

    flex-direction: column;

    flex: 1;

}



.bp-meta {

    display: flex;

    align-items: center;

    gap: .8rem;

    margin-bottom: .9rem;

}



.bp-date {

    font-size: .7rem;

    color: var(--jade);

    letter-spacing: .08em;

    text-transform: uppercase;

    font-weight: 500;

}



.bp-read-time {

    font-size: .7rem;

    color: var(--muted);

}



.bp-read-time::before {

    content: '·';

    margin-right: .5rem;

}



.bp-title {

    font-family: 'Jost', sans-serif;

    font-size: 1.3rem;

    color: var(--text);

    line-height: 1.35;

    margin-bottom: .8rem;

    font-weight: 600;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

}



.bp-excerpt {

    font-size: .86rem;

    color: var(--muted);

    line-height: 1.75;

    margin-bottom: auto;

    font-weight: 300;

    display: -webkit-box;

    -webkit-line-clamp: 3;

    -webkit-box-orient: vertical;

    overflow: hidden;

}



.bp-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 1.3rem;

    margin-top: 1.2rem;

    border-top: 1px solid var(--linen);

}



.bp-author {

    display: flex;

    align-items: center;

    gap: .6rem;

}



.bp-avatar {

    width: 32px;

    height: 32px;

    border-radius: 50%;

    background: linear-gradient(135deg, #0b4a2f, var(--jade2));

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: 'Jost', sans-serif;

    font-size: .95rem;

    color: #fff;

    font-weight: 600;

    flex-shrink: 0;

}



.bp-author-name {

    font-size: .75rem;

    color: var(--text);

    font-weight: 500;

}



.bp-read-link {

    font-size: .76rem;

    color: var(--jade);

    text-decoration: none;

    font-weight: 600;

    letter-spacing: .06em;

    display: flex;

    align-items: center;

    gap: .35rem;

    transition: gap .25s, color .25s;

}



.bp-read-link:hover {

    color: #0b4a2f;

    gap: .6rem;

}



.bp-read-link svg {

    transition: transform .25s;

}



.bp-read-link:hover svg {

    transform: translateX(3px);

}



/* FEATURED CARD */

.bp-card.featured {

    grid-column: 1 / -1;

    flex-direction: row;

}



.bp-card.featured .bp-img-wrap {

    width: 48%;

    height: auto;

    min-height: 320px;

    flex-shrink: 0;

    border-radius: 0;

}



.bp-card.featured .bp-content {

    padding: 3rem;

    justify-content: center;

}



.bp-card.featured .bp-title {

    font-size: 1.9rem;

    -webkit-line-clamp: 3;

}



.bp-card.featured .bp-excerpt {

    -webkit-line-clamp: 4;

    font-size: .92rem;

}



.featured-badge {

    position: absolute;

    top: 1rem;

    right: 1rem;

    background: #0b4a2f;

    color: #fff;

    font-size: .6rem;

    font-weight: 700;

    letter-spacing: .2em;

    text-transform: uppercase;

    padding: .38rem .9rem;

    border-radius: 50px;

}



/* PAGINATION */

.pagination-wrap {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: .5rem;

    padding-top: 1rem;

}



.pg-btn {

    width: 42px;

    height: 42px;

    border-radius: 10px;

    border: 1px solid var(--linen);

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    font-size: .85rem;

    font-family: 'Jost', sans-serif;

    color: var(--text);

    font-weight: 500;

    transition: all .25s;

    text-decoration: none;

}



.pg-btn:hover {

    border-color: var(--jade);

    color: var(--jade);

    background: var(--jade-pale);

}



.pg-btn.active {

    background: #0b4a2f;

    color: #fff;

    border-color: #0b4a2f;

}



.pg-btn.disabled {

    opacity: .4;

    cursor: not-allowed;

    pointer-events: none;

}



.pg-ellipsis {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--muted);

}



/* NEWSLETTER */

.newsletter-banner {

    background: linear-gradient(135deg, #0D4D3D 0%, #0b4a2f 100%);

    padding: 5rem 0;

    position: relative;

    overflow: hidden;

}



.newsletter-banner::before {

    content: '';

    position: absolute;

    top: -100px;

    right: -100px;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: radial-gradient(circle, rgba(143, 209, 79, .1) 0%, transparent 65%);

    pointer-events: none;

}



.nl-inner {

    position: relative;

    z-index: 1;

    text-align: center;

}



.nl-tag {

    font-size: .72rem;

    letter-spacing: .28em;

    text-transform: uppercase;

    color: var(--jade3);

    font-weight: 600;

    margin-bottom: .7rem;

}



.nl-title {

    font-family: 'Jost', sans-serif;

    font-size: clamp(1.8rem, 3vw, 2.6rem);

    color: #fff;

    font-weight: 300;

    margin-bottom: .7rem;

}



.nl-title em {

    color: var(--jade3);

    font-style: italic;

}



.nl-desc {

    font-size: .9rem;

    color: rgba(255, 255, 255, .5);

    max-width: 400px;

    margin: 0 auto 2rem;

    line-height: 1.75;

}



.nl-form {

    display: flex;

    gap: .6rem;

    max-width: 420px;

    margin: 0 auto;

}



.nl-input {

    flex: 1;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 10px;

    padding: .75rem 1rem;

    font-family: 'Jost', sans-serif;

    font-size: .85rem;

    color: #fff;

    transition: all .2s;

}



.nl-input:focus {

    outline: none;

    border-color: var(--jade3);

    background: rgba(143, 209, 79, .08);

}



.nl-input::placeholder {

    color: rgba(255, 255, 255, .3);

}



.nl-submit {

    background: var(--jade3);

    color: #0b4a2f;

    border: none;

    border-radius: 10px;

    padding: .75rem 1.5rem;

    font-family: 'Jost', sans-serif;

    font-size: .78rem;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

    cursor: pointer;

    white-space: nowrap;

    transition: all .2s;

}



.nl-submit:hover {

    background: #a5e060;

    transform: translateY(-1px);

}



/* RESULTS INFO */

.results-info {

    font-size: 1rem;

    color: var(--muted);

    margin-bottom: 2rem;

}



.results-info strong {

    color: var(--text);

    font-weight: 600;

}



/* NO RESULTS */

.no-results {

    text-align: center;

    padding: 5rem 2rem;

}



.no-results-icon {

    font-size: 3rem;

    margin-bottom: 1rem;

    opacity: .4;

}



.no-results-title {

    font-family: 'Jost', sans-serif;

    font-size: 1.8rem;

    color: var(--text);

    margin-bottom: .5rem;

}



.no-results-desc {

    color: var(--muted);

    font-size: .9rem;

}



/* RESPONSIVE */

@media (max-width: 992px) {

    .blog-posts-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .bp-card.featured {

        flex-direction: column;

        grid-column: auto;

    }



    .bp-card.featured .bp-img-wrap {

        width: 100%;

        height: 260px;

    }



    .bp-card.featured .bp-content {

        padding: 2rem;

    }



    .bp-card.featured .bp-title {

        font-size: 1.5rem;

    }



    .filter-search-wrap {

        order: 2;

        width: 100%;

        margin-left: 0;

        margin-top: 1rem;

    }



    .filter-search {

        width: 100%;

    }

}



@media (max-width: 768px) {

    .blog-posts-grid {

        grid-template-columns: 1fr;

    }



    .filter-label {

        order: 1;

    }



    .filter-pills {

        order: 2;

        width: 100%;

        margin-top: 1rem;

    }



    .filter-search-wrap {

        display: none;

    }



    .blh-stats {

        gap: 1.5rem;

    }



    .blh-stat+.blh-stat {

        padding-left: 1.5rem;

    }



    .nl-form {

        flex-direction: column;

    }



    .bp-card.featured .bp-content {

        padding: 1.5rem;

    }

}



/* SINGLE BLOG PAGE STYLES */

.blog-hero {

    background-size: center / cover;

    background-attachment: fixed;

    display: flex;

    align-items: flex-end;

    padding: 130px 0 0;

    position: relative;

    overflow: hidden;

}



/* .blog-hero::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    height: 120px;

    background: linear-gradient(to bottom, transparent, var(--parchment));

} */



.bh-inner {

    position: relative;

    z-index: 2;

    padding-bottom: 5rem;

}



.bh-breadcrumb {

    display: flex;

    align-items: center;

    gap: .5rem;

    font-size: .72rem;

    letter-spacing: .12em;

    text-transform: uppercase;

    color: rgba(255, 255, 255, .5);

    margin-bottom: 2rem;

    flex-wrap: wrap;

}



.bh-breadcrumb a {

    color: rgba(255, 255, 255, .5);

    text-decoration: none;

    transition: color .2s;

}



.bh-breadcrumb a:hover {

    color: var(--jade3);

}



.bh-breadcrumb span {

    color: rgba(255, 255, 255, .25);

}



.bh-category {

    display: inline-block;

    background: rgba(143, 209, 79, .2);

    color: var(--jade3);

    border: 1px solid rgba(143, 209, 79, .35);

    font-size: .65rem;

    font-weight: 700;

    letter-spacing: .2em;

    text-transform: uppercase;

    padding: .38rem 1rem;

    border-radius: 50px;

    margin-bottom: 1.3rem;

}



.bh-title {

    font-family: 'Jost', sans-serif;

    font-size: clamp(2rem, 4.5vw, 3.8rem);

    color: #fff;

    font-weight: 400;

    line-height: 1.12;

    margin-bottom: 1.5rem;

    max-width: 820px;

}



.bh-meta {

    display: flex;

    align-items: center;

    gap: 2rem;

    flex-wrap: wrap;

    padding-bottom: 2rem;

    border-bottom: 1px solid rgba(255, 255, 255, .1);

}



.bh-meta-item {

    display: flex;

    align-items: center;

    gap: .5rem;

    font-size: .78rem;

    color: rgba(255, 255, 255, .55);

}



.bh-meta-item svg {

    width: 14px;

    height: 14px;

    stroke: rgba(255, 255, 255, .4);

    fill: none;

    stroke-width: 2;

    flex-shrink: 0;

}



.bh-author {

    display: flex;

    align-items: center;

    gap: .7rem;

}



.bh-avatar {

    width: 36px;

    height: 36px;

    border-radius: 50%;

    background: linear-gradient(135deg, #0b4a2f, var(--jade3));

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: 'Jost', sans-serif;

    font-size: 1rem;

    color: #fff;

    font-weight: 600;

    flex-shrink: 0;

    border: 2px solid rgba(143, 209, 79, .3);

}



.blog-layout {

    background: var(--parchment);

    padding: 5rem 0 6rem;

}



.blog-main-col {

    max-width: 760px;

}



.post-content {

    font-family: 'Jost', sans-serif;

    font-size: 1.05rem;

    line-height: 1.9;

    color: var(--text);

    font-weight: 300;

}



.post-content p {

    margin-bottom: 1.8rem;

}



.post-content h2 {

    font-family: 'Jost', sans-serif;

    font-size: clamp(1.6rem, 2.5vw, 2rem);

    color: var(--ink);

    font-weight: 600;

    margin: 3rem 0 1.2rem;

    line-height: 1.25;

    padding-bottom: .6rem;

    border-bottom: 2px solid var(--linen);

}



.post-content h3 {

    font-family: 'Jost', sans-serif;

    font-size: 1.5rem;

    color: var(--ink);

    font-weight: 600;

    margin: 2.5rem 0 1rem;

}



.post-content h4 {

    font-size: 1rem;

    font-weight: 600;

    color: var(--ink);

    margin: 2rem 0 .8rem;

}



.post-content ul,

.post-content ol {

    margin: 1.5rem 0 1.8rem 1.5rem;

}



.post-content li {

    margin-bottom: .7rem;

    font-size: 1rem;

}



.post-content li::marker {

    color: var(--jade);

}



.post-content blockquote {

    background: #fff;

    border-left: 4px solid var(--jade3);

    border-radius: 0 10px 10px 0;

    padding: 1.6rem 2rem;

    margin: 2.5rem 0;

    font-family: 'Jost', sans-serif;

    font-size: 1.2rem;

    font-style: italic;

    color: var(--text);

    line-height: 1.7;

    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);

}



.post-content img {

    width: 100%;

    height: auto;

    border-radius: 12px;

    margin: 2.5rem 0;

    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);

}



.post-content strong {

    font-weight: 600;

    color: var(--ink);

}



.post-content a {

    color: var(--jade);

    text-decoration: underline;

    text-underline-offset: 3px;

}



.post-tags {

    display: flex;

    gap: .5rem;

    flex-wrap: wrap;

    margin: 2.5rem 0;

}



.post-tag {

    padding: .35rem .95rem;

    border-radius: 50px;

    background: var(--linen);

    color: var(--muted);

    font-size: .72rem;

    font-weight: 500;

    letter-spacing: .06em;

    text-transform: uppercase;

    text-decoration: none;

    transition: all .2s;

}



.post-tag:hover {

    background: #0b4a2f;

    color: #fff;

}



.post-share {

    display: flex;

    align-items: center;

    gap: 1rem;

    padding: 2rem 0;

    border-top: 1px solid var(--linen);

    border-bottom: 1px solid var(--linen);

    margin: 2.5rem 0;

    flex-wrap: wrap;

}



.share-label {

    font-size: .72rem;

    letter-spacing: .16em;

    text-transform: uppercase;

    color: var(--muted);

    font-weight: 600;

    margin-right: .5rem;

}



.share-btn {

    display: flex;

    align-items: center;

    gap: .5rem;

    padding: .5rem 1rem;

    border-radius: 8px;

    border: 1px solid var(--linen);

    background: #fff;

    font-size: .78rem;

    font-weight: 500;

    color: var(--text);

    cursor: pointer;

    transition: all .25s;

    text-decoration: none;

}



.share-btn:hover {

    border-color: var(--jade);

    color: var(--jade);

}



.share-btn svg {

    width: 15px;

    height: 15px;

}



.author-box {

    background: #fff;

    border: 1px solid var(--linen);

    border-radius: 16px;

    padding: 2rem;

    display: flex;

    gap: 1.5rem;

    align-items: flex-start;

    margin-top: 3rem;

    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);

}



.author-avatar-lg {

    width: 72px;

    height: 72px;

    border-radius: 50%;

    flex-shrink: 0;

    background: linear-gradient(135deg, #0b4a2f, var(--jade));

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: 'Jost', sans-serif;

    font-size: 2rem;

    color: #fff;

    font-weight: 600;

    border: 3px solid rgba(143, 209, 79, .2);

}



.author-name {

    font-size: 1.05rem;

    font-weight: 600;

    color: var(--ink);

    margin-bottom: .15rem;

}



.author-role {

    font-size: .72rem;

    color: var(--jade);

    letter-spacing: .1em;

    text-transform: uppercase;

    margin-bottom: .7rem;

    font-weight: 500;

}



.author-bio {

    font-size: 1rem;

    color: var(--muted);

    line-height: 1.75;

    font-weight: 300;

}



.post-nav {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1.5rem;

    margin-top: 3.5rem;

}



.pn-card {

    background: #fff;

    border: 1px solid var(--linen);

    border-radius: 12px;

    padding: 1.5rem;

    text-decoration: none;

    color: var(--text);

    transition: all .3s;

    display: flex;

    flex-direction: column;

    gap: .5rem;

}



.pn-card:hover {

    border-color: rgba(0, 120, 194, .3);

    box-shadow: 0 8px 24px rgba(0, 120, 194, .1);

    transform: translateY(-3px);

}



.pn-dir {

    font-size: .65rem;

    letter-spacing: .18em;

    text-transform: uppercase;

    color: var(--muted);

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: .4rem;

}



.pn-dir svg {

    width: 14px;

    height: 14px;

}



.pn-title {

    font-family: 'Jost', sans-serif;

    font-size: 1.05rem;

    color: var(--ink);

    font-weight: 600;

    line-height: 1.4;

}



.pn-card.next {

    text-align: right;

}



.pn-card.next .pn-dir {

    justify-content: flex-end;

}



.back-link {

    display: inline-flex;

    align-items: center;

    gap: .5rem;

    color: var(--jade);

    font-size: .8rem;

    font-weight: 600;

    letter-spacing: .08em;

    text-decoration: none;

    text-transform: uppercase;

    margin-bottom: 2.5rem;

    transition: gap .25s;

}



.back-link:hover {

    color: #0b4a2f;

    gap: .7rem;

}



.back-link svg {

    transition: transform .25s;

}



.back-link:hover svg {

    transform: translateX(-3px);

}



.blog-sidebar {

    position: sticky;

    top: 110px;

}



.toc-card {

    background: #fff;

    border: 1px solid var(--linen);

    border-radius: 14px;

    overflow: hidden;

    margin-bottom: 1.5rem;

    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);

}



.toc-header {

    background: #0b4a2f;

    padding: 1rem 1.4rem;

    display: flex;

    align-items: center;

    gap: .6rem;

}



.toc-header-title {

    font-size: .72rem;

    letter-spacing: .2em;

    text-transform: uppercase;

    color: rgba(255, 255, 255, .75);

    font-weight: 600;

}



.toc-body {

    padding: 1.2rem 1.4rem;

}



.toc-item {

    display: flex;

    align-items: flex-start;

    gap: .6rem;

    padding: .4rem 0;

    font-size: 1rem;

    color: var(--muted);

    text-decoration: none;

    line-height: 1.5;

    border-left: 2px solid transparent;

    padding-left: .5rem;

    margin-left: -.5rem;

    transition: all .2s;

}



.toc-item:hover,

.toc-item.active {

    color: var(--jade);

    border-left-color: var(--jade);

}



.toc-num {

    font-size: .65rem;

    color: var(--jade3);

    font-weight: 600;

    flex-shrink: 0;

    margin-top: 2px;

}



.cta-sidebar {

    background: linear-gradient(135deg, #0D4D3D, #0b4a2f);

    border-radius: 14px;

    padding: 2rem 1.6rem;

    margin-bottom: 1.5rem;

    position: relative;

    overflow: hidden;

}



.cta-sidebar::before {

    content: '';

    position: absolute;

    top: -60px;

    right: -60px;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background: radial-gradient(circle, rgba(143, 209, 79, .15) 0%, transparent 65%);

}



.cta-sidebar-title {

    font-family: 'Jost', sans-serif;

    font-size: 1.4rem;

    color: #fff;

    font-weight: 400;

    margin-bottom: .6rem;

    position: relative;

    z-index: 1;

    line-height: 1.3;

}



.cta-sidebar-title em {

    color: var(--jade3);

    font-style: italic;

}



.cta-sidebar-desc {

    font-size: 1rem;

    color: rgba(255, 255, 255, .6);

    line-height: 1.7;

    font-weight: 300;

    margin-bottom: 1.4rem;

    position: relative;

    z-index: 1;

}



.cta-sidebar-btn {

    display: block;

    text-align: center;

    background: var(--jade3);

    color: #0b4a2f;

    border: none;

    border-radius: 8px;

    padding: .75rem 1.2rem;

    font-family: 'Jost', sans-serif;

    font-size: .78rem;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

    cursor: pointer;

    transition: all .2s;

    text-decoration: none;

    position: relative;

    z-index: 1;

}



.cta-sidebar-btn:hover {

    background: #a5e060;

    transform: translateY(-1px);

}



.reading-progress {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    height: 3px;

    background: rgba(0, 0, 0, .05);

    z-index: 999;

}



.reading-progress-fill {

    height: 100%;

    width: 0%;

    background: linear-gradient(90deg, var(--jade3), var(--jade));

    transition: width .1s linear;

}



.related-section {

    background: #fff;

    padding: 5rem 0;

    border-top: 1px solid var(--linen);

}



.related-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1.5rem;

    margin-top: 3rem;

}



.rel-card {

    background: var(--parchment);

    border: 1px solid var(--linen);

    border-radius: 12px;

    overflow: hidden;

    transition: all .3s;

    text-decoration: none;

    color: var(--text);

    display: flex;

    flex-direction: column;

}



.rel-card:hover {

    border-color: rgba(0, 120, 194, .3);

    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);

    transform: translateY(-5px);

}



.rel-img-wrap {

    height: 160px;

    overflow: hidden;

    background: #0b4a2f;

    flex-shrink: 0;

}



.rel-img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .4s;

}



.rel-card:hover .rel-img {

    transform: scale(1.06);

}



.rel-img-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;

    opacity: .4;

}



.rel-content {

    padding: 1.4rem;

    flex: 1;

    display: flex;

    flex-direction: column;

}



.rel-cat {

    font-size: .62rem;

    color: var(--jade3);

    letter-spacing: .14em;

    text-transform: uppercase;

    font-weight: 600;

    margin-bottom: .5rem;

}



.rel-title {

    font-family: 'Jost', sans-serif;

    font-size: 1rem;

    color: var(--ink);

    font-weight: 600;

    line-height: 1.35;

    margin-bottom: .5rem;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

}



.rel-date {

    font-size: .7rem;

    color: var(--muted);

    margin-top: auto;

    padding-top: .8rem;

}



.section-tag {

    font-size: 17px;

    letter-spacing: .28em;

    text-transform: uppercase;

    color: var(--deep-green);

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: .6rem;

    margin-bottom: .7rem;

}



.section-tag::before {

    content: '';

    width: 20px;

    height: 1px;

    background: var(--deep-green);

}



.section-h {

    font-family: 'Jost', sans-serif;

    font-size: clamp(1.8rem, 3vw, 2.6rem);

    font-weight: 400;

    line-height: 1.15;

}



.reveal {

    opacity: 0;

    transform: translateY(28px);

    transition: opacity .75s ease, transform .75s ease;
}

.reveal.on {
    opacity: 1;
    transform: translateY(0);
}

.rd1 {
    transition-delay: .1s;
}

.rd2 {
    transition-delay: .2s;
}

.rd3 {
    transition-delay: .3s;
}

.custom-dropdown.active .cd-menu {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
}
.post-content h6{font-size: 16px; font-family: 'Jost', sans-serif;}

@media(max-width:992px) {

    .blog-sidebar {
        position: static;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fp-body{grid-template-columns: 1fr 1fr;}
    .fp-bottom p { margin: 0 auto; text-align: center; }
}

@media(max-width:768px) {

    .post-nav {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .blog-hero {
        background-attachment: scroll;
    }
}

@media(max-width:480px) {
    .hero-metrics {
        padding: 10px;
    }

    .hm-item+.hm-item {
        padding-left: 0.2rem !important;
    }

    .hero-eyebrow {
        font-size: 10px;
    }
}

@media(max-width:400px) {
    .rating-badge {
        right: auto;
        left: 20px;
        top: 90px;
    }

    .hero-eyebrow {
        font-size: 8px;
    }
}