/* =========================================================
   HEALTHBUDDHA — CLEAN PRODUCTION STYLESHEET
   Consolidated from the approved design.
   Notes:
   - One base rule set per component.
   - Responsive overrides live only inside media queries.
   - No decorative gradients except the logo-marquee edge fade.
   - No !important declarations.
========================================================= */

/* =========================================================
   DESIGN TOKENS
========================================================= */
:root {
    --hb-primary: #687561;
    --hb-primary-dark: #53604e;
    --hb-accent: #e07a5f;
    --hb-accent-dark: #c8674e;

    --hb-dark: #263029;
    --hb-text: #545d56;
    --hb-muted: #737973;
    --hb-border: #e3e5df;

    --hb-white: #ffffff;
    --hb-paper: #f7f6f1;
    --hb-sage-paper: #f0f3ed;
    --hb-salmon-paper: #fff5f0;
    --hb-accent-light: rgba(224, 122, 95, 0.08);
    --hb-primary-light: rgba(104, 117, 97, 0.08);

    --hb-font-heading: "Lora", serif;
    --hb-font-body: "DM Sans", sans-serif;

    --hb-text-reading: 18px;
    --hb-text-card: 16px;
    --hb-text-nav: 15px;
    --hb-text-footer: 15px;
    --hb-text-small: 13px;
    --hb-text-micro: 11px;

    --hb-section-padding: 92px;
    --hb-content-width: 760px;

    --hb-radius-sm: 6px;
    --hb-radius: 8px;
    --hb-radius-lg: 10px;
    --hb-radius-xl: 20px;

    --hb-shadow-soft: 0 10px 28px rgba(37, 42, 37, 0.05);
    --hb-shadow-hover: 0 16px 38px rgba(37, 42, 37, 0.07);

    --hb-transition: 0.25s ease;
}

/* =========================================================
   RESET / BASE
========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

h1, h2 {
    text-transform: capitalize;
}

body {
    margin: 0;
    font-family: var(--hb-font-body);
    font-size: var(--hb-text-reading);
    font-weight: 400;
    line-height: 1.7;
    color: var(--hb-text);
    background: var(--hb-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.offcanvas-open {
    overflow: hidden;
}

main {
    overflow: clip;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--hb-primary);
    text-decoration: none;
    transition:
        color var(--hb-transition),
        background-color var(--hb-transition),
        border-color var(--hb-transition),
        transform var(--hb-transition),
        opacity var(--hb-transition);
}

a:hover {
    color: var(--hb-primary-dark);
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

p {
    margin-top: 0;
    margin-bottom: 1.25rem;
}

p:last-child {
    margin-bottom: 0;
}

::selection {
    color: var(--hb-white);
    background: var(--hb-accent);
}

/* =========================================================
   TYPOGRAPHY / SECTIONS
========================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-family: var(--hb-font-heading);
    font-weight: 600;
    line-height: 1.16;
    color: var(--hb-dark);
}

h1 {
    font-size: clamp(46px, 5vw, 68px);
    letter-spacing: -1.7px;
    color:var(--hb-primary);
}

h2 {
    font-size: clamp(32px, 3.5vw, 45px);
    letter-spacing: -0.75px;
    color:var(--hb-primary);
}

h3 {
    font-size: clamp(25px, 2.5vw, 31px);
}

.section {
    padding: var(--hb-section-padding) 0;
}

.section-heading {
    position: relative;
    margin-bottom: 44px;
}

.section-heading.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    padding-left: 23px;
    font-size: var(--hb-text-micro);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hb-accent);
}

.section-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 14px;
    height: 1px;
    background: var(--hb-accent);
}

.section-heading.text-center .section-label {
    padding-top: 13px;
    padding-left: 0;
}

.section-heading.text-center .section-label::before {
    top: 0;
    left: 50%;
    width: 28px;
    transform: translateX(-50%);
}

.section-title {
    margin-bottom: 18px;
    font-size: clamp(32px, 3.5vw, 45px);
    line-height: 1.13;
    letter-spacing: -0.75px;
    text-wrap: balance;
}

.section-description {
    max-width: 690px;
    margin-bottom: 0;
    font-size: var(--hb-text-reading);
    line-height: 1.72;
    color: #626963;
}

.text-center .section-description {
    margin-left: auto;
    margin-right: auto;
}

.text-hb-accent {
    color: var(--hb-accent);
}

.text-hb-primary {
    color: var(--hb-primary);
}

#solutions,
#testimonials,
#practitioner-proof,
#clinic-trust {
    scroll-margin-top: 120px;
}

/* =========================================================
   BUTTONS / LINKS
========================================================= */
.btn {
    position: relative;
    min-height: 50px;
    padding: 13px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow: hidden;
    border-radius: 7px;
    font-family: var(--hb-font-body);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: none;
    transition:
        color var(--hb-transition),
        background-color var(--hb-transition),
        border-color var(--hb-transition),
        transform var(--hb-transition);
}

.btn::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 7px;
    height: 1px;
    background: rgba(255, 255, 255, 0.34);
    transform: scaleX(0);
    transition: transform 0.22s ease;
}

.btn:hover::after {
    transform: scaleX(1);
}

.btn .iconify {
    font-size: 19px;
    transition: transform var(--hb-transition);
}

.btn:hover .iconify {
    transform: translateX(3px);
}

.btn-hb-primary {
    color: var(--hb-white);
    background: var(--hb-primary);
    border: 1px solid var(--hb-primary);
}

.btn-hb-primary:hover,
.btn-hb-primary:focus {
    color: var(--hb-white);
    background: var(--hb-primary-dark);
    border-color: var(--hb-primary-dark);
    transform: translateY(-2px);
}

.btn-hb-accent {
    color: var(--hb-white);
    background: var(--hb-accent);
    border: 1px solid var(--hb-accent);
}

.btn-hb-accent:hover,
.btn-hb-accent:focus {
    color: var(--hb-white);
    background: var(--hb-accent-dark);
    border-color: var(--hb-accent-dark);
    transform: translateY(-2px);
}

.hb-text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding-bottom: 3px;
    font-size: 14px;
    font-weight: 700;
    color: var(--hb-dark);
    border-bottom: 1px solid #cfd3cb;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.hb-text-link .iconify {
    font-size: 17px;
    color: var(--hb-accent);
}

.hb-text-link:hover {
    color: var(--hb-primary);
    border-color: var(--hb-accent);
}

/* =========================================================
   ACCESSIBILITY
========================================================= */
a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(224, 122, 95, 0.35);
    outline-offset: 3px;
}

/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */
.hb-announcement {
    position: relative;
    z-index: 1040;
    color: var(--hb-white);
    background: var(--hb-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hb-announcement__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.hb-announcement__message,
.hb-announcement__links,
.hb-announcement__links a {
    display: flex;
    align-items: center;
}

.hb-announcement__message {
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.4;
}

.hb-announcement__message > a {
    color: var(--hb-white);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.38);
}

.hb-announcement__message > a:hover {
    color: #ffd8ce;
}

.hb-announcement__dot {
    flex: 0 0 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hb-accent);
    box-shadow: 0 0 0 4px rgba(224, 122, 95, 0.14);
}

.hb-announcement__links {
    gap: 12px;
    flex-shrink: 0;
}

.hb-announcement__links a {
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

.hb-announcement__links a:hover {
    color: var(--hb-white);
}

.hb-announcement__links .iconify {
    font-size: 15px;
    color: #f4b3a2;
}

.hb-announcement__divider {
    width: 1px;
    height: 13px;
    background: rgba(255, 255, 255, 0.16);
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
    background: var(--hb-white);
    border-bottom: 1px solid rgba(104, 117, 97, 0.10);
    transition: box-shadow var(--hb-transition);
}

.site-header.is-scrolled {
    box-shadow: 0 8px 26px rgba(44, 52, 43, 0.065);
}

.site-header .navbar {
    min-height: 80px;
    padding: 8px 0;
}

.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    width: 188px;
}

.site-nav {
    gap: 1px;
}

.site-nav .nav-link {
    position: relative;
    padding: 12px 10px;
    font-size: var(--hb-text-nav);
    font-weight: 650;
    line-height: 1.3;
    color: var(--hb-dark);
    white-space: nowrap;
}

.site-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 5px;
    height: 2px;
    background: var(--hb-accent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--hb-transition);
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: var(--hb-primary);
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after {
    transform: scaleX(1);
}

.header-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--hb-text-nav);
    font-weight: 650;
    color: var(--hb-dark);
    white-space: nowrap;
}

.header-login .iconify {
    font-size: 18px;
}

.header-login:hover {
    color: var(--hb-primary);
}

.header-cta {
    min-height: 46px;
    padding: 11px 19px;
    font-size: 13px;
}

.mobile-menu-toggle,
.mobile-close {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--hb-dark);
    background: transparent;
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius);
}

.mobile-menu-toggle .iconify {
    font-size: 27px;
}

.mobile-menu-toggle:hover,
.mobile-close:hover {
    color: var(--hb-primary);
    border-color: var(--hb-primary);
}

/* =========================================================
   MOBILE OFFCANVAS
========================================================= */
.hb-mobile-menu {
    --bs-offcanvas-width: min(390px, 92vw);
    border: 0;
}

.hb-mobile-menu .offcanvas-header {
    position: relative;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 76px 18px 24px;
    border-bottom: 1px solid var(--hb-border);
}

.hb-mobile-menu .offcanvas-header > a {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.hb-mobile-menu .offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 24px 24px 28px;
}

.mobile-logo,
.hb-mobile-menu .mobile-logo {
    width: 160px;
    max-width: 100%;
}

.mobile-close,
.hb-mobile-menu .mobile-close {
    position: absolute;
    top: 50%;
    right: 20px;
    z-index: 5;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin: 0;
    transform: translateY(-50%);
}

.mobile-close .iconify {
    font-size: 24px;
}

.hb-mobile-menu__eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--hb-accent);
}

.mobile-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid var(--hb-border);
}

.mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 0;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.45;
    color: var(--hb-dark);
}

.mobile-nav a .iconify {
    flex-shrink: 0;
    font-size: 19px;
    color: var(--hb-muted);
    transition: transform var(--hb-transition), color var(--hb-transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--hb-primary);
}

.mobile-nav a:hover .iconify {
    color: var(--hb-primary);
    transform: translateX(3px);
}

.mobile-menu-cta {
    margin-top: auto;
    padding-top: 28px;
}

.hb-mobile-menu__email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 15px;
    font-size: 12px;
    font-weight: 600;
    color: var(--hb-muted);
}

/* =========================================================
   HERO
========================================================= */
.hb-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 64px;
    background: var(--hb-white);
    border-bottom: 1px solid var(--hb-border);
}

.hb-hero__content {
    position: relative;
    z-index: 2;
    max-width: 610px;
    padding-right: 34px;
}

.hb-hero__eyebrow {
    width: max-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 0;
    padding: 0;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.25;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5f6c5a;
}

.hb-status-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 2px;
    background: var(--hb-accent);
}

.hb-hero__title {
    max-width: 600px;
    margin-top: 17px;
    margin-bottom: 21px;
    font-size: clamp(46px, 5vw, 68px);
    line-height: 1.03;
    letter-spacing: -2px;
    color: var(--hb-primary);
    text-wrap: balance;
}

.hb-hero__description {
    max-width: 590px;
    margin-bottom: 27px;
    font-size: var(--hb-text-reading);
    line-height: 1.72;
    color: #5b625d;
}

.hb-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 27px;
    margin-bottom: 23px;
}

.hb-hero__cta {
    min-height: 56px;
    padding: 14px 27px;
}

.hb-hero__trust {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 24px;
    margin-bottom: 34px;
}

.hb-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 650;
    color: var(--hb-muted);
}

.hb-hero__trust-item .iconify {
    flex-shrink: 0;
    font-size: 16px;
    color: var(--hb-primary);
}

/* Hero proof strip */
.hb-hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
    border-top: 1px solid #dcded8;
    border-bottom: 1px solid #dcded8;
}

.hb-hero-proof__item {
    min-width: 0;
    padding: 18px 18px 17px 0;
}

.hb-hero-proof__item + .hb-hero-proof__item {
    padding-left: 18px;
    border-left: 1px solid #dcded8;
}

.hb-hero-proof__item strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--hb-font-heading);
    font-size: 25px;
    line-height: 1;
    color: var(--hb-primary);
}

.hb-hero-proof__item strong span {
    font-size: 0.62em;
    color: var(--hb-accent);
}

.hb-hero-proof__item small {
    display: block;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.02em;
    color: #6d756e;
}

.hb-hero-proof__item br {
    display: none;
}

.hb-hero-proof__note {
    max-width: 560px;
    margin: 8px 0 0;
    font-size: 9px;
    line-height: 1.4;
    color: #8a908b;
}

/* Client rating used inside the hero proof / testimonials */
.hb-google-proof__rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hb-google-proof__rating strong {
    font-size: 25px;
    color: var(--hb-dark);
}

.hb-google-proof__stars {
    display: flex;
    gap: 1px;
    color: #f5a623;
}

.hb-google-proof__stars .iconify {
    font-size: 15px;
}

/* =========================================================
   HERO RIGHT — PRACTITIONER IMAGE
========================================================= */
.hb-hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 680px;
    margin-left: auto;
    padding: 22px 0;
    isolation: isolate;
}

.hb-hero-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: right center;
    border: 1px solid rgba(104, 117, 97, 0.13);
    border-radius: 18px;
}

.hb-hero-float {
    position: absolute;
    z-index: 3;
    min-width: 225px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(104, 117, 97, 0.16);
    border-radius: 12px;
    box-shadow: 0 14px 38px rgba(37, 42, 37, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hb-hero-float--top {
    top: 0;
    left: -28px;
}

.hb-hero-float--bottom {
    right: -18px;
    bottom: 0;
}

.hb-hero-float__icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hb-accent);
    background: var(--hb-accent-light);
    border-radius: 10px;
}

.hb-hero-float__icon .iconify {
    font-size: 24px;
}

.hb-hero-float__content span,
.hb-hero-float__content strong {
    display: block;
}

.hb-hero-float__content span {
    margin-bottom: 2px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--hb-muted);
}

.hb-hero-float__content strong {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--hb-dark);
}

@media (hover: hover) and (pointer: fine) {
    .hb-hero-image-wrap:hover .hb-hero-float--top {
        transform: translateY(-4px);
    }

    .hb-hero-image-wrap:hover .hb-hero-float--bottom {
        transform: translateY(4px);
    }

    .hb-hero-image-wrap:hover .hb-hero-float {
        box-shadow: 0 18px 42px rgba(37, 42, 37, 0.15);
    }
}

/* =========================================================
   TESTIMONIALS
========================================================= */
.hb-testimonials {
    position: relative;
    overflow: hidden;
    background: #fffdfa;
    border-top: 1px solid rgba(104, 117, 97, 0.09);
}

.hb-section-head-row {
    margin-bottom: 48px;
}

.hb-google-proof,
.hb-client-rating {
    max-width: 365px;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 22px;
    background: var(--hb-white);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius-lg);
    box-shadow: var(--hb-shadow-soft);
}

.hb-google-proof__logo,
.hb-client-rating__icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: grid;
    place-items: center;
    color: var(--hb-accent);
    background: var(--hb-accent-light);
    border: 1px solid var(--hb-border);
    border-radius: 12px;
}

.hb-google-proof__logo .iconify,
.hb-client-rating__icon .iconify {
    font-size: 28px;
}

.hb-google-proof__label {
    display: block;
    margin-bottom: 2px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--hb-muted);
}

.hb-google-proof small,
.hb-client-rating small {
    display: block;
    margin-top: 1px;
    font-size: var(--hb-text-small);
    color: var(--hb-muted);
}

/* Masonry */
.hb-review-masonry,
.hb-testimonial-masonry {
    column-count: 3;
    column-gap: 20px;
}

.hb-testimonial-masonry {
    margin-top: 38px;
}

.hb-review-masonry__item,
.hb-testimonial-item {
    display: inline-block;
    width: 100%;
    margin: 0 0 20px;
    break-inside: avoid;
}

.hb-testimonial-item.is-testimonial-hidden {
    display: none;
}

.hb-review-card {
    position: relative;
    width: 100%;
    min-width: 0;
    padding: 25px;
    background: var(--hb-white);
    border: 1px solid #e5e6e1;
    border-radius: 14px;
    box-shadow: 0 7px 22px rgba(44, 52, 43, 0.032);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.hb-review-card:hover {
    transform: translateY(-2px);
    border-color: #cfd4ca;
}

.hb-review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

.hb-review-stars {
    display: flex;
    gap: 2px;
    color: #f5a623;
}

.hb-review-stars .iconify {
    font-size: 15px;
}

.hb-review-quote {
    font-size: 25px;
    color: rgba(224, 122, 95, 0.35);
}

.hb-review-card blockquote {
    margin: 0 0 24px;
    font-size: var(--hb-text-card);
    line-height: 1.7;
    color: var(--hb-text);
}

.hb-review-simple-author {
    padding-top: 16px;
    border-top: 1px solid var(--hb-border);
}

.hb-review-simple-author strong,
.hb-review-simple-author small {
    display: block;
}

.hb-review-simple-author strong {
    font-size: 12.5px;
    font-weight: 750;
    color: var(--hb-dark);
}

.hb-review-simple-author small {
    margin-top: 1px;
    font-size: var(--hb-text-small);
    font-weight: 500;
    color: var(--hb-muted);
}

/* Video thumbnail card */
.hb-video-thumbnail-card {
    padding: 0;
    overflow: hidden;
}

.hb-video-thumbnail-card__trigger {
    display: block;
    width: 100%;
    padding: 0;
    text-align: left;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.hb-video-thumbnail-card__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eef1eb;
}

.hb-video-thumbnail-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.hb-video-thumbnail-card__shade {
    position: absolute;
    inset: 0;
    background: rgba(37, 42, 37, 0.16);
    transition: background-color 0.25s ease;
}

.hb-video-thumbnail-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    color: var(--hb-white);
    background: var(--hb-accent);
    border: 3px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 28px rgba(37, 42, 37, 0.18);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.hb-video-thumbnail-card__play .iconify {
    margin-left: 3px;
    font-size: 26px;
}

.hb-video-thumbnail-card__badge {
    position: absolute;
    left: 14px;
    bottom: 13px;
    padding: 6px 9px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.07em;
    color: var(--hb-white);
    background: rgba(37, 42, 37, 0.72);
    border-radius: 6px;
}

.hb-video-thumbnail-card__meta {
    display: block;
    padding: 18px 20px 20px;
    border-top: 1px solid var(--hb-border);
}

.hb-video-thumbnail-card__meta strong,
.hb-video-thumbnail-card__meta small {
    display: block;
}

.hb-video-thumbnail-card__meta strong {
    margin-bottom: 3px;
    font-size: 16px;
    line-height: 1.4;
    color: var(--hb-dark);
}

.hb-video-thumbnail-card__meta small {
    font-size: var(--hb-text-small);
    color: var(--hb-muted);
}

.hb-video-thumbnail-card__trigger:hover .hb-video-thumbnail-card__media img,
.hb-video-thumbnail-card__trigger:focus-visible .hb-video-thumbnail-card__media img {
    transform: scale(1.025);
}

.hb-video-thumbnail-card__trigger:hover .hb-video-thumbnail-card__shade,
.hb-video-thumbnail-card__trigger:focus-visible .hb-video-thumbnail-card__shade {
    background: rgba(37, 42, 37, 0.24);
}

.hb-video-thumbnail-card__trigger:hover .hb-video-thumbnail-card__play,
.hb-video-thumbnail-card__trigger:focus-visible .hb-video-thumbnail-card__play {
    background: var(--hb-accent-dark);
    transform: translate(-50%, -50%) scale(1.06);
}

/* Testimonial toggle */
.hb-review-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.hb-review-toggle-wrap[hidden] {
    display: none;
}

.hb-review-toggle {
    min-height: 46px;
    padding: 11px 18px;
    color: var(--hb-primary);
    background: var(--hb-white);
    border: 1px solid var(--hb-primary);
}

.hb-review-toggle:hover,
.hb-review-toggle:focus {
    color: var(--hb-white);
    background: var(--hb-primary);
    border-color: var(--hb-primary);
}

.hb-review-toggle .iconify {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.hb-review-toggle[aria-expanded="true"] .iconify {
    transform: rotate(180deg);
}

/* Video modal */
.hb-video-modal .modal-dialog {
    max-width: 1080px;
}

.hb-video-modal .modal-content {
    position: relative;
    overflow: hidden;
    background: #111;
    border: 0;
    border-radius: 12px;
}

.hb-video-modal__player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111;
}

.hb-video-modal__player iframe,
.hb-video-modal__player video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #111;
    border: 0;
}

.hb-video-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--hb-white);
    background: rgba(20, 20, 20, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    cursor: pointer;
}

.hb-video-modal__close span {
    display: block;
    margin-top: -2px;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
}

.hb-video-modal__close:hover,
.hb-video-modal__close:focus {
    color: var(--hb-white);
    background: rgba(20, 20, 20, 0.92);
}

/* =========================================================
   SOLUTIONS
========================================================= */
.hb-solutions {
    position: relative;
    background: #f3f5f0;
    border-top: 1px solid rgba(104, 117, 97, 0.09);
    border-bottom: 1px solid var(--hb-border);
}

.hb-solutions .section-description {
    max-width: 700px;
}

.hb-solution-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: var(--hb-white);
    border: 1px solid #dfe2dc;
    border-radius: var(--hb-radius-lg);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hb-solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 42px;
    height: 3px;
    background: var(--hb-primary);
}

.col-lg-4:nth-child(2) .hb-solution-card::before {
    background: var(--hb-accent);
}

.col-lg-4:nth-child(3) .hb-solution-card::before {
    background: #8b7d65;
}

.hb-solution-card:hover {
    transform: translateY(-4px);
    border-color: #cdd2c8;
    box-shadow: 0 14px 35px rgba(37, 42, 37, 0.06);
}

.hb-solution-card--featured {
    border-color: #d8b0a4;
}

.hb-solution-card__badge {
    position: absolute;
    z-index: 4;
    top: 0;
    right: 0;
    padding: 6px 9px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--hb-white);
    background: var(--hb-accent);
    border-radius: 0 0 0 6px;
}

.hb-solution-card__visual {
    position: relative;
    height: 205px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2ed;
    border-bottom: 1px solid #e0e3dd;
}

.hb-solution-card__visual--clinic {
    background: #fff3ee;
}

.hb-solution-card__visual--virtual {
    background: #f2f3ef;
}

.hb-solution-card__number {
    position: absolute;
    left: 18px;
    top: 16px;
    z-index: 2;
    font-family: var(--hb-font-heading);
    font-size: 20px;
    font-weight: 600;
    color: rgba(104, 117, 97, 0.55);
}

/* Digital tools mini-browser */
.hb-mini-browser {
    position: relative;
    z-index: 2;
    width: 72%;
    overflow: hidden;
    background: var(--hb-white);
    border: 1px solid rgba(104, 117, 97, 0.18);
    border-radius: 10px;
    box-shadow: 0 13px 26px rgba(37, 42, 37, 0.09);
    transform: rotate(-2deg);
    transition: transform 0.35s ease;
}

.hb-solution-card:hover .hb-mini-browser {
    transform: rotate(0) translateY(-3px);
}

.hb-mini-browser__top {
    height: 18px;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0 7px;
    background: #f4f5f2;
    border-bottom: 1px solid #eceee9;
}

.hb-mini-browser__top span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d6d8d3;
}

.hb-mini-browser__hero {
    height: 78px;
    padding: 12px;
    background: #f4f5f2;
}

.hb-mini-browser__hero span,
.hb-mini-browser__hero strong,
.hb-mini-browser__hero small {
    display: block;
    border-radius: 3px;
    background: rgba(104, 117, 97, 0.18);
}

.hb-mini-browser__hero span {
    width: 28%;
    height: 4px;
    margin-bottom: 7px;
    background: rgba(224, 122, 95, 0.38);
}

.hb-mini-browser__hero strong {
    width: 70%;
    height: 7px;
    margin-bottom: 6px;
}

.hb-mini-browser__hero small {
    width: 53%;
    height: 4px;
}

.hb-mini-browser__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 8px;
}

.hb-mini-browser__cards span {
    height: 28px;
    border: 1px solid #eceee9;
    border-radius: 4px;
}

/* Associate development illustration */
.hb-team-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hb-team-person {
    position: relative;
    z-index: 2;
    width: 65px;
    height: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: var(--hb-white);
    border: 1px solid rgba(224, 122, 95, 0.18);
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(37, 42, 37, 0.06);
}

.hb-team-person b {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    font-size: 7px;
    color: var(--hb-white);
    background: var(--hb-primary);
    border-radius: 50%;
}

.hb-team-person small {
    font-size: 6px;
    color: var(--hb-muted);
}

.hb-team-person--main {
    width: 80px;
    height: 92px;
    transform: translateY(-5px);
    border-color: rgba(224, 122, 95, 0.34);
}

.hb-team-person--main b {
    width: 38px;
    height: 38px;
    background: var(--hb-accent);
}

.hb-team-line {
    width: 26px;
    height: 1px;
    background: rgba(104, 117, 97, 0.30);
}

/* Virtual clinic illustration */
.hb-virtual-visual {
    position: relative;
    z-index: 2;
    width: 76%;
    min-height: 118px;
}

.hb-virtual-screen {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--hb-primary);
    background: var(--hb-white);
    border: 1px solid rgba(104, 117, 97, 0.18);
    border-radius: 12px;
    box-shadow: 0 13px 25px rgba(37, 42, 37, 0.07);
}

.hb-virtual-screen .iconify {
    font-size: 24px;
    color: var(--hb-accent);
}

.hb-virtual-screen span {
    font-size: 9px;
    font-weight: 750;
}

.hb-virtual-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 7px;
    font-size: 6px;
    font-weight: 700;
    color: var(--hb-dark);
    background: var(--hb-white);
    border: 1px solid var(--hb-border);
    border-radius: 999px;
    box-shadow: 0 7px 16px rgba(37, 42, 37, 0.07);
}

.hb-virtual-chip:nth-of-type(2) {
    left: -9px;
    bottom: 1px;
}

.hb-virtual-chip:nth-of-type(3) {
    right: -8px;
    bottom: 15px;
}

.hb-virtual-chip .iconify {
    font-size: 10px;
    color: var(--hb-accent);
}

/* Solution card content */
.hb-solution-card__body {
    position: relative;
    padding: 29px 28px 30px;
}

.hb-solution-card__audience {
    min-height: 29px;
    display: block;
    margin-bottom: 12px;
    font-size: var(--hb-text-micro);
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0.07em;
    color: var(--hb-accent);
}

.hb-solution-card__body h3 {
    min-height: 2.5em;
    margin-top: 2px;
    margin-bottom: 14px;
    font-size: 23px;
    line-height: 1.28;
    color: var(--hb-primary);
}

.hb-solution-card__body p {
    margin-bottom: 20px;
    font-size: var(--hb-text-card);
    line-height: 1.7;
}

.hb-solution-card__body ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 0;
    padding: 17px 0 0;
    list-style: none;
    border-top: 1px solid var(--hb-border);
}

.hb-solution-card__body li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.75px;
    font-weight: 650;
    line-height: 1.45;
    color: var(--hb-dark);
}

.hb-solution-card__body li .iconify {
    flex: 0 0 auto;
    font-size: 16px;
    color: var(--hb-accent);
}

.hb-solution-card__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 22px;
    font-size: 16px;
    font-weight: 700;
    color: var(--hb-primary);
}

.hb-solution-card__link .iconify {
    font-size: 16px;
    transition: transform var(--hb-transition);
}

.hb-solution-card__link:hover .iconify {
    transform: translateX(4px);
}

/* =========================================================
   MID-PAGE CTA
========================================================= */
.hb-final-cta {
    position: relative;
    background: var(--hb-white);
    border-top: 1px solid rgba(104, 117, 97, 0.09);
}

.hb-final-cta.section {
    padding: 78px 0;
}

.hb-final-cta__panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    align-items: center;
    gap: 48px;
    padding: 48px 50px;
    color: var(--hb-text);
    border: 1px solid #dde2da;
    border-radius: 24px;
    box-shadow: 0 14px 40px rgba(37, 42, 37, 0.055);
}

.hb-final-cta__panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 92px;
    height: 3px;
    background: var(--hb-accent);
}

.hb-final-cta__label {
    display: block;
    margin-bottom: 10px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
    color: var(--hb-accent);
}

.hb-final-cta h2 {
    max-width: 760px;
    margin-bottom: 14px;
    font-size: clamp(31px, 3.3vw, 44px);
    line-height: 1.13;
}

.hb-final-cta h2 span {
    color: var(--hb-accent);
}

.hb-final-cta p {
    max-width: 680px;
    margin: 0;
    font-size: var(--hb-text-reading);
    line-height: 1.72;
    color: var(--hb-text);
}

.hb-final-cta__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 24px;
}

.hb-final-cta__proof span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--hb-dark);
}

.hb-final-cta__proof .iconify {
    color: var(--hb-primary);
}

.hb-final-start-card {
    padding: 28px;
    background: var(--hb-sage-paper);
    border: 1px solid #dde1da;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(37, 42, 37, 0.055);
}

.hb-final-start-card__eyebrow {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
    color: var(--hb-accent);
}

.hb-final-start-card h3 {
    margin-bottom: 18px;
    font-size: 22px;
    color: var(--hb-primary);
}

.hb-final-start-card ul {
    display: grid;
    gap: 11px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.hb-final-start-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--hb-text-card);
    font-weight: 650;
    color: var(--hb-dark);
}

.hb-final-start-card li span {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 800;
    color: var(--hb-primary);
    background: var(--hb-primary-light);
    border-radius: 50%;
}

.hb-final-start-card small {
    display: block;
    margin-top: 9px;
    text-align: center;
    font-size: 9px;
    color: var(--hb-muted);
}

/* =========================================================
   PRACTITIONER PROOF
========================================================= */
.hb-practitioner-proof {
    position: relative;
    overflow: hidden;
    background: var(--hb-salmon-paper);
    border-top: 1px solid #f1e5df;
    border-bottom: 1px solid #f1e5df;
}

.hb-practitioner-card {
    height: 100%;
    overflow: hidden;
    background: var(--hb-white);
    border: 1px solid #eadfd9;
    border-radius: 15px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.hb-practitioner-card:hover {
    transform: translateY(-4px);
    border-color: #dfcfc6;
}

.hb-practitioner-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1.03;
    background: #eceee9;
}

.hb-practitioner-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.hb-practitioner-card:hover .hb-practitioner-card__image img {
    transform: scale(1.025);
}

.hb-practitioner-card__content {
    padding: 18px 18px 19px;
}

.hb-practitioner-card__content h3 {
    margin: 0;
    font-family: var(--hb-font-body);
    font-size: 14.5px;
    font-weight: 750;
    line-height: 1.4;
    color: var(--hb-dark);
}

.hb-practitioner-card__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--hb-border);
}

.hb-practitioner-card__stats > div {
    min-width: 0;
    padding-right: 10px;
}

.hb-practitioner-card__stats > div + div {
    padding-left: 10px;
    padding-right: 0;
    border-left: 1px solid var(--hb-border);
}

.hb-practitioner-card__stats strong,
.hb-practitioner-card__stats span {
    display: block;
}

.hb-practitioner-card__stats span {
    margin-bottom: 6px;
    font-size: var(--hb-text-micro);
    font-weight: 600;
    line-height: 1.4;
    color: var(--hb-muted);
}

.hb-practitioner-card__stats strong {
    margin-bottom: 0;
    font-family: var(--hb-font-heading);
    font-size: 21px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--hb-accent);
}

/* =========================================================
   CLINIC LOGO MARQUEE — FULL WIDTH / NO FADE
========================================================= */

.hb-clinic-marquee {
    position: relative;
    overflow: hidden;
}


/* Let logo rows bleed outside the Bootstrap container */
.hb-clinic-marquee__rows {
    width: 100vw;
    margin-left: calc(50% - 50vw);

    display: grid;
    gap: 12px;
}


/* No masks / gradients on either edge */
.hb-logo-marquee__viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 6px 0;

    -webkit-mask-image: none;
    mask-image: none;
}


/* Remove old left/right fade overlays */
.hb-logo-marquee__viewport::before,
.hb-logo-marquee__viewport::after,
.hb-clinic-marquee__track-wrap::before,
.hb-clinic-marquee__track-wrap::after {
    content: none;
    display: none;
}


/* Continuous moving row */
.hb-logo-marquee__track {
    display: flex;
    width: max-content;

    will-change: transform;
    transform: translate3d(0, 0, 0);
}


/* Groups remain seamless */
.hb-logo-marquee__group {
    display: flex;
    flex: none;
    align-items: center;

    gap: 16px;
    padding-right: 16px;
}


/* Logo card */
.hb-logo-marquee .hb-clinic-logo-card {
    flex: 0 0 184px;

    width: 184px;
    height: 88px;

    padding: 15px;

    background: #fff;

    border: 1px solid #e6e7e2;
    border-radius: 12px;

    box-shadow: 0 5px 16px rgba(44, 52, 43, 0.022);
    align-content: center;
}


/* Keep logos full colour */
.hb-logo-marquee .hb-clinic-logo-card img {
    width: auto;
    max-width: 150px;
    max-height: 58px;
    margin:auto;

    object-fit: contain;

    filter: none;
    opacity: 1;
}


/* Mobile */
@media (max-width: 767.98px) {

    .hb-logo-marquee__group {
        gap: 12px;
        padding-right: 12px;
    }

    .hb-logo-marquee .hb-clinic-logo-card {
        flex-basis: 160px;

        width: 160px;
        height: 80px;
    }

}


@media (max-width: 575.98px) {

    .hb-logo-marquee .hb-clinic-logo-card {
        flex-basis: 142px;

        width: 142px;
        height: 74px;

        padding: 11px;
    }

    .hb-logo-marquee .hb-clinic-logo-card img {
        max-width: 118px;
        max-height: 48px;
    }

}

/* =========================================================
   FOOTER
========================================================= */
.hb-footer {
    position: relative;
    overflow: hidden;
    padding: 0 0 25px;
    color: rgba(255, 255, 255, 0.72);
    background: var(--hb-primary);
}

.hb-footer__main {
    padding: 62px 0 51px;
}

.hb-footer__brand {
    max-width: 345px;
}

.hb-footer__logo {
    display: inline-block;
    margin-bottom: 21px;
}

.hb-footer__logo img {
    width: 176px;
    filter: brightness(10);
    opacity: 1;
}

.hb-footer__brand p {
    max-width: 315px;
    margin-bottom: 23px;
    font-size: var(--hb-text-footer);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.74);
}

.hb-footer__social {
    display: flex;
    gap: 8px;
}

.hb-footer__social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--hb-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
}

.hb-footer__social a:hover {
    color: var(--hb-white);
    background: var(--hb-accent);
    border-color: var(--hb-accent);
    transform: translateY(-2px);
}

.hb-footer__social .iconify {
    font-size: 18px;
}

.hb-footer__column h3 {
    margin-bottom: 19px;
    font-family: var(--hb-font-body);
    font-size: var(--hb-text-small);
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: var(--hb-white);
}

.hb-footer__column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hb-footer__column li {
    margin-bottom: 10px;
}

.hb-footer__column li a {
    display: inline-block;
    font-size: var(--hb-text-footer);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.74);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.hb-footer__column li a:hover {
    color: var(--hb-white);
    transform: translateX(3px);
}

.hb-footer__contact-text {
    max-width: 270px;
    margin-bottom: 16px;
    font-size: var(--hb-text-footer);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.74);
}

.hb-footer__contact-link {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: var(--hb-text-footer);
    font-weight: 650;
    color: var(--hb-white);
}

.hb-footer__contact-link:hover {
    color: #f2ae9d;
}

.hb-footer__contact-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--hb-white);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.hb-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.hb-footer__copyright,
.hb-footer__bottom-links {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.48);
}

.hb-footer__bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 17px;
}

.hb-footer__bottom-links a {
    color: rgba(255, 255, 255, 0.58);
}

.hb-footer__bottom-links a:hover {
    color: var(--hb-white);
}

.hb-footer__credit a {
    margin-left: 3px;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.76);
}

/* =========================================================
   MOBILE STICKY CTA
========================================================= */
.hb-mobile-sticky-cta {
    position: fixed;
    z-index: 1025;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.94);
    border-top: 1px solid var(--hb-border);
    box-shadow: 0 -8px 24px rgba(37, 42, 37, 0.08);
    backdrop-filter: blur(12px);
}

.hb-mobile-sticky-cta .btn {
    min-height: 47px;
}

/* =========================================================
   REVEAL EFFECT
========================================================= */
/* .reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
} */

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */
@media (max-width: 1199.98px) {
    .site-header .navbar {
        min-height: 74px;
    }

    .site-logo img {
        width: 164px;
    }

    .site-nav .nav-link {
        font-size: 13px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --hb-section-padding: 76px;
    }

    body {
        font-size: 16px;
        padding-bottom: 66px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-description {
        font-size: 17px;
    }

    .hb-hero {
        padding: 62px 0 68px;
    }

    .hb-hero__content {
        max-width: 760px;
        margin: 0 auto;
        padding-right: 0;
        text-align: center;
    }

    .hb-hero__title,
    .hb-hero__description {
        margin-left: auto;
        margin-right: auto;
    }

    .hb-hero__actions,
    .hb-hero__trust {
        justify-content: center;
    }

    .hb-hero-proof {
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .hb-hero-proof__note {
        margin-left: auto;
        margin-right: auto;
    }

    .hb-hero-image-wrap {
        max-width: 680px;
        margin: 30px auto 0;
    }

    .hb-hero-float--top {
        left: 12px;
    }

    .hb-hero-float--bottom {
        right: 12px;
    }

    .hb-google-proof,
    .hb-client-rating {
        margin-left: 0;
    }

    .hb-review-masonry,
    .hb-testimonial-masonry {
        column-count: 2;
    }

    .hb-solution-card__body h3 {
        min-height: auto;
    }

    .hb-final-cta.section {
        padding: 68px 0;
    }

    .hb-final-cta__panel {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 38px;
        border-radius: 21px;
    }

    .hb-final-start-card {
        max-width: 520px;
    }

    .hb-clinic-marquee {
        padding: 76px 0 80px;
    }

    .hb-logo-marquee__viewport::before,
    .hb-logo-marquee__viewport::after {
        width: 54px;
    }

    .hb-footer__main {
        padding-top: 52px;
    }

    .hb-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */
@media (max-width: 767.98px) {
    :root {
        --hb-section-padding: 66px;
        --hb-text-reading: 16px;
        --hb-text-card: 16px;
    }

    .hb-testimonial-item--video .hb-review-card {
        padding: 0;
    }

    .section-title {
        font-size: 34px;
    }

    .section-description {
        font-size: 16px;
    }

    .hb-announcement__inner {
        min-height: 36px;
        justify-content: center;
    }

    .hb-announcement__message {
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px 7px;
        padding: 6px 0;
        text-align: center;
    }

    .site-header .navbar {
        min-height: 68px;
    }

    .site-logo img {
        width: 151px;
    }

    .hb-hero {
        padding: 50px 0 58px;
    }

    .hb-hero__title {
        font-size: 40px;
    }

    .hb-hero__description {
        font-size: 16.5px;
    }

    .hb-hero__actions .hb-text-link {
        padding-bottom: 15px;
    }

    .hb-hero__trust {
        flex-direction: row;
        justify-content: center;
        gap: 7px 14px;
    }

    .hb-hero-proof {
        width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
        gap: 0;
        margin-top: 28px;
    }

    .hb-hero-proof__item,
    .hb-hero-proof__item + .hb-hero-proof__item {
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 5px;
        padding: 12px 10px;
        border-top: 0;
        border-left: 1px solid #dcded8;
    }

    .hb-hero-proof__item:first-child {
        padding-left: 0;
        border-left: 0;
    }

    .hb-hero-proof__item:last-child {
        padding-right: 0;
    }

    .hb-hero-proof__item strong {
        min-width: 0;
        margin: 0;
        font-size: clamp(19px, 5.5vw, 24px);
        line-height: 1;
    }

    .hb-hero-proof__item small {
        font-size: 9px;
        line-height: 1.28;
    }

    .hb-hero-proof__item .hb-google-proof__stars {
        display: flex;
        gap: 0;
        margin-top: 4px;
    }

    .hb-hero-proof__item .hb-google-proof__stars .iconify {
        font-size: 10px;
    }

    .hb-review-masonry,
    .hb-testimonial-masonry {
        column-count: 1;
    }

    .hb-review-masonry__item,
    .hb-testimonial-item {
        margin-bottom: 16px;
    }

    .hb-video-thumbnail-card__play {
        width: 52px;
        height: 52px;
    }

    .hb-video-thumbnail-card__play .iconify {
        font-size: 23px;
    }

    .hb-video-modal__close {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
    }

    .hb-video-modal__close span {
        font-size: 25px;
    }

    .hb-google-proof__rating {
        margin-bottom: 5px;
    }

    .hb-solution-card__body {
        padding: 26px 24px 28px;
    }

    .hb-final-cta.section {
        padding: 62px 0;
    }

    .hb-final-cta__panel {
        padding: 30px 25px;
        border-radius: 19px;
    }

    .hb-practitioner-proof .row.g-4.mt-4 {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 12px;
    }

    .hb-practitioner-card__content {
        padding: 10px;
    }

    .hb-practitioner-card__content h3 {
        min-height: 34px;
        font-size: 12px;
        line-height: 1.35;
    }

    .hb-practitioner-card__stats {
        margin-top: 10px;
        padding-top: 10px;
    }

    .hb-practitioner-card__stats > div {
        padding-right: 7px;
    }

    .hb-practitioner-card__stats > div + div {
        padding-left: 7px;
        padding-right: 0;
    }

    .hb-practitioner-card__stats span {
        min-height: 25px;
        margin-bottom: 4px;
        font-size: 9px;
        line-height: 1.25;
    }

    .hb-practitioner-card__stats strong {
        font-size: clamp(17px, 4.8vw, 21px);
    }

    .hb-clinic-marquee {
        padding: 70px 0 74px;
    }

    .hb-clinic-logo-card,
    .hb-logo-marquee .hb-clinic-logo-card {
        flex-basis: 160px;
        width: 160px;
        height: 80px;
    }

    .hb-footer__brand {
        max-width: none;
    }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */
@media (max-width: 575.98px) {
    :root {
        --hb-section-padding: 58px;
        --hb-text-footer: 15px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-label {
        font-size: 10px;
    }

    .section-title {
        font-size: 31px;
        line-height: 1.16;
    }

    .hb-announcement__message {
        width: 100%;
        justify-content: center;
        font-size: 10px;
        text-align: center;
    }

    .hb-announcement__dot {
        display: none;
    }

    .site-logo img {
        width: 145px;
    }

    .hb-hero {
        padding: 43px 0 50px;
    }

    .hb-hero__eyebrow {
        font-size: 9px;
    }

    .hb-hero__title {
        font-size: 36px;
        line-height: 1.08;
        letter-spacing: -1.3px;
    }

    .hb-hero__description {
        font-size: 16px;
    }

    .hb-hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 13px;
    }

    .hb-hero__actions .btn,
    .hb-hero__cta {
        width: 100%;
    }

    .hb-text-link {
        justify-content: center;
    }

    .hb-hero__trust {
        gap: 8px;
    }

    .hb-hero__trust-item {
        font-size: 11px;
    }

    .hb-hero-image-wrap {
        margin: 30px auto 15px;
        padding: 17px 0 0px;
    }

    .hb-hero-image {
        border-radius: 14px;
    }

    .hb-hero-float {
        min-width: 0;
        gap: 9px;
        padding: 10px 12px;
        border-radius: 10px;
    }

    .hb-hero-float--top {
        top: 0;
        left: 8px;
    }

    .hb-hero-float--bottom {
        right: 8px;
        bottom: 7px;
    }

    .hb-hero-float__icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        border-radius: 8px;
    }

    .hb-hero-float__icon .iconify {
        font-size: 20px;
    }

    .hb-hero-float__content span {
        font-size: 9px;
    }

    .hb-hero-float__content strong {
        font-size: 12px;
    }

    .hb-hero .align-items-center {
        flex-direction: column-reverse;
    }

    .hb-google-proof,
    .hb-client-rating {
        width: 100%;
        max-width: none;
        padding: 17px;
    }

    .hb-review-card {
        padding: 22px;
    }

    .hb-review-card blockquote {
        font-size: 15px;
    }

    .hb-solution-card__body h3 {
        font-size: 21px;
    }

    .hb-final-cta.section {
        padding: 56px 0;
    }

    .hb-final-cta__panel {
        padding: 27px 20px;
    }

    .hb-final-cta h2 {
        font-size: 29px;
    }

    .hb-final-cta__proof {
        gap: 9px 12px;
    }

    .hb-final-start-card {
        padding: 22px;
    }

    .hb-practitioner-card__content h3 {
        font-size: 14px;
    }

    .hb-logo-marquee__viewport::before,
    .hb-logo-marquee__viewport::after {
        width: 28px;
    }

    .hb-clinic-logo-card,
    .hb-logo-marquee .hb-clinic-logo-card {
        flex-basis: 142px;
        width: 142px;
        height: 74px;
        padding: 11px;
    }

    .hb-clinic-logo-card img,
    .hb-logo-marquee .hb-clinic-logo-card img {
        max-width: 118px;
        max-height: 48px;
    }

    .hb-footer__main {
        padding-top: 50px;
    }

    .hb-footer__logo img {
        width: 167px;
    }

    .hb-footer__bottom-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }
}

@media (max-width: 420px) {
    .hb-hero-proof__item,
    .hb-hero-proof__item + .hb-hero-proof__item {
        padding-left: 8px;
        padding-right: 8px;
    }

    .hb-hero-proof__item strong {
        font-size: 19px;
    }

    .hb-hero-proof__item small {
        font-size: 10px;
    }

    .hb-practitioner-card__stats strong {
        font-size: 17px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }

    /* .reveal {
        opacity: 1;
        transform: none;
    } */

    .hb-logo-marquee__track {
        transform: none;
    }
}
