/*
Theme Name: HeartSync Theme
Theme URI: https://heartsyncstudio.com
Author: HeartSync Studio
Author URI: https://heartsyncstudio.com
Description: Custom HeartSync Studio Theme
Version: 1.0
*/

/* =========================================================
   01. THEME TOKENS
========================================================= */
:root{
  --bg-dark:#050506;
  --bg-panel:#111111;
  --bg-section:#111111;

  --accent:#ffb84d;
  --accent-soft:#ffc76a;

  --text-main:#f4e8d2;
  --text-muted:#b8ac92;

  --border-soft:rgba(255,184,77,.25);
  --error:#ff5c5c;
  --success:#6ad785;

  --nav-height:72px;
  --nav-bg-image:url("../images/heartsync_menu_bg_1920x220_soft.png");

  --btn-height:56px;
  --btn-pad-x:28px;
  --btn-font:1.05rem;

  --hs-cart-x:8px;
  --hs-cart-y:0px;
  --hs-cart-icon:44px;
  --hs-cart-count-size:14px;
}

/* =========================================================
   02. RESET / BASE
========================================================= */
*,
*::before,
*::after{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html,
body{
  height:100%;
}

body{
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:radial-gradient(circle at top,#1a1208 0,var(--bg-dark) 40%,#000 100%);
  color:var(--text-main);
  line-height:1.7;
  text-align:center;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

header,
main,
footer{
  width:100%;
}

/* =========================================================
   03. TYPOGRAPHY
========================================================= */
h1{
  font-family:"Georgia","Times New Roman",serif;
  font-size:1.8rem;
  margin:0 0 .25rem;
  letter-spacing:.03em;
}

.tagline{
  margin:0 0 1.5rem;
  font-size:.95rem;
  color:var(--text-muted);
}

h2.section-title{
  font-family:"Playfair Display",serif;
  font-size:1.7rem;
  margin-bottom:1rem;
  text-align:center;
}

.section-intro{
  max-width:700px;
  margin:0 auto 2rem;
  text-align:center;
  color:var(--text-muted);
  font-size:.97rem;
}

/* ==========================================
   04. CORE LAYOUT SYSTEM
========================================== */

.container,
.container-fluid{
  max-width:1200px;
  margin:0 auto;
  padding:0 1.5rem;
  width:100%;
}

.page-wrapper{
  min-height:calc(100vh - 60px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:2.25rem 1rem;
}

/* GRID SYSTEM (GLOBAL â€” SINGLE SOURCE) */
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:2rem; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.7rem; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.7rem; }

/* ==========================================
  Dropdown button
========================================== */
.hs-join-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  padding: 10px;
  z-index: 9999;
}

.dropdown-menu.active {
  display: block;
}


.dropdown-menu {
  display: none;
  position: absolute;
  background: #111;
  z-index: 9999;
  padding: 10px;
}

.dropdown-menu.active {
  display: block;
}


.menu-dropdown {
  position: relative;
}

.menu-dropdown > a {
  cursor: pointer;
}

/* Dropdown container */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;

  background: #111;
  border: 1px solid rgba(255,184,77,.3);
  border-radius: 8px;

  min-width: 220px;
  padding: 10px 0;
  z-index: 999;
}

/* Show on hover */
.menu-dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown items */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #fff;
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: rgba(255,184,77,.1);
}

/* NAV JOIN BUTTON (small oval version of hs-btn) */
.hs-btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 16px;
  border-radius: 999px;

  background: linear-gradient(135deg, #d4af37, #ffb84d);
  color: #111 !important;

  font-weight: 700;
  font-size: 0.85rem;

  text-decoration: none;
  border: none;

  transition: all 0.25s ease;
}

/* Hover */
.hs-btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 8px rgba(255,184,77,0.4);
}

/* Arrow styling */
.hs-arrow {
  margin-left: 6px;
  font-size: 0.4rem;
  transition: transform 0.25s ease;
}

/* Rotate arrow on hover */
.menu-dropdown:hover .hs-arrow {
  transform: rotate(180deg);
}

/* =========================================================
   05. GLOBAL COMPONENTS
========================================================= */
.card{
  width:100%;
  margin:0 auto;
  padding:1.6rem 1.5rem;
  border-radius:1.1rem;
  background:rgba(255,255,255,.02);
  border:1px solid var(--border-soft);
  box-shadow:0 14px 35px rgba(0,0,0,.55);
  text-align:left;
}

.card h3{
  font-family:"Playfair Display",serif;
  font-size:1.2rem;
  margin-bottom:.35rem;
}

.card small{
  display:block;
  margin-bottom:.6rem;
  color:var(--accent-soft);
  font-size:.85rem;
}

.card p{
  font-size:.94rem;
  color:var(--text-muted);
}

.card ul{
  margin-top:.5rem;
  padding-left:1.1rem;
  color:var(--text-muted);
  font-size:.9rem;
}

.card.contact-card{
  max-width:980px;
}

.card.heartsync-choose-a-package{
  max-width:1600px;
}

.pillars li{
  margin-bottom:.65rem;
}

.pillars strong{
  color:var(--accent-soft);
}

.video-frame{
  position:relative;
  border-radius:1rem;
  overflow:hidden;
  border:1px solid var(--border-soft);
  box-shadow:0 16px 45px rgba(0,0,0,.6);
  background:#000;
  aspect-ratio:16/9;
}

.video-frame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.flash{
  margin-top:1rem;
  padding:.9rem 1rem;
  border-radius:12px;
}

.flash.error{
  border:1px solid rgba(255,92,92,.45);
}

.flash.success{
  border:1px solid rgba(106,215,133,.45);
}

.note{
  color:var(--text-muted);
  font-size:.9rem;
}

/* =========================================================
   06. GLOBAL BUTTON SYSTEM
========================================================= */
.btn,
button.btn,
a.btn,
input.btn,
button.btn-primary,
button.btn-secondary,
input[type="submit"],
input[type="submit"].btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:var(--btn-height);
  padding:0 var(--btn-pad-x);
  border-radius:999px;
  font-weight:700;
  font-size:var(--btn-font);
  letter-spacing:.02em;
  text-decoration:none;
  cursor:pointer;
  border:none;
  outline:none;
  width:auto;
  min-width:unset;
  max-width:none;
  white-space:nowrap;
  transition:transform .2s ease,filter .2s ease,box-shadow .2s ease,background .2s ease;
}

.btn-primary{
  background:linear-gradient(135deg,var(--accent),var(--accent-soft));
  color:#20160a !important;
  box-shadow:0 10px 25px rgba(0,0,0,.6);
}

.btn-primary:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
  box-shadow:0 14px 32px rgba(0,0,0,.75);
}

/* =========================================================
   07. GLOBAL FORM SYSTEM
========================================================= */
.field{
  margin-bottom:1rem;
}

label{
  display:block;
  margin-bottom:.25rem;
  font-size:.85rem;
  color:var(--text-muted);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea{
  width:100%;
  padding:.75rem .85rem;
  border-radius:10px;
  border:1px solid rgba(255,184,77,.2);
  background:rgba(8,8,8,.9);
  color:var(--text-main);
  font-size:.95rem;
  outline:none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 1px rgba(255,184,77,.5);
  background:#141414;
}

textarea{
  min-height:200px;
  resize:vertical;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1rem;
  margin-top:1rem;
}

.form-grid .full{
  grid-column:1 / -1;
}

.interest-box{
  margin-top:1.2rem;
  padding:1rem;
  border-radius:14px;
}

.interest-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.6rem 1rem;
  margin-top:.6rem;
}

.interest-grid label{
  display:flex;
  gap:.55rem;
  align-items:flex-start;
  margin:0;
  font-size:.95rem;
}

.interest-grid input{
  margin-top:.2rem;
}

/* MASTER BUTTON STYLE (used everywhere) */
.hs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 22px;
  border-radius: 999px;

  background: linear-gradient(135deg, #d4af37, #ffb84d);
  color: #111 !important;

  font-weight: 700;
  text-decoration: none;
  border: none;

  transition: all 0.25s ease;
  cursor: pointer;
}

/* Hover effect */
.hs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(255,184,77,0.4);
}

/* Floating version (keeps position only) */
.btn-fixed-right {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

/* =========================================================
   08. HEADER / NAVIGATION
========================================================= */
.nav{
  position:sticky;
  top:0;
  z-index:100;
  height:var(--nav-height);
  min-height:var(--nav-height);
  background-image:var(--nav-bg-image);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,184,77,.15);
}

.nav-menu{
  justify-content:center;
}

.nav::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.35);
  z-index:0;
}

.nav-inner{
  height:100%;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:1rem;
  padding:0;
  position:relative;
  z-index:1;
}

.nav-logo{
  justify-self:start;
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  min-width:0;
}

.nav-logo img{
  width:50px;
  height:50px;
  border-radius:999px;
  object-fit:cover;
}

.nav-logo-text{
  font-family:"Playfair Display",serif;
  font-size:1.15rem;
  font-weight:600;
  letter-spacing:.02em;
}

.nav-menu{
  justify-self:center;
  display:inline-flex;
  align-items:center;
  gap:1.1rem;
  font-size:.92rem;
  color:var(--text-muted);
}

.nav-menu a:hover{
  color:var(--accent-soft);
}

.nav-right{
  justify-self:end;
  display:inline-flex;
  align-items:center;
  gap:.75rem;
}

.nav-toggle{
  display:none;
  outline:none;
  box-shadow:none;
  -webkit-tap-highlight-color:transparent;
}

.nav-toggle:focus,
.nav-toggle:active{
  outline:none;
  box-shadow:none;
}

/* SIMPLE STACK FORM (MATCH YNLBPC) */
.hs-form-stack {
  display: block;
}

.hs-field {
  margin-bottom: 16px;
}

.hs-field input {
  width: 100%;
}

.hs-pass-wrap {
  position: relative;
}

.hs-pass-wrap input {
  padding-right: 35px;
}

.hs-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

/* ==========================================
 SECTION 08a UNIVERSAL BUTTON SYSTEM
========================================== */
.hs-submit-field {
  display: flex;
  justify-content: flex-start; /* or center */
}
.hs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 22px;
  border-radius: 999px;

  background: linear-gradient(135deg, #d4af37, #ffb84d);
  color: #111 !important;

  font-weight: 700;
  text-decoration: none;
  border: none;

  width: auto !important;   /* 🔥 FIX */
  max-width: none !important;

  transition: all 0.25s ease;
  cursor: pointer;
}

.yn-btn-uniform {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: auto;
  min-width: 220px;
  max-width: 260px;
  height: 50px;

  padding: 0 20px;

  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;

  text-align: center;
  text-decoration: none;

  background: #c6a24a;
  color: #111 !important;

  border: none;
  cursor: pointer;

  transition: all 0.25s ease;
}

/* HOVER */
.yn-btn-uniform:hover {
  background: #d7c07a;
  transform: translateY(-1px);
}

/* ACTIVE */
.yn-btn-uniform:active {
  transform: scale(0.98);
}

/* MOBILE */
@media (max-width: 768px) {
  .yn-btn-uniform {
    min-width: 200px;
    max-width: 240px;
    height: 46px;
    font-size: 15px;
  }
}

/* ==========================================
 SECTION 08b BUTTON ROW + BACK BUTTON
========================================== */ 

.yn-btn-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* BACK BUTTON STYLE */
.yn-btn-back {
  background: transparent;
  color: #c6a24a !important;
  border: 1px solid #c6a24a;
}

/* ICON SPACING */
.yn-btn-icon {
  margin-right: 6px;
  font-size: 16px;
}

/* ALL INPUT FIELDS */
input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;

  background: #0b0b0b;
  color: #ffffff;

  border: 1px solid rgba(212,175,55,0.5);
  border-radius: 8px;

  font-weight: 600;
  font-size: 0.95rem;

  outline: none;
  transition: all 0.25s ease;
}

/* PASSWORD FIELD (EXTRA EMPHASIS) */
input[type="password"] {
  background: #000;
  border: 1px solid #d4af37;
  font-weight: 700;
}

/* FOCUS STATE */
input:focus,
textarea:focus,
select:focus {
  border-color: #ffb84d;
  box-shadow: 0 0 6px rgba(255,184,77,0.4);
}

/* PLACEHOLDER TEXT */
input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

input,
textarea,
select {
  width: 100%;
  max-width: 420px;   /* 🔥 controls width globally */

  padding: 10px 12px;

  background: #0b0b0b;
  color: #ffffff;

  border: 1px solid #d4af37;
  border-radius: 8px;

  font-weight: 600;
  font-size: 0.95rem;

  outline: none;
  transition: all 0.25s ease;
}

/* FORM WRAPPER */
.hs-form-wrapper {
  max-width: 1100px;
}

/* GRID */
.hs-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* FIELD */
.field {
  display: flex;
  flex-direction: column;
}

/* HELP TEXT */
.hs-help-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* PASSWORD WRAP */
.hs-password-wrap {
  position: relative;
}

.hs-password-wrap input {
  padding-right: 35px;
}

/* EYE ICON */
.hs-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 0.9rem;
  opacity: 0.7;
}

.hs-eye:hover {
  opacity: 1;
}

/* CTA */
.hs-row-cta {
  margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hs-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hs-form-grid {
    grid-template-columns: 1fr;
  }
}

form input,
form .field,
form button {
  display: block;
  width: 100%;
  margin-bottom: 12px;
}

.hs-pass-wrap {
  position: relative;
}

.hs-pass-wrap input {
  padding-right: 40px;
}

.hs-eye {
  position: absolute;
  right: 300px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
}


/* =========================================================
   09. SECONDARY TOP BAR
========================================================= */
.top-bar{
  width:100%;
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter:blur(12px);
  background:linear-gradient(to bottom,rgba(5,5,6,.95),rgba(5,5,6,.85));
  border-bottom:1px solid rgba(255,184,77,.15);
}

.top-inner{
  max-width:1200px;
  margin:0 auto;
  padding:.7rem 1.25rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}

.top-left{
  display:flex;
  align-items:center;
  gap:.6rem;
  min-width:0;
}

.top-left img{
  max-width:260px;
  width:100%;
  height:auto;
  object-fit:contain;
}

.top-right{
  display:flex;
  align-items:center;
  gap:.75rem;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.back-home-link{
  font-size:.9rem;
  color:var(--accent-soft);
  padding:.35rem .85rem;
  border-radius:999px;
  border:1px solid rgba(255,184,77,.5);
  background:rgba(0,0,0,.35);
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  white-space:nowrap;
}

.back-home-link:hover{
  background:rgba(255,184,77,.08);
}

/* =========================================================
   10. FOOTER
========================================================= */
footer{
  padding:1.8rem 0 2.5rem;
  text-align:center;
  color:var(--text-muted);
  font-size:.85rem;
  border-top:1px solid rgba(255,255,255,.05);
  margin-top:2rem;
}

footer a{
  color:var(--accent-soft);
}

.hs-social-container{
  display:flex !important;
  flex-direction:row !important;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.hs-social-container a,
.hs-social-container img{
  display:inline-flex !important;
}

/* =========================================================
   11. HOMEPAGE
========================================================= */
.hero{
  padding:4rem 0 3rem;
  background:radial-gradient(circle at top,rgba(255,184,77,.25),transparent 55%),var(--bg-dark);
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:2rem;
  align-items:center;
  text-align:center;
}

.hero h1{
  font-family:"Playfair Display",serif;
  font-size:clamp(2.05rem,3vw,2.8rem);
  margin-bottom:.75rem;
}

.hero .tagline{
  font-size:1.05rem;
  font-weight:500;
  color:var(--accent-soft);
  margin-bottom:1.2rem;
}

.hero p.lead{
  max-width:620px;
  color:var(--text-muted);
  margin:0 auto 1.8rem;
  font-size:.98rem;
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:.8rem;
  justify-content:center;
}

.hero-note{
  margin-top:1.25rem;
  font-size:.95rem;
  color:var(--text-muted);
  max-width:680px;
  margin-left:auto;
  margin-right:auto;
}

.hero-video-container{
  margin:2rem auto 2.5rem;
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
}

.hero-video{
  max-width:1200px;
  width:100%;
  border-radius:1.2rem;
  overflow:hidden;
  background:#000;
}

.hero-video-el{
  width:100%;
  aspect-ratio:16/9;
  object-fit:contain;
  object-position:center;
  display:block;
}

.hero-notice{
  width:fit-content;
  max-width:90%;
  margin:20px auto 40px;
  text-align:center;
  font-family:"Inter",sans-serif;
  font-size:1rem;
  line-height:1.5;
  padding:15px 25px;
  color:#fff;
  background:rgba(0,0,0,.55);
  border-radius:8px;
}

.hero-notice a{
  color:#ffd27f;
  font-weight:600;
  text-decoration:underline;
}

.cta-box{
  max-width:760px;
  margin:0 auto;
  text-align:center;
  padding:2.2rem 1.8rem;
  border-radius:1.3rem;
  background:radial-gradient(circle at top,rgba(255,184,77,.2),rgba(17,17,17,1));
  border:1px solid var(--border-soft);
  box-shadow:0 16px 40px rgba(0,0,0,.7);
}

.cta-box p{
  color:var(--text-muted);
  font-size:.96rem;
  margin-bottom:1.5rem;
}

.cta-buttons{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.9rem;
}

/* =========================================================
   12. START CUSTOM VIDEO CARD PAGE
========================================================= */
.hs-start-video-page{
  padding: 2.25rem 1rem;
}

.hs-start-video-card{
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.hs-start-video-card textarea{
  min-height: 220px;
}

/* keep this page's action row left-aligned if needed, but DO NOT size buttons here */
.hs-start-video-card .actions{
  justify-content: flex-start;
}

/* ==========================================
   13. PACKAGE SYSTEM (SINGLE SOURCE)
========================================== */

.packages-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
}

.pkg{
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,184,77,.28);
  border-radius:16px;
  padding:1.25rem 1.1rem;
  box-shadow:0 12px 28px rgba(0,0,0,.65);
  display:flex;
  flex-direction:column;
  gap:.9rem;
}

.pkg:hover{
  border-color:rgba(255,184,77,.55);
}

.pkg:has(input[type="radio"]:checked){
  border-color:rgba(255,184,77,.75);
}

/* =========================================================
   14. HEALTH PAGE
========================================================= */
.hs-health-wrap{
  max-width:1120px !important;
  width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
  padding:22px 18px;
}

html,
body{
  max-width:100%;
  overflow-x:hidden;
}

.hs-health-videoFrame{
  width:100%;
  max-width:100%;
  border-radius:18px;
}

.hs-health-videoFrame video,
.hs-health-videoFrame iframe{
  max-width:100%;
  height:auto;
}

.hs-health-wrap .container{
  max-width:1120px !important;
  width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.hs-health-heroGrid{
  display:grid;
  gap:18px;
  grid-template-columns:1.35fr .65fr;
  align-items:stretch;
}

.hs-health-card{
  border:1px solid rgba(0,0,0,.12);
  border-radius:18px;
  overflow:hidden;
  background:#0b1220;
  color:#eaf0ff;
}

.hs-health-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:18px;
  background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.75));
  pointer-events:none;
}

.hs-health-overlay h2{
  margin:0 0 8px;
  font-size:32px;
  letter-spacing:-.02em;
}

.hs-health-overlay p{
  margin:0;
  opacity:.86;
  max-width:72ch;
  font-size:14.5px;
}

.hs-health-meta{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  padding:12px 16px;
  border-top:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
}

.hs-health-note{
  opacity:.78;
  font-size:13px;
}

.hs-health-side{
  padding:16px;
}

.hs-health-side h3{
  margin:2px 0 8px;
  font-size:16px;
}

.hs-health-side p{
  margin:0 0 10px;
  opacity:.78;
  font-size:13.5px;
}

.hs-health-ul{
  margin:8px 0 0;
  padding:0 0 0 18px;
  font-size:13.5px;
}

.hs-health-ul li{
  margin:8px 0;
}

.hs-health-panel{
  border:1px solid rgba(0,0,0,.12);
  border-radius:18px;
  padding:16px;
  background:#fff;
  color:#111;
  margin-top:16px;
  text-align:left;
}

.hs-health-panel h4{
  margin:0 0 8px;
  font-size:18px;
}

.hs-health-panel p{
  margin:0 0 10px;
  color:#333;
}

.hs-health-alert{
  border-radius:14px;
  padding:12px 14px;
  border:1px solid rgba(0,0,0,.12);
  margin-top:12px;
  font-size:13px;
}

.hs-ok{
  background:rgba(120,255,180,.18);
}

.hs-err{
  background:rgba(255,120,120,.18);
}

.hs-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:12px;
}

.hs-form textarea{
  min-height:120px;
  grid-column:1/-1;
}

.hs-actions{
  grid-column:1/-1;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.hs-fineprint{
  font-size:12px;
  color:#444;
}

.heartsync-container{
  max-width:1100px;
  margin:0 auto;
  padding:20px 20px 40px;
  text-align:left;
}

.heartsync-layout{
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:30px;
}

/* Member Intro Wrapper */
.hs-member-intro {
  margin-bottom: 30px;
}

/* Main Title */
.hs-member-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #d4af37;
}

/* Info Boxes */
.hs-member-box {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,184,77,0.25);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 18px;
}

/* Highlight Box */
.hs-member-box.highlight {
  border-color: rgba(255,184,77,0.6);
  box-shadow: 0 0 12px rgba(255,184,77,0.15);
}

/* Headings */
.hs-member-box h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #ffb84d;
}

/* Paragraphs */
.hs-member-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* List */
.hs-member-box ol {
  padding-left: 18px;
}

.hs-member-box li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* Collapsible Boxes */
.collapsible .hs-box-header {
  font-weight: 600;
  cursor: pointer;
  padding: 10px 0;
}

.collapsible .hs-box-content {
  display: block;
}

/* Mobile collapse */
@media (max-width: 768px) {
  .collapsible .hs-box-content {
    display: none;
  }

  .collapsible.active .hs-box-content {
    display: block;
  }
}

/* Icon list */
.hs-icon-list {
  list-style: none;
  padding-left: 0;
}

.hs-icon-list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}

.hs-icon-list li::before {
  content: "🔥";
  position: absolute;
  left: 0;
}

/* Hover glow effect */
.hs-member-box {
  transition: all 0.3s ease;
}

.hs-member-box:hover {
  box-shadow: 0 0 15px rgba(255,184,77,0.3);
  transform: translateY(-2px);
}

/* CTA emphasis */
.hs-cta-main {
  margin-top: 20px;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.page-become-a-member .hs-container {
  max-width: 600px;
}

/* ==========================================
   14a. MEMBERSHIP FORM WIDTH CONTENT STYLING
========================================== */
.member-page {
  max-width: 800px;
  margin: 0 auto;
}
.hs-title {
  font-size: 1.8rem;
  color: #d4af37;
  margin-bottom: 8px;
}

.hs-subtitle {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.hs-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.hs-section-title {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #ffb84d;
  font-size: 1.1rem;
}

.hs-list {
  padding-left: 18px;
  margin-bottom: 20px;
}

.hs-list li {
  margin-bottom: 6px;
}

/* FORM HELP TEXT */
.hs-help-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* GOLD TRANSPARENT FEATURE BOX */
.hs-member-box.highlight {
  background: rgba(212, 175, 55, 0.08); /* soft gold glass */
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;

  padding: 20px 22px;
  margin-top: 20px;

  backdrop-filter: blur(6px); /* premium glass feel */
}

/* TITLE */
.hs-member-box.highlight h3 {
  color: #d4af37;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

/* LIST */
.hs-member-box.highlight ol {
  padding-left: 18px;
  margin: 0;
}

.hs-member-box.highlight li {
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 0.95rem;
  color: #f5f5f5;
}

/* OPTIONAL: subtle hover glow */
.hs-member-box.highlight:hover {
  border-color: rgba(255, 184, 77, 0.6);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

/* =========================================================
   15. THANK YOU / SUCCESS / CONFIRM PAGES
========================================================= */
.confirm-page > .card{
  max-width:1200px;
}

/* =========================================================
   16. FIXED CTA / FLOATING BUTTONS
========================================================= */
.btn-fixed-right{
  position: fixed;
  bottom: 20px;
  right: 80px;
  z-index: 9999;
  width: auto !important;
  max-width: none !important;
}

@media (max-width: 600px){
  .btn-fixed-right{
    left: 50%;
    right: auto;
    bottom: 14px;
    transform: translateX(-50%);
    width: auto !important;
    max-width: calc(100vw - 28px) !important;
    animation: hsCtaPulse 1.8s ease-in-out infinite;
  }

  body:has(input:focus, textarea:focus, select:focus) .btn-fixed-right{
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(12px);
    transition: opacity .18s ease, transform .18s ease;
  }
}

/* ==========================================
   FLOATING CTA VISIBILITY CONTROL
   Section: 16a.
========================================== */

/* Hide everywhere by default */
.floating-cta {
  display: none !important;
}

/* Show ONLY on homepage */
.home .floating-cta {
  display: flex !important;
}
/* =========================================================
   17. RESPONSIVE
========================================================= */

@media (max-width:1024px){
  .packages-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:720px){
  .packages-grid{
    grid-template-columns:1fr;
  }
}


@media (max-width:1024px){
  .grid-4,
  .packages-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:980px){
  .hs-health-heroGrid{
    grid-template-columns:1fr;
  }
}

@media (max-width:900px){
  .container,
  .container-fluid{
    padding:0 1rem;
  }

  section{
    padding:2.25rem 0;
  }

  .grid-2,
  .grid-3,
  .grid-4{
    grid-template-columns:1fr;
  }

  .card{
    padding:1.3rem 1.1rem;
  }
}

@media (max-width:850px){
  .nav-inner{
    grid-template-columns:1fr auto;
  }

  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:transparent;
    border:1px solid rgba(255,184,77,.7);
    color:var(--accent-soft);
    border-radius:999px;
    padding:.25rem .7rem;
    font-size:1.1rem;
    cursor:pointer;
    justify-self:end;
  }

  .nav-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    padding:.75rem 1.5rem 1rem;
    background:rgba(5,5,6,.98);
    border-bottom:1px solid rgba(255,184,77,.2);
    flex-direction:column;
    gap:.6rem;
    font-size:.95rem;
    text-align:left;
  }

  .nav-menu.open{
    display:flex;
  }
}

@media (max-width:820px){
  .form-grid,
  .interest-grid,
  .grid,
  .inline-fields,
  .hs-form{
    grid-template-columns:1fr;
  }
}

@media (max-width:780px){
  .hs-form{
    grid-template-columns:1fr;
  }
}

@media (max-width:720px){
  .top-inner{
    padding:.6rem .75rem;
    gap:.5rem;
  }

  .top-left img{
    max-width:200px;
  }

  .packages-grid{
    grid-template-columns:1fr;
  }

  h1{
    font-size:1.4rem;
  }

  .btn-row{
    flex-direction:column;
    align-items:stretch;
  }

  .card{
    padding:1.75rem 1.25rem;
  }
}

@media (max-width:640px){
  .pkg-topline{
    flex-wrap:wrap;
  }

  .pkg-estimate{
    margin-left:0;
    width:100%;
    text-align:left;
  }
}

@media (max-width:600px){
  :root{
    --btn-height:52px;
    --btn-pad-x:22px;
    --btn-font:.98rem;
  }

  .nav-logo-text{
    font-size:1rem;
  }

  .hero{
    padding:2.25rem 0 2rem;
  }

  .hero h1{
    font-size:clamp(1.55rem,6vw,2.1rem);
    line-height:1.2;
  }

  .hero .tagline{
    font-size:.98rem;
  }

  .hero p.lead{
    font-size:.95rem;
    padding:0 .25rem;
  }

  .hero-video-container{
    margin:1.25rem auto 1.5rem;
    padding:0 .75rem;
  }

  .hero-video{
    border-radius:.95rem;
  }

  .hero-notice{
    font-size:1rem;
    padding:12px 15px;
  }

  .btn{
    width:100%;
    max-width:420px;
    padding:.85rem 1.15rem;
    font-size:.95rem;
  }

  .btn-block{
    max-width:100%;
  }

  .cta-box{
    padding:1.6rem 1.1rem;
    border-radius:1.1rem;
  }

  h2.section-title{
    font-size:1.45rem;
    line-height:1.2;
  }

  .section-intro{
    font-size:.95rem;
    padding:0 .25rem;
  }

  .card h3{
    font-size:1.12rem;
  }

  .heart-pulse-btn{
    width:calc(100% - 2rem);
    max-width:420px;
    font-size:.95rem;
    padding:12px 18px;
  }

  .hs-fixed-cta{
    bottom:14px;
    right:14px;
    padding:.65rem 1.1rem;
    font-size:.85rem;
  }

  .btn-fixed-right{
    left:50%;
    right:auto;
    transform:translateX(-50%);
    bottom:14px;
    max-width:calc(100vw - 28px);
    width:auto;
    animation:hsCtaPulse 1.8s ease-in-out infinite;
  }

  body:has(input:focus, textarea:focus, select:focus) .btn-fixed-right{
    opacity:0;
    pointer-events:none;
    transform:translateX(-50%) translateY(12px);
    transition:opacity .18s ease,transform .18s ease;
  }

  .cart-icon-wrap{
    width:40px;
    height:40px;
  }

  .cart-count{
    width:18px;
    height:18px;
    font-size:12px;
    top:8px;
    right:8px;
  }

  .heartsync-checkout-header{
    justify-content:center;
  }

  .heartsync-checkout-logo{
    max-width:160px;
  }


@media (max-width:480px){
  .page-wrapper{
    padding:1.75rem .75rem;
  }

  footer{
    font-size:.8rem;
    padding:1.4rem 0 2rem;
  }

  #musicToggle{
    bottom:12px;
    right:12px;
    padding:.4rem .8rem;
    font-size:.8rem;
  }
}

