*,
::before,
::after {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 180px;
}

a {
    text-decoration: none;
}

.pl-20 {
    padding-left: 25px;
}

.pr-2 {
    padding-right: 25px;
}

.paira {
    font-size: 15px;
    line-height: 1.75;
    color: var(--mid);
}

:root {
    --black: #010000;
    --surface: #0E0E11;
    --card: #141417;
    --border: rgb(255 255 255 / 13%);
    --white: #FFFFFF;
    --off-white: #F0EEE9;
    --mid: rgb(255 255 255 / 62%);
    --gold: #C9A96E;
    --gold-dim: rgba(201, 169, 110, 0.15);
    --gold-border: rgba(201, 169, 110, 0.3);
    --gold-soft: #d9bf83;
    --ivory: #f2ede4;
    --ivory-dim: #b9b3a6;
    --hairline: rgba(201, 162, 75, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, sans-serif;
    background: var(--black);
    color: var(--white);
    font-size: 16px;
    line-height: 1.6;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

.header nav {
    position: relative;
    top: 15px;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 45px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}

.header .nav-logo img {
    max-width: 95px;
    width: auto;
    display: block;
}

.header .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin-bottom: 0px;
}

.header .nav-links a {
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--mid);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.header .nav-links a:hover {
    color: var(--white);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Parent */
.nav-links li {
    position: relative;
    list-style: none;
}

/* Submenu */
.sub-menu {
    position: absolute;
    top: 56px;
    left: 0;
    min-width: 240px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 10px 0;
    margin: 0;
    list-style: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
    z-index: 999;
}

.sub-menu li {
    width: 100%;
}

.sub-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--mid);
    text-decoration: none;
    transition: .3s;
    white-space: nowrap;
}

.sub-menu li a:hover {
    background: transparent;
}

/* Desktop Hover */
.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item-has-children {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 3px;
}

/* Arrow Small */
.menu-item-has-children>.fa-chevron-down {
    font-size: 11px;
    margin-left: 6px;
    color: var(--mid);
    transition: all .3s ease;
    cursor: pointer;
}

/* Hover par arrow rotate */
.menu-item-has-children:hover>.fa-chevron-down {
    transform: rotate(180deg);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.overlay {
    position: fixed;
    inset: 0px;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 998;
}

.mobile-menu {
    position: fixed;
    top: 0px;
    left: -340px;
    width: 320px;
    height: 100%;
    background: rgb(0, 0, 0);
    padding: 40px 25px;
    transition: 0.4s;
    z-index: 999;
}

.mobile-menu.active {
    left: 0px;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-menu {
    color: rgb(255, 255, 255);
    font-size: 35px;
    cursor: pointer;
    margin-bottom: 25px;
}

.close-menu i {
    font-size: 28px;
    font-weight: 500;
}

.mobile-menu ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.mobile-menu ul li {
    border-bottom: 1px solid rgb(68, 68, 68);
}

.mobile-menu ul li a {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    padding: 14px 0px;
    font-size: 16px;
    color: rgb(255 255 255 / 72%);
}

/* Mobile */

.mobile-dropdown .mobile-submenu {
    display: none;
    list-style: none;
    padding-left: 15px;
}

.mobile-dropdown.active .mobile-submenu {
    display: block;
}

.mobile-dropdown .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-dropdown .dropdown-toggle i {
    transition: .3s;
}

.mobile-dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-submenu li a {
    padding: 10px 0;
    display: block;
    font-size: 15px;
}

.join-btn {
    background: var(--gold);
    color: #000;
    padding: 15px 32px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: 0.25s;
    border-radius: 50px;
}

.join-btn:hover {
    background: var(--off-white);
    color: #000;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
    padding: 15px 32px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: 0.25s;
    border-radius: 50px;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

/* hero */
/* hero */

.section-hero {
    padding-top: 70px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(198, 161, 91, 0.09), transparent 60%), linear-gradient(180deg, #010000 0%, #010000 100%);
}

h2.headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: italic;
    text-align: center;
    font-size: 65px;
    line-height: 1.25;
    color: var(--ivory);
    margin: 0 auto 30px;
}

h2.headline em {
    color: var(--gold-soft);
    font-style: italic;
}

/* ===== Hero quote + founder photo ===== */

.bm-hero-quote-grid {
    display: grid;
    align-items: center;
    max-width: 850px;
    margin: 30px auto 0;
    text-align: center;
}

.bm-quote-block {
    position: relative;
    margin: 0;
}

.bm-quote-block p.lead {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.7;
    color: #e8e4da;
}

.bm-quote-block p.lead+p.lead {
    margin-top: 22px;
}

.quote-wrap .mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 82px;
    color: var(--gold);
    line-height: 0;
    position: relative;
    top: 33px;
    height: 0;
    padding: 6px;
    opacity: 0.85;
    background: transparent;
}

.attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
    width: 100%;
}

.attribution .line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.attribution-text {
    text-align: left;
}

.attribution-text .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    color: var(--ivory);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.attribution-text .title {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
}

.marina-bio hr {
    border-top: 1px solid var(--gold-soft);
}

.marina-bio h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 600;
    margin: 0px;
}

.marina-designation {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    margin: 0px;
    line-height: 1.4;
    color: var(--gold);
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    justify-content: center;
}


.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 16px 8px 22px;
    margin-bottom: 20px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    background: rgba(201, 169, 110, 0.09);
}

.section-eyebrow::before {
    content: "";
    transform: translateY(-50%);
    background: var(--gold);
    border-radius: 50%;
    width: 6px;
    height: 6px;
}

.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 45px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--white);
}

.section-sub {
    font-size: 0.96rem;
    color: var(--mid);
    line-height: 1.8;
    font-weight: 400;
}


/* our team section */
/* our team section */

.expert-grid-section {
    position: relative;
    background: var(--black);
    padding: 50px 0px;
}

.bg-section {
    background: var(--surface);
}

.expert-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.1);
}

.expert-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    transition: 400ms linear;
}

.expert-card:hover img {
    transform: scale(1.05);
}

.expert-caption {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 20px;
    background: linear-gradient(#00000000, rgba(24, 22, 22, 0.75));
    color: rgb(255, 255, 255);
    z-index: 2;
}

.expert-caption h6 {
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 500;
    margin: 0px;
}

.expert-caption h6 a {
    color: rgb(255, 255, 255);
}

.expert-caption p {
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    margin: 0px;
    line-height: 1.4;
    color: rgb(255, 255, 255);
}

.expert-card2 {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.designation {
    width: 100%;
    padding: 25px 20px 10px 20px;
}

.expert-card2 img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.expert-card2 h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 400;
    margin: 0px;
}

.designation p {
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    margin: 0px;
    line-height: 1.4;
    color: rgb(255, 255, 255);
}

.doctor-mobile {
    display: none;
}

.doctor-desktop {
    position: relative;
    z-index: 2;
}

/* desclaimer */
/* desclaimer */

.disclaimer-section {
    position: relative;
    padding: 40px 0px;
}

.disclaimer-content {
    border: 1px solid #c9a45c4d;
    background: linear-gradient(180deg, rgba(201, 164, 92, .05), transparent);
    padding: 30px 40px;
}

.disclaimer-section p {
    font-size: 13px;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.9;
}

.disc1 {
    color: #c9a96e;
}

.disclaimer-content p {
    text-align: justify;
}

/* footer section */
/* footer section */

footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 50px 0px 10px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 25px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border);
}

.footer-brand img {
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    display: block;
    max-width: 90px !important;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--mid);
    line-height: 1.7;
    max-width: 350px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
}

.footer-col hr {
    width: 175%;
    color: #c9a45cd6;
}

.footer-line {
    width: 80% !important;
    color: #c9a45cd6;
}

.footer-box {
    position: relative;
    z-index: 2;
}

.footer-box a img {
    max-width: 115px;
}

.footer-contact h4 {
    font-size: 18px;
    color: rgb(113, 74, 75);
}

.footer-box ul li a {
    text-decoration: none;
    position: relative;
    background: var(--gold);
    border-radius: 3px;
    color: rgb(0, 0, 0);
    height: 36px;
    width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s linear;
    z-index: 1;
}

.footer-box ul li a:hover {
    background-color: rgb(255, 255, 255);
}

.footer-box ul li {
    margin: 0px 5px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0px;
    padding: 0px;
}

.footer-col ul li i {
    color: rgb(201, 169, 110);
    font-size: 0.66rem;
    margin-right: 8px;
}

.footer-col ul a {
    font-size: 15px;
    font-weight: 400;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--mid);
    margin-bottom: 8px;
}

.footer-bottom p a {
    color: var(--mid);
}

.footer-bottom p a:hover {
    color: var(--gold);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #fff;
}

.adress-footer img {
    max-width: 25px !important;
    margin-bottom: 0px;
}

.adress-footer a {
    font-size: 15px;
    color: var(--mid);
    transition: color 0.2s;
}

.adress-footer a:hover {
    color: #fff;
}

/*Advance therapy  */
/*Advance therapy  */

.services-thumb {
    position: relative;
    overflow: hidden;
}

.services-thumb img {
    width: 100%;
    filter: blur(0px);
    border-radius: 20px;
}

.services-thumb::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.services-thumb:hover::before {
    height: 250%;
    transition: 600ms linear;
    background-color: transparent;
}

/* therapy section */
/* therapy section */

.therapy-section {
    background-color: var(--surface);
    position: relative;
    padding: 100px 0px;
    border-bottom: 1px solid var(--border);
}

.therapy-thumb {
    position: relative;
    overflow: hidden;
    z-index: 2;
    border-radius: 20px;
}

.therapy-thumb img {
    width: 100%;
    filter: blur(0px);
    border-radius: 20px;
}

.therapy-thumb::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.therapy-thumb:hover::before {
    height: 250%;
    transition: 600ms linear;
    background-color: transparent;
}

.experience-future {
    background-color: var(--surface);
    padding: 50px 0px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.all-teams-section-2 {
    display: none;
}

.hidden {
    display: none !important;
}

.moreless-button {
    display: none;
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
}

.moreless-button2 {
    display: none;
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
}

.read-more-btn {
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
}

/* Desktop: normal table */
.mobile-more-row {
    /* Nothing here */
}

/* Read More hidden on desktop */
.moreless-button {
    display: none;
}

.moretext {
    display: block;
}


@media (max-width: 768px) {

    /* Hide only extra rows */
    .mobile-more-row {
        display: none;
    }

    /* Show extra rows after click */
    .mobile-more-row.show-row {
        display: table-row;
    }

    .moretext {
        display: none;
    }

    .moreless-button {
        display: block;
    }

    .moreless-button2 {
        display: block;
    }


    .all-teams-section {
        display: none;
    }

    .all-teams-section-2 {
        display: block !important;
    }
}

/* lounge section */
/* lounge section */

.lounge-section {
    background: var(--black);
    padding: 50px 0px;
    border-bottom: 1px solid var(--border);
}

/* ttreatments section */
/* ttreatments section */

.treatments {
    padding: 50px 0px;
    background: var(--black);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.treatments-header {
    margin-bottom: 20px;
}

.treatment-card {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    padding: 25px;
    cursor: pointer;
    transition: background 0.3s;
    border: 1px solid rgba(230, 233, 243, 0.12);
    border-radius: 20px;
    margin-top: 25px;
}

.treatment-card:hover {
    background: var(--card);
}

.treatment-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-border);
    padding: 5px 12px;
    margin-bottom: 28px;
    width: fit-content;
    border-radius: 50px;
}

.step-ribbon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(201, 164, 92, .3);
    background: linear-gradient(180deg, rgba(201, 164, 92, .05), transparent);
    padding: 12px 15px;
    margin-top: 20px;
}

.step-ribbon h6 {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    text-align: start;
}

.step-ribbon h6 a {
    color: var(--off-white);
    transition: 0.4s;
}

.step-ribbon h6 a:hover {
    color: var(--gold);
}

.step-ribbon span {
    color: var(--gold);
    font-size: 20px;
}

.step-ribbon strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

.treatment-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
}

.treatment-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
}

.treatment-link::after {
    content: "→";
}

.treatment-card:hover .treatment-link::after {
    margin-left: 4px;
    transition: margin 0.2s;
}

.treatment-card {
    display: none;
}

.toggleReadMore {
    color: var(--gold);
    background-color: transparent;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
}

@media (max-width: 991px) {
    .extra-item {
        display: none;
    }

    .extra-item.show {
        display: block;
    }
}

@media (min-width: 992px) {
    .extra-item {
        display: block !important;
    }
}


/* membership section */
/* membership section */

.membership {
    padding: 40px 0px;
}

.wrap {
    max-width: 820px;
    width: 100%;
    margin: auto;
}

/* Tabs — segmented control */

.tabs {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
}

.tab-group {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold-dim);
}

.tab {
    background: none;
    border: none;
    cursor: pointer;
    padding: 17px 25px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    position: relative;
    transition: background 0.25s ease;
}

.tab+.tab {
    border-left: 1px solid var(--gold-dim);
}

.tab-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.25s ease;
    white-space: nowrap;
    color: var(--mid);
}

.tab-price {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--mid);
    transition: color 0.25s ease;
    white-space: nowrap;
}

.tab.active {
    background: var(--gold-faint);
}

.tab.active .tab-name {
    color: var(--ivory);
}

.tab.active .tab-price {
    color: var(--gold);
}

.tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 2px;
    background: var(--gold);
}

.tab:hover:not(.active) .tab-name {
    color: var(--ivory);
}

/* Panels */

.panel {
    display: none;
}

.panel.active {
    display: block;
    animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 0 24px 0;
}

.badge-line {
    height: 1px;
    width: 40px;
    background: var(--gold-dim);
}

.badge-text {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
    text-align: center;
}

.tier {
    background: var(--card);
    border: 1px solid var(--gold-dim);
    padding: 48px 44px;
    position: relative;
}

.tier::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(198, 162, 93, 0.14);
    pointer-events: none;
}

.tier-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 35px;
    color: var(--ivory);
    margin: 0 0 6px 0;
}

.tier-price {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 30px;
    color: var(--gold);
    margin: 0 0 28px 0;
}

.tier-price .term {
    font-size: 14px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--mid);
}

.tier-intro {
    font-size: 15px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 18px 0;
}

.tier-list {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}

.tier-list li {
    font-size: 16px;
    color: var(--ivory);
    font-weight: 300;
    padding: 10px 0;
    border-bottom: 1px solid rgba(198, 162, 93, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tier-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.tier--signature p strong {
    color: var(--gold);
    font-weight: 500;
}

.tier--signature {
    border-color: var(--gold);
    background: linear-gradient(180deg, var(--surface), var(--black) 40%);
}

.tier--signature .tier-name {
    font-size: 36px;
}

.disclaimer {
    margin-top: 45px;
    padding-top: 32px;
    border-top: 1px solid rgba(198, 162, 93, 0.18);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.disclaimer-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--gold-dim);
    border-radius: 50%;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.75;
    color: var(--mid);
    font-weight: 300;
}

.disclaimer-text h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 500;
}

@media (max-width:600px) {

    .tier {
        padding: 36px 26px;
    }

    .tier-name {
        font-size: 28px;
    }

    .tier--signature .tier-name {
        font-size: 28px;
    }

    .tab-group {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .tier-list li {
        font-size: 15px;
    }

    .tab {
        width: 100%;
        padding: 17px 25px;
    }

    .tab+.tab {
        border-left: none;
        border-top: 1px solid var(--gold-dim);
    }

    .tab.active::after {
        top: 0;
        bottom: auto;
        left: 1px;
        right: auto;
        width: 2px;
        height: 100%;
    }

    .badge-text {
        white-space: normal;
        font-size: 11px;
    }
}

/* prices section */
/* prices section */

.story {
    position: relative;
    text-align: center;
    padding: 0 0 15px;
}

.story-8 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px #c9a96ea1;
    margin: 0 0 8px;
    user-select: none;
}

.story-kicker {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 26px;
    color: var(--ivory);
    margin: 0px 0 22px;
}

.story p strong {
    color: var(--ivory);
    font-weight: 500;
}

.story-tagline {
    margin-top: 36px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--gold);
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 35px;
}

.divider-line {
    height: 1px;
    width: 80px;
    background: var(--gold-dim);
}

.divider-mark {
    color: var(--gold);
    font-size: 35px;
}


/* Membership CTA */

.cta {
    text-align: center;
    padding: 50px 44px;
    background: var(--card);
    border: 1px solid var(--gold-dim);
    position: relative;
    max-width: 900px;
    margin: auto;
}

.cta::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(198, 162, 93, 0.14);
    pointer-events: none;
}

.cta-eyebrow {
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 18px;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 32px;
    color: var(--ivory);
    margin: 0 0 16px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gold);
    color: #0B0B0C;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: background 0.25s ease, color 0.25s ease;
}

.cta-button:hover {
    background: transparent;
    color: var(--gold);
}

.cta-button svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    transition: transform 0.25s ease;
}

.cta-button:hover svg {
    transform: translateX(3px);
}

@media (max-width:600px) {
    .story-8 {
        font-size: 88px;
    }

    .story-kicker {
        font-size: 21px;
    }

    .cta {
        padding: 48px 26px;
    }

    .cta-title {
        font-size: 26px;
    }
}

/* product section */
/* product section */

.product-section {
    padding: 50px 0px;
    position: relative;
    border-bottom: 1px solid rgba(226, 222, 228, 0.08);
    background: var(--black);
}

.swiper-button-next,
.swiper-button-prev {
    background: rgba(11, 10, 9, 0.71);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: rgb(255, 255, 255) !important;
}

.swiper-navigation-icon {
    display: none !important;
}

.swiper-pagination {
    z-index: 4;
    pointer-events: none;
}

.product-card {
    position: relative;
    background: transparent;
    overflow: hidden;
    transition: 0.4s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-img {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.product-img::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.product-img:hover::before {
    height: 250%;
    transition: 600ms linear;
    background-color: transparent;
}

.product-content {
    padding: 24px 0px 0px 0px;
}

.product-content h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    margin-bottom: 10px;
}

.product-content p {
    color: var(--mid);
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 15px;
}

.price-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.readmore-dv a {
    font-size: 14px;
    color: var(--gold);
    position: relative;
    display: inline-block;
    font-weight: 500;
    line-height: 1em;
    text-transform: uppercase;
}

.readmore-dv a i {
    transform: rotate(272deg);
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: rgb(199, 163, 107);
}

.wellness-rabin {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    padding: 8px 16px 8px 30px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgb(1, 0, 0);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.1);
}

.more {
    max-height: 0px;
    opacity: 0;
    overflow: hidden;
}

.more.show {
    max-height: 100%;
    opacity: 1;
}

.height-wid img {
    padding: 100px;
}

.longevity-shop {
    padding: 100px 0px;
    background-color: var(--black);
}

.slideshow-container {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}

.mySlides {
    position: absolute;
    inset: 0px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s;
}

.mySlides.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.mySlides img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    margin: 0px 5px;
    border-radius: 50%;
    background: rgb(204, 204, 204);
    display: inline-block;
    cursor: pointer;
    transition: 0.4s;
}

.dot.active {
    width: 24px;
    border-radius: 20px;
    background: rgb(199, 163, 107);
}

.product-meta {
    display: flex;
    gap: 0.75rem;
    margin-top: 25px;
    margin-bottom: 2.5rem;
}

.supply-badge,
.count-badge {
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
    font-weight: 500;
}

.supply-badge {
    background-color: var(--gold);
    color: var(--black);
}

.count-badge {
    border: 1px solid var(--border);
}

.purchase-action {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    border-top: 1px solid rgba(230, 233, 243, 0.12);
    padding-top: 1rem;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--gold);
}


/* ------ Hyperbaric Oxygen Therapy -------- */
/* ------ Hyperbaric Oxygen Therapy --------- */

.hero-main-section {
    padding: 50px 0 50px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgb(201 164 92 / 18%), transparent 60%), var(--black);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.hero-main-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, transparent 48%, rgba(201, 164, 92, .05) 49%, transparent 51%),
        linear-gradient(-135deg, transparent 48%, rgba(201, 164, 92, .05) 49%, transparent 51%);
    background-size: 80px 80px;
    opacity: .5;
    pointer-events: none;
}

.hero-main-section h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    letter-spacing: .01em;
    margin: 16px 0 12px;
    line-height: 1.15;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-main-section h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-meta {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 38px;
}

.hero-meta div {
    text-align: center;
}

.hero-meta .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: var(--gold);
}

.hero-meta .lab {
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 2px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    border: 1px solid rgba(201, 164, 92, .35);
    padding: 6px 16px;
    border-radius: 20px;
}

.eyebrow::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
}

/* ---------- Two-col intro rows ---------- */

.gold-rule {
    width: 46px;
    height: 1px;
    background: var(--gold);
    margin: 18px 0;
}

/* ---------- Benefits grid ---------- */

.benefits-head .eyebrow {
    margin-bottom: 14px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e6e9f32e;
    border: 1px solid #e6e9f300;
}

.benefit-card {
    background: #010000;
    padding: 26px 24px;
    transition: background .25s ease;
}

.benefit-card:hover {
    background: var(--black);
}

.benefit-card .idx {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    color: var(--gold);
    letter-spacing: .04em;
    font-weight: 500;
}

.benefit-card p {
    margin-top: 10px;
    font-size: 15px;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 0px;
}

/* ---------- What to expect timeline ---------- */

.expect-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 44px 48px;
}

.expect-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.duration-pill {
    border: 1px solid rgba(201, 164, 92, .4);
    color: var(--gold);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 20px;
    white-space: nowrap;
}

.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.steps::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: var(--border);
}

.step {
    padding: 0 16px;
    position: relative;
    text-align: left;
}

.step .dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--gold);
    border: 1px solid var(--gold);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.step p {
    font-size: 14px;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.55;
}

/* ---------- Safety / Approach split ---------- */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #e6e9f330;
    border: 1px solid #e6e9f300;
}

.split-panel {
    background: #010000;
    padding: 40px 40px;
}

.split-panel .eyebrow {
    margin-bottom: 14px;
}

.split-panel h3 {
    font-size: 27px;
    margin-bottom: 12px;
}

.concierge-section {
    text-align: center;
    width: 100%;
    position: relative;
    padding: 56px 48px;
    background: var(--card);
    border: 1px solid var(--gold-dim);
}

.concierge-section::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border: 1px solid rgba(198, 162, 93, 0.15);
    pointer-events: none;
}

.concierge-section p {
    max-width: 800px;
    text-align: center;
    margin: auto;
}

.privileges {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center;
}

.privilege {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 200px;
}

.privilege svg {
    flex-shrink: 0;
    margin-top: 2px;
    width: 16px;
    height: 16px;
    stroke: var(--gold);
}

.privilege-text {
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--ivory);
    font-weight: 400;
}

.intake-checklist {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.intake-check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--mid);
}

.intake-check-item:first-child {
    border-top: 1px solid var(--border);
}

.check-icon {
    font-size: 16px;
    color: var(--gold);
}

/* ---------- Medical notice ---------- */

.notice {
    border: 1px solid rgba(201, 164, 92, .3);
    background: linear-gradient(180deg, rgba(201, 164, 92, .05), transparent);
    padding: 32px 40px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: flex-start;
}

.notice .mark {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 32px;
    color: var(--gold);
    line-height: 1;
    background: transparent;
}

.notice h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 500;
}

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

.notice li {
    font-size: 13.5px;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.6;
    padding-left: 14px;
    position: relative;
    margin-bottom: 8px;
}

.notice li:last-child {
    margin-bottom: 0;
}

.notice li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold-soft);
}

.notice p {
    font-size: 13px;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.9;
}

/* ---------- Footer CTA row ---------- */

.cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    margin-top: 36px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 20px;
}

.price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 25px;
    color: var(--ivory);
}

.price span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    color: var(--mid);
    letter-spacing: .1em;
    display: block;
    text-transform: uppercase;
    margin-top: 4px;
}

.book-btn {
    background: var(--gold);
    color: #161616;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 16px 34px;
    border-radius: 2px;
    font-weight: 500;
    transition: background .2s ease;
}

.book-btn:hover {
    background: #dcb96f;
}

.view-more-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 22px;
    background: none;
    cursor: pointer;
    border: 1px solid rgba(201, 164, 92, .4);
    color: var(--gold);
    font-weight: 500;
    font-size: 11.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 20px;
}

.view-more-toggle .chevron {
    font-size: 9px;
    transition: transform .25s ease;
    display: inline-block;
}

.view-more-toggle.is-expanded .chevron {
    transform: rotate(180deg);
}

.view-more-toggle .chevron {
    font-size: 9px;
    transition: transform .25s ease;
    display: inline-block;
}

/* peptide */

/* Desktop */
.peptide-table {
    width: 100%;
}

.peptide-table table {
    width: 100%;
    table-layout: fixed;
}

.peptide-table th,
.peptide-table td {
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.peptide-table {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--black);
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.peptide-table table {
    width: 100%;
    min-width: 800px;
    /* apni table ke hisab se */
    border-collapse: collapse;
}

/* Chrome, Edge, Safari */
.peptide-table::-webkit-scrollbar {
    height: 4px;
}

.peptide-table::-webkit-scrollbar-track {
    background: #111;
}

.peptide-table::-webkit-scrollbar-thumb {
    background: #c6a57a;
    border-radius: 10px;
}

.peptide-table th,
.peptide-table td {
    white-space: normal;
    /* Text wrap hoga */
    word-break: break-word;
    /* Long words bhi break honge */
    vertical-align: top;
}

.peptide-table table {
    margin: 0;
}

.peptide-table thead th {
    background: var(--black);
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.peptide-table tbody td {
    padding: 20px 20px;
    font-size: 15px;
    color: var(--mid);
    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    background: var(--black);
}

.peptide-table tbody tr:last-child td {
    border-bottom: none;
}

.peptide-table tbody td:first-child {
    font-weight: 700 !important;
    color: var(--mid);
    white-space: nowrap;
    width: 260px;
    font-size: 16px;
}

.peptide-table tbody tr {
    transition: .3s;
}

.peptide-table tbody tr:hover {
    background: #fafafa;
}


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

    .peptide-table thead th {
        font-size: 17px;
    }

    .peptide-table tbody td:first-child {
        font-size: 13px;
    }

    .peptide-table tbody td {
        padding: 15px 15px;
        font-size: 13px;
    }

    .peptide-table {
        width: 100%;
        overflow-x: hidden !important;
    }

    .peptide-table table {
        width: 100% !important;
        min-width: 0 !important;
        table-layout: fixed;
    }

    .peptide-table th,
    .peptide-table td {
        white-space: normal !important;
        word-break: break-word;
        overflow-wrap: anywhere;
        padding: 10px 8px;
        font-size: 13px;
    }

    .peptide-table th:first-child,
    .peptide-table td:first-child {
        width: 35%;
    }

    .peptide-table th:last-child,
    .peptide-table td:last-child {
        width: 65%;
    }

}

/* contact section */
/* contact section */

.contact-us-content {
    display: flex;
    flex-direction: column;
    margin-right: 15px;
}

.contact-info-item-list {
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 30px 50px;
    padding-top: 40px;
    overflow: hidden;
}

.contact-info-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info-item .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.contact-info-item .icon-box::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: var(--surface);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: 0.4s ease-in-out;
    z-index: 0;
}

.contact-info-item:hover .icon-box::before {
    transform: scale(1);
}

.contact-info-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    z-index: 1;
}

.contact-info-item-content {
    width: calc(100% - 65px);
}

.contact-info-item-content h3 {
    font-size: 14px;
    margin-top: 4px;
}

.contact-info-item-content p {
    margin: 0px 0px 8px;
    color: var(--mid);
}

.contact-info-item-content h3 a {
    color: inherit;
    transition: 0.4s ease-in-out;
}

.contact-info-item-content h3 a:hover {
    color: var(--gold);
}

/* form section */
/* form section */

.form-section {
    padding: 50px 0px;
    background: var(--black);
    border-bottom: 1px solid var(--border);
}

.intake {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
}

.intake-form {
    background: #000;
    border: none;
    border-radius: 0;
    padding: 20px;
    position: sticky;
    top: 100px;
}

.form-head {
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.form-head-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.required-text {
    color: #8a8a8a;
    font-size: 14px;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    padding: 10px 0;
    font-size: 18px;
    outline: none;
    border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7b7b7b;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-bottom: 1px solid #fff;
}

.f-input,
select {
    width: 100%;
    background: transparent;
    color: #fff;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    padding: 10px 0;
    font-size: 12px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select option {
    background: #111;
    color: #fff;
    padding: 10px;
}

select.f-input {
    padding: 12px 40px 12px 16px;
    color: var(--mid);
    background: #000;
}

select.f-input option {
    background: #111;
    color: #d6d6d6;
    /* halka white */
    padding: 12px 16px;
    font-size: 15px;
}

.f-submit {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 40px;
    background: var(--gold);
    color: #000;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

.f-submit:hover {

    background: var(--off-white);
}

/* ---------- Card ---------- */

.testimonial-card {
    position: relative;
    width: 100%;
    height: 85vh;
    border-radius: 15px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6);
    cursor: pointer;
    isolation: isolate;
}

.testimonial-card:hover img.bg {
    transform: scale(1.04);
}

.testimonial-card img.bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.testimonial-card:hover img.bg {
    transform: scale(1.05);
}

/* Dark Overlay */

.testimonial-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, .35) 0%,
            rgba(0, 0, 0, .05) 35%,
            rgba(0, 0, 0, .10) 55%,
            rgba(0, 0, 0, .75) 100%);
}

/* Glass Box */

.content-box {
    position: absolute;
    inset: 34px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgb(49 43 43 / 22%);
    padding: 22px;
}

.card-top h3 {
    font-family: "Cormorant Garamond", serif;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    margin: 0;
}

.card-top p {
    color: rgba(255, 255, 255, .9);
    margin-top: 5px;
    font-size: 16px;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.quote {
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
    max-width: 66%;
}

.play-btn {
    flex: 0 0 auto;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform .25s ease, background .25s ease;
}

.play-btn svg {
    width: 25px;
    height: 25px;
}

.testimonial-card:hover .play-btn {
    background: var(--off-white);
    transform: scale(1.08);
}

.testimonial-card:hover svg {
    color: #000;
}

.play-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

/* ---------- Fullscreen video overlay ---------- */

.video-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .94);
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.video-overlay.active {
    display: flex;
}

.video-overlay video {
    width: 100%;
    max-width: 900px;
    max-height: 88vh;
    border-radius: 14px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .6);
    outline: none;
}

.close-btn {
    position: absolute;
    top: 22px;
    right: 26px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, .22);
    transform: rotate(90deg);
}


/* privacy policy section */
/* privacy policy section */

.privacy-card {
    border-radius: 30px;
    background: var(--surface);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border);
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 40px;
}

.policy-box {
    margin-top: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.policy-box ul {
    padding-left: 20px;
    margin-bottom: 0px;
}

.policy-box li {
    margin-bottom: 5px;
    color: var(--mid);
    line-height: 1.8;
}

.policy-box li::marker {
    color: var(--gold);
}

.address-bio {
    display: flex;
    flex-flow: column;
}

.address-bio a {
    color: var(--mid);
    padding-top: 10px;
}

.address-bio a:hover {
    color: var(--gold) !important;
}


/* diagnostic section */
/* diagnostic section */

.readout-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.readout-item {
    flex: 1 1 160px;
    padding: 1.1rem 1.4rem;
    border-right: 1px solid var(--border);
}

.readout-item:last-child {
    border-right: none;
}

.readout-num {
    font-size: 1.9rem;
    color: var(--text);
    line-height: 1;
}

.readout-num span {
    color: var(--gold);
}

.readout-label {
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 15px;
}

/* ---------- Section shell ---------- */

.panel-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.6rem;
}

.section-code {
    font-size: .72rem;
    color: var(--mid);
    letter-spacing: .1em;
    margin-bottom: 10px;
}

.section-note {
    color: var(--mid);
    max-width: 38ch;
    font-size: .9rem;
    line-height: 1.65;
}

.subgroup-label {
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 2rem 0 1rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid var(--border);
}

.subgroup-label:first-of-type {
    margin-top: 0;
}

/* item list */
.item-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.item {
    padding: 1.05rem 1.3rem;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: 16px;
    line-height: 1.5;
    transition: background .2s ease;
    color: var(--mid);
}

.item:nth-child(2n) {
    border-right: none;
}

@media (max-width:767px) {
    .item {
        border-right: none;
        font-size: 15px;
    }

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

}

.item:hover {
    background: var(--surface);
}

.item .tick {
    flex: none;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: .55rem;
    box-shadow: 0 0 0 3px rgba(235, 236, 155, 0.13);
}

.item .tag {
    display: inline-block;
    font-size: .62rem;
    letter-spacing: .06em;
    color: var(--gold);
    border: 1px solid rgba(198, 166, 100, .35);
    border-radius: 2px;
    padding: .05rem .4rem;
    margin-left: .5rem;
    white-space: nowrap;
    vertical-align: middle;
}

/* remove last row borders per column pairs — simple safeguard */

.item-grid .item:last-child,
.item-grid .item:nth-last-child(2) {
    border-bottom: none;
}

@media (max-width:767px) {
    .item-grid .item {
        border-bottom: 1px solid var(--border);
    }

    .item-grid .item:last-child {
        border-bottom: none;
    }

    .section-head {
        margin-bottom: 1.3rem;
    }

    .callout {
        padding: 25px;
    }
}

/* ---------- Physician note callout ---------- */

.callout {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: 3px;
    padding: 2.2rem 2.4rem;
}

.callout .mono-label {
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .9rem;
    display: block;
}

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

.callout strong {
    color: var(--off-white);
    font-weight: 500;
}


/* btn default */
/* btn default */

.btn-default {
    font-family: "Cormorant Garamond", serif;
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    background: var(--gold);
    color: rgb(8, 8, 10);
    border-radius: 100px;
    padding: 16px 24px 17px 55px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    overflow: hidden;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    transition: 0.4s ease-in-out;
    z-index: 0;
}

.btn-default:hover {
    padding: 16px 55px 17px 25px;
}

.btn-default.btn-white {
    color: var(--primary-color);
    background-color: var(--white-color);
}

.btn-default::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 5px;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    background-image: url("../images/icon/arrow-primary.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 13px;
    transition: 0.4s ease-in-out;
}

.btn-default:hover::before {
    left: 100%;
    transform: translate(calc(100% - 85px), -50%) rotate(45deg);
}

.btn-default.btn-white::before {
    background-color: var(--accent-color);
    background-image: url("../images/icon/arrow-white.svg");
}

.btn-default::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0px;
    width: 0px;
    height: 100%;
    background: var(--primary-color);
    border-radius: 100px;
    transition: 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::after {
    left: 0px;
    width: 100%;
}

.btn-default.btn-highlighted:hover {
    color: var(--black);
    cursor: pointer;
}

.btn-default.btn-highlighted:hover::before {
    background-color: var(--black);
    background-image: url("../images/icon/arrow-white.svg");
}

.btn-default.btn-white::after,
.btn-default.btn-highlighted::after {
    background-color: var(--white);
}

.splitting .char {
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(0.5, 0, 0.5, 1);
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: both;
    animation-play-state: running;
    animation-name: slide-in;
    animation-timeline: auto;
    animation-range: normal;
    animation-delay: calc(200ms * var(--char-index));
}

@keyframes slide-in {
    0% {
        transform: translateY(-1em) rotate(-0.5turn) scale(0.5);
        opacity: 0;
    }
}


/* scroll baar indicator */
/* scroll baar indicator */

.prgoress_indicator {
    position: fixed;
    right: 26px;
    bottom: 35px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px var(--surface);
    z-index: 2147483647;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) !important;
    transition: 200ms linear !important;
}

.prgoress_indicator.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) !important;
}

.prgoress_indicator::after {
    position: absolute;
    content: "";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: var(--gold);
    left: 0px;
    top: 0px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: 200ms linear !important;
}

.prgoress_indicator::before {
    position: absolute;
    content: "";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    font-weight: 900;
    opacity: 0;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0px;
    top: 0px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: 200ms linear !important;
}

.prgoress_indicator:hover ::after {
    color: var(--gold);
}

.prgoress_indicator:hover ::before {
    opacity: 1;
}

.prgoress_indicator svg path {
    fill: none;
}

.prgoress_indicator svg.progress-circle path {
    stroke: var(--gold);
    stroke-width: 4;
    box-sizing: border-box;
    transition: 200ms linear !important;
}


/* =========================================================
     TABLET
  ========================================================= */
@media (max-width:880px) {

    .crest {
        transform: scale(.85);
    }

    .price-badge {
        padding: 13px 24px;
    }

    .price-badge .amount {
        font-size: 28px;
    }

    .therapy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .therapy-card {
        padding: 26px 18px;
    }

    .benefits-wrap {
        padding: 32px 26px;
    }

    .benefits-grid-vip {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .notice {
        grid-template-columns: 1fr;
        padding: 22px 20px;
    }

    .notice h4 {
        font-size: 11px;
    }

    .cta-panel {
        padding: 36px 26px;
    }

    .gold-rule {
        margin: 10px 0;
    }

    .benefits-head {
        margin-bottom: 18px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: 1fr 1fr;
        row-gap: 18px;
    }

    .steps::before {
        display: none;
    }

    .expect-top {
        margin-bottom: 18px;
    }

    .expect-top h2 {
        font-size: 26px;
    }

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

    .split-panel {
        padding: 24px 22px;
    }

    .expect-wrap {
        padding: 24px 20px;
    }

    .notice {
        grid-template-columns: 1fr;
        padding: 20px 20px;
    }

    .notice h4 {
        font-size: 11px;
    }

    .cta-row {
        margin-top: 16px;
        padding-top: 16px;
    }

    .testimonial-card {
        position: relative;
        width: 100%;
        height: 70vh;
    }

}

/* ---------- Phone ---------- */
@media (max-width:560px) {

    .hero-meta {
        gap: 14px 20px;
        margin-top: 14px;
        flex-wrap: nowrap;
    }

    .hero-meta .num {
        font-size: 20px;
    }

    .hero-meta .lab {
        font-size: 9px;
    }

    .eyebrow {
        font-size: 10px;
        padding: 5px 13px;
    }

    .col-body p {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .benefits-head {
        margin-bottom: 14px;
    }

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

    .benefit-card {
        padding: 14px 14px;
    }

    .section-hero {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    h2.headline {
        font-size: 45px;
        margin-bottom: 20px;
    }

    .expect-top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 14px;
        gap: 8px;
    }

    .expect-top h2 {
        font-size: 22px;
        margin-top: 6px;
    }

    .steps {
        grid-template-columns: 1fr;
        row-gap: 14px;
    }

    .split-panel {
        padding: 18px 16px;
    }

    .split-panel h3 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .notice {
        padding: 14px 14px;
        gap: 10px;
    }

    .notice .mark {
        font-size: 26px;
    }

    .notice h4 {
        margin-bottom: 6px;
        font-size: 16px;
        letter-spacing: .14em;
    }

    .notice p {
        font-size: 12px;
        line-height: 1.7;
    }

    .cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 14px;
        padding-top: 14px;
    }

    .book-btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
    }

    .price {
        font-size: 21px;
    }

    .hero-main-section {
        padding: 40px 0 35px;
    }
}


/* =========================================================
     PHONE
  ========================================================= */
@media (max-width:560px) {

    .membership {
        padding: 40px 0px;
    }

    .hero-main-section h1 {
        font-size: 38px;
    }

    .price-badge {
        padding: 11px 20px;
        gap: 6px;
    }

    .price-badge .amount {
        font-size: 24px;
    }

    .price-badge .term {
        font-size: 10px;
    }

    .eyebrow {
        font-size: 10px;
        padding: 5px 13px;
    }

    .therapy-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
    }

    .therapy-card {
        padding: 20px 14px;
    }

    .therapy-card .icon {
        width: 38px;
        height: 38px;
        margin-bottom: 12px;
    }

    .benefits-wrap {
        padding: 20px 16px;
    }

    .benefits-grid-vip {
        gap: 16px;
    }

    .benefit-row {
        gap: 14px;
    }

    .benefit-row .icon {
        width: 34px;
        height: 34px;
    }

    .benefit-row .text h4 {
        font-size: 17px;
    }

    .notice {
        padding: 16px 14px;
        gap: 12px;
    }

    .notice .mark {
        font-size: 24px;
    }

    .notice h4 {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .notice p {
        font-size: 12.5px;
        line-height: 1.55;
    }

    .cta-panel {
        padding: 28px 18px;
    }

    .cta-panel p {
        font-size: 13.5px;
        margin-bottom: 20px;
    }

    .book-btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
    }

    .step .dot {
        margin-bottom: 10px;
    }

    .step {
        padding: 0px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: left;
        gap: 10px;
    }

    .exclude-box {
        padding: 30px 20px;
    }

    .intake-check-item {
        font-size: 13px;
        color: var(--mid);
    }

    .cta-panel22 p {
        text-align: justify;
    }

    .cta-panel22 .heee {
        text-align: start !important;
    }

    .benefit-row .text p {
        margin-top: 6px;
    }

    .step-ribbon {
        padding: 10px 15px;
    }

    .policy-box li {
        font-size: 15px;
    }

    .concierge-section {
        width: 100%;
        padding: 35px 20px !important;
    }

    .concierge-section::before {
        display: none;
    }

    .privileges {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .section-eyebrow {
        font-size: 0.65rem;
    }

    .bm-quote-block p.lead {
        font-size: 22px !important;
        line-height: 1.6;
    }

    .bm-hero-founder-photo {
        max-width: 200px;
    }

    .bm-hero-founder-name {
        font-size: 18px;
    }

    .disclaimer-text h4 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 16px;
    }

    .cta .step-ribbon span strong {
        font-size: 16px !important;
    }

    .section {
        padding: 35px 30px !important;
    }

    .section-list li {
        font-size: 14px;
    }

    .viewmorebutton {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonial-card {
        height: 45vh;
    }

    .content-box {
        inset: 18px;
        padding: 18px;
    }

    .card-top h3 {
        font-size: 21px;
    }

    .card-top p {
        font-size: 13px;
    }

    .quote {
        font-size: 14px;
        max-width: 72%;
    }

    .play-btn {
        width: 40px;
        height: 40px;
    }
}