:root {
  --hshh-blue: #72b3ea;
  --hshh-navy: #335d83;
  --hshh-green: #6cc3b3;
  --hshh-bg: #ffffff;
  --hshh-card: #f8f8f8;
  --hshh-border: rgba(0, 0, 0, 0.08);
  --hshh-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.sym-hshh {
  background: var(--hshh-bg);
  color: #111;
}
.sym-hshh__topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--hshh-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
}
.sym-hshh__topbar-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.9;
}
.sym-hshh__topbar-link:hover {
  opacity: 1;
  text-decoration: underline;
}
.sym-hshh__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.sym-hshh__brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
}

.sym-hshh__brand-logo {
  display: block;
  height: 26px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
}
.sym-hshh__container {
  max-width: 940px;
  margin: 0 auto;
  padding: 24px 18px 56px;
}
.sym-hshh__h1 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.15;
  color: var(--hshh-navy);
}
.sym-hshh__sub {
  margin: 0 0 18px;
  color: #4b5563;
}
.sym-hshh-card {
  background: var(--hshh-card);
  border: 1px solid var(--hshh-border);
  border-radius: 14px;
  box-shadow: var(--hshh-shadow);
  overflow: hidden;
}
.sym-hshh-card--featured {
  padding: 24px;
}
.sym-hshh-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hshh-blue);
  color: #08304e;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 12px;
}
.sym-hshh-featured__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.sym-hshh-featured__media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sym-hshh-featured__img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.sym-hshh-banner {
  background: var(--hshh-navy);
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
/* Featured card actions: allow multiple buttons side-by-side on larger screens */
.sym-hshh-featured__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.sym-hshh-featured__actions .sym-hshh-btn {
  width: 100%;
}
.sym-hshh-featured__actions .sym-hshh-btn--secondary {
  margin-top: 0;
}

.sym-hshh__h2 {
  margin: 0 0 6px;
  font-size: 22px;
  color: var(--hshh-navy);
}
.sym-hshh__subtitle {
  margin: 0 0 12px;
  color: #374151;
}
.sym-hshh-icons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 16px 0 20px;
}
.sym-hshh-icon {
  display: flex;
  gap: 14px;
  align-items: center;
  color: #1f2937;
  background: #fff;
  border: 1px solid var(--hshh-border);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 500;
}
.sym-hshh-icon__svg {
  font-size: 28px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sym-hshh-bullets {
  margin: 0 0 14px;
  padding-left: 18px;
  color: #111;
}
.sym-hshh-bullets li {
  margin: 6px 0;
}
.sym-hshh-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 14px;
}
.sym-hshh-price__main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sym-hshh-price__value {
  font-weight: 800;
  color: #111;
}
.sym-hshh-price__duration {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}
.sym-hshh-price__save {
  background: var(--hshh-green);
  color: #08304e;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}
.sym-hshh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.sym-hshh-btn--primary {
  background: var(--hshh-green);
  color: #08304e;
  transition:
    background 0.2s ease,
    transform 0.15s ease;
}
.sym-hshh-btn--primary:hover,
.sym-hshh-btn--primary:focus {
  background: var(--hshh-navy);
  color: #fff !important;
  transform: translateY(-1px);
}
.sym-hshh-btn--secondary {
  background: #fff;
  border-color: var(--hshh-border);
  color: #111;
}
.sym-hshh-btn--secondary:hover {
  background: var(--hshh-navy);
  border-color: var(--hshh-navy);
  color: #fff;
}
.sym-hshh-btn--ghost {
  background: #fff;
  border-color: var(--hshh-border);
  color: #111;
}
.sym-hshh-btn--ghost:hover {
  background: var(--hshh-navy);
  border-color: var(--hshh-navy);
  color: #fff;
}
.sym-hshh-footnote {
  margin: 12px 0 0;
  color: #6b7280;
  font-size: 13px;
}

/* ==========================================================================
   Pricing stack — subscribe row dominant, one-off secondary
   ========================================================================== */

.sym-hshh-pricing-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 8px;
}

.sym-hshh-pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 14px;
  padding: 16px 18px;
  text-decoration: none;
  border: 1px solid var(--hshh-border);
  background: #fff;
  color: #111;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.2s ease;
}

.sym-hshh-pricing-row:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.sym-hshh-pricing-row--primary {
  background: var(--hshh-green);
  border-color: var(--hshh-green);
  color: #08304e;
  padding: 20px 22px;
}

.sym-hshh-pricing-row--primary:hover,
.sym-hshh-pricing-row--primary:focus {
  background: var(--hshh-navy);
  color: #fff;
}

.sym-hshh-pricing-row--secondary {
  background: #fff;
}

.sym-hshh-pricing-row__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}

.sym-hshh-pricing-row__label {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
}

.sym-hshh-pricing-row--primary .sym-hshh-pricing-row__label {
  font-size: 18px;
}

.sym-hshh-pricing-row__sub {
  font-size: 12px;
  opacity: 0.85;
}

.sym-hshh-pricing-row__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
}

.sym-hshh-pricing-row__amount {
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.sym-hshh-pricing-row__amount--small {
  font-size: 18px;
  font-weight: 700;
  opacity: 0.75;
}

.sym-hshh-pricing-row__amount .woocommerce-Price-currencySymbol {
  font-weight: 800;
}

.sym-hshh-pricing-row__period {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
}

.sym-hshh-price__save--standalone {
  align-self: flex-start;
}

.sym-hshh-pricing-stack--compact .sym-hshh-pricing-row {
  padding: 12px 14px;
}

.sym-hshh-pricing-stack--compact .sym-hshh-pricing-row--primary {
  padding: 14px 16px;
}

.sym-hshh-pricing-stack--compact .sym-hshh-pricing-row__amount {
  font-size: 22px;
}

.sym-hshh-pricing-stack--compact .sym-hshh-pricing-row--primary .sym-hshh-pricing-row__label {
  font-size: 15px;
}

.sym-hshh-pricing-stack--compact .sym-hshh-pricing-row__amount--small {
  font-size: 15px;
}

.sym-hshh-btn--learnmore {
  align-self: flex-start;
  margin-top: 4px;
  padding: 8px 14px;
  font-size: 13px;
}

@media (max-width: 520px) {
  .sym-hshh-pricing-row {
    padding: 14px 14px;
  }
  .sym-hshh-pricing-row--primary {
    padding: 16px 16px;
  }
  .sym-hshh-pricing-row__amount {
    font-size: 24px;
  }
  .sym-hshh-pricing-row--primary .sym-hshh-pricing-row__label {
    font-size: 16px;
  }
}

/* ==========================================================================
   Treatment Timeline ("Why 3 months?")
   ========================================================================== */

.sym-hshh-timeline {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f1fc 100%);
  border: 1px solid #d0e3f7;
  border-radius: 14px;
  padding: 20px 22px 22px;
  margin: 16px 0 8px;
}
.sym-hshh-timeline__title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--hshh-navy);
}
.sym-hshh-timeline__intro {
  margin: 0 0 18px;
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
}

/* Vertical line + dots */
.sym-hshh-timeline__steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sym-hshh-timeline__step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 8px 0;
}

/* Fade-in stagger for each step */
.sym-hshh-timeline__step {
  animation: timelineStepIn 0.5s ease both;
}
.sym-hshh-timeline__step:nth-child(1) {
  animation-delay: 0.1s;
}
.sym-hshh-timeline__step:nth-child(2) {
  animation-delay: 0.3s;
}
.sym-hshh-timeline__step:nth-child(3) {
  animation-delay: 0.5s;
}

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

.sym-hshh-timeline__month {
  flex-shrink: 0;
  min-width: 76px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--hshh-navy);
  background: #fff;
  border: 1px solid #d0e3f7;
  border-radius: 8px;
  padding: 6px 10px;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.sym-hshh-timeline__step:last-child .sym-hshh-timeline__month {
  background: var(--hshh-navy);
  color: #fff;
  border-color: var(--hshh-navy);
}

.sym-hshh-timeline__desc {
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
  padding-top: 4px;
}

.sym-hshh-other {
  margin-top: 26px;
}
.sym-hshh__h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #111;
}
.sym-hshh-all {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}
.sym-hshh-card--compact {
  padding: 14px;
}
.sym-hshh-compact__grid {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  align-items: start;
}
.sym-hshh-compact__img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--hshh-border);
  border-radius: 12px;
}
.sym-hshh-compact__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.sym-hshh__h4 {
  margin: 0;
  font-size: 15px;
  color: var(--hshh-navy);
}
.sym-hshh-tag {
  display: inline-flex;
  background: var(--hshh-blue);
  color: #08304e;
  border: 1px solid var(--hshh-border);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.sym-hshh__subtitle--small {
  font-size: 13px;
  color: #4b5563;
  margin-top: 6px;
}
.sym-hshh-bullets--small {
  font-size: 13px;
  color: #111;
  margin-top: 10px;
}
.sym-hshh-compact__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.sym-hshh-price--small .sym-hshh-price__value {
  font-weight: 800;
}
.sym-hshh-price--small .sym-hshh-price__duration {
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
}
.sym-hshh-compact__buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sym-hshh-compact__buttons .sym-hshh-btn {
  flex: 1 1 0;
  min-width: 0;
  padding: 10px 14px;
  font-size: 13px;
  text-align: center;
  white-space: nowrap;
}
.sym-hshh-compact__buttons .sym-hshh-btn--secondary {
  margin-top: 0;
}
.sym-hshh-msg {
  background: #fff;
  border: 1px solid var(--hshh-border);
  border-radius: 12px;
  padding: 14px;
  color: #111;
}

/* Modal */
.sym-hshh-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 1000;
}
.sym-hshh-modal[aria-hidden="false"] {
  display: flex;
}
.sym-hshh-modal__card {
  max-width: 680px;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  padding: 18px;
}
.sym-hshh-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.sym-hshh-modal__title {
  margin: 0;
  font-size: 16px;
  color: var(--hshh-navy);
}
.sym-hshh-modal__close {
  background: #fff;
  border: 1px solid var(--hshh-border);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 800;
}
.sym-hshh-modal__body {
  color: #111;
  max-height: 55vh;
  overflow: auto;
  white-space: pre-wrap;
}

@media (min-width: 860px) {
  .sym-hshh-featured__grid {
    grid-template-columns: minmax(0, 380px) 1fr;
    align-items: center;
  }
  .sym-hshh-featured__img {
    max-width: 380px;
  }
  .sym-hshh-icons {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 520px) {
  .sym-hshh__container {
    padding: 18px 14px 44px;
  }
  .sym-hshh__h1 {
    font-size: 26px;
  }
  .sym-hshh-card--featured {
    padding: 16px;
  }
  .sym-hshh-featured__img {
    max-width: 320px;
  }
  .sym-hshh-compact__grid {
    grid-template-columns: 64px 1fr;
  }
  .sym-hshh-compact__img {
    width: 64px;
    height: 64px;
  }
  .sym-hshh-compact__cta {
    gap: 10px;
  }
  .sym-hshh-compact__buttons {
    width: 100%;
  }
  .sym-hshh-compact__buttons .sym-hshh-btn {
    flex: 1;
    min-width: 140px;
  }
  .sym-hshh__topbar {
    padding: 12px 12px;
  }
  .sym-hshh__brand-badge {
    padding: 5px 8px;
    border-radius: 9px;
  }
  .sym-hshh__brand-logo {
    height: 20px;
    max-width: 150px;
  }
}

/* ==============================
   Gravity Forms (Form 13) Skin
   Scoped to #gform_wrapper_13
================================= */

#gf_13 {
  scroll-margin-top: 96px; /* helps anchor jumps with sticky headers */
}

#gform_wrapper_13.gform_wrapper {
  max-width: 940px;
  margin: clamp(24px, 7vh, 88px) auto 56px; /* just below the fold */
  padding: 18px;
  background: var(--hshh-card);
  border: 1px solid var(--hshh-border);
  border-radius: 16px;
  box-shadow: var(--hshh-shadow);
}

#gform_wrapper_13 .gform-body {
  padding: 2px;
}

#gform_wrapper_13 .gf_progressbar_wrapper {
  margin: 0 0 18px;
}

#gform_wrapper_13 .gf_progressbar_title {
  margin: 0 0 10px;
  font-weight: 800;
  color: var(--hshh-navy);
}

#gform_wrapper_13 .gf_progressbar {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.08);
}

#gform_wrapper_13 .gf_progressbar_percentage {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hshh-green), var(--hshh-blue));
}

#gform_wrapper_13 .gf_progressbar_percentage span {
  display: none;
}

/* Fields */
#gform_wrapper_13 .gfield {
  margin: 0 0 16px;
}

#gform_wrapper_13 .gfield_label,
#gform_wrapper_13 legend.gfield_label {
  margin-bottom: 10px;
  font-weight: 800;
  color: #111;
}

#gform_wrapper_13 .gfield_required_text {
  font-weight: 700;
  opacity: 0.85;
}

#gform_wrapper_13 .gfield_description {
  margin-top: 6px;
  color: #6b7280;
}

#gform_wrapper_13 input[type="text"],
#gform_wrapper_13 input[type="email"],
#gform_wrapper_13 input[type="tel"],
#gform_wrapper_13 textarea,
#gform_wrapper_13 select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--hshh-border);
  background: #fff;
  padding: 12px 12px;
  font-size: 16px;
  line-height: 1.35;
  color: #111;
}

#gform_wrapper_13 textarea {
  min-height: 120px;
  resize: vertical;
}

#gform_wrapper_13 input[type="text"]:focus,
#gform_wrapper_13 input[type="email"]:focus,
#gform_wrapper_13 input[type="tel"]:focus,
#gform_wrapper_13 textarea:focus,
#gform_wrapper_13 select:focus {
  outline: none;
  border-color: rgba(114, 179, 234, 0.7);
  box-shadow: 0 0 0 4px rgba(114, 179, 234, 0.25);
}

/* Choice lists as cards */
#gform_wrapper_13 .gfield_radio .gchoice,
#gform_wrapper_13 .gfield_checkbox .gchoice,
#gform_wrapper_13 .ginput_container_consent {
  background: #fff;
  border: 1px solid var(--hshh-border);
  border-radius: 12px;
  padding: 10px 12px;
}

#gform_wrapper_13 .gfield_radio .gchoice + .gchoice,
#gform_wrapper_13 .gfield_checkbox .gchoice + .gchoice {
  margin-top: 10px;
}

#gform_wrapper_13 .gfield_radio .gchoice,
#gform_wrapper_13 .gfield_checkbox .gchoice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

#gform_wrapper_13 .gfield-choice-input {
  margin-top: 2px;
}

/* Footer buttons */
#gform_wrapper_13 .gform_page_footer,
#gform_wrapper_13 .gform-page-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

#gform_wrapper_13 .gform_next_button,
#gform_wrapper_13 .gform_button {
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 800;
  border: 1px solid transparent;
  background: var(--hshh-navy);
  color: #fff;
}

#gform_wrapper_13 .gform_next_button:hover,
#gform_wrapper_13 .gform_button:hover {
  filter: brightness(0.95);
}

#gform_wrapper_13 .gform_previous_button,
#gform_wrapper_13 .gform_save_link {
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 800;
  border: 1px solid var(--hshh-border);
  background: #fff;
  color: #111;
}

#gform_wrapper_13 .gform_save_link {
  padding-left: 22px !important;
  padding-right: 22px !important;
}

#gform_wrapper_13 .gform_previous_button:hover,
#gform_wrapper_13 .gform_save_link:hover {
  background: var(--hshh-navy);
  border-color: var(--hshh-navy);
  color: #fff;
}

@media (max-width: 640px) {
  #gform_wrapper_13.gform_wrapper {
    padding: 14px;
    border-radius: 14px;
  }
}

/* ======================
   Reject Card (injected by JS)
========================= */
.hshh-reject-card {
  background: #f9f5f0;
  border: 1px solid #e5ddd4;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  max-width: 560px;
  margin: 24px auto 0;
}
.hshh-reject-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: #c0392b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hshh-reject-card h3 {
  color: var(--hshh-navy);
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 16px;
}
.hshh-reject-card p {
  color: #374151;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.hshh-reject-card .hshh-reject-note {
  font-size: 13px;
  color: #8b7e74;
  font-style: italic;
  margin-bottom: 24px;
}
.hshh-reject-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.hshh-reject-actions .hshh-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  text-align: center;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #111;
  cursor: pointer;
  transition: all 0.15s ease;
}
.hshh-reject-actions .hshh-btn-primary {
  background: var(--hshh-navy);
  color: #fff;
  border-color: var(--hshh-navy);
}
.hshh-reject-actions .hshh-btn-primary:hover {
  filter: brightness(0.9);
}
.hshh-reject-actions .hshh-btn-secondary {
  background: var(--hshh-green);
  color: #08304e;
  border-color: var(--hshh-green);
}
.hshh-reject-actions .hshh-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.hshh-reject-actions .hshh-btn-link {
  display: block;
  margin-top: 4px;
  padding: 8px 12px;
  font-size: 13px;
  color: #6b7280;
  text-decoration: underline;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
}
.hshh-reject-actions .hshh-btn-link:hover {
  color: var(--hshh-navy);
}
