@charset "UTF-8";
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #111827;
  background-color: #ffffff;
  line-height: 1.6;
}

/* Typography */
h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

button {
  font-family: inherit;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  /* margin-bottom: 0.5rem; */
}

/* Buttons */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Column wise buttons for mobile screen*/
@media (max-width: 480px) {
  .btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.btn-primary {
  background-color: #00a47b;
  color: white;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 164, 123, 0.2);
          box-shadow: 0 10px 15px -3px rgba(0, 164, 123, 0.2);
  border: 2px solid #008c68;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 164, 123, 0.3);
          box-shadow: 0 20px 25px -5px rgba(0, 164, 123, 0.3);
  color: #00a47b;
  border: 2px solid #00a47b;
  -webkit-tap-highlight-color: transparent;
}

.btn-secondary {
  background-color: white;
  color: #00a47b;
  border: 2px solid #00a47b;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-tap-highlight-color: transparent;
}
.btn-secondary:hover {
  background-color: #00a47b;
  border: 2px solid #008c68;
  color: #fff;
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 164, 123, 0.3);
          box-shadow: 0 20px 25px -5px rgba(0, 164, 123, 0.3);
  -webkit-tap-highlight-color: transparent;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f3f4f6;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header.scrolled {
  background-color: #ffffff;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

img {
  height: 3rem;
  width: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Tablet */
@media (max-width: 1024px) {
  .nav {
    display: none !important;
  }
  .mobile-menu-btn {
    display: block !important;
  }
}
@media (max-width: 375px) {
  .logo img {
    height: auto;
    width: auto;
  }
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #374151;
  background: none;
  border: none;
  padding: 0.5rem 0;
  font-size: 1rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #00a47b;
}

.nav-cta {
  padding: 0.625rem 1.5rem;
  background-color: #00a47b;
  color: white;
  border: 2px solid #008c68;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nav-cta:hover {
  background-color: #fff;
  color: #00a47b;
  border: 2px solid #008c68;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  color: #374151;
}

.mobile-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 1rem 0;
  gap: 0.5rem;
}
.mobile-menu .nav-link,
.mobile-menu .nav-cta {
  width: 100%;
  text-align: center;
}

.hero {
  padding-top: 6rem;
  /* padding-bottom: 80px; */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 185, 129, 0.05)), to(rgb(255, 255, 255)));
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.05) 0%, rgb(255, 255, 255) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.hero-badge {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1rem;
  background-color: #f8efe8;
  border: 1px solid #efb17f;
  border-radius: 9999px;
  color: #c18553;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 3rem;
  color: #111827;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 2rem;
}

.hero-title-highlight {
  color: #c18553;
}

.hero-description {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.75;
}

.hero-cta-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.hero-trust {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.trust-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #f8efe8;
  border: 1px solid #efb17f;
  color: #c18553;
}
.trust-icon svg {
  stroke: #c18553;
}

.trust-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.trust-value {
  font-weight: 600;
  color: #111827;
}

.hero-image {
  position: relative;
}

.hero-image-main {
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.hero-image-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-float-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: white;
  border-radius: 1rem;
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  max-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00a47b, #008c68);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.float-card-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.float-card-value {
  font-weight: 600;
  color: #111827;
}

.hero-float-badge {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, #c18553, #a67245);
  color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 180px;
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.float-badge-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.float-badge-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

.hero-float-card,
.hero-float-badge {
  display: none;
}

.section {
  padding: 0px;
}

.section-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 1.5rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f8efe8;
  border: 1px solid #efb17f;
  border-radius: 9999px;
  color: #c18553;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.section-badge.secondary {
  background-color: rgba(193, 133, 83, 0.1);
  border-color: rgba(193, 133, 83, 0.2);
  color: #c18553;
}

.section-title {
  font-size: 2.5rem;
  color: #111827;
  /* margin-bottom: 1.5rem; */
  padding-top: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.75;
}

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

#general-wellness .programs-grid {
  grid-template-columns: repeat(2, 1fr);
}

.program-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: white;
  border: 2px solid #f3f4f6;
  border-radius: 1.5rem;
  padding: 2rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}
.program-card:hover {
  border-color: #efb17f;
}

.program-description {
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.program-card.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.program-card.disabled svg {
  color: #9ca3af;
}

.program-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.program-icon.primary {
  background-color: #f8efe8;
  color: #c18553;
  border: 1px solid #efb17f;
}
.program-icon.secondary {
  background-color: rgba(193, 133, 83, 0.1);
  color: #c18553;
}
.program-card:hover .program-icon {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.program-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
  min-height: 90px;
}

.program-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.225rem;
}

.program-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.program-title {
  margin: 0;
  font-size: 1.5rem;
  color: #111827;
}

.program-cta-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  background-color: #fff;
  color: #00a47b;
  border: 2px solid #00a47b;
  border-radius: 0.5rem;
  padding-top: 1rem;
  cursor: pointer;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin: 0;
  font-size: 1.2rem;
  padding-bottom: 1rem;
  -webkit-tap-highlight-color: transparent;
}
.program-cta-button:hover {
  color: #fff;
  background-color: #00a47b;
  -webkit-tap-highlight-color: transparent;
}

.cta-text,
.cta-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.program-card.launching-soon {
  opacity: 0.6;
  pointer-events: none;
}
.program-card.launching-soon::after {
  content: "Launching Soon";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #374151;
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.program-card.launching-soon:hover {
  border-color: #f3f4f6;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.program-card.launching-soon .program-icon {
  -webkit-transform: none !important;
          transform: none !important;
}

.money-back-badge {
  position: absolute;
  top: 0;
  right: 0.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #f3f4f6;
  color: #c18553;
  padding: 0.3rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.6rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid #efb17f;
}

.program-mobile-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  line-height: 0;
  border-radius: 50%;
  background: none;
  border: none;
  color: #111827;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.program-mobile-arrow:hover, .program-mobile-arrow:active {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.program-mobile-arrow svg {
  display: block;
  stroke: currentColor;
}

.program-cta {
  display: none;
}

.programs-card-move-btn {
  display: none;
}

#general-wellness .program-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* height: 100%; */
}

#general-wellness .program-description {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#general-wellness .program-cta {
  margin-top: auto;
}

#results .programs-card-move-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

#results .arrows {
  width: 3rem;
  height: 3rem;
  background-color: rgb(255, 255, 255);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
  border-radius: 50%;
  border: 2px solid #c18553;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
#results .arrows:hover {
  background-color: #fdf6f0;
}
#results .arrows svg {
  width: 24px;
  height: 24px;
  stroke: #c18553;
}

.holistic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.pillar-card {
  background-color: white;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  padding: 2rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pillar-card:hover {
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #00a47b, #c18553);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
}

.pillar-title {
  font-size: 1.25rem;
  color: #111827;
  margin: 0;
}

.pillar-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pillar-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.pillar-highlights {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.pillar-highlights li {
  font-size: 0.875rem;
  color: #374151;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
}
.pillar-highlights li::before {
  content: "•";
  color: #00a47b;
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cta-box {
  background: linear-gradient(135deg, #00a47b, #008c68);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  color: white;
}
.cta-box h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta-box p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-box .btn {
  background-color: white;
  color: #00a47b;
}
.cta-box .btn:hover {
  background-color: #f9fafb;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 5rem;
  left: 4rem;
  right: 4rem;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#00a47b), color-stop(#c18553), to(#00a47b));
  background: linear-gradient(90deg, #00a47b, #c18553, #00a47b);
  opacity: 0.2;
  z-index: 0;
}

.step-card {
  background-color: white;
  border: 2px solid #f3f4f6;
  border-radius: 1rem;
  padding: 1.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.step-card:hover {
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #00a47b, #c18553);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
}

.step-icon-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  position: relative;
}

/* NUMBER (CIRCLE) */
.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #c18553;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* TITLE */
.step-title {
  font-size: 1.25rem;
  color: #111827;
  margin: 0;
  line-height: 1.3;
}

.step-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.75;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.expert-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.expert-card:hover {
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.expert-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.expert-image {
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  width: 100px;
  height: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
}
.expert-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.expert-name-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.expert-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.expert-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.expert-role {
  color: #c18553;
  font-size: 0.875rem;
  margin: 0;
}

.expert-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.expert-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
}
.expert-detail svg {
  color: #c18553;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.125rem;
}
.expert-detail span {
  font-size: 0.875rem;
  color: #374151;
}

.expert-previous {
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
  font-size: 0.75rem;
  color: #6b7280;
}

#experts .programs-card-move-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}

#experts .arrows {
  width: 3rem;
  height: 3rem;
  background-color: rgb(255, 255, 255);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  border-color: #c18553;
  -o-border-image: initial;
     border-image: initial;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  outline: none;
}
#experts .arrows:hover {
  background-color: #fdf6f0;
}
#experts .arrows svg {
  width: 24px;
  height: 24px;
  stroke: #c18553;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background-color: white;
  border: 2px solid #f3f4f6;
  border-radius: 1.5rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.testimonial-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgb(255, 255, 255));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}

.testimonial-avatar {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid white;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 4rem;
  height: 4rem;
}

.testimonial-user-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.testimonial-name {
  font-size: 1.375rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.testimonial-age {
  font-size: 0.925rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.testimonial-condition {
  display: inline-block;
  background-color: transparent;
  border-radius: 9999px;
  font-size: 0.8rem;
  color: #c18553;
}

.testimonial-content {
  padding: 0 1.5rem;
}

.testimonial-quote-icon {
  stroke: #c18553;
  margin-bottom: 0.5rem;
  display: block;
}

.testimonial-text {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.75;
  margin: 0;
  margin-bottom: 1rem;
}

.testimonial-highlight {
  color: #c18553;
  font-weight: 600;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 2px solid #f3f4f6;
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq-item.active {
  border-color: rgba(0, 164, 123, 0.3);
}

.faq-question {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq-question:hover {
  color: #00a47b;
}

.faq-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  color: #00a47b;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #374151;
  line-height: 1.75;
  margin: 0;
}

.app-download {
  padding: 100px 0;
  background: linear-gradient(135deg, #00a47b, #008c68);
  color: white;
}

.app-download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.app-download-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.app-badge {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  color: white;
  font-size: 0.875rem;
  backdrop-filter: blur(10px);
}

.app-download h2 {
  font-size: 3rem;
  line-height: 1.3;
  margin: 0;
}

.app-download p {
  font-size: 1.125rem;
  line-height: 1.75;
  opacity: 0.9;
}

.app-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.app-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.app-feature-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.app-feature span {
  opacity: 0.9;
}

.app-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.app-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background-color: white;
  color: #111827;
  border-radius: 1rem;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.app-button:hover {
  background-color: #f9fafb;
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.app-button-text-small {
  font-size: 0.75rem;
  color: #6b7280;
}

.app-button-text-large {
  font-size: 1.125rem;
  font-weight: 600;
}

.app-image {
  position: relative;
}
.app-image img {
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.footer {
  background-color: #111827;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00a47b, #c18553);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-description {
  color: #9ca3af;
  line-height: 1.75;
}

.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.footer-social a:hover {
  background-color: #00a47b;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
.footer-links a,
.footer-links button {
  color: #9ca3af;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font-size: 1rem;
}
.footer-links a:hover,
.footer-links button:hover {
  color: #00a47b;
}

.footer-contact {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
  color: #9ca3af;
}
.footer-contact-item svg {
  color: #00a47b;
  margin-top: 0.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer-contact-item a {
  color: #9ca3af;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer-contact-item a:hover {
  color: #00a47b;
}

.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin: 0;
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.carousel-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  background-color: white;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #374151;
}
.carousel-arrow:hover {
  border-color: #00a47b;
  background-color: #f0fdf4;
}

.carousel-arrow-left {
  left: -3rem;
}

.carousel-arrow-right {
  right: -3rem;
}

.carousel-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background-color: #d1d5db;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0;
}
.carousel-dot.active {
  background-color: #00a47b;
  width: 32px;
  border-radius: 9999px;
}

#expertsCarousel {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 1rem;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#expertsCarousel::-webkit-scrollbar {
  display: none;
}
#expertsCarousel.dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}
#expertsCarousel > div {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 calc((100% - 2rem) / 3) !important;
          flex: 0 0 calc((100% - 2rem) / 3) !important;
  padding: 0 !important;
  scroll-snap-align: start;
}

#testimonialsGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 1rem;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-bottom: 0;
}
#testimonialsGrid::-webkit-scrollbar {
  display: none;
}
#testimonialsGrid.dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}
#testimonialsGrid .testimonial-card {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 calc((100% - 4rem) / 3) !important;
          flex: 0 0 calc((100% - 4rem) / 3) !important;
  scroll-snap-align: start;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .holistic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid::before {
    display: none;
  }
  .experts-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-download-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .carousel-arrow {
    display: none;
  }
  .program-card {
    padding: 1.25rem;
  }
  .program-header {
    gap: 1rem;
    min-height: 64px;
  }
  .program-icon {
    width: 48px;
    height: 48px;
  }
  .program-title {
    font-size: 1.2rem;
  }
  .programs-grid {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .program-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 0.5rem);
            flex: 0 0 calc(50% - 0.5rem);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "title title" "description description" "trust image";
    gap: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero-content {
    display: contents;
  }
  .hero-title {
    grid-area: title;
    font-size: 3rem;
  }
  .hero-description {
    grid-area: description;
  }
  .hero-trust {
    grid-area: trust;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5rem;
  }
  .hero-image {
    grid-area: image;
  }
  .hero-image-main {
    aspect-ratio: 4/5;
    max-width: 100%;
    margin: 0;
  }
  .hero-float-card,
  .hero-float-badge {
    display: none;
  }
}
@media (max-width: 768px) {
  body {
    padding: 1rem;
  }
  .container {
    padding: 0 1rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  .hero {
    padding-top: 5rem;
    /* padding-bottom: 60px; */
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "title title" "description description" "trust image";
    gap: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero-content {
    display: contents;
  }
  .hero-title {
    grid-area: title;
    font-size: 2rem;
  }
  .hero-description {
    grid-area: description;
    font-size: 1rem;
  }
  .hero-trust {
    grid-area: trust;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
  }
  .hero-image {
    grid-area: image;
  }
  .hero-image-main {
    aspect-ratio: 4/5;
    max-width: 100%;
    margin: 0;
  }
  .program-header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #disorder-reversal .program-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
  }
  #disorder-reversal .program-header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #disorder-reversal .program-title {
    font-size: 1.1rem;
    margin-bottom: 0;
  }
  #disorder-reversal .program-cta {
    display: none;
  }
  #disorder-reversal .program-card {
    min-height: 0;
  }
  #disorder-reversal .programs-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    overflow-x: visible;
    -ms-scroll-snap-type: none;
        scroll-snap-type: none;
  }
  #disorder-reversal .program-card {
    background-color: white;
    border: 2px solid #f3f4f6;
    border-radius: 1.5rem;
    padding: 1rem 1.5rem 0 1rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 0;
  }
  .program-mobile-arrow {
    color: #111827;
  }
  .program-mobile-arrow:hover, .program-mobile-arrow:active {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .program-mobile-arrow svg {
    stroke: #111827;
  }
  .program-mobile-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: none;
    border: none;
    color: #c18553;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .hero-trust .trust-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  #general-wellness .programs-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    overflow-x: visible;
    -ms-scroll-snap-type: none;
        scroll-snap-type: none;
  }
  #general-wellness .program-card {
    background-color: white;
    border: 2px solid #f3f4f6;
    border-radius: 1.5rem;
    padding: 1rem 1.5rem 0 1rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 0;
  }
  .program-cta-button {
    font-size: 1rem;
    width: 100%;
    height: 2.7rem;
    -webkit-tap-highlight-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 1rem;
  }
  .programs-card-move-btn {
    margin-top: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
    -webkit-tap-highlight-color: transparent;
  }
  .arrows {
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    background-color: #fff;
    border: 2px solid #c18553;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }
  .arrows:hover {
    background-color: #fdf6f0;
  }
  .arrows:focus:not(:focus-visible) {
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .arrows svg {
    width: 24px;
    height: 24px;
    stroke: #c18553;
  }
  .carousel-dots {
    display: none;
  }
  #expertsCarousel {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-transform: none !important;
            transform: none !important;
    overflow-x: auto;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    cursor: -webkit-grab;
    cursor: grab;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  #expertsCarousel::-webkit-scrollbar {
    display: none;
  }
  #expertsCarousel.dragging {
    cursor: -webkit-grabbing;
    cursor: grabbing;
    -ms-scroll-snap-type: none;
        scroll-snap-type: none;
  }
  #expertsCarousel > div {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 98% !important;
            flex: 0 0 98% !important;
    padding: 0 !important;
    scroll-snap-align: center;
  }
  #expertsCarousel .expert-card {
    width: 100%;
  }
  #expertsCarousel .expert-header {
    padding: 1.25rem 1.25rem 0.75rem;
    gap: 2rem;
  }
  #expertsCarousel .expert-image {
    width: 72px;
    height: 72px;
  }
  #expertsCarousel .expert-name {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  #expertsCarousel .expert-role {
    font-size: 0.8125rem;
  }
  #expertsCarousel .expert-content {
    padding: 0 1.25rem 1.25rem;
    gap: 0.6rem;
  }
  #expertsCarousel .expert-detail span {
    font-size: 0.8125rem;
  }
  #general-wellness .program-general {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 0;
  }
  #general-wellness .program-icon {
    width: 48px;
    height: 48px;
    margin-top: 0;
    margin-bottom: 0;
  }
  #general-wellness .program-title {
    display: block;
    font-size: 1.1rem;
    min-height: 0;
    line-height: 1.3;
    margin: 0;
  }
  #general-wellness .program-cta {
    display: none;
  }
  #testimonialsGrid {
    gap: 1rem;
  }
  #testimonialsGrid .testimonial-card {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 98% !important;
            flex: 0 0 98% !important;
    scroll-snap-align: center;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .section-description {
    font-size: 1rem;
  }
  .holistic-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  .footer-bottom-links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .app-download h2 {
    font-size: 2rem;
  }
  .hero-float-card,
  .hero-float-badge {
    display: none;
  }
  /* Mobile Navigation */
  .nav {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-menu-btn {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .mobile-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem 0;
    gap: 0.5rem;
  }
  .mobile-menu .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
  }
  .mobile-menu .nav-cta {
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
  }
  .program-title {
    font-size: 1.25rem;
  }
  .program-icon.primary {
    width: 3rem;
    height: 3rem;
  }
  .faq-question {
    font-size: 0.95rem;
  }
  .faq-answer {
    font-size: 0.9rem;
  }
  .section-header:has(+ .steps-grid) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "title title" "description image" "trust trust";
    gap: 1rem;
  }
  .hero-image {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .hero-image-main {
    aspect-ratio: 1/1;
  }
  .hero-trust {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    padding-top: 0.5rem;
  }
  .section-title {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
  .section-header:has(+ .steps-grid) {
    margin-bottom: 2rem;
  }
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
}
@media (max-width: 385px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .section-title {
    font-size: 1.25rem;
    margin-top: 2rem;
  }
  .section-header:has(+ .steps-grid) {
    margin-bottom: 2rem;
  }
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}