/* ============================================================
   style.css — Page-specific overrides for index.html ONLY
   Global styles, colours, and fonts live in assets/css/theme.css
   ============================================================ */

/* Add index.html-only styles below this line */

/* ── Hero Section ───────────────────────────────────────── */
.hm-hero {
  background: #000000;
   padding: 3.7rem;
 
}

.hm-hero::before {
  display: none;
}

.hm-hero-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
   width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover; 
    no-repeat;
}





.hm-hero-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4.4vw, 3.9rem);
  font-weight: var(--hm-fw-semibold);
  line-height: 1.1;
}

.hm-hero-subtitle {
  margin: 1rem 0 0;
  color: var(--hm-green);
  font-size: clamp(1.3rem, 2.6vw, 2.45rem);
  font-weight: var(--hm-fw-medium);
  line-height: 1.25;
}

.hm-hero-desc {
  margin: 1.5rem auto 0;
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(0.85rem, 1.1vw, 1.4rem);
  font-weight: var(--hm-fw-medium);
  line-height: 1.55;
}

.hm-hero .btn-hm-primary {
  margin-top: 1.5rem;
  padding: 0.68rem 2.15rem;
  border-radius: 8px;
  color: #000000;
  font-size: 1.5rem;
  font-weight: var(--hm-fw-medium);
}

.hm-hero-sub-cta {
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: var(--hm-fw-medium);
}

.hm-hero-actions-bar {
  position: absolute;
  bottom: 2.7rem;
  left: 0;
  right: 0;
 
 

}

.hm-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.85rem;
}

.hm-hero-action-btn {
  border: 0;
  border-radius: 10px;
  background: #ffffff;
  color: #1f1f1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--hm-font);
  font-size: 1rem;
  font-weight: var(--hm-fw-regular);
  padding: 0.82rem 1.82rem;
  line-height: 1.2;
  transition: transform var(--hm-transition), box-shadow var(--hm-transition);
}



.hm-hero-action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* ── Alone Section ───────────────────────────────────────── */
.alone-section {
  padding: 5.5rem 0 5rem;
  background: #FFFFFF;
}

.alone-heading {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: var(--hm-fw-semibold);
  color: var(--hm-text-dark);
  max-width: 760px;
  margin: 0 auto 4.1rem;
  line-height: 1.25;
}

.alone-subtext {
  font-size: 1.5rem;
  color: #242424;
  
  margin-bottom: 1.5rem;
}

.alone-tabs-wrapper {
  display: flex;
  justify-content: center;
}

.alone-track {
  display: inline-flex;
  align-items: stretch;
  background: #e9e9eb;
  border-radius: 14px;
  position: relative;
  padding: 0;
  overflow: visible;
}

.alone-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  min-width: 208px;
  padding: 2.83rem 2.83rem 1.5rem 2.83rem;
  border: none;
  background: transparent;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  transition: background-color var(--hm-transition), box-shadow var(--hm-transition), transform var(--hm-transition);
}

.alone-tab img {
  width: 81px;
  height: 70px;
  object-fit: contain;
  display: block;
  margin-bottom: 1.5rem;
}

.alone-tab-label {
  font-size: 1.5rem;
  font-weight: var(--hm-fw-medium);
  color: #2a2a2a;
  line-height: 1.15;
}

.alone-tab-sub {
  font-size: 0.98rem;
  color: #505050;
  line-height: 1.2;
}

.alone-tab--active {
  background: var(--hm-green);
  border-radius: 24px;
  box-shadow: 0 8px 22px rgba(82, 217, 60, 0.24);
}

.alone-tab--active .alone-tab-label,
.alone-tab--active .alone-tab-sub {
  color: #111;
}

.alone-tab--active::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 20px solid var(--hm-green);
}

.alone-panel {
  display: none;
  animation: aloneFadeIn 0.25s ease;
}

.alone-panel--active {
  display: block;
}

@keyframes aloneFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alone-panel-title {
  font-size: clamp(2rem, 3.2vw, 3.125rem);
  font-weight: var(--hm-fw-medium);
  font-style: normal;
  margin-bottom: 1.9rem !important;
}

.alone-pain-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  max-width: 220px;
  height: 100%;
  box-shadow: 0px 4px 4px 0px #0000001A;

  border: 1px solid #eeeeee;
}

.alone-pain-card p {
  font-size: 1.03rem;
  color: #000000;
  margin: 0;
  line-height: 1.34;

}

.alone-pain-icon {
  font-size: 1.45rem;
  color: var(--hm-green);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.alone-img-placeholder {
  display: none;
}

.alone-ctas .btn-hm-primary {
  min-width: 540px;
  justify-content: center;
  border-radius: 6px;
  padding: 0.95rem 1.4rem;
  font-size: 1.45rem;
  font-weight: var(--hm-fw-medium);
  letter-spacing: 0;
}

.alone-cta-or {
  font-size: 1rem;
  color: #7a7a7a;
  margin-top: 0.55rem !important;
  margin-bottom: 0.55rem !important;
}

.alone-secondary-cta {
  background: transparent;
  border: 1px solid #d7d7d7;
  border-radius: 6px;
  min-width: 420px;
  padding: 0.72rem 1.2rem;
  font-family: var(--hm-font);
  font-size: 1rem;
  font-weight: var(--hm-fw-light);
  color: #525252;
  cursor: pointer;
  transition: border-color var(--hm-transition), box-shadow var(--hm-transition), color var(--hm-transition);
}

.alone-secondary-cta:hover {
  border-color: #F2F2F4;
  color: #000000;
}


.alono-cta-btn{
  background-color: var(--hm-green);
  color: #000000;
  border-radius: 8px;
  font-family: var(--hm-font);
  font-size: 1.25rem;
  font-weight: var(--hm-fw-medium);
  max-width: 420px;
  padding: 0.75rem 1.4rem;
  outline: none;
  border: none;
  cursor: pointer;
 
}

.alono-cta-btn:hover {
  background-color: var(--hm-green-dark);
  color: #000000;
}

/* ── Solution Section ────────────────────────────────────── */
.solution-section {
  background: #000000;
  padding: 5.5rem 0 4.75rem;
  overflow: hidden;
}

.solution-head {
  margin-bottom: 2.4rem;
}

.solution-kicker {
  margin-bottom: 2.75rem;
  color: var(--hm-green);
  font-size: 3.35rem;
  font-weight: var(--hm-fw-semibold);
  line-height: 1.05;
}

.solution-title {
  margin: 0;
  color: #ffffff;
  font-size: 3.05rem;
  font-weight: var(--hm-fw-medium);
  line-height: 1.22;
}

.solution-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2.3rem;
}

.solution-tabs {
  display: inline-flex;
  background: #ffffff;
  padding: 0.51rem;
  border-radius: 11px;
  overflow: hidden;
}

.solution-tab {
  border: none;
  background: transparent;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 10px;
  padding: 1.02rem 2.5rem;
  font-size: 1.4rem;
  font-weight: var(--hm-fw-light);
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--hm-transition), color var(--hm-transition);
}

.solution-tab--active {
  background: var(--hm-green);
  color: #000000;
  
}

.solution-body {
  margin-top: 0.25rem;
}

.solution-panel {
  display: none;
  animation: solutionFadeIn 0.28s ease;
}

.solution-panel--active {
  display: block;
}

@keyframes solutionFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.solution-audience {
  margin-bottom: 0.8rem;
  color: var(--hm-green);
  font-size: 1.2rem;
  font-weight: var(--hm-fw-semibold);
  letter-spacing: 0.18em;
}

.solution-body-title {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: var(--hm-fw-semibold);
  line-height: 1.22;
  margin-bottom: 1.35rem;
  max-width: 560px;
}

.solution-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.9rem;
}

.solution-points li {
  position: relative;
  color: #c4c4c4;
  font-size: 1rem;
  line-height: 1.56;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}

.solution-points li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hm-green);
  position: absolute;
  left: 0;
  top: 0.7rem;
}

.solution-ctas {
  width: fit-content;
}

.solution-primary-btn {
  border: 0;
  background: var(--hm-green);
  color: #000000;
  border-radius: 6px;
  min-width: 330px;
  padding: 0.78rem 1.2rem;
  font-size: 1.1rem;
  font-weight: var(--hm-fw-medium);
  font-family: var(--hm-font);
  transition: background-color var(--hm-transition);
}

.solution-primary-btn:hover {
  background: var(--hm-green-dark);
}

.solution-cta-or {
  text-align: center;
  color: #9a9a9a;
  margin: 0.45rem 0;
  font-size: 0.92rem;
}

.solution-secondary-btn {
  border: 1px solid #f2f2f4;
  background: transparent;
  color: #d9d9d9;
  border-radius: 6px;
  min-width: 330px;
  padding: 0.52rem 1rem;
  font-size: 0.86rem;
  font-weight: var(--hm-fw-light);
  font-family: var(--hm-font);
  transition: border-color var(--hm-transition), color var(--hm-transition);
}

.solution-secondary-btn:hover {
  border-color: var(--hm-green);
  color: #ffffff;
}

.solution-image-wrap {
  width: min(760px, calc(100% + 180px));
  margin-left: auto;
  margin-right: -130px;
  text-align: right;
}

.solution-image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin-left: auto;
}

/* ── Principles Section ─────────────────────────────────── */
.principles-section {
  background: #ffffff;
  padding: 5.2rem 0 4.4rem;
}

.principles-inner {
  max-width: 860px;
  margin: 0 auto;
}

.principles-title {
  color: #121212;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: var(--hm-fw-semibold);
  line-height: 1.16;
  margin-bottom: 2rem;
}

.principle-group {
  margin-bottom: 1.6rem;
  max-width: 760px;
}

.principle-group:last-child {
  margin-bottom: 0;
}

.principle-group-title {
  color: var(--hm-green);
  font-size: 0.95rem;
  font-weight: var(--hm-fw-semibold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

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

.principle-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.55rem;
}

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

.principle-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hm-green);
  position: absolute;
  left: 0;
  top: 0.38rem;
}

.principle-point-title {
  margin: 0;
  color: #121212;
  font-size: 1.22rem;
  font-weight: var(--hm-fw-semibold);
  line-height: 1.34;
}

.principle-point-desc {
  margin: 0.2rem 0 0;
  color: #3f3f3f;
  font-size: 0.95rem;
  font-weight: var(--hm-fw-regular);
  line-height: 1.36;
}

/* ── Simple 3-Step Plan Section ─────────────────────────── */
.step-plan-section {
  background: #000000;
  padding: 5rem 0 5.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.step-plan-title {
  color: var(--hm-green);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: var(--hm-fw-semibold);
  margin-bottom: 2.1rem;
  line-height: 1.1;
}

.step-plan-card {
  background: #ffffff;
  border-radius: 40px;
  padding: 3.313rem 1.5rem 3.4rem;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.step-plan-icon {
  width: 82px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 0.7rem;
}

.step-plan-card-title {
  color: var(--hm-green);
  font-size: 2.1rem;
  font-weight: var(--hm-fw-semibold);
  line-height: 1.1;
  margin: 0;
}

.step-plan-card-sub {
  margin: 0.18rem 0 0.75rem;
  color: #4a4a4a;
  font-size: 0.85rem;
}

.step-plan-card-lead {
  margin: 0 0 1.95rem;
  color: #0C0C0C;
  text-align: center;
 
  font-size: 1.25rem;
  font-weight: var(--hm-fw-semibold);
  line-height: 1.28;
}

.step-plan-step {
  margin-bottom: 1.82rem;
}

.step-plan-step:last-of-type {
  margin-bottom: 1.05rem;
}

.step-plan-step-tag {
  display: inline-block;
  padding: 0.45rem 0.55rem;
  border: 1px solid #000000;
  border-radius: 8px;
  font-size: 1.12rem;
  font-weight: var(--hm-fw-medium);
  color: #000000;
  margin: 0 0 0.33rem;
  line-height: 1;
}

.step-plan-step-title {
  margin: 0 0 0.22rem;
  color: var(--hm-green);
  font-size: 1.01rem;
  font-weight: var(--hm-fw-semibold);
  letter-spacing: 0.02em;
}

.step-plan-step-desc {
  margin: 0;
  color: #000000;
  font-size: 0.82rem;
  padding: 0rem 2.8rem;
  line-height: 1.34;
}

.step-plan-cta {
  margin-top: auto;
}

.step-plan-primary-btn {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: var(--hm-green);
  color: #000000;
  font-family: var(--hm-font);
  font-size: 1.125rem;
  font-weight: var(--hm-fw-medium);
  line-height: 1.24;
  padding: 0.72rem 1.2rem;
  transition: background-color var(--hm-transition);
}

.step-plan-primary-btn:hover {
  background: var(--hm-green-dark);
}

.step-plan-cta-or {
  margin: 0.26rem 0;
  color: #646464;
  font-size: 0.9rem;
}

.step-plan-secondary-btn {
  border: none;
  background: transparent;
  color: #3f3f3f;
  font-family: var(--hm-font);
  font-size: 1rem;
  font-weight: var(--hm-fw-regular);
  line-height: 1.2;
}

/* ── Trusted Partner Section ────────────────────────────── */
.partner-section {
  background: #ffffff;
  padding: 5.4rem 0 5.8rem;
}

.partner-title {
  margin: 0;
  color: #121212;
  font-size: clamp(2.2rem, 4.1vw, 4.0rem);
  font-weight: var(--hm-fw-semibold);
  line-height: 1.1;
}

.partner-title span {
  color: var(--hm-green);
}

.partner-subtext {
  max-width: 860px;
  margin: 2.15rem auto 2.9rem;
  color: #000000;
  font-weight: var(--hm-fw-medium);
  font-size: 1.4rem;
  line-height: 1.6;
}

.partner-label {
  margin: 0;
  color: var(--hm-green);
  font-size: 1.56rem;
  font-weight: var(--hm-fw-semibold);
  letter-spacing: 0.2em;
}

.partner-carousel {
  margin-top: 2.8rem;
  position: relative;
}

.partner-carousel .carousel-inner {
  padding: 12px 0;
}

.partner-carousel .carousel-item {
  padding: 2px 18px;
}

.partner-carousel .carousel-item .row {
  --bs-gutter-y: 0;
  align-items: stretch;
  margin-left: 0;
  margin-right: 0;
}

.partner-carousel .carousel-item .row > [class*="col-"] {
  display: flex;
}

.partner-card {
  background: #FFFFFFD6;

  border-radius: 18px;
  box-shadow: 0px 4px 10px 2px #0000001A;

  padding: 2.35rem ;
  height: 100%;
}

.partner-stars {
  margin: 0 0 0.55rem;
  color: var(--hm-green);
  font-size: 0.92rem;
  display: flex;
  gap: 0.32rem;
}

.partner-quote {
  margin: 0 0 0.8rem;
  color: #000000;
  font-size: 1.0rem;
  line-height: 1.35;
  font-weight: var(--hm-fw-light);
}

.partner-name {
  margin: 0;
  color: #1E1E1E;
  font-size: 1.25rem;
  font-weight: var(--hm-fw-medium);
}

.partner-control {
  width: auto;
  opacity: 1;
  top: 44%;
  transform: translateY(-50%);
}

.partner-control.carousel-control-prev {
  left: -34px;


}

.partner-control.carousel-control-next {
  right: -34px;
 

}

.partner-control-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  box-shadow: 0px 7.03px 19.53px 0px #0000000F;


  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
}

.partner-indicators {
  bottom: -44px;
  margin-bottom: 0;
}

.partner-indicators [data-bs-target] {
  width: 7px;
  height: 7px;
  border: 0;
  background: #c9c9c9;
  opacity: 1;
  border-radius: 999px;
  margin: 0 4px;
}

.partner-indicators .active {
  width: 34px;
  background: var(--hm-green);
}

/* ── Spread the Movement Section ────────────────────────── */
.spread-section {
  position: relative; 
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 7.2rem 0 6.8rem;
  overflow: hidden;
  background-color: #000000;
}

.spread-overlay {
  position: absolute;
  inset: 0;
  border: 1px solid;

  border-image-source: linear-gradient(0deg, #000000, #000000),
  linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  
  
}

.spread-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 1020px;
}

.spread-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 4.5vw, 4.0rem);
  font-weight: var(--hm-fw-semibold);
  letter-spacing: 0.01em;
}

.spread-copy {
  margin: 1.5rem auto 0;
  max-width: 1180px;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: var(--hm-fw-medium);
  line-height: 1.45;
}

.spread-highlight {
  margin: 1.5rem auto 0;
  max-width: 1180px;
  color: var(--hm-green);
  font-size: 1.5rem;
  font-weight: var(--hm-fw-semibold);
  line-height: 1.35;
}

.spread-copy--small {
  margin-top: 1.35rem;
  max-width: 1180px;
  font-size: 1.4rem;
}

.spread-btn {
  margin-top: 2rem;
  border: 0;
  border-radius: 9px;
  background: var(--hm-green);
  color: #000000;
  font-family: var(--hm-font);
  font-size: 1.3rem;
  font-weight: var(--hm-fw-semibold);
  padding: 1.05rem 2.4rem;
  min-width: 274px;
  transition: background-color var(--hm-transition), transform var(--hm-transition);
}

.spread-btn:hover {
  background: var(--hm-green-dark);
  transform: translateY(-1px);
}

/* ── Shop / Merch Section ───────────────────────────────── */
.shop-section {
  background: #000000;
  padding: 3.4rem 0 5rem;
  margin-top: -1px;
}

.shop-head {
  margin-bottom: 2.1rem;
}

.shop-title {
  margin: 0;
  color: var(--hm-green);
  font-size: clamp(2rem, 4vw, 2.2rem);
  font-weight: var(--hm-fw-semibold);
  line-height: 1.12;
}

.shop-subtitle {
  margin: 0.45rem 3.5rem 2.5rem;
  color: #ffffff;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  font-weight: var(--hm-fw-light);
}

.shop-carousel {
  position: relative;
}

.shop-card {
  color: #ffffff;
}

.shop-carousel .carousel-item .row {
  --bs-gutter-y: 80px;
}

.shop-product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: #ececec;
  color: #777777;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.shop-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 2;
  display: inline-block;
  background: #000000;
  color: #ffffff;
  border-radius: 4px;
  padding: 0.15rem 0.42rem;
  font-size: 0.63rem;
  font-weight: var(--hm-fw-medium);
  line-height: 1;
}

.shop-product-name {
  margin: 0 0 0.24rem;
  font-size: 0.96rem;
  font-weight: var(--hm-fw-medium);
  line-height: 1.3;
}

.shop-product-price {
  margin: 0;
  font-size: 1.02rem;
  font-weight: var(--hm-fw-semibold);
}

.shop-product-price span {
  color: #8e8e8e;
  text-decoration: line-through;
  font-size: 0.92rem;
  font-weight: var(--hm-fw-regular);
  margin-left: 0.24rem;
}

.shop-control {
  width: auto;
  opacity: 1;
  top: 54%;
  transform: translateY(-50%);
}

.shop-control.carousel-control-prev {
  left: -22px;
}

.shop-control.carousel-control-next {
  right: -22px;
}

/* ── FAQ Icon Override (Plus/Minus) ────────────────────── */
.hm-accordion .accordion-button::after {
  background-image: none !important;
  content: "+";
  width: auto;
  height: auto;
  font-family: var(--hm-font);
  font-size: 2.5rem;
  font-weight: var(--hm-fw-regular);
  color: var(--hm-green);
  line-height: 1;
  transform: none !important;
}
.faq-font-size{
  font-size: 1.25rem;
  font-weight: var(--hm-fw-regular);
  color: #000000;
  line-height: 1;
  transform: none !important;
}

.hm-accordion .accordion-button:not(.collapsed)::after {
  background-image: none !important;
  content: "\2212";
  transform: none !important;
}

@media (max-width: 991px) {
  .hm-hero {
    padding: 1.2rem 1rem 1.6rem;
  }

  .hm-hero-body {
    aspect-ratio: auto;
    min-height: 540px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    padding: 2.5rem 1rem;
  }

  .hm-hero-title {
    font-size: clamp(1.8rem, 4.8vw, 2.7rem);
  }

  .hm-hero-subtitle {
    font-size: clamp(1.15rem, 2.8vw, 1.7rem);
  }

  .hm-hero-desc {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    max-width: 640px;
  }

  .hm-hero-actions {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .hm-hero-action-btn {
    font-size: 0.88rem;
    padding: 0.68rem 1rem;
  }

  .hm-hero-actions-bar {
    position: static;
    margin-top: 1rem;
  }

  .alone-subtext {
    font-size: 1.2rem;
  }

  .alone-tab {
    min-width: 182px;
    padding: 0.85rem 0.8rem;
  }

  .alone-tab-label {
    font-size: 1.5rem;
  }

  .alone-tab-sub {
    font-size: 0.85rem;
  }

  .alone-pain-card {
    min-width: 190px;
    max-width: 190px;
  }

  .alone-ctas .btn-hm-primary {
    min-width: 360px;
    font-size: 1.15rem;
  }

  .alone-secondary-cta {
    min-width: 300px;
  }

  .solution-kicker {
    font-size: 1.9rem;
  }

  .solution-title {
    font-size: 2.1rem;
  }

  .solution-tab {
    padding: 0.6rem 1.2rem;
  }

  .solution-ctas {
    width: 100%;
  }

  .solution-primary-btn,
  .solution-secondary-btn {
    min-width: 100%;
  }

  .solution-image-wrap {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }

  .solution-image {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .principles-section {
    padding: 4.4rem 0 3.9rem;
  }

  .principles-inner {
    max-width: 100%;
  }

  .principles-title {
    margin-bottom: 1.6rem;
  }

  .principle-point-title {
    font-size: 1.08rem;
  }

  .principle-point-desc {
    font-size: 0.92rem;
  }

  .step-plan-section {
    padding: 4.25rem 0 4.5rem;
  }

  .step-plan-title {
    margin-bottom: 1.55rem;
  }

  .step-plan-card-title {
    font-size: 1.9rem;
  }

  .step-plan-card-lead {
    font-size: 1.13rem;
  }

  .step-plan-step-title {
    font-size: 0.86rem;
  }

  .step-plan-step-desc {
    font-size: 0.78rem;
  }

  .step-plan-primary-btn {
    font-size: 0.94rem;
  }

  .partner-section {
    padding: 4.4rem 0 5.2rem;
  }

  .partner-subtext {
    font-size: 1.15rem;
    max-width: 700px;
    margin-bottom: 1.7rem;
  }

  .partner-label {
    font-size: 1rem;
  }

  .partner-carousel {
    margin-top: 2rem;
  }

  .partner-card {
    padding: 1.8rem 1.35rem;
  }

  .partner-control.carousel-control-prev {
    left: -16px;
  }

  .partner-control.carousel-control-next {
    right: -16px;
  }

  .spread-section {
    padding: 5.4rem 0 5rem;
  }

  .spread-copy {
    font-size: 1.32rem;
    max-width: 760px;
  }

  .spread-highlight {
    font-size: 1.42rem;
    max-width: 760px;
  }

  .spread-copy--small {
    font-size: 1.22rem;
  }

  .spread-btn {
    font-size: 1.2rem;
    padding: 0.85rem 1.9rem;
    min-width: 230px;
  }

  .shop-section {
    padding: 4rem 0 4.3rem;
  }

  .shop-head {
    margin-bottom: 1.65rem;
  }

  .shop-product-name {
    font-size: 0.9rem;
  }

  .shop-product-price {
    font-size: 0.95rem;
  }

  .shop-control.carousel-control-prev {
    left: -10px;
  }

  .shop-control.carousel-control-next {
    right: -10px;
  }

  .shop-carousel .carousel-item .row {
    --bs-gutter-y: 5.25rem !important;
  }
}

@media (max-width: 767px) {
  .hm-hero {
    padding: 0.85rem 0.75rem 1.15rem;
  }

  .hm-hero-body {
    min-height: 0;
    border-radius: 14px;
    padding: 1.5rem 0.75rem;
    background-size: cover;
    background-position: center;
  }

  .hm-hero-title {
    font-size: 1.32rem;
    line-height: 1.2;
  }

  .hm-hero-subtitle {
    margin-top: 0.7rem;
    font-size: 0.98rem;
  }

  .hm-hero-desc {
    margin-top: 0.95rem;
    font-size: 0.76rem;
    line-height: 1.45;
    max-width: 94%;
  }

  .hm-hero .btn-hm-primary {
    width: auto;
    max-width: 100%;
    font-size: 0.82rem;
    padding: 0.58rem 1rem;
  }

  .hm-hero-actions-bar {
    border-radius: 12px;
    padding: 0;
    margin-top: 0.65rem;
  }

  .hm-hero-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hm-hero-action-btn {
    width: 100%;
    max-width: 100%;
    font-size: 0.8rem;
    line-height: 1.35;
    padding: 0.62rem 0.75rem;
  }

  .alone-section {
    padding: 4rem 0;
  }

  .alone-track {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
  }

  .alone-tab {
    min-width: unset;
    width: 100%;
  }

  .alone-tab--active::before {
    display: none;
  }

  .alone-pain-card {
    max-width: 100%;
    min-width: 100%;
  }

  .alone-ctas .btn-hm-primary,
  .alone-secondary-cta {
    min-width: 100%;
  }

  .solution-section {
    padding: 4rem 0 3.75rem;
  }

  .solution-title {
    font-size: 1.65rem;
  }

  .solution-tabs {
    width: 100%;
    max-width: 330px;
  }

  .solution-tab {
    flex: 1;
    padding: 0.65rem 0.35rem;
    font-size: 0.8rem;
  }

  .solution-body-title {
    font-size: 1.5rem;
  }

  .solution-points li {
    font-size: 0.92rem;
  }

  .solution-image-wrap,
  .solution-image {
    max-width: 100%;
  }

  .principles-section {
    padding: 3.5rem 0;
  }

  .principles-title {
    font-size: 1.65rem;
    margin-bottom: 1.35rem;
  }

  .principle-group-title {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .principle-list li {
    padding-left: 1.35rem;
  }

  .principle-list li::before {
    width: 9px;
    height: 9px;
    top: 0.35rem;
  }

  .principle-point-title {
    font-size: 0.98rem;
  }

  .principle-point-desc {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .step-plan-section {
    padding: 3.7rem 0;
  }

  .step-plan-card {
    border-radius: 18px;
    padding: 1.2rem 1rem;
  }

  .step-plan-card-title {
    font-size: 1.65rem;
  }

  .step-plan-card-sub {
    font-size: 0.8rem;
  }

  .step-plan-card-lead {
    font-size: 1rem;
  }

  .step-plan-step-tag {
    font-size: 0.68rem;
  }

  .step-plan-step-title {
    font-size: 0.8rem;
  }

  .step-plan-step-desc {
    font-size: 0.75rem;
  }

  .step-plan-primary-btn {
    font-size: 0.9rem;
  }

  .step-plan-secondary-btn {
    font-size: 0.88rem;
  }

  .partner-section {
    padding: 3.6rem 0 4.5rem;
  }

  .partner-title {
    font-size: 1.95rem;
  }

  .partner-subtext {
    font-size: 0.98rem;
    margin: 0.9rem auto 1.3rem;
  }

  .partner-label {
    font-size: 0.82rem;
  }

  .partner-card {
    padding: 1rem;
  }

  .partner-name {
    font-size: 1rem;
  }

  .partner-control {
    display: none;
  }

  .partner-indicators {
    bottom: -34px;
  }

  .spread-section {
    padding: 4.3rem 0 4rem;
  }

  .spread-title {
    font-size: 1.75rem;
  }

  .spread-copy {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 1rem;
  }

  .spread-highlight {
    font-size: 1.04rem;
    line-height: 1.45;
    margin-top: 1rem;
  }

  .spread-copy--small {
    font-size: 0.95rem;
    margin-top: 0.95rem;
  }

  .spread-btn {
    margin-top: 1.35rem;
    font-size: 1rem;
    min-width: 200px;
    padding: 0.72rem 1.4rem;
  }

  .shop-section {
    padding: 3.3rem 0 3.8rem;
  }

  .shop-title {
    font-size: 1.55rem;
  }

  .shop-subtitle {
    font-size: 1rem;
  }

  .shop-product-image {
    border-radius: 12px;
  }

  .shop-product-name {
    font-size: 0.88rem;
  }

  .shop-product-price {
    font-size: 0.92rem;
  }

  .shop-control {
    display: none;
  }

  .shop-carousel .carousel-item .row {
    --bs-gutter-y: 1.6rem;
  }
}
