*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #1f2933;
  background-color: #ffffff;
}

.hs-site-inner,
.hs-section-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
}

@media (min-width: 768px) {
  .hs-site-inner,
  .hs-section-inner {
    padding: 2rem 1.5rem;
  }
}

.hs-site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.hs-site-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.hs-logo img {
  display: block;
  height: 40px;
  width: auto;
}

.hs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.9rem;
}

.hs-nav a {
  text-decoration: none;
  color: #1f2933;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.hs-nav a:hover,
.hs-nav a:focus-visible {
  background-color: rgba(19, 75, 138, 0.06);
  outline: none;
}

.hs-nav-cta {
  background-color: #134b8a;
  color: #ffffff;
}

.hs-hero {
  padding: 2.5rem 0 2.25rem;
}

.hs-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr);
  align-items: center;
  gap: 2rem;
}

.hs-hero-copy h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 0.75rem;
}

.hs-hero-copy p {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.hs-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background-color: #134b8a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(19, 75, 138, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.hs-primary-btn:hover,
.hs-primary-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(19, 75, 138, 0.3);
  background-color: #155091;
  outline: none;
}

.hs-hero-image img {
  max-width: 100%;
  border-radius: 1.25rem;
  display: block;
}

@media (min-width: 768px) {
  .hs-hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

.hs-section {
  padding: 2rem 0;
}

.hs-section h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.6rem;
}

.hs-testimonials {
  width: 100%;
  background-color: #134b8a;
  color: #ffffff;
}

.hs-testimonials-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.hs-testimonials-header {
  text-align: center;
  margin-bottom: 2rem;
}

.hs-testimonials-header h2 {
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

.hs-testimonials-header p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.hs-testimonials-slider {
  position: relative;
  overflow: hidden;
  min-height: 160px;
}

.hs-testimonial-slide {
  display: none;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.25rem 1rem;
}

.hs-testimonial-slide.is-active {
  display: block;
}

.hs-testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.hs-testimonial-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.hs-testimonial-meta {
  font-size: 0.85rem;
  opacity: 0.85;
}

.hs-slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hs-slider-control:hover,
.hs-slider-control:focus-visible {
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  transform: translateY(-50%) scale(1.05);
}

.hs-slider-prev {
  left: 0.5rem;
}

.hs-slider-next {
  right: 0.5rem;
}

.hs-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
}

.hs-slider-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
}

.hs-slider-dot.is-active {
  background: #ffffff;
}

@media (min-width: 768px) {
  .hs-testimonials-inner {
    padding: 3rem 2rem;
  }

  .hs-testimonial-quote {
    font-size: 1.25rem;
  }

  .hs-slider-prev {
    left: -0.75rem;
  }

  .hs-slider-next {
    right: -0.75rem;
  }
}

.hs-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.5rem 0 2rem;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Make the header/nav bar fixed at the top */
#header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent;
}

/* Keep your original spacing and background behavior */
#header #header-wrap {
  padding: 0.4rem 0;
  background-size: cover;
  background-position: center;
}

/* Ensure flex layout for logo + nav */
#header .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Push the main content down so it doesn't hide under the fixed header */
#content {
  padding-top: 8rem !important;
}
#logo img {
  max-height: 52px;
  height: auto;
  width: auto;
  display: block;
}

.primary-menu .menu-container {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.primary-menu .menu-item {
  position: relative;
}

.primary-menu .menu-item > .menu-link {
  display: block;
  padding: 0.25rem 0.75rem;
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.primary-menu .menu-item > .menu-link div {
  display: inline-block;
}

.primary-menu .menu-item > .menu-link:hover,
.primary-menu .menu-item > .menu-link:focus-visible {
  opacity: 0.85;
}

.primary-menu .sub-menu-container {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(0, 0, 0, 0.85);
  padding: 0.5rem 0;
  list-style: none;
  display: none;
  z-index: 50;
}

.primary-menu .menu-item:hover > .sub-menu-container {
  display: block;
}

.primary-menu .sub-menu-container .menu-link {
  display: block;
  padding: 0.35rem 0.85rem;
  text-decoration: none;
  color: #ffffff;
}

@media (max-width: 991.98px) {
  #header .header-row {
    flex-wrap: wrap;
  }

  .primary-menu .menu-container {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
}

.section.dark {
  color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.section.dark h1,
.section.dark h2,
.section.dark h3,
.section.dark h4,
.section.dark h5,
.section.dark h6,
.section.dark p,
.section.dark span,
.section.dark div {
  color: #ffffff;
}

.section.dark.center {
  text-align: center;
}

.section.dark.testimonials-slider .testi-content p {
  color: #ffffff;
}

.section.dark.testimonials-slider .testi-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 2.5rem;
}

.section.dark.testimonials-slider .testi-meta,
.section.dark.testimonials-slider .testi-meta span {
  color: #ffffff;
}

.section.dark.center .row,
.section.dark.center .col-md-6,
.section.dark.center .col-md-5,
.section.dark.center .col-md-7 {
  text-align: center;
}

.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section .heading-block,
.section .fancy-title,
.section .col-md-6,
.section .col-md-4,
.section .col-md-3 {
}

.section .heading-block + .fancy-title,
.section .heading-block + p,
.section .heading-block + .row,
.section .fancy-title + p,
.section .fancy-title + .row {
}

.section.dark.testimonials-slider {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section.dark.testimonials-slider .slider-wrap {
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

[class^="col-"],
[class*=" col-"] {
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.3333%; }
  .col-md-5 { width: 41.6667%; }
  .col-md-6 { width: 50%; }
  .col-md-7 { width: 58.3333%; }
  .col-md-8 { width: 66.6667%; }
  .col-md-9 { width: 75%; }
  .col-md-12 { width: 100%; }
}

@media (min-width: 992px) {
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.3333%; }
  .col-lg-5 { width: 41.6667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.3333%; }
  .col-lg-8 { width: 66.6667%; }
  .col-lg-9 { width: 75%; }
  .col-lg-12 { width: 100%; }
}

.primary-menu .menu-item > .menu-link {
  color: #ffffff;
}

h3, .section h3 {
  font-weight: normal !important;
}

.section.dark.testimonials-slider .testi-content p {
  font-weight: bold !important;
}

h1, .section h1 {
  text-align: center !important;
}

p, h1, h2, h3, h4, h5, h6 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.section p,
.section h1,
.section h2,
.section h3,
.section h4,
.section h5,
.section h6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.section:first-of-type video,
.section:first-of-type iframe {
  margin-top: 2.5rem !important;
  display: block;
}

h1, .section h1 {
  font-size: 2.5rem !important;
}

h3, .section h3 {
  font-size: 1.25rem !important;
}

h4, .section h4 {
  font-size: 1.1rem !important;
}

body > .section:first-of-type {
  padding-top: 4rem !important;
}

#content {
  padding-top: 8rem !important;
}

h3, .section h3 {
  font-size: 1.1rem !important;
}

a.button,
button,
input[type="submit"],
input[type="button"] {
  display: inline-block;
  background-color: #0056b3;
  color: #ffffff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

a.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background-color: #0073e6;
  transform: translateY(-2px);
}

a.button:active,
button:active,
input[type="submit"]:active,
input[type="button"]:active {
  background-color: #004a99;
  transform: translateY(0);
}

img + p,
img + h1,
img + h2,
img + h3,
img + h4,
img + h5,
img + h6,
video + p,
video + h1,
video + h2,
video + h3,
video + h4,
video + h5,
video + h6 {
  text-align: center !important;
}

a.button {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

a.button {
  display: inline-block !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.section img ~ a.button,
.section video ~ a.button {
  display: block !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.section img ~ a.button,
.section video ~ a.button {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}

.section a.button {
  display: inline-block;
}

.section img ~ a.button,
.section video ~ a.button {
  display: inline-block;
  width: auto;
}

[class*="col-"] img + a.button,
[class*="col-"] video + a.button,
[class*="col-"] .hs-lite-video + a.button {
  display: block;
  width: 100%;
  text-align: center;
}
.section {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.content-wrap {
  padding-bottom: 4rem !important;
}

.content-wrap a.button-phone {
   display: block !important;
   width: 100% !important;
  max-width: none !important;
   margin: 0 0 3rem !important;
   text-align: center;
}

img[src$="FrankLean.jpg"] {
  margin-top: 3rem !important;
}

.testimonial {
  font-style: italic !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 900px;
  line-height: 1.6;
  color: #fff !important;
}

.testimonial p {
  margin: 2rem auto !important;
}

.testimonial .testi-meta,
.testimonial .testi-author {
  font-style: normal !important;
  font-weight: 600;
  margin-top: 1rem;
  display: block;
}

.section.dark.testimonials-slider .testi-content {
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 2rem 3rem !important;
  text-align: center;
}

.section.dark.testimonials-slider .testi-content p {
  font-style: italic !important;
  line-height: 1.7;
  margin: 0 auto 1.5rem !important;
  color: #ffffff !important;
}

.section.dark.testimonials-slider .testi-meta,
.section.dark.testimonials-slider .testi-meta span {
  font-style: normal !important;
  font-weight: 600;
  margin-top: 1rem;
  color: #ffffff !important;
}

.section.dark.center > h3.mx-5.px-5 {
  max-width: 720px;
  margin: 0 auto 1.5rem !important;
  padding: 2rem 3rem !important;
  font-style: italic;
  line-height: 1.7;
  color: #ffffff;
  text-align: center;
}

.section.dark.testimonials-slider .testi-content p {
  font-family: inherit !important;
  font-style: italic !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  color: #ffffff !important;
}

.section.dark.testimonials-slider .testi-content p {
  font-size: 1.25rem !important;
}

.virtual-coaching-tagline {
  text-align: center !important;
  font-size: 1.5rem !important;
  margin-top: 0.5rem !important;
  margin-bottom: 0 !important;
  font-weight: 500;
}

a.button,
button,
input[type="submit"],
input[type="button"] {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

[class*="col-"] > img + a.button,
[class*="col-"] > video + a.button {
  display: block;
  width: 100%;
  text-align: center;
}

  list-style: none;
}

#section-pricing .pricing-features li {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

#section-pricing .pricing-action .btn,
#section-pricing .pricing-action .button {
  margin-top: 0.5rem;
}

#section-pricing {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

#section-pricing .pricing-box {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#section-pricing .pricing-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

#section-pricing .pricing-title span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

#section-pricing .col-md-4:nth-of-type(1) .pricing-title span { color: #0d6efd; }
#section-pricing .col-md-4:nth-of-type(2) .pricing-title span { color: #198754; }
#section-pricing .col-md-4:nth-of-type(3) .pricing-title span { color: #d63384; }

#section-pricing .pricing-title h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

#section-pricing .pricing-price {
  margin: 0.75rem 0 1.25rem;
  font-size: 2.1rem;
  font-weight: 600;
}

#section-pricing .pricing-price .price-unit {
  font-size: 1.1rem;
  vertical-align: super;
}

#section-pricing .pricing-price .price-tenure {
  display: inline-block;
  margin-left: 0.15rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}

#section-pricing .pricing-features ul {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

#section-pricing .pricing-features li {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

#section-pricing .pricing-action .button,
#section-pricing .pricing-action .btn {
  margin-top: 0.5rem;
}


/* Center pricing features and action buttons */
#section-pricing .pricing-features ul,
#section-pricing .pricing-features li {
  text-align: center !important;
}

#section-pricing .pricing-action {
  text-align: center !important;
}

#section-pricing .pricing-action .btn,
#section-pricing .pricing-action .button {
  display: inline-block;
}

/* Center plan names and prices inside pricing boxes, keep descriptors left */
#section-pricing .pricing-title span {
  text-align: left !important;
  display: block;
}

#section-pricing .pricing-title h3,
#section-pricing .pricing-price {
  text-align: center !important;
}


/* Vertically center content in designated two-column rows */
.row.row-center {
  align-items: center;
}

/* Extra breathing room for Hypnosis vs HypNoSmoke compare band */






/* Restore blue gradient backgrounds for all blue bands */
.band,
.band--compare,
.band--testimonials,
.band--quote,
.band--slogan {
  background-image: url(../images/hypnosmoke/blue_gradient.png);
  background-color: #004070;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
}


.band--compare h3, .band--compare p {
  line-height: 1.15;
}


.band--compare h3,
.band--compare p {
  line-height: 1.0;
}

/* Canonical layout for Hypnosis vs Coaching band (reduced vertical text spacing 50%) */
.band--compare {
  background-color: #004070;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.band--compare p {
  line-height: 1.0;
  margin-bottom: 0.5rem;
}

.band--compare h3 {
  font-size: 1rem !important;    /* slightly smaller = fewer wraps */
  text-wrap: balance;            /* helps avoid ugly single-word orphans where supported */
}

/* ---------------------------------------------------
   Normalize side margins for non-blue two-column sections
   and the Frank credentials section to match blue bands
   --------------------------------------------------- */

.container.clearfix.center,
#frank-credentials {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 991.98px) {
  .container.clearfix.center,
  #frank-credentials {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .container.clearfix.center,
  #frank-credentials {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ---------------------------------------------------
   Compact footer: smaller logo/text, reduced height,
   all information in left column only
   --------------------------------------------------- */

#footer .footer-widgets-wrap {
  padding-top: 24px;
  padding-bottom: 24px;
}

/* Make logo and footer content more compact */
#footer .widget img {
  max-width: 140px;
  height: auto;
}

#footer,
#footer .widget,
#footer .widget p,
#footer .widget li,
#footer .widget a {
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Copyrights / bottom bar compact */
#copyrights {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 0.75rem;
  line-height: 1.4;
}

/* Ensure empty middle/right columns remain visually flat */
#footer .footer-widgets-wrap .col-md-4:nth-child(2),
#footer .footer-widgets-wrap .col-md-4:nth-child(3),
#footer .footer-widgets-wrap .col-lg-4:nth-child(2),
#footer .footer-widgets-wrap .col-lg-4:nth-child(3) {
  /* no extra padding beyond row defaults */
}

/* ---------------------------------------------------
   HypNoSmoke footer layout: blue background, compact
   --------------------------------------------------- */

#footer {
  background-image: url(../images/hypnosmoke/blue_gradient.png);
  background-color: #004070;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

#footer .footer-widgets-wrap {
  padding-top: 24px;
  padding-bottom: 24px;
}

#footer .footer-logo {
  max-width: 160px;
  height: auto;
}

#footer .widget,
#footer .widget p,
#footer .widget a,
#footer .widget address,
#footer .widget abbr {
  font-size: 0.85rem;
  line-height: 1.4;
}

#footer .widget p {
  margin-bottom: 0.5rem;
}

#footer .copyright-links a {
  color: #ffffff;
  text-decoration: underline;
}

#footer .copyright-links a:hover {
  text-decoration: none;
}

#footer a {
  color: #ffffff;
}

/* ---------------------------------------------------
   HypNoSmoke footer refinements: centered logo/text,
   tighter spacing, blue background
   --------------------------------------------------- */
#footer {
  background-image: url(../images/hypnosmoke/blue_gradient.png);
  background-color: #004070;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}
#footer .footer-widgets-wrap {
  padding-top: 16px;
  padding-bottom: 16px;
}
#footer .footer-logo {
  max-width: 140px;
  height: auto;
}
#footer p,
#footer address,
#footer a {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #ffffff;
}
#footer .copyright-links a {
  color: #ffffff;
  text-decoration: underline;
}
#footer .copyright-links a:hover {
  text-decoration: none;
}

/* ---------------------------------------------------
   HypNoSmoke: remove excess white space above footer
   --------------------------------------------------- */
#content .content-wrap {
  padding-bottom: 0;
}

#frank-credentials {
  margin-bottom: 1.5rem;
}

/* ---------------------------------------------------
   HypNoSmoke: stronger fix for excess white space
   just above the footer
   --------------------------------------------------- */
#content .content-wrap {
  padding-bottom: 0 !important;
}

#frank-credentials {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#frank-credentials .row {
  margin-bottom: 0 !important;
}

#frank-credentials h3:last-child,
#frank-credentials h4:last-child {
  margin-bottom: 0 !important;
}

#footer {
  margin-top: 0 !important;
}

/* ---------------------------------------------------
   HypNoSmoke: pricing boxes refinement
   Center top-line descriptors, enlarge and bold titles
   --------------------------------------------------- */
.pricing-box .pricing-title h3,
.pricing-box .pricing-title h4 {
  text-align: center;
  margin: 0;
  padding: 0;
}

.pricing-box .pricing-title h4 {
  font-weight: 700;
  font-size: 110%;
}

/* ---------------------------------------------------
   HypNoSmoke: pricing boxes refinement v2
   Center top-line descriptors (span), enlarge and bold h3
   --------------------------------------------------- */
#section-pricing .pricing-box .pricing-title span {
  display: block;
  text-align: center;
}

#section-pricing .pricing-box .pricing-title h3 {
  text-align: center;
  font-weight: 700;
  font-size: 110%;
}

/* ---------------------------------------------------
   HypNoSmoke: pricing boxes refinement v3
   Force center alignment and visible size change
   --------------------------------------------------- */
#section-pricing .pricing-box .pricing-title span {
  display: block;
  text-align: center !important;
}

#section-pricing .pricing-box .pricing-title h3 {
  text-align: center !important;
  font-weight: 700;
  font-size: 1.1em;
}

/* ---------------------------------------------------
   HypNoSmoke: pricing boxes bottom spacing refinement
   Reduce space between last <li> and bottom button/link
   --------------------------------------------------- */
#section-pricing .pricing-box .pricing-features {
  margin-bottom: 0.5rem !important;
  padding-bottom: 0 !important;
}

#section-pricing .pricing-box .pricing-action-area {
  margin-top: 0.5rem !important;
}

/* ---------------------------------------------------
   HypNoSmoke: pricing boxes bottom spacing refinement v2
   Reduce space between last <li> and bottom button/link
   --------------------------------------------------- */
#section-pricing .pricing-box .pricing-features ul {
  margin-bottom: 0.5rem !important;
}

#section-pricing .pricing-box .pricing-features li:last-child {
  margin-bottom: 0.25rem !important;
}

#section-pricing .pricing-box .pricing-action {
  margin-top: 0.25rem !important;
}

#section-pricing .pricing-box .pricing-action .btn,
#section-pricing .pricing-box .pricing-action .button {
  margin-top: 0.25rem !important;
}

/* === Final hamburger + mobile nav === */

/* default (desktop-first) */
#primary-menu-trigger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  cursor: pointer;
}

#primary-menu-trigger .svg-trigger {
  width: 28px;
  height: 28px;
  display: block;
  overflow: visible;
}

#primary-menu-trigger .svg-trigger path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* mobile */
@media (max-width: 991.98px) {
  #primary-menu-trigger {
    display: flex;
  }

  nav.primary-menu {
    display: none !important;
    width: 100%;
    margin-top: 0.75rem;
  }

  nav.primary-menu.is-open {
    display: block !important;
  }

  .primary-menu .menu-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

/* desktop: ensure nav is visible */
@media (min-width: 992px) {
  nav.primary-menu {
    display: flex;
  }
}

/* Lightweight self-hosted video loader */
.hs-lite-video {
  position: relative;
  width: 100%;
  margin: 0;
  background: #000;
  cursor: pointer;
}

.hs-lite-video::before {
  content: "";
  display: block;
  padding-bottom: 56.25%; /* 16:9 */
}

.hs-lite-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.8);
}

.hs-lite-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 48px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.hs-lite-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #fff;
}

.hs-lite-video:hover .hs-lite-play {
  background: rgba(0, 0, 0, 0.7);
}

