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

:root {
  --orange: #E07820;
  --orange-light: #F0A050;
  --orange-pale: #FDF0E0;
  --green: #2A7A2A;
  --green-light: #5AAA5A;
  --green-pale: #E8F5E8;
  --brown-dark: #4A2010;
  --brown-mid: #7A4520;
  --brown-light: #C0A090;
  --cream: #FAF8F5;
  --cream-dark: #F0EBE0;
  --white: #FDFAF6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--brown-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  /* position: fixed; top: 0; left: 0; right: 0; z-index: 100; */
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(224, 120, 32, 0.12);
}

nav img.logo {
  height: 72px;
  width: auto;
}

.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 0.65rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--brown-dark);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* padding-top: 5rem; */
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--orange-pale);
  opacity: 0.5;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 5%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--green-pale);
  opacity: 0.45;
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 7%;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--brown-dark);
  margin-bottom: 1.25rem;
}

h1 em {
  color: var(--orange);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--brown-mid);
  font-weight: 300;
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--brown-dark);
  transform: translateY(-1px);
}

.urgency-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.urgency-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--brown-mid);
  font-weight: 400;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}

.dot.red {
  background: #E04040;
}

.dot.amber {
  background: var(--orange);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.75);
  }
}

.stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(74, 32, 16, 0.1);
}

.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--orange);
  font-weight: 400;
}

.stat span {
  font-size: 0.78rem;
  color: var(--brown-mid);
  font-weight: 300;
}

/* hero right — founder photo */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-photo-overlay {
  position: absolute;
  bottom: 2.5rem;
  left: -2rem;
  background: var(--white);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(224, 120, 32, 0.12);
  box-shadow: 0 8px 32px rgba(74, 32, 16, 0.1);
  max-width: 240px;
}

.hero-photo-overlay p {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--brown-dark);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.hero-photo-overlay span {
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── SECTION SHARED ── */
section {
  scroll-margin-top: 5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .eyebrow {
  justify-content: center;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--brown-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h2 em {
  color: var(--green);
  font-style: italic;
}

.section-sub {
  font-size: 1rem;
  color: var(--brown-mid);
  font-weight: 300;
  line-height: 1.7;
  max-width: 500px;
  margin: 0.85rem auto 0;
}

/* ── FOUNDER ── */
.founder {
  padding: 6rem 7%;
  background: var(--white);
}

.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.founder-frame {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.founder-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-eyebrow {
  margin-bottom: 0.75rem;
}

.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.founder-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.75rem;
}

.founder-bio {
  font-size: 1rem;
  color: var(--brown-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

.founder-quote {
  margin: 1.75rem 0;
  padding: 1.25rem 1.75rem;
  border-left: 3px solid var(--orange);
  background: var(--orange-pale);
  border-radius: 0 14px 14px 0;
}

.founder-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--brown-dark);
  line-height: 1.65;
}

/* ── BENEFITS ── */
.benefits {
  padding: 6rem 7%;
  background: var(--cream);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  border: 1px solid rgba(224, 120, 32, 0.1);
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange-light);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.benefit-icon.orange {
  background: var(--orange-pale);
}

.benefit-icon.green {
  background: var(--green-pale);
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: 0.6rem;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--brown-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ── PRICING ── */
.pricing {
  padding: 6rem 7%;
  background: var(--white);
}

.urgency-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--brown-dark);
  color: var(--white);
  border-radius: 14px;
  padding: 0.9rem 2rem;
  margin: 0 auto 2.5rem;
  max-width: 600px;
  flex-wrap: wrap;
}

.urgency-bar .urgency-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.urgency-bar strong {
  color: var(--orange-light);
  font-weight: 500;
}

.urgency-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 3rem;
  background: var(--cream-dark);
  border-radius: 100px;
  padding: 5px;
  width: fit-content;
  border: 1px solid rgba(224, 120, 32, 0.15);
}

.toggle-btn {
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--brown-mid);
  transition: all 0.2s;
}

.toggle-btn.active {
  background: var(--white);
  color: var(--brown-dark);
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(74, 32, 16, 0.1);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.pricing-card {
  background: var(--cream);
  border-radius: 22px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(224, 120, 32, 0.1);
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.best {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-8px);
}

.pricing-card.best:hover {
  transform: translateY(-12px);
}

.plan-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.badge-std {
  background: var(--orange-pale);
  color: var(--orange);
}

.badge-prem {
  background: var(--green-pale);
  color: var(--green);
}

.badge-best {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: 0.2rem;
}

.pricing-card.best .plan-name {
  color: var(--white);
}

.plan-desc {
  font-size: 0.78rem;
  color: var(--brown-light);
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.pricing-card.best .plan-desc {
  color: rgba(255, 255, 255, 0.7);
}

.price-block {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(74, 32, 16, 0.08);
}

.pricing-card.best .price-block {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--brown-dark);
  line-height: 1;
}

.pricing-card.best .price-amount {
  color: var(--white);
}

.price-period {
  font-size: 0.78rem;
  color: var(--brown-light);
}

.pricing-card.best .price-period {
  color: rgba(255, 255, 255, 0.6);
}

.price-was {
  font-size: 0.75rem;
  color: var(--brown-light);
  margin-top: 0.2rem;
}

.pricing-card.best .price-was {
  color: rgba(255, 255, 255, 0.55);
}

.promo-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  background: var(--orange-pale);
  color: var(--orange);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  margin-top: 0.4rem;
}

.pricing-card.best .promo-pill {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.plan-features li {
  font-size: 0.82rem;
  color: var(--brown-mid);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.4;
}

.pricing-card.best .plan-features li {
  color: rgba(255, 255, 255, 0.85);
}

.feat-check {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--green-pale);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card.best .feat-check {
  background: rgba(255, 255, 255, 0.2);
}

.feat-check::after {
  content: '';
  width: 4px;
  height: 6px;
  border: 1.5px solid var(--green);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-0.5px, -1px);
  display: block;
}

.pricing-card.best .feat-check::after {
  border-color: var(--white);
}

.plan-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.8rem;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.cta-outline {
  background: transparent;
  border: 1.5px solid rgba(74, 32, 16, 0.2);
  color: var(--brown-dark);
}

.cta-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.cta-solid {
  background: var(--white);
  color: var(--orange);
  border: none;
}

.cta-solid:hover {
  background: var(--brown-dark);
  color: var(--white);
}

.pricing-footnote {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.78rem;
  color: var(--brown-light);
  font-weight: 300;
}

/* ── APPLY FORM ── */
.apply {
  padding: 6rem 7%;
  background: var(--orange-pale);
}

.apply-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.apply-left h2 em {
  color: var(--orange);
}

.apply-left p {
  font-size: 1rem;
  color: var(--brown-mid);
  margin: 1.25rem 0 2rem;
  font-weight: 300;
  line-height: 1.75;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--brown-mid);
}

.check-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-pale);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-circle::after {
  content: '';
  width: 6px;
  height: 9px;
  border: 2px solid var(--green);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
  display: block;
}

.form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(224, 120, 32, 0.15);
}

.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: 0.2rem;
}

.form-sub {
  font-size: 0.82rem;
  color: var(--brown-mid);
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.form-group label {
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--brown-mid);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid rgba(74, 32, 16, 0.12);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--brown-dark);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--orange);
}

.form-group input::placeholder {
  color: var(--brown-light);
}

.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--brown-dark);
  transform: translateY(-1px);
}

.form-privacy {
  font-size: 0.7rem;
  color: var(--brown-light);
  text-align: center;
  margin-top: 0.75rem;
  font-weight: 300;
}

/* ── FOOTER ── */
footer {
  background: var(--brown-dark);
  padding: 2.5rem 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo img {
  height: 38px;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange-light);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

.hero-left>* {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.hero-left>*:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-left>*:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-left>*:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-left>*:nth-child(4) {
  animation-delay: 0.4s;
}

.hero-left>*:nth-child(5) {
  animation-delay: 0.5s;
}

.hero-left>*:nth-child(6) {
  animation-delay: 0.6s;
}

.hero-right {
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}


/* 27-mar-2026  */
.main-head.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.main-head {
  transition: all 0.3s ease-in-out;
}

.pricing-grid {
  display: flex;
  grid-template-columns: initial;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  width: 25%;
}

.site-main>p {
  margin-top: 0;
}

/* 27-mar-2026  */


/* 03-04-26 Css Start */
.why-list-sec .sec-head {
  margin: 0 auto 40px;
  max-width: 800px;
  text-align: center;
}

.why-list-sec .sec-head h2 {
  margin-bottom: 8px;
}

.why-list-row {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}

.why-list-clm {
  width: 33.33%;
  padding: 10px;
}

.why-list-card {
  width: 100%;
  height: 100%;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.13);
  border: 1px solid rgba(31, 42, 70, 0.1);
}

.why-list-card h3 {
  margin-bottom: 5px;
}

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

.custom-join-healing-landing-page .top-wpr a {
  display: inline-block;
}


/* 03-04-26 Css End */


/* 13/4/26 Css Start */

.apply-inner .form-card #gform_wrapper_3 .gform_heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: 4px;
}

.apply-inner .form-card #gform_wrapper_3 .gform_description {
  font-size: 13px;
  color: var(--brown-mid);
  margin-bottom: 32px;
  font-weight: 300;
}

.apply-inner .form-card .gfield_label {
  font-size: 12px;
  font-weight: 500;
  color: var(--brown-mid);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.apply-inner .form-card input[type="text"],
.apply-inner .form-card input[type="email"],
.apply-inner .form-card input[type="password"],
.apply-inner .form-card select {
  padding: 0px 16px;
  border: 1.5px solid rgba(74, 32, 16, 0.12);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--brown-dark);
  background: var(--cream);
  transition: all 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  height: 42px;
  box-shadow: none !important;
}

.apply-inner .form-card select {
  background-image: none !important;
}

.apply-inner .form-card input::placeholder {
  color: var(--brown-light);
  opacity: 1;
}

.apply-inner .form-card input:focus,
.apply-inner .form-card select:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(224, 120, 32, 0.08);
}

.apply-inner .form-card .gfield_html {
  /* background: #FFF9F3; */
  /* border: 1px solid #FCD34D; */
  border-radius: 12px;
  padding: 0;
  font-size: 14px;
  color: #92400E;
  text-align: center;
  margin-top: 0;
}

.apply-inner .form-card #gform_submit_button_3 {
  width: 100%;
  padding: 16px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 15px;
  outline: none;
}

.apply-inner .form-card #gform_submit_button_3:hover {
  background: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 32, 16, 0.15);
}

.apply-inner .form-card .gform_footer {
  padding: 0;
  margin: 0;
}

.apply-inner .form-card #gfield_3_9 .ginput_complex {
  display: flex !important;
  gap: 16px;
}

.apply-inner .form-card #gfield_3_9 .ginput_complex span {
  flex: 1;
}

.apply-inner .form-card .gform-theme--foundation .gform_fields {
  gap: 20px;
}

/* 13/4/26 Css End */


/* ── RESPONSIVE css ── */
@media(max-width:1199px) {
  .why-list-row {
    margin: -8px;
  }

  .why-list-clm {
    padding: 8px;
  }

  .why-list-card {
    padding: 20px;
  }



}




@media (max-width: 991px) {
  .custom-join-healing-landing-page h2 {
    font-size: 36px;
  }

  .custom-join-healing-landing-page .section-header {
    margin-bottom: 30px;
  }


  .pricing-card {
    width: 50%;
  }


  /* 03-04-26 Css Start */
  .why-list-sec .sec-head h2 {
    font-size: 36px;
  }

  .why-list-clm {
    width: 50%;
  }

  .custom-join-healing-landing-page .hero-left h1 br {
    display: none;
  }

  .custom-join-healing-landing-page .hero {
    display: flex;
    flex-direction: column-reverse;
  }

  .custom-join-healing-landing-page .hero .hero-right {
    padding: 40px 40px 0;
  }

  .hero-photo-overlay {
    left: 1rem;
  }

  .custom-join-healing-landing-page .hero-left {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .custom-join-healing-landing-page .hero-left .hero-sub {
    max-width: 100%;
  }

  .custom-join-healing-landing-page .hero-left h1 em {
    margin-left: 5px;
  }

  .custom-join-healing-landing-page .hero-left div {
    justify-content: center;
  }

  .custom-join-healing-landing-page .hero-left .eyebrow {
    justify-content: flex-start;
  }

  .custom-join-healing-landing-page .hero-left .btn-primary {
    margin-top: 10px;
    text-align: center;
  }

  .custom-join-healing-landing-page .hero-left .stat-row {
    margin-top: 20px;
    padding-top: 15px;
  }

  .founder,
  .benefits,
  .pricing,
  .apply {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .custom-join-healing-landing-page .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-join-healing-landing-page .pricing-card {
    width: 46%;
  }

  .custom-join-healing-landing-page footer {
    align-items: center;
  }

  .footer-logo img {
    height: 58px;
  }

  .custom-join-healing-landing-page .hero {
    min-height: initial;
  }



  /* 03-04-26 Css End */


}

@media (max-width: 960px) {
  nav {
    padding: 1rem 5%;
  }

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

  .hero-right {
    display: none;
  }

  .hero-left {
    padding: 4rem 5%;
  }

  h1 {
    font-size: 2.6rem;
  }

  .founder-inner,
  .apply-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .founder-frame {
    max-width: 300px;
    margin: 0 auto;
  }

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

  .founder,
  .benefits,
  .pricing,
  .apply {
    padding: 4rem 5%;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 5%;
  }

  /* 03-04-26 Css Start */
  .hero-right {
    display: block;
  }


  /* 03-04-26 Css End */

}

@media (max-width: 767px) {
  .pricing-card {
    width: 100%;
  }

  /* 03-04-26 Css Start */
  .custom-join-healing-landing-page h1 {
    font-size: 30px;
  }

  .why-list-sec .sec-head h2,
  .founder-name,
  .custom-join-healing-landing-page h2 {
    font-size: 28px;
  }

  .why-list-card h3 {
    line-height: 1.2;
  }

  .custom-join-healing-landing-page .top-wpr>div {
    font-size: 11px !important;
  }

  .custom-join-healing-landing-page .logo {
    width: 140px;
    height: auto;
  }

  .custom-join-healing-landing-page .eyebrow {
    margin-bottom: 15px;
  }

  .custom-join-healing-landing-page h1 {
    margin-bottom: 10px;
  }

  .founder,
  .benefits,
  .pricing,
  .apply {
    padding: 3rem 5%;
  }

  .custom-join-healing-landing-page .founder-frame {
    max-width: 100%;
  }

  .founder-name {
    line-height: 1.1;
  }

  .founder-inner,
  .apply-inner {
    gap: 30px;
  }

  .custom-join-healing-landing-page .benefit-card {
    padding: 20px;
  }

  .pricing-card {
    padding: 20px;
  }

  .custom-join-healing-landing-page .hero-photo-overlay {
    bottom: 10px;
  }

  /* 03-04-26 Css End */

  /* 13/4/26 Css Start */
  .apply-inner .form-card #gform_wrapper_3 {
    padding: 0;
  }

  .apply-inner .form-card #gfield_3_9 .ginput_complex {
    flex-direction: column;
    gap: 12px;
  }

  .apply-inner .form-card #gform_wrapper_3 .gform_heading h2 {
    font-size: 18px;
  }

  /* 13/4/26 Css End */



}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .apply-inner {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 575px) {
  .why-list-sec .sec-head h2 {
    font-size: 28px;
  }

  /* 03-04-26 Css Start */
  .why-list-clm {
    width: 100%;
  }

  .custom-join-healing-landing-page .hero .hero-right {
    padding: 40px 24px 0;
  }

  .hero-photo-overlay {
    bottom: -10px;
    border-radius: 10px;
    padding: 10px;
  }

  .custom-join-healing-landing-page .hero-left {
    padding-top: 40px;
  }

  .custom-join-healing-landing-page .stat {
    text-align: center;
  }

  .custom-join-healing-landing-page .founder-title {
    margin-bottom: 13px;
  }

  .custom-join-healing-landing-page .benefits-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .custom-join-healing-landing-page .pricing-card {
    width: 100%;
  }

  .form-card {
    border-radius: 15px;
    padding: 20px;
  }

  /* 03-04-26 Css End */
}

@media (max-width: 479px) {
  .custom-join-healing-landing-page h1 {
    font-size: 28px;
  }

  .custom-join-healing-landing-page h2 {
    font-size: 26px;
  }

  .custom-join-healing-landing-page h2 br {
    display: none;
  }



  .custom-join-healing-landing-page .logo {
    width: 110px;
  }

  .custom-join-healing-landing-page .nav-cta {
    padding: 7px 15px;
  }

  .custom-join-healing-landing-page .hero-photo-overlay p {
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .hero-photo-overlay {
    bottom: -40px;
    left: 5px;
  }

  .custom-join-healing-landing-page .hero-photo-overlay span {
    font-size: 12px;
    line-height: 1.5;
    display: inline-block;
  }

  .custom-join-healing-landing-page .hero-left {
    padding-top: 70px;
  }

  .custom-join-healing-landing-page .hero-left .stat-row {
    gap: 8px;
  }

  .custom-join-healing-landing-page .hero-left .stat-row span {
    display: inline-block;
    line-height: 1.2;
  }

  .custom-join-healing-landing-page .hero .hero-right {
    padding: 30px 15px 0;
  }

  .custom-join-healing-landing-page .founder-frame {
    border-radius: 15px;
  }

  .custom-join-healing-landing-page .founder-quote {
    padding: 15px;
  }

  .custom-join-healing-landing-page .urgency-bar {
    padding: 15px !important;
    gap: 5px !important;
  }

  .custom-join-healing-landing-page .urgency-divider {
    display: none;
  }

  .custom-join-healing-landing-page .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .custom-join-healing-landing-page .form-group input,
  .custom-join-healing-landing-page .form-group select {
    width: 100%;
  }


}